Bug 623986 - Make the buttontext redable of disabled toolbarbuttons with LW-themes. r=aleth

This commit is contained in:
Richard Marti 2015-12-25 12:16:19 +01:00
Родитель 8bc7468f4c
Коммит 1ee0175bfa
3 изменённых файлов: 20 добавлений и 0 удалений

Просмотреть файл

@ -231,6 +231,11 @@ toolbar:not(.inline-toolbar):not(:-moz-lwtheme)
height: 18px;
}
.toolbarbutton-1[disabled=true]:-moz-lwtheme,
.toolbarbutton-menubutton-button[disabled=true]:-moz-lwtheme {
color: inherit;
}
toolbar[mode="full"] .toolbarbutton-1 {
min-width: 55px;
}

Просмотреть файл

@ -203,6 +203,11 @@ toolbar:not([mode="icons"]) .toolbarbutton-1 > .toolbarbutton-menubutton-button
height: 18px;
}
.toolbarbutton-1[disabled=true]:-moz-lwtheme,
.toolbarbutton-menubutton-button[disabled=true]:-moz-lwtheme {
color: inherit !important;
}
.toolbarbutton-1[disabled="true"] .toolbarbutton-text,
.toolbarbutton-1[disabled="true"] .toolbarbutton-icon,
.toolbarbutton-1[type="menu-button"] > .toolbarbutton-menubutton-button[disabled="true"]

Просмотреть файл

@ -77,6 +77,16 @@ toolbox[labelalign="end"] .toolbarbutton-1[type="menu-button"]
padding: 1px 5px !important;
}
.toolbarbutton-1[disabled=true]:-moz-lwtheme,
.toolbarbutton-menubutton-button[disabled=true]:-moz-lwtheme {
color: inherit;
text-shadow: inherit;
}
.toolbarbutton-1[disabled=true]:-moz-lwtheme .toolbarbutton-text {
opacity: .4;
}
toolbox[labelalign="end"] > toolbar[mode="full"] .toolbarbutton-1 .toolbarbutton-text {
padding-inline-start: 2px;
}