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

Unified Diff: css/desktop-options.scss

Issue 29730617: Issue 6510 - Configure notification opens options page incorrectly (Closed)
Patch Set: Created March 22, 2018, 3:27 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
« no previous file with comments | « no previous file | js/desktop-options.js » ('j') | js/desktop-options.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: css/desktop-options.scss
===================================================================
--- a/css/desktop-options.scss
+++ b/css/desktop-options.scss
@@ -533,16 +533,33 @@
}
[data-validation] .floating-input input:focus:invalid ~ .error-msg
{
visibility: visible;
}
/*
+ Animations
+*/
+
+.highlight-animate
+{
+ animation: highlight 1s 3;
+}
+
+@keyframes highlight
+{
+ 0% { background: none }
a.giammarchi 2018/03/22 18:43:28 I think the neutral value for background-color is
saroyanm 2018/03/22 20:43:21 Done.
+ 30% { background: #ffd7a3 }
a.giammarchi 2018/03/22 18:43:28 whenever you're changing only one part of a comple
saroyanm 2018/03/22 20:43:21 Agree, done.
+ 70% { background: #ffd7a3 }
+ 100% { background: none }
+}
+
+/*
Sidebar
*/
#sidebar,
#sidebar .fixed,
[role="tablist"]
{
width: 14.3rem;
« no previous file with comments | « no previous file | js/desktop-options.js » ('j') | js/desktop-options.js » ('J')

Powered by Google App Engine
This is Rietveld