summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/views/_mail-list.scss
diff options
context:
space:
mode:
authorZara Gebru <zgebru@thoughtworks.com>2016-12-02 15:25:23 +0100
committerZara Gebru <zgebru@thoughtworks.com>2016-12-02 15:25:23 +0100
commitb14833fbb56bcd5bff0750c16fd9214009b955be (patch)
treea1ec621dd5f76d756ac59b72a763a34a2c189387 /web-ui/app/scss/views/_mail-list.scss
parent688a8b42e8ab7c6d4529b6dda66f40eead07ad02 (diff)
[refactor] move app dir into public dir
Diffstat (limited to 'web-ui/app/scss/views/_mail-list.scss')
-rw-r--r--web-ui/app/scss/views/_mail-list.scss124
1 files changed, 0 insertions, 124 deletions
diff --git a/web-ui/app/scss/views/_mail-list.scss b/web-ui/app/scss/views/_mail-list.scss
deleted file mode 100644
index f5c4c60f..00000000
--- a/web-ui/app/scss/views/_mail-list.scss
+++ /dev/null
@@ -1,124 +0,0 @@
-.mail-list-entry {
- @include scut-clearfix;
-
- border-bottom: 1px solid white;
- transition: background-color 150ms ease-out;
- font-weight: bold;
- height: 80px;
- position: relative;
-
- // Workaround:
- // Foundation is of the opinion that a 1.6 line height for all lists
- // is a totally good idea. Please remove when Foundation is gone
- line-height: normal;
-
- &.status-read {
- font-weight: normal;
- color: $attachment_text;
-
- .mail-list-entry__checkbox::after {
- display: none;
- }
- }
-
-
- &.selected {
- background: $light_blue;
- z-index: 10; // overlay the box-shadow of the right page (z-index: 2)
-
- &:hover {
- background: $light_blue;
- }
-
- a {
- color: $white;
- }
- }
-
- &:hover {
- background: darken($contrast, 5%);
- }
-
- &__checkbox {
- margin-right: 5px;
- display: block;
- float: left;
- margin: {
- top: 8px;
- left: 20px;
- }
-
- &::after {
- content: '';
- display: inline-block;
- width: 8px;
- height: 8px;
- -moz-border-radius: 15px;
- -webkit-border-radius: 15px;
- border-radius: 15px;
- background-color: $bullet-blue;
- position: absolute;
- left: 48px;
- top: 13px;
- }
-
- & > input[type=checkbox] {
- @include check-box;
- }
- }
-
- &__item {
- display: block;
- color: $dark_grey;
- padding: 8px 10px 10px 67px;
- height: 100%;
-
- &-from {
- white-space: nowrap;
- font-size: 0.8em;
- overflow: hidden;
- text-overflow: ellipsis;
- display: inline-block;
- }
-
- &-date {
- font-size: 0.7em;
- float: right;
- display: inline-block;
- }
-
- &-subject {
- display: inline-block;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- width: 85%;
-
- &-icon {
- color: $light_gray;
- }
- }
-
- &-attachment {
- width: 14px;
- text-align: right;
- display: inline-block;
- float: right;
- color: $light_gray;
- }
-
- &-tags {
- @include tags;
-
- // Workaround:
- // Foundation is of the opinion that a 1.6 line height and a 0.6 rem margin-bottom
- // for all lists is a totally good idea. Please remove when Foundation is gone
- line-height: normal;
- margin-bottom: 0;
- }
-
- &:hover, &:focus, &:active {
- color: $dark_grey;
- }
- }
-}