summaryrefslogtreecommitdiffstats
path: root/toolkit/crashreporter/content/crashes.css
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/crashreporter/content/crashes.css')
-rw-r--r--toolkit/crashreporter/content/crashes.css67
1 files changed, 67 insertions, 0 deletions
diff --git a/toolkit/crashreporter/content/crashes.css b/toolkit/crashreporter/content/crashes.css
new file mode 100644
index 0000000000..86cc8e3d1d
--- /dev/null
+++ b/toolkit/crashreporter/content/crashes.css
@@ -0,0 +1,67 @@
+/* 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;
+}
+
+.hidden {
+ display: none;
+}
+
+/* Table layout */
+
+table {
+ width: 100%;
+ padding-bottom: 2em;
+ border-spacing: 0;
+}
+
+th {
+ text-align: start;
+}
+
+th, td {
+ border-bottom: 1px solid var(--in-content-border-color);
+}
+
+th,
+#submitted td {
+ /* Unsubmitted table already gets spacing from button */
+ padding-block: 10px;
+}
+
+.submit-button,
+.crash-link {
+ float: inline-end;
+}
+
+/* Other elements */
+
+.table-title-container {
+ align-items: center;
+ display: flex;
+ justify-content: space-between;
+}
+
+.submitting {
+ background-image: image-set(
+ url(chrome://global/skin/icons/loading.png),
+ url(chrome://global/skin/icons/loading@2x.png) 2x
+ );
+ background-position: center;
+ background-repeat: no-repeat;
+ background-size: 16px;
+}
+
+.submitting .submit-crash-button-label {
+ display: none;
+}
+
+.failed-to-submit {
+ color: #ca8695;
+}