From 49b33965788bb4e350eceb055cb20ed1d6fb349b Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Mon, 28 Mar 2022 12:18:51 +0900 Subject: [PATCH] Fix: Build missing file --- .../selected_tab/_pinned_close_button.scss | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/tabbar/selected_tab/_pinned_close_button.scss diff --git a/src/tabbar/selected_tab/_pinned_close_button.scss b/src/tabbar/selected_tab/_pinned_close_button.scss new file mode 100644 index 0000000..e6bde8c --- /dev/null +++ b/src/tabbar/selected_tab/_pinned_close_button.scss @@ -0,0 +1,17 @@ +.tabbrowser-tab[pinned][visuallyselected]:not([busy]) .tab-close-button { + display: -moz-box !important; + -moz-box-ordinal-group: 0 !important; + + /* Looks like hover */ + width: 24px !important; + height: 24px !important; + margin-inline: -4px !important; /* (24px - 16px) / 2 */ +} +.tabbrowser-tab[pinned][visuallyselected]:not([busy]) .tab-icon-stack { + width: 0 !important; + position: absolute; + bottom: 8px; +} +.tabbrowser-tab[pinned][visuallyselected] .tab-icon-image { + display: none !important; +}