diff options
Diffstat (limited to 'ext/bg/css/settings.css')
-rw-r--r-- | ext/bg/css/settings.css | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/ext/bg/css/settings.css b/ext/bg/css/settings.css index 21cbe256..f204681b 100644 --- a/ext/bg/css/settings.css +++ b/ext/bg/css/settings.css @@ -158,14 +158,21 @@ input[type=checkbox]#storage-persist-button-checkbox { height: 320px; } -[data-show-for-browser] { +[data-show-for-browser], +[data-show-for-operating-system] { display: none; } -[data-browser=edge] [data-show-for-browser~=edge], -[data-browser=chrome] [data-show-for-browser~=chrome], -[data-browser=firefox] [data-show-for-browser~=firefox], -[data-browser=firefox-mobile] [data-show-for-browser~=firefox-mobile] { +html:root[data-browser=edge] [data-show-for-browser~=edge], +html:root[data-browser=chrome] [data-show-for-browser~=chrome], +html:root[data-browser=firefox] [data-show-for-browser~=firefox], +html:root[data-browser=firefox-mobile] [data-show-for-browser~=firefox-mobile], +html:root[data-operating-system=mac] [data-show-for-operating-system~=mac], +html:root[data-operating-system=win] [data-show-for-operating-system~=win], +html:root[data-operating-system=android] [data-show-for-operating-system~=android], +html:root[data-operating-system=cros] [data-show-for-operating-system~=cros], +html:root[data-operating-system=linux] [data-show-for-operating-system~=linux], +html:root[data-operating-system=openbsd] [data-show-for-operating-system~=openbsd] { display: initial; } |