# Ліво-стороння орієнтація кнопки "закрити вкладку" в Thunderbird

Для активації `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.

=> left-oriented-close-tab-button-in-thunderbird/screenshot.png Результат (скріншот)

## Дивіться також

=> left-oriented-close-tab-button-in-firefox.gmi Ліво-стороння орієнтація кнопки "закрити вкладку" в Firefox