home » zplus/freepost.git
Author zPlus <zplus@peers.community> 2018-11-18 14:21:55
Committer zPlus <zplus@peers.community> 2018-11-18 14:21:55
Commit c92d523 (patch)
Tree 1d0b58b
Parent(s)

Fix "username" alignment in the menubar when displaying count of new messages.


commits diff: d60bbc8..c92d523
1 file changed, 7 insertions, 4 deletionsdownload


Diffstat
-rwxr-xr-x freepost/static/stylus/freepost.styl 11

Diff options
View
Side
Whitespace
Context lines
Inter-hunk lines
+7/-4 M   freepost/static/stylus/freepost.styl
index 5360cae..644a2f3
old size: 10K - new size: 10K
@@ -68,7 +68,7 @@ body
68 68 flex-wrap wrap
69 69 justify-content flex-start
70 70 align-content flex-start
71 - align-items flex-start
71 + align-items flex-end
72 72
73 73 > .flex-item
74 74 flex 0 1 auto
@@ -88,6 +88,7 @@ body
88 88 /* Highlight username if there are unread messages */
89 89 .new_messages
90 90 background-color rgb(255, 175, 50)
91 + border 0
91 92 border-radius 4px
92 93 color #fff
93 94 font-weight bold
@@ -130,14 +131,16 @@ body
130 131 .upvoted
131 132 background-color #d1ffd5
132 133 border 1px dashed
133 - border-radius .5rem
134 134 border-color #00e313
135 + border-radius .5rem
135 136 color #00a200
136 137 font-weight bolder
137 138
138 139 .downvoted
139 - background-color #fcc
140 - border-radius 999rem
140 + background-color #ffd9d9
141 + border 1px dashed
142 + border-color #ff7171
143 + border-radius .5rem
141 144 color #f00
142 145 font-weight bolder
143 146