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

Unified Diff: css/desktop-options.scss

Issue 29712664: Issue 6432 - Hide remove button for additional filter lists (Closed)
Patch Set: Keeping callback hell Created March 8, 2018, 6:02 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 | « background.js ('k') | desktop-options.html » ('j') | skin/icons/checkbox.svg » ('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
@@ -115,6 +115,12 @@
cursor: pointer;
}
+button:disabled,
+button[aria-disabled="true"]
+{
+ cursor: default;
+}
+
/* Ignore .icon to avoid overriding "specific" (primary, secondary) styles */
button.primary:not(.icon),
.button.primary:not(.icon)
@@ -268,7 +274,7 @@
border: 0rem;
margin: 0.2rem;
border-radius: 2px;
- background-color: #ccc;
+ background-color: #b3b3b3;
Thomas Greiner 2018/03/08 19:28:19 Detail: Isn't this redundant since we're setting `
saroyanm 2018/03/09 11:23:28 It is not because we do not have dedicated disable
Thomas Greiner 2018/03/09 17:24:22 Acknowledged.
}
button[role="checkbox"].icon:not(.toggle)::before
@@ -282,6 +288,11 @@
background-image: url(icons/checkbox.svg?on#on);
}
+button[role="checkbox"][aria-checked="true"].icon:disabled:not(.toggle)::before
+{
+ background-image: url(icons/checkbox.svg?on-disabled#on-disabled);
+}
+
button[role="checkbox"].icon.toggle::before
{
background-image: url(icons/toggle.svg?on#on);
@@ -1073,6 +1084,11 @@
font-weight: 400;
}
+li.preconfigured [data-hide="preconfigured"]
+{
+ display: none !important;
+}
+
/*
Tooltips
*/
« no previous file with comments | « background.js ('k') | desktop-options.html » ('j') | skin/icons/checkbox.svg » ('J')

Powered by Google App Engine
This is Rietveld