diff --git a/css/leptonChrome.css b/css/leptonChrome.css index 2b8606b..800d9cc 100644 --- a/css/leptonChrome.css +++ b/css/leptonChrome.css @@ -7448,6 +7448,11 @@ /* Original: 8px */ } } +@supports -moz-bool-pref("userChrome.hidden.bookmarkbar_icon") { + #PlacesToolbarItems .bookmark-item > .toolbarbutton-icon { + display: none; + } +} @supports -moz-bool-pref("userChrome.hidden.selected_tab") { .tabbrowser-tab[selected="true"] { -moz-box-flex: 0 !important; diff --git a/src/hidden/_index.scss b/src/hidden/_index.scss index 6bffbbd..46bbbb2 100644 --- a/src/hidden/_index.scss +++ b/src/hidden/_index.scss @@ -52,6 +52,12 @@ } } +@include Option("userChrome.hidden.bookmarkbar_icon") { + #PlacesToolbarItems .bookmark-item > .toolbarbutton-icon { + display: none; + } +} + @include Option("userChrome.hidden.selected_tab") { .tabbrowser-tab[selected="true"] { -moz-box-flex: 0 !important; diff --git a/user.js b/user.js index 57fc7f1..0f6fcee 100644 --- a/user.js +++ b/user.js @@ -92,6 +92,7 @@ user_pref("userChrome.rounding.square_tab", false); // user_pref("userChrome.hidden.sidebar_header", true); // user_pref("userChrome.hidden.sidebar_header.vertical_tab_only", true); // user_pref("userChrome.hidden.urlbar_iconbox", true); +// user_pref("userChrome.hidden.bookmarkbar_icon", true); // user_pref("userChrome.hidden.tab_icon", true); // user_pref("userChrome.hidden.selected_tab", true); // user_pref("userChrome.hidden.disabled_menu", true);