зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1426057 - Move chart style from skin/widgets.css StatisticsPanel.css r=Honza
MozReview-Commit-ID: B08TtEdZ9h --HG-- extra : rebase_source : ff41bc9846400f41bc8152112c92c3bc0e595898
This commit is contained in:
Родитель
4022bf4f97
Коммит
52515b78c1
|
@ -128,6 +128,7 @@ devtools.jar:
|
|||
skin/images/performance-details-call-tree.svg (themes/images/performance-details-call-tree.svg)
|
||||
skin/images/performance-details-flamegraph.svg (themes/images/performance-details-flamegraph.svg)
|
||||
skin/breadcrumbs.css (themes/breadcrumbs.css)
|
||||
skin/chart.css (themes/chart.css)
|
||||
skin/widgets.css (themes/widgets.css)
|
||||
skin/images/power.svg (themes/images/power.svg)
|
||||
skin/images/filetypes/dir-close.svg (themes/images/filetypes/dir-close.svg)
|
||||
|
|
|
@ -4,6 +4,8 @@
|
|||
|
||||
/* Statistics panel */
|
||||
|
||||
@import "chrome://devtools/skin/chart.css";
|
||||
|
||||
.statistics-panel {
|
||||
display: flex;
|
||||
height: 100vh;
|
||||
|
@ -194,4 +196,3 @@
|
|||
height: 1px;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
|
||||
<?xml-stylesheet href="chrome://devtools/content/shared/widgets/widgets.css" type="text/css"?>
|
||||
<?xml-stylesheet href="chrome://devtools/content/shared/splitview.css" type="text/css"?>
|
||||
<?xml-stylesheet href="chrome://devtools/skin/chart.css" type="text/css"?>
|
||||
<?xml-stylesheet href="chrome://devtools/skin/widgets.css" type="text/css"?>
|
||||
<?xml-stylesheet href="chrome://devtools/skin/splitview.css" type="text/css"?>
|
||||
<?xml-stylesheet href="chrome://devtools/skin/styleeditor.css" type="text/css"?>
|
||||
|
|
|
@ -0,0 +1,135 @@
|
|||
/* 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/. */
|
||||
|
||||
/* Chart */
|
||||
|
||||
.generic-chart-container {
|
||||
/* Hack: force hardware acceleration */
|
||||
transform: translateZ(1px);
|
||||
}
|
||||
|
||||
.theme-dark .generic-chart-container {
|
||||
color: var(--theme-selection-color);
|
||||
}
|
||||
|
||||
.theme-light .generic-chart-container {
|
||||
color: var(--theme-body-color-alt);
|
||||
}
|
||||
|
||||
.chart-colored-blob {
|
||||
fill: var(--theme-content-color2);
|
||||
background: var(--theme-content-color2);
|
||||
}
|
||||
|
||||
/* Chart: Pie */
|
||||
|
||||
.pie-chart-slice {
|
||||
stroke-width: 1px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.theme-dark .pie-chart-slice {
|
||||
stroke: rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
.theme-light .pie-chart-slice {
|
||||
stroke: rgba(255,255,255,0.8);
|
||||
}
|
||||
|
||||
.theme-dark .pie-chart-slice[largest] {
|
||||
stroke-width: 2px;
|
||||
stroke: #fff;
|
||||
}
|
||||
|
||||
.theme-light .pie-chart-slice[largest] {
|
||||
stroke: #000;
|
||||
}
|
||||
|
||||
.pie-chart-label {
|
||||
text-anchor: middle;
|
||||
dominant-baseline: middle;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.theme-dark .pie-chart-label {
|
||||
fill: #000;
|
||||
}
|
||||
|
||||
.theme-light .pie-chart-label {
|
||||
fill: #fff;
|
||||
}
|
||||
|
||||
.pie-chart-container[slices="1"] > .pie-chart-slice {
|
||||
stroke-width: 0px;
|
||||
}
|
||||
|
||||
.pie-chart-slice,
|
||||
.pie-chart-label {
|
||||
transition: all 0.1s ease-out;
|
||||
}
|
||||
|
||||
.pie-chart-slice:not(:hover):not([focused]),
|
||||
.pie-chart-slice:not(:hover):not([focused]) + .pie-chart-label {
|
||||
transform: none !important;
|
||||
}
|
||||
|
||||
/* Chart: Table */
|
||||
|
||||
.table-chart-title {
|
||||
padding-bottom: 10px;
|
||||
font-size: 120%;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.table-chart-row {
|
||||
margin-top: 1px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.table-chart-grid:hover > .table-chart-row {
|
||||
transition: opacity 0.1s ease-in-out;
|
||||
}
|
||||
|
||||
.table-chart-grid:not(:hover) > .table-chart-row {
|
||||
transition: opacity 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
.generic-chart-container:hover > .table-chart-grid:hover > .table-chart-row:not(:hover),
|
||||
.generic-chart-container:hover ~ .table-chart-container > .table-chart-grid > .table-chart-row:not([focused]) {
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
.table-chart-row-box {
|
||||
width: 8px;
|
||||
height: 1.5em;
|
||||
margin-inline-end: 10px;
|
||||
}
|
||||
|
||||
.table-chart-row-label {
|
||||
width: 8em;
|
||||
padding-inline-end: 6px;
|
||||
cursor: inherit;
|
||||
}
|
||||
|
||||
.table-chart-totals {
|
||||
margin-top: 8px;
|
||||
padding-top: 6px;
|
||||
}
|
||||
|
||||
.table-chart-totals {
|
||||
border-top: 1px solid var(--theme-body-color-alt); /* Grey foreground text */
|
||||
}
|
||||
|
||||
.table-chart-summary-label {
|
||||
font-weight: 600;
|
||||
padding: 1px 0px;
|
||||
}
|
||||
|
||||
.theme-dark .table-chart-summary-label {
|
||||
color: var(--theme-selection-color);
|
||||
}
|
||||
|
||||
.theme-light .table-chart-summary-label {
|
||||
color: var(--theme-body-color);
|
||||
}
|
|
@ -789,138 +789,6 @@
|
|||
0px 1px rgba(255,255,255,0.8);
|
||||
}
|
||||
|
||||
/* Charts */
|
||||
|
||||
.generic-chart-container {
|
||||
/* Hack: force hardware acceleration */
|
||||
transform: translateZ(1px);
|
||||
}
|
||||
|
||||
.theme-dark .generic-chart-container {
|
||||
color: var(--theme-selection-color);
|
||||
}
|
||||
|
||||
.theme-light .generic-chart-container {
|
||||
color: var(--theme-body-color-alt);
|
||||
}
|
||||
|
||||
.chart-colored-blob {
|
||||
fill: var(--theme-content-color2);
|
||||
background: var(--theme-content-color2);
|
||||
}
|
||||
|
||||
/* Charts: Pie */
|
||||
|
||||
.pie-chart-slice {
|
||||
stroke-width: 1px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.theme-dark .pie-chart-slice {
|
||||
stroke: rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
.theme-light .pie-chart-slice {
|
||||
stroke: rgba(255,255,255,0.8);
|
||||
}
|
||||
|
||||
.theme-dark .pie-chart-slice[largest] {
|
||||
stroke-width: 2px;
|
||||
stroke: #fff;
|
||||
}
|
||||
|
||||
.theme-light .pie-chart-slice[largest] {
|
||||
stroke: #000;
|
||||
}
|
||||
|
||||
.pie-chart-label {
|
||||
text-anchor: middle;
|
||||
dominant-baseline: middle;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.theme-dark .pie-chart-label {
|
||||
fill: #000;
|
||||
}
|
||||
|
||||
.theme-light .pie-chart-label {
|
||||
fill: #fff;
|
||||
}
|
||||
|
||||
.pie-chart-container[slices="1"] > .pie-chart-slice {
|
||||
stroke-width: 0px;
|
||||
}
|
||||
|
||||
.pie-chart-slice,
|
||||
.pie-chart-label {
|
||||
transition: all 0.1s ease-out;
|
||||
}
|
||||
|
||||
.pie-chart-slice:not(:hover):not([focused]),
|
||||
.pie-chart-slice:not(:hover):not([focused]) + .pie-chart-label {
|
||||
transform: none !important;
|
||||
}
|
||||
|
||||
/* Charts: Table */
|
||||
|
||||
.table-chart-title {
|
||||
padding-bottom: 10px;
|
||||
font-size: 120%;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.table-chart-row {
|
||||
margin-top: 1px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.table-chart-grid:hover > .table-chart-row {
|
||||
transition: opacity 0.1s ease-in-out;
|
||||
}
|
||||
|
||||
.table-chart-grid:not(:hover) > .table-chart-row {
|
||||
transition: opacity 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
.generic-chart-container:hover > .table-chart-grid:hover > .table-chart-row:not(:hover),
|
||||
.generic-chart-container:hover ~ .table-chart-container > .table-chart-grid > .table-chart-row:not([focused]) {
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
.table-chart-row-box {
|
||||
width: 8px;
|
||||
height: 1.5em;
|
||||
margin-inline-end: 10px;
|
||||
}
|
||||
|
||||
.table-chart-row-label {
|
||||
width: 8em;
|
||||
padding-inline-end: 6px;
|
||||
cursor: inherit;
|
||||
}
|
||||
|
||||
.table-chart-totals {
|
||||
margin-top: 8px;
|
||||
padding-top: 6px;
|
||||
}
|
||||
|
||||
.table-chart-totals {
|
||||
border-top: 1px solid var(--theme-body-color-alt); /* Grey foreground text */
|
||||
}
|
||||
|
||||
.table-chart-summary-label {
|
||||
font-weight: 600;
|
||||
padding: 1px 0px;
|
||||
}
|
||||
|
||||
.theme-dark .table-chart-summary-label {
|
||||
color: var(--theme-selection-color);
|
||||
}
|
||||
|
||||
.theme-light .table-chart-summary-label {
|
||||
color: var(--theme-body-color);
|
||||
}
|
||||
|
||||
/* Table Widget */
|
||||
|
||||
/* Table body */
|
||||
|
|
Загрузка…
Ссылка в новой задаче