2016-10-15 03:31:04 +03:00
|
|
|
/* 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/. */
|
|
|
|
|
2018-10-12 11:46:34 +03:00
|
|
|
.layout-container {
|
2016-10-15 03:31:04 +03:00
|
|
|
height: 100%;
|
2016-11-12 16:00:48 +03:00
|
|
|
width: 100%;
|
2018-10-11 18:31:53 +03:00
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: auto;
|
2017-03-01 01:18:28 +03:00
|
|
|
min-width: 200px;
|
2016-10-15 03:31:04 +03:00
|
|
|
}
|
|
|
|
|
2018-10-12 11:46:34 +03:00
|
|
|
.layout-container .accordion ._content {
|
2018-08-28 17:43:39 +03:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2018-10-11 18:31:53 +03:00
|
|
|
#layout-container .accordion ._header {
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2016-11-29 14:33:04 +03:00
|
|
|
/**
|
2018-09-05 23:04:16 +03:00
|
|
|
* Common styles for the layout container
|
2016-11-29 14:33:04 +03:00
|
|
|
*/
|
|
|
|
|
2018-10-12 11:46:34 +03:00
|
|
|
.layout-container li {
|
2018-04-30 18:24:04 +03:00
|
|
|
padding: 3px 0;
|
2018-08-28 17:43:40 +03:00
|
|
|
-moz-user-select: none;
|
2016-11-29 14:33:04 +03:00
|
|
|
}
|
|
|
|
|
2018-10-12 11:46:34 +03:00
|
|
|
.layout-container input {
|
2018-04-30 18:24:04 +03:00
|
|
|
margin-inline-end: 7px;
|
2018-05-17 18:20:32 +03:00
|
|
|
vertical-align: middle;
|
2017-03-29 23:31:46 +03:00
|
|
|
}
|
|
|
|
|
2018-10-12 11:46:34 +03:00
|
|
|
.layout-container label {
|
2018-04-30 18:24:04 +03:00
|
|
|
margin-inline-start: -3px;
|
2017-03-29 23:31:46 +03:00
|
|
|
}
|
|
|
|
|
2018-09-05 23:04:16 +03:00
|
|
|
.layout-color-swatch {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
margin-inline-start: -1px;
|
|
|
|
border: 1px solid var(--theme-highlight-gray);
|
|
|
|
border-radius: 50%;
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout-color-value {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-08-23 04:07:08 +03:00
|
|
|
/* Layout Properties: Common styles used for the Box Model and Flexbox Properties */
|
|
|
|
|
|
|
|
.layout-properties-header {
|
2018-08-28 17:43:39 +03:00
|
|
|
font-size: 12px;
|
2018-08-23 04:07:08 +03:00
|
|
|
padding: 2px 3px;
|
|
|
|
-moz-user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout-properties-expander {
|
|
|
|
vertical-align: middle;
|
|
|
|
display: inline-block;
|
|
|
|
margin-inline-start: 2px;
|
|
|
|
margin-inline-end: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout-properties-wrapper {
|
|
|
|
column-width: 250px;
|
|
|
|
column-gap: 20px;
|
|
|
|
column-rule: 1px solid var(--theme-splitter-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout-properties-wrapper .computed-property-view {
|
|
|
|
padding-inline-start: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout-properties-wrapper .computed-property-name-container {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout-properties-wrapper .computed-property-value-container {
|
|
|
|
flex: 1;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2018-09-05 23:04:16 +03:00
|
|
|
/**
|
|
|
|
* Flex Container
|
|
|
|
*/
|
|
|
|
|
2018-08-28 17:43:39 +03:00
|
|
|
#layout-flexbox-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2018-10-11 18:31:53 +03:00
|
|
|
#layout-flexbox-container .flex-header-content:not(.flex-item-shown) {
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
#layout-flexbox-container .flex-header-content:not(.flex-item-shown) .objectBox {
|
|
|
|
max-width: calc(100% - 20px);
|
|
|
|
margin-inline-end: 5px;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2018-09-18 16:46:01 +03:00
|
|
|
/**
|
|
|
|
* Header
|
|
|
|
*/
|
|
|
|
|
|
|
|
.flex-header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 32px;
|
2018-09-18 16:46:02 +03:00
|
|
|
padding: 0 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-header-button-prev::before {
|
|
|
|
background-image: url("chrome://devtools/skin/images/arrowhead-left.svg");
|
|
|
|
background-size: 16px;
|
2018-09-18 16:46:01 +03:00
|
|
|
}
|
|
|
|
|
2018-09-18 16:46:01 +03:00
|
|
|
.flex-header-content {
|
|
|
|
flex: 1;
|
2018-09-18 16:46:02 +03:00
|
|
|
padding-top: 2px;
|
|
|
|
padding-inline-start: 20px;
|
|
|
|
-moz-user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-header-content.flex-item-shown {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 0;
|
2018-09-18 16:46:01 +03:00
|
|
|
}
|
|
|
|
|
2018-08-28 17:43:40 +03:00
|
|
|
/**
|
|
|
|
* Flex Item List
|
|
|
|
*/
|
|
|
|
|
2018-10-11 19:05:08 +03:00
|
|
|
.flex-header + .flex-item-list {
|
|
|
|
border-block-start: 1px solid var(--theme-splitter-color);
|
|
|
|
}
|
|
|
|
|
2018-08-30 00:38:08 +03:00
|
|
|
.flex-item-list {
|
2018-08-28 17:43:40 +03:00
|
|
|
font-size: 12px;
|
|
|
|
margin: 0;
|
2018-08-30 00:38:08 +03:00
|
|
|
padding-inline-start: 34px;
|
2018-08-28 17:43:40 +03:00
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
2018-10-11 18:31:53 +03:00
|
|
|
overflow: hidden;
|
2018-08-28 17:43:40 +03:00
|
|
|
}
|
|
|
|
|
2018-08-30 00:38:08 +03:00
|
|
|
.flex-item-list .devtools-button {
|
|
|
|
background-color: transparent;
|
2018-10-11 18:31:53 +03:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
inline-size: 100%;
|
|
|
|
text-align: start;
|
2018-08-30 00:38:08 +03:00
|
|
|
}
|
|
|
|
|
2018-09-08 03:00:27 +03:00
|
|
|
/**
|
|
|
|
* Flex Item Selector
|
|
|
|
*/
|
|
|
|
|
|
|
|
#flex-item-selector {
|
|
|
|
background-position: right 4px center;
|
|
|
|
padding-left: 0;
|
|
|
|
vertical-align: middle;
|
|
|
|
width: 140px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#flex-item-selector .objectBox-node {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 12px;
|
|
|
|
overflow: hidden;
|
|
|
|
padding-top: 0.15em;
|
|
|
|
text-align: left;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 85%;
|
|
|
|
}
|
|
|
|
|
2018-10-08 12:42:05 +03:00
|
|
|
/**
|
|
|
|
* Flex Item Sizing Outline
|
|
|
|
*/
|
|
|
|
|
|
|
|
.flex-outline-container {
|
2018-10-11 19:05:08 +03:00
|
|
|
border-block-start: 1px solid var(--theme-splitter-color);
|
2018-10-08 12:42:05 +03:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline {
|
|
|
|
display: grid;
|
|
|
|
margin: 2em 0;
|
|
|
|
grid-auto-rows: 35px;
|
|
|
|
flex-basis: 80%;
|
|
|
|
max-width: 450px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline.column {
|
|
|
|
transform: translate(50%, -2em) rotate(.25turn);
|
|
|
|
transform-origin: center left;
|
|
|
|
flex-basis: 150px;
|
|
|
|
margin-bottom: 120px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-final,
|
|
|
|
.flex-outline-basis,
|
|
|
|
.flex-outline-delta {
|
|
|
|
grid-row: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-final {
|
2018-10-14 22:24:38 +03:00
|
|
|
border: 2px solid currentColor;
|
2018-10-08 12:42:05 +03:00
|
|
|
position: relative;
|
|
|
|
grid-column: final-start / final-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-final.clamped::after {
|
|
|
|
content: "";
|
|
|
|
background-image: url(chrome://devtools/skin/images/lock.svg);
|
|
|
|
background-size: 16px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center 1px;
|
|
|
|
fill: currentColor;
|
|
|
|
-moz-context-properties: fill;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
position: absolute;
|
|
|
|
right: -10px;
|
|
|
|
top: 6px;
|
2018-10-14 22:24:38 +03:00
|
|
|
/* Making sure the icon is visible against any background by creating a plain background
|
|
|
|
around its shape, using a drop-shadow filter. */
|
|
|
|
filter:
|
|
|
|
drop-shadow(1px 0px 0px var(--theme-body-background))
|
|
|
|
drop-shadow(0px 1px 0px var(--theme-body-background))
|
|
|
|
drop-shadow(-1px 0px 0px var(--theme-body-background))
|
|
|
|
drop-shadow(0px -1px 0px var(--theme-body-background));
|
2018-10-08 12:42:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline.column .flex-outline-final.clamped::after {
|
|
|
|
transform: rotate(-.25turn);
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-basis {
|
|
|
|
border-style: dotted;
|
|
|
|
border-width: 3px;
|
2018-10-14 22:24:38 +03:00
|
|
|
margin: 1px;
|
2018-10-08 12:42:05 +03:00
|
|
|
grid-column: basis-start / basis-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-basis.zero-basis {
|
|
|
|
border-width: 0 0 0 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-delta {
|
|
|
|
grid-column: delta-start / delta-end;
|
2018-10-14 22:24:38 +03:00
|
|
|
margin: 3px 0;
|
|
|
|
opacity: .5;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-delta::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
left: 2px;
|
|
|
|
right: 2px;
|
|
|
|
top: calc(50% - .5px);
|
|
|
|
height: 1px;
|
|
|
|
background: currentColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-delta::after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
width: 5px;
|
|
|
|
height: 5px;
|
|
|
|
top: 50%;
|
|
|
|
border: 1px solid currentColor;
|
2018-10-08 12:42:05 +03:00
|
|
|
}
|
|
|
|
|
2018-10-14 22:24:38 +03:00
|
|
|
.flex-outline.growing .flex-outline-delta:after {
|
|
|
|
right: 2px;
|
|
|
|
border-width: 1px 1px 0 0;
|
|
|
|
transform-origin: top right;
|
|
|
|
transform: rotate(.125turn);
|
2018-10-08 12:42:05 +03:00
|
|
|
}
|
|
|
|
|
2018-10-14 22:24:38 +03:00
|
|
|
.flex-outline.shrinking .flex-outline-delta:after {
|
|
|
|
left: 2px;
|
|
|
|
border-width: 1px 0 0 1px;
|
|
|
|
transform-origin: top left;
|
|
|
|
transform: rotate(-.125turn);
|
2018-10-08 12:42:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-point {
|
|
|
|
position: relative;
|
|
|
|
-moz-user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-point {
|
|
|
|
grid-row: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-point.basis {
|
|
|
|
grid-column-end: basis-end;
|
|
|
|
justify-self: end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline.shrinking .flex-outline-point.basis {
|
|
|
|
grid-column-start: basis-end;
|
|
|
|
justify-self: start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-point.final {
|
|
|
|
grid-column-start: final-end;
|
|
|
|
left: -1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline.shrinking .flex-outline-point.final {
|
|
|
|
grid-column-end: final-end;
|
|
|
|
grid-column-start: unset;
|
|
|
|
justify-self: end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-point.min {
|
|
|
|
grid-column: min;
|
|
|
|
place-self: end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline.shrinking .flex-outline-point.min {
|
|
|
|
place-self: end start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-point.max {
|
|
|
|
grid-column: max;
|
|
|
|
align-self: end;
|
|
|
|
left: -1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-point::before {
|
|
|
|
content: attr(data-label);
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
padding: 0 3px;
|
|
|
|
height: 10px;
|
|
|
|
border-color: currentColor;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline.column .flex-outline-point::before {
|
|
|
|
padding: 0;
|
|
|
|
writing-mode: sideways-lr;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-point.basis::before,
|
|
|
|
.flex-outline-point.final::before {
|
|
|
|
top: -12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-point.min::before,
|
|
|
|
.flex-outline-point.max::before {
|
|
|
|
bottom: -12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline.column .flex-outline-point.min::before,
|
|
|
|
.flex-outline.column .flex-outline-point.min::before {
|
|
|
|
text-indent: -12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-point.final::before,
|
|
|
|
.flex-outline.shrinking .flex-outline-point.min::before,
|
|
|
|
.flex-outline-point.max::before,
|
|
|
|
.flex-outline.shrinking .flex-outline-point.basis::before {
|
|
|
|
border-width: 0 0 0 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-outline-point.basis::before,
|
|
|
|
.flex-outline-point.min::before,
|
|
|
|
.flex-outline.shrinking .flex-outline-point.final::before {
|
|
|
|
border-width: 0 1px 0 0;
|
|
|
|
}
|
|
|
|
|
2018-08-30 00:38:08 +03:00
|
|
|
/**
|
|
|
|
* Flex Item Sizing Properties
|
|
|
|
*/
|
|
|
|
|
2018-10-12 11:46:34 +03:00
|
|
|
.flex-item-sizing {
|
|
|
|
margin: 20px;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-item-sizing .section {
|
|
|
|
--padding: 10px;
|
|
|
|
margin-block-start: var(--padding);
|
|
|
|
padding: var(--padding) 0 0 0;
|
|
|
|
border-block-start: 1px solid var(--theme-splitter-color);
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr max-content;
|
|
|
|
grid-column-gap: var(--padding);
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-item-sizing .section:first-child {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-item-sizing .name {
|
|
|
|
font-weight: 600;
|
|
|
|
grid-column: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-item-sizing .value {
|
|
|
|
text-align: end;
|
|
|
|
font-weight: 600;
|
2018-10-08 12:42:05 +03:00
|
|
|
}
|
|
|
|
|
2018-10-12 11:46:34 +03:00
|
|
|
.flex-item-sizing .css-property-link {
|
|
|
|
grid-column: 2;
|
|
|
|
text-align: end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-item-sizing .reasons,
|
|
|
|
.flex-item-sizing .reasons li {
|
|
|
|
grid-column: 1 / 3;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
2018-08-30 00:38:08 +03:00
|
|
|
}
|
|
|
|
|
2018-08-23 04:07:08 +03:00
|
|
|
/**
|
|
|
|
* Flex Container Properties
|
|
|
|
*/
|
|
|
|
|
|
|
|
#flex-container-properties {
|
2018-10-11 19:05:08 +03:00
|
|
|
border-block-start: 1px solid var(--theme-splitter-color);
|
2018-08-28 17:43:39 +03:00
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#flex-container-properties .layout-properties-header {
|
|
|
|
padding: 5px 0;
|
|
|
|
padding-inline-start: 20px;
|
2018-08-23 04:07:08 +03:00
|
|
|
}
|
|
|
|
|
2016-11-29 14:38:08 +03:00
|
|
|
/**
|
|
|
|
* Grid Container
|
|
|
|
*/
|
|
|
|
|
|
|
|
#layout-grid-container {
|
|
|
|
display: flex;
|
2017-02-23 08:58:56 +03:00
|
|
|
flex-direction: column;
|
2018-08-28 17:43:39 +03:00
|
|
|
padding: 5px;
|
2016-11-29 14:38:08 +03:00
|
|
|
}
|
|
|
|
|
2018-09-05 23:04:16 +03:00
|
|
|
.grid-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 1 auto;
|
|
|
|
min-width: 140px;
|
|
|
|
margin-inline-start: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.grid-container:first-child {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.grid-container > span {
|
|
|
|
font-weight: 600;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.grid-container > ul {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2017-02-23 08:58:56 +03:00
|
|
|
/**
|
|
|
|
* Grid Content
|
|
|
|
*/
|
|
|
|
|
|
|
|
.grid-content {
|
|
|
|
display: flex;
|
2017-03-29 23:31:46 +03:00
|
|
|
flex-wrap: wrap;
|
2017-02-23 08:58:56 +03:00
|
|
|
flex: 1;
|
2018-08-28 17:43:39 +03:00
|
|
|
padding: 5px 0;
|
2017-03-29 23:31:46 +03:00
|
|
|
}
|
|
|
|
|
2017-02-23 08:58:56 +03:00
|
|
|
/**
|
|
|
|
* Grid Outline
|
|
|
|
*/
|
|
|
|
|
2017-06-09 04:12:25 +03:00
|
|
|
.grid-outline-container {
|
2018-04-30 18:24:04 +03:00
|
|
|
margin: 5px;
|
2017-05-25 04:40:07 +03:00
|
|
|
}
|
|
|
|
|
2017-06-09 04:12:25 +03:00
|
|
|
.grid-outline-container svg {
|
2017-05-25 04:40:07 +03:00
|
|
|
overflow: visible;
|
2017-02-23 08:58:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.grid-outline-border {
|
|
|
|
fill: none;
|
2017-05-10 17:07:12 +03:00
|
|
|
stroke: currentColor;
|
2017-03-24 23:01:09 +03:00
|
|
|
stroke-width: 0.75;
|
|
|
|
vector-effect: non-scaling-stroke;
|
2017-02-23 08:58:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.grid-outline-cell {
|
|
|
|
pointer-events: all;
|
2017-05-10 17:07:12 +03:00
|
|
|
stroke: currentColor;
|
2017-02-23 08:58:56 +03:00
|
|
|
stroke-dasharray: 0.5, 2;
|
2017-03-24 23:01:09 +03:00
|
|
|
vector-effect: non-scaling-stroke;
|
2017-02-23 08:58:56 +03:00
|
|
|
}
|
|
|
|
|
2017-02-26 09:42:45 +03:00
|
|
|
.grid-outline-cell:hover {
|
|
|
|
opacity: 0.45;
|
2017-05-10 17:07:12 +03:00
|
|
|
fill: currentColor;
|
2017-02-26 09:42:45 +03:00
|
|
|
}
|
|
|
|
|
2017-04-11 22:31:22 +03:00
|
|
|
.grid-outline-line {
|
|
|
|
opacity: 0;
|
|
|
|
stroke-width: 10;
|
|
|
|
}
|
|
|
|
|
2017-05-25 04:40:07 +03:00
|
|
|
.grid-outline-text {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
color: var(--theme-graphs-full-red);
|
|
|
|
}
|
|
|
|
|
|
|
|
.grid-outline-text-icon {
|
|
|
|
background: url("chrome://devtools/skin/images/sad-face.svg");
|
|
|
|
margin-inline-end: 5px;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
2017-03-29 23:31:46 +03:00
|
|
|
/**
|
|
|
|
* Settings Item
|
|
|
|
*/
|
|
|
|
|
|
|
|
.grid-settings-item label {
|
|
|
|
line-height: 16px;
|
|
|
|
}
|