summaryrefslogtreecommitdiffstats
path: root/devtools/client/aboutdebugging/aboutdebugging.css
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /devtools/client/aboutdebugging/aboutdebugging.css
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'devtools/client/aboutdebugging/aboutdebugging.css')
-rw-r--r--devtools/client/aboutdebugging/aboutdebugging.css199
1 files changed, 199 insertions, 0 deletions
diff --git a/devtools/client/aboutdebugging/aboutdebugging.css b/devtools/client/aboutdebugging/aboutdebugging.css
new file mode 100644
index 000000000..5079c4928
--- /dev/null
+++ b/devtools/client/aboutdebugging/aboutdebugging.css
@@ -0,0 +1,199 @@
+/* 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/. */
+
+html, body {
+ height: 100%;
+ width: 100%;
+}
+
+h2, h3, h4 {
+ margin-bottom: 10px;
+}
+
+button {
+ padding-left: 20px;
+ padding-right: 20px;
+ min-width: 100px;
+ margin: 0 4px;
+}
+
+/* Category panels */
+
+.category {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+}
+
+.category-name {
+ cursor: default;
+}
+
+.app {
+ height: 100%;
+ width: 100%;
+ display: flex;
+ flex-direction: row;
+}
+
+.main-content {
+ flex: 1;
+}
+
+.panel {
+ max-width: 800px;
+}
+
+/* Targets */
+
+.targets {
+ margin-bottom: 35px;
+}
+
+.target-list {
+ margin: 0;
+ padding: 0;
+}
+
+.target-container {
+ margin-top: 5px;
+ min-height: 34px;
+ display: flex;
+ flex-direction: row;
+ align-items: start;
+}
+
+.target-icon {
+ height: 24px;
+ margin: 0 5px 0 0;
+}
+
+.target-icon:not([src]) {
+ display: none;
+}
+
+.inverted-icons .target-icon {
+ filter: invert(30%);
+}
+
+.target {
+ flex: 1;
+ margin-top: 2px;
+ /* This is silly: https://bugzilla.mozilla.org/show_bug.cgi?id=1086218#c4. */
+ min-width: 0;
+}
+
+.target-details {
+ margin: 0;
+ padding: 0;
+ list-style-type: none
+}
+
+.target-detail {
+ display: flex;
+ font-size: 12px;
+ margin-top: 7px;
+ margin-bottom: 7px;
+}
+
+.target-detail a {
+ cursor: pointer;
+ white-space: nowrap;
+}
+
+.target-detail strong {
+ white-space: nowrap;
+}
+
+.target-detail span {
+ /* Truncate items that are too long (e.g. URLs that would break the UI). */
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+}
+
+.target-detail > :not(:first-child) {
+ margin-left: 8px;
+}
+
+.target-status {
+ box-sizing: border-box;
+ display: inline-block;
+
+ min-width: 50px;
+ margin: 4px 5px 0 0;
+ padding: 2px;
+
+ border-width: 1px;
+ border-style: solid;
+
+ font-size: 0.6em;
+ text-align: center;
+}
+
+.target-status-stopped {
+ border-color: grey;
+ background-color: lightgrey;
+}
+
+.target-status-running {
+ border-color: limegreen;
+ background-color: palegreen;
+}
+
+.target-name {
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+.addons-controls {
+ display: flex;
+ flex-direction: row;
+}
+
+.addons-install-error {
+ background-color: #f3b0b0;
+ padding: 5px 10px;
+ margin: 5px 4px 5px 0px;
+}
+
+.service-worker-disabled .warning,
+.addons-install-error .warning {
+ background-image: url(chrome://devtools/skin/images/alerticon-warning.png);
+ background-size: 13px 12px;
+ margin-right: 10px;
+ display: inline-block;
+ width: 13px;
+ height: 12px;
+}
+
+@media (min-resolution: 1.1dppx) {
+ .service-worker-disabled .warning,
+ .addons-install-error .warning {
+ background-image: url(chrome://devtools/skin/images/alerticon-warning@2x.png);
+ }
+}
+
+.addons-options {
+ flex: 1;
+}
+
+.addons-debugging-label {
+ display: inline-block;
+ margin-inline-end: 1ch;
+}
+
+.error-page {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-direction: column;
+ width: 100%;
+ height: 100%;
+}
+
+.error-page .error-page-details {
+ color: gray;
+}