summaryrefslogtreecommitdiff
path: root/web-ui/public/scss/views/_mail-list.scss
diff options
context:
space:
mode:
authorRoald de Vries <rdevries@thoughtworks.com>2016-12-08 16:59:09 +0100
committerRoald de Vries <rdevries@thoughtworks.com>2016-12-08 16:59:09 +0100
commitfafac3b4128a0993b0de1c6e8ca3062bf1ccc14e (patch)
tree3b9a446e4c82bb8ba94c1cd0adec57c0042dae28 /web-ui/public/scss/views/_mail-list.scss
parent521bce7eff5cf921156efe74c91a0499ade43619 (diff)
Revert "[#801] Merge branch 'signup'"
This reverts commit d10f607a4d40587510b0dc31b31fe4750bf4a3a3, reversing changes made to c28abba2f5b1186c671ebef508d40ffaae6d5bc5.
Diffstat (limited to 'web-ui/public/scss/views/_mail-list.scss')
-rw-r--r--web-ui/public/scss/views/_mail-list.scss124
1 files changed, 0 insertions, 124 deletions
diff --git a/web-ui/public/scss/views/_mail-list.scss b/web-ui/public/scss/views/_mail-list.scss
deleted file mode 100644
index f5c4c60f..00000000
--- a/web-ui/public/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;
- }
- }
-}