Index: skin/new-options.css |
=================================================================== |
--- a/skin/new-options.css |
+++ b/skin/new-options.css |
@@ -1078,3 +1078,55 @@ |
{ |
display: none; |
} |
+ |
+/* |
+ Notification |
+*/ |
+ |
+#notification |
+{ |
+ position: absolute; |
ire
2017/08/24 10:08:44
I think this should be `position: fixed`.
Althou
saroyanm
2017/08/24 14:18:26
Good point!
saroyanm
2017/08/24 18:40:54
Done.
|
+ top: 0rem; |
+ left: 0rem; |
+ display: flex; |
+ padding: 1rem 1.9rem; |
+ width: 100%; |
+ box-sizing: border-box; |
ire
2017/08/24 10:08:44
Not sure if this will be addressed by implementing
saroyanm
2017/08/24 14:18:26
Not sure if we should apply this to all elements,
ire
2017/08/25 09:59:45
Acknowledged.
|
+ opacity: 0.8; |
+ font-size: 1rem; |
+ font-weight: 600; |
ire
2017/08/24 10:08:44
Can this bold style be applied by using a <strong>
saroyanm
2017/08/24 14:18:26
Yes, I'll use <strong> instead
saroyanm
2017/08/24 18:40:54
Done.
|
+ color: #099CD0; |
+ background-color: #E1F2FA; |
ire
2017/08/24 10:08:44
(I think this may have been discussed already but)
saroyanm
2017/08/24 14:18:26
I agree, that the contrast needs to be adjusted.
ire
2017/08/25 09:59:45
It's fine to bring up during the next meeting sinc
|
+} |
+ |
+#notification span |
+{ |
+ flex: 1; |
+ text-align: center; |
+} |
+ |
+#hide-notification |
+{ |
+ border: 0rem; |
+ padding: 0rem;e |
ire
2017/08/24 10:08:45
There's a stray "e" here :p
saroyanm
2017/08/24 14:18:26
:D
saroyanm
2017/08/24 18:40:54
Done.
|
+ margin: 0rem 1rem; |
+ background-color: transparent; |
+} |
+ |
+#hide-notification::after |
+{ |
+ content: ""; |
+ display: block; |
+ height: 1rem; |
+ width: 1rem; |
+ border: 0rem; |
+ background-color: #099DD1; |
+ cursor: pointer; |
ire
2017/08/24 10:08:44
I think the `cursor: pointer` should be on the but
saroyanm
2017/08/24 14:18:26
Right. I'll change that.
saroyanm
2017/08/24 18:40:54
Done.
|
+ -webkit-mask: url(delete.svg); |
+ mask: url(delete.svg); |
+} |
+ |
+#hide-notification:hover::after |
+{ |
+ background-color: #5CBCE1; |
ire
2017/08/24 10:08:45
(I think this was also discussed before but) the c
saroyanm
2017/08/24 14:18:26
Yes, I agree, same as above question. I'll collect
|
+} |