mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
43 lines
881 B
CSS
43 lines
881 B
CSS
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#errorPageContainer {
|
|
background-image: url("chrome://global/skin/icons/information-64.png");
|
|
height: auto;
|
|
}
|
|
|
|
/* tablist starts out hidden, but JS may make it visible in response to
|
|
clicks on the radio buttons by setting an "available" attribute.
|
|
*/
|
|
#tabList {
|
|
display: none;
|
|
}
|
|
|
|
#tabList[available] {
|
|
display: -moz-box;
|
|
}
|
|
|
|
.radioRestoreContainer {
|
|
display: flex;
|
|
}
|
|
|
|
.radioRestoreButton {
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.radioRestoreButton:-moz-focusring {
|
|
outline: 1px dotted black;
|
|
}
|
|
|
|
.radioChooseLabel {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
/* We want errorTrailerDesc to have the same padding-top as errorShortDesc
|
|
has padding-bottom
|
|
*/
|
|
#errorTrailerDesc {
|
|
padding-top: 1em;
|
|
}
|