From e6bf5f4199fcee95b08e8b42cde06e3fc06d8dbb Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Wed, 11 Dec 2019 18:04:59 +0200 Subject: [PATCH] new file --- chrome/grid_overflow_menu.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 chrome/grid_overflow_menu.css diff --git a/chrome/grid_overflow_menu.css b/chrome/grid_overflow_menu.css new file mode 100644 index 0000000..d8e607e --- /dev/null +++ b/chrome/grid_overflow_menu.css @@ -0,0 +1,19 @@ +/* Makes the contents of the overflow menu appear in a three column grid */ +/* Hides button labels */ + +#widget-overflow-mainView{ min-width: 80px !important; } + +.widget-overflow-list:not([customizing]){ + display: grid; + grid-template-areas: "s s s" "a a a"; + grid-auto-columns: auto; +} + +#widget-overflow-mainView[visible] .widget-overflow-list:not([customizing]) { max-width: 110px } +#widget-overflow-mainView ~ panelview[visible]{ max-width: unset !important; } + +.widget-overflow-list:not([customizing]) > *{ padding-block: 8px !important; } +.widget-overflow-list > #search-container{ grid-area: s } + +.widget-overflow-list:not([customizing]) .subviewbutton-nav::after, +.widget-overflow-list:not([customizing]) .toolbarbutton-text{ display: none } \ No newline at end of file