diff options
author | Horst3180 | 2017-03-11 14:54:09 +0100 |
---|---|---|
committer | Horst3180 | 2017-03-11 14:54:09 +0100 |
commit | bc3725e858b0c1bc27dd1164cb2908dcef21f404 (patch) | |
tree | 20afd8e2c0b90aa9057704d731b10deda904f552 /arc-firefox-theme/chrome/browser/searchbar.css | |
parent | ec1fc1732ea2cbf67bb32bf63d6178c1deee21c0 (diff) | |
download | solarc-firefox-theme-bc3725e858b0c1bc27dd1164cb2908dcef21f404.tar.gz solarc-firefox-theme-bc3725e858b0c1bc27dd1164cb2908dcef21f404.tar.xz solarc-firefox-theme-bc3725e858b0c1bc27dd1164cb2908dcef21f404.zip |
update to 52.0
Diffstat (limited to 'arc-firefox-theme/chrome/browser/searchbar.css')
-rw-r--r-- | arc-firefox-theme/chrome/browser/searchbar.css | 31 |
1 files changed, 27 insertions, 4 deletions
diff --git a/arc-firefox-theme/chrome/browser/searchbar.css b/arc-firefox-theme/chrome/browser/searchbar.css index 130b90a..cb4103d 100644 --- a/arc-firefox-theme/chrome/browser/searchbar.css +++ b/arc-firefox-theme/chrome/browser/searchbar.css @@ -123,16 +123,39 @@ menuitem[cmd="cmd_clearhistory"][disabled] { } .search-panel-current-engine { - border-top: none !important; -moz-box-align: center; } +/** + * The borders of the various elements are specified as follows. + * + * The current engine always has a bottom border. + * The search results never have a border. + * + * When the search results are not collapsed: + * - The elements underneath the search results all have a top border. + * + * When the search results are collapsed: + * - The elements underneath the search results all have a bottom border, except + * the lowest one: search-setting-button. + */ + .search-panel-current-engine { - border-bottom: none; + border-top: none !important; + border-bottom: 1px solid var(--panel-separator-color) !important; +} + +.search-panel-tree[collapsed=true] + .search-one-offs > .search-panel-header, +.search-panel-tree[collapsed=true] + .search-one-offs > .search-panel-one-offs, +.search-panel-tree[collapsed=true] + .search-one-offs > vbox > .addengine-item:first-of-type { + border-top: none !important; } -.search-panel-tree { - border-top: 1px solid var(--panel-separator-color) !important; +.search-panel-tree[collapsed=true] + .search-one-offs > .searchbar-engine-one-off-item, +.search-panel-tree[collapsed=true] + .search-one-offs > .search-panel-current-input, +.search-panel-tree[collapsed=true] + .search-one-offs > .search-panel-one-offs, +.search-panel-tree[collapsed=true] + .search-one-offs > vbox > .addengine-item:last-of-type { + border-bottom: 1px solid var(--panel-separator-color) !important; } .search-panel-header { |