Перейти из форума на сайт.

НовостиФайловые архивы
ПоискАктивные темыТоп лист
ПравилаКто в on-line?
Вход Забыли пароль? Первый раз на этом сайте? Регистрация
Компьютерный форум Ru.Board » Компьютеры » Программы » SeaMonkey | Mozilla Suite (часть 2)

Модерирует : gyra, Maz

Maz (27-01-2023 15:36): SeaMonkey | Mozilla Suite (Часть 3)  Версия для печати • ПодписатьсяДобавить в закладки
На первую страницук этому сообщениюк последнему сообщению

   

Coronerr



Silver Member
Редактировать | Профиль | Сообщение | Цитировать | Сообщить модератору


Код:
 
/* ############# Активная вкладка ############# */
/* Активная вкладка. Тёмно-красная, жирная */
tab{ -moz-appearance: none !important; }
tab[selected="true"] {
  background-color: rgb(150,230,255) !important;
  color: #BB1111 !important;
  text-shadow: 0px 0px 4px rgb(255, 255, 255)!important;
  font-weight: bold !important;  
  box-shadow: 0px 4px 0 #FF9900 inset,
                              0px -2px 0px rgba(0,0,0,.05) inset,
                              0 -1px 0 rgba(0,0,0,.3) inset !important; }
 
/* Активная вкладка при наведении. Светло-красная */
tab[selected="true"]:hover {
  color: #FF0000 !important;
  text-shadow: 0px 0px 3px rgb(255, 255, 255)!important;
  opacity: .9 !important;  
  box-shadow: 0px 4px 0 #FF7777 inset,
                              0px -2px 0px rgba(0,0,0,.05) inset,
                              0 -1px 0 rgba(0,0,0,.3) inset !important; }
 
/* Загружаемая активная вкладка. Жёлтая, жирная */
.tabbrowser-tab[selected="true"][busy] {
  color: yellow !important;
  text-shadow: 1px 1px 2px black !important;
  font-weight: bold !important; }
 
/* ############# Непрочитанная вкладка ############# */
/* Непрочитанная вкладка. Серая, мутная. italic  */
.tabbrowser-tab[unread="true"] {
  color: rgb(30, 60, 0) !important;  
  text-shadow: 1px 1px 3px rgb(255, 255, 255) !important;
  opacity: .9 !important;  
  font-family: "Helvetica Neue", Tahoma, "Liberation Sans" !important;
  font-style: italic !important; }
 
/* Непрочитанная вкладка при наведении. Жёлтая, жирная, шрифт italic  */
.tabbrowser-tab[unread="true"]:hover {
  color: rgb(255, 255, 0) !important;  
  text-shadow: 1px 1px 3px rgb(100, 0, 0) !important;
  opacity: 1 !important;  
  font-family: "Helvetica Neue", Tahoma, "Liberation Sans" !important;
  font-style: italic !important;
  font-weight: bold !important; }
 
 
/* ############# Неактивная вкладка ############# */
/* Загруженная неактивная вкладка. Чёрная */
.tabbrowser-tab {
  background-color: rgb(0,130,0) !important;
  color: rgb(0, 0, 0) !important;  
  border: 1px inset rgba(23, 51, 78, 0.8) !important; // влияет на все вкладки }
 
/* Загруженная неактивная вкладка при наведении. Тёмно-тёмно зелёная, жирная. */
.tabbrowser-tab:hover {
  color: rgb(0,90,0) !important;  
  text-shadow: 2px 2px 1px rgb(255, 255, 255) !important;  
  font-weight: bold !important; }
 
/* Загружаемая неактивная вкладка. Мутная. */
.tabbrowser-tab[busy] {
  color: rgb(0,90,100) !important;
  text-shadow: 1px 1px 2px rgb(255, 150, 255) !important; }
 
/* ############# Приватная вкладка. Усё фиолетовое ############# */
/* Цвет приватной вкладки. Активная */
.tabbrowser-tab[privateTab-isPrivate] [selected="true"] {
  background-color: rgb(200, 240, 255) !important;
  text-decoration-line: underline !important;
  text-decoration-style: double !important;
  text-decoration-color: rgb(255, 210, 0) !important;
  color: rgb(200, 50, 180) !important;
  font-variant: small-caps;
  font-weight: bold !important; }
 
/* Цвет приватной вкладки. Неактивная */
.tabbrowser-tab[privateTab-isPrivate] {
  text-decoration-line: underline !important;
  text-decoration-style: solid !important;
  text-decoration-color: rgb(0, 255, 0) !important;
  color: rgb(140, 20, 180) !important;
  font-variant: small-caps;
  border: 1px dashed rgb(255, 0, 0) !important;  // Влияет на все приватные
  font-weight: bold !important; }
 
/* Цвет приватной вкладки. При наведении */
.tabbrowser-tab[privateTab-isPrivate] :hover {
  text-decoration-line: underline !important;
  text-decoration-style: solid!important;
  text-decoration-color: rgb(0, 255, 0) !important;
  color: rgb(255, 0, 255) !important;
  font-variant: small-caps;
  font-weight: bold !important; }
 
/* Цвет приватной вкладки при наведении. Непрочитанная */
.tabbrowser-tab[privateTab-isPrivate] [unread="true"] {
  text-decoration-line: underline !important;
  text-decoration-style: solid!important;
  text-decoration-color: rgb(0, 255, 0) !important;
  color: rgb(150, 0, 170) !important;
  font-variant: small-caps;
  font-style: italic !important; }
 
/* Цвет приватной вкладки . Загружается */
.tabbrowser-tab[privateTab-isPrivate] [busy] {
  text-decoration-line: underline !important;
  text-decoration-style: solid!important;
  text-decoration-color: rgb(0, 255, 0) !important;
  color: rgb(90, 20, 90) !important;
  font-variant: small-caps;
  font-style: italic !important;
  font-weight: normal !important; }
 


Всего записей: 3491 | Зарегистр. 17-04-2014 | Отправлено: 19:40 22-03-2016 | Исправлено: Coronerr, 19:41 22-03-2016
   

На первую страницук этому сообщениюк последнему сообщению

Компьютерный форум Ru.Board » Компьютеры » Программы » SeaMonkey | Mozilla Suite (часть 2)
Maz (27-01-2023 15:36): SeaMonkey | Mozilla Suite (Часть 3)


Реклама на форуме Ru.Board.

Powered by Ikonboard "v2.1.7b" © 2000 Ikonboard.com
Modified by Ru.B0ard
© Ru.B0ard 2000-2024

BitCoin: 1NGG1chHtUvrtEqjeerQCKDMUi6S6CG4iC

Рейтинг.ru