diff options
Diffstat (limited to 'toolkit/crashreporter/content/crashes.css')
-rw-r--r-- | toolkit/crashreporter/content/crashes.css | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/toolkit/crashreporter/content/crashes.css b/toolkit/crashreporter/content/crashes.css new file mode 100644 index 0000000000..509ef32189 --- /dev/null +++ b/toolkit/crashreporter/content/crashes.css @@ -0,0 +1,74 @@ +/* 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/. */ + +:root { + font-family: sans-serif; + margin: 40px auto; + min-width: 30em; + max-width: 60em; +} + +table { + width: 100%; + padding-bottom: 2em; +} + +.float-end { + float: inline-end; +} +.hidden { + display: none; +} +.table-title-container { + align-items: center; + display: flex; + justify-content: space-between; +} +.wide-button { + display: block; + min-height: 32px; + padding-inline: 30px; +} +.submitting { + background-image: url(chrome://global/skin/icons/loading.png); + background-position: center; + background-repeat: no-repeat; + background-size: 16px; +} +.submitting .submit-crash-button-label { + display: none; +} +.failed-to-submit { + color: #ca8695; +} + +a.button-as-link { + appearance: none; + min-height: 30px; + color: var(--in-content-text-color) !important; + border: 1px solid var(--in-content-box-border-color) !important; + border-radius: 2px; + background-color: var(--in-content-page-background); + line-height: 30px; + margin: 4px 8px; + /* Ensure font-size isn't overridden by widget styling (e.g. in forms.css) */ + font-size: 1em; +} +a.button-as-link:hover { + background-color: var(--in-content-box-background-hover) !important; + text-decoration: none; +} +h2.lighter-font-weight { + font-weight: lighter; +} + +th { + text-align: start; +} + +@media (min-resolution: 1.1dppx) { + .submitting { + background-image: url(chrome://global/skin/icons/loading@2x.png); + } +} |