Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: skin/new-options.css

Issue 29519650: Issue 5540 - implement notification (Closed)
Patch Set: Created Aug. 23, 2017, 6:55 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« skin/delete.svg ('K') | « skin/delete.svg ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
+}
« skin/delete.svg ('K') | « skin/delete.svg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld