aboutsummaryrefslogtreecommitdiff
path: root/src/components/notifications/notifications.scss
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2017-02-22 23:37:12 +0100
committerRoger Braun <roger@rogerbraun.net>2017-02-22 23:37:12 +0100
commit0e1ab69c33f155865adc27d940a2542ffdcec30a (patch)
treef150ccf63e59ecb284a276a7a28659d9d3b614d4 /src/components/notifications/notifications.scss
parent9778d4cfc04450a4fd9f1330c35df8487c8993bf (diff)
Show actual status in notifications when mentioned.
Diffstat (limited to 'src/components/notifications/notifications.scss')
-rw-r--r--src/components/notifications/notifications.scss62
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 {