mirror of
https://codeberg.org/postscriptum/gemlog.git
synced 2026-04-01 05:05:27 +00:00
27 lines
No EOL
1.1 KiB
Text
27 lines
No EOL
1.1 KiB
Text
# Ліво-стороння орієнтація кнопки "закрити вкладку" в Thunderbird
|
|
|
|
Продовження попередньої історії:
|
|
=> left-oriented-close-tab-button-in-firefox.gmi Ліво-стороння орієнтація кнопки "закрити вкладку" в Firefox
|
|
|
|
Для активації `toolkit.legacyUserProfileCustomizations.stylesheets` - доступ до `about:config` в Thunderbird відбувається з меню "General", в самому низу сторінки є кнопка "Config Editor...".
|
|
|
|
Файл стилів створюється по аналогії, але має інше дерево класів:
|
|
|
|
``` ~/.thunderbird/xxx.default-esr/chrome/userChrome.css
|
|
.tab-close-button {
|
|
position: absolute !important;
|
|
left: 4px !important;
|
|
display: none !important;
|
|
order: -1 !important;
|
|
}
|
|
|
|
.tabmail-tab:hover .tab-close-button,
|
|
.tabmail-tab[selected="true"] .tab-close-button {
|
|
display: flex !important;
|
|
}
|
|
|
|
.tab-icon-image {
|
|
margin-left: 20px !important;
|
|
}
|
|
```
|
|
* після змін перезапускаємо Thunderbird. |