diff options
| author | Roger Braun <roger@rogerbraun.net> | 2017-02-22 23:37:12 +0100 |
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2017-02-22 23:37:12 +0100 |
| commit | 0e1ab69c33f155865adc27d940a2542ffdcec30a (patch) | |
| tree | f150ccf63e59ecb284a276a7a28659d9d3b614d4 /src/components/notifications/notifications.scss | |
| parent | 9778d4cfc04450a4fd9f1330c35df8487c8993bf (diff) | |
Show actual status in notifications when mentioned.
Diffstat (limited to 'src/components/notifications/notifications.scss')
| -rw-r--r-- | src/components/notifications/notifications.scss | 62 |
1 files changed, 32 insertions, 30 deletions
diff --git a/src/components/notifications/notifications.scss b/src/components/notifications/notifications.scss index 517afeaa..65efb103 100644 --- a/src/components/notifications/notifications.scss +++ b/src/components/notifications/notifications.scss @@ -1,42 +1,44 @@ @import '../../_variables.scss'; .notification { - padding: 0.4em 0 0 0.7em; - display: flex; border-bottom: 1px solid silver; - .text { - min-width: 0px; - word-wrap: break-word; - line-height:18px; + .notification-base { + padding: 0.4em 0 0 0.7em; + display: flex; + .avatar { + padding-top: 0.3em; + width: 32px; + height: 32px; + border-radius: 50%; + } - .icon-retweet { - color: $green; - } + .text { + min-width: 0px; + word-wrap: break-word; + line-height:18px; - .icon-reply { - color: $blue; - } + .icon-retweet { + color: $green; + } - h1 { - margin: 0 0 0.3em; - padding: 0; - font-size: 1em; - line-height:20px; - } + .icon-reply { + color: $blue; + } - padding: 0.3em 0.8em 0.5em; - p { - margin: 0; - margin-top: 0; - margin-bottom: 0.3em; - } - } + h1 { + margin: 0 0 0.3em; + padding: 0; + font-size: 1em; + line-height:20px; + } - .avatar { - padding-top: 0.3em; - width: 32px; - height: 32px; - border-radius: 50%; + padding: 0.3em 0.8em 0.5em; + p { + margin: 0; + margin-top: 0; + margin-bottom: 0.3em; + } + } } &:last-child { |
