mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
e602e0d3d1
MozReview-Commit-ID: A8p602S4JgV --HG-- extra : rebase_source : 1ab26dd758328ca3b6d4523e6e51a0965525f602
133 lines
1.9 KiB
CSS
133 lines
1.9 KiB
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/. */
|
|
|
|
html, body {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
h2, h3, h4 {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
button {
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
min-width: 100px;
|
|
}
|
|
|
|
/* Category tabs */
|
|
|
|
.category {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-content: center;
|
|
}
|
|
|
|
.category-name {
|
|
cursor: default;
|
|
}
|
|
|
|
.app {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.main-content {
|
|
flex: 1;
|
|
}
|
|
|
|
.tab {
|
|
max-width: 800px;
|
|
}
|
|
|
|
/* Targets */
|
|
|
|
.targets {
|
|
margin-bottom: 35px;
|
|
}
|
|
|
|
.target-container {
|
|
margin-top: 5px;
|
|
min-height: 34px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.target-icon {
|
|
height: 24px;
|
|
margin: 6px 5px 0 0;
|
|
/* override the icon alignment and center it using margin-top */
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.target-icon:not([src]) {
|
|
display: none;
|
|
}
|
|
|
|
.inverted-icons .target-icon {
|
|
filter: invert(30%);
|
|
}
|
|
|
|
.target {
|
|
flex: 1;
|
|
}
|
|
|
|
.target-details {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none
|
|
}
|
|
|
|
.target-detail {
|
|
font-size: 12px;
|
|
margin-top: 7px;
|
|
}
|
|
|
|
.target-detail a {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.target-detail > :not(:first-child) {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.addons-controls {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.addons-install-error {
|
|
background-color: #f3b0b0;
|
|
padding: 5px 10px;
|
|
margin: 5px 4px 5px 0px;
|
|
}
|
|
|
|
.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) {
|
|
.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: 0 5px 5px 0;
|
|
}
|