woocommerce/plugins/woocommerce-admin/client/components/chart/style.scss

330 lines
5.3 KiB
SCSS
Raw Normal View History

/** @format */
2018-08-08 11:00:45 +00:00
.woocommerce-chart {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
margin: -$gap;
2018-09-05 11:20:12 +00:00
border-top: 1px solid $core-grey-light-700;
2018-08-08 11:00:45 +00:00
.woocommerce-chart__header {
min-height: 50px;
2018-09-05 11:20:12 +00:00
border-top: 1px solid $core-grey-light-700;
border-bottom: 1px solid $core-grey-light-700;
2018-08-13 11:09:44 +00:00
display: flex;
flex-wrap: nowrap;
flex-direction: row;
justify-content: flex-start;
align-items: center;
2018-09-04 13:03:46 +00:00
width: 100%;
2018-08-13 11:09:44 +00:00
.woocommerce-chart__title {
height: 18px;
color: $black;
font-size: 15px;
font-weight: 600;
line-height: 18px;
2018-08-13 11:27:15 +00:00
margin-left: $gap;
2018-09-04 13:18:15 +00:00
margin-right: $gap;
2018-08-13 11:09:44 +00:00
}
}
2018-08-08 11:00:45 +00:00
.woocommerce-chart__body {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
width: 100%;
2018-08-08 11:00:45 +00:00
&.woocommerce-chart__body-column {
flex-direction: column;
}
}
2018-08-08 11:00:45 +00:00
.woocommerce-chart__footer {
width: 100%;
.woocommerce-legend {
&.woocommerce-legend__direction-column {
height: 100%;
min-height: none;
2018-09-05 11:20:12 +00:00
border-right: none;
margin-bottom: $gap;
}
}
}
svg {
overflow: visible;
}
.tooltip {
2018-09-05 11:20:12 +00:00
border: 1px solid $core-grey-light-700;
position: absolute;
display: none;
2018-09-04 13:03:46 +00:00
min-width: 324px;
height: auto;
background-color: $white;
text-align: left;
2018-09-04 13:03:46 +00:00
padding: 17px;
box-shadow: 0 3px 20px 0 rgba(18, 24, 30, 0.1), 0 1px 3px 0 rgba(18, 24, 30, 0.1);
flex-direction: column;
flex-wrap: nowrap;
justify-content: flex-start;
h4 {
2018-09-04 13:03:46 +00:00
text-align: left;
line-height: 18px;
width: 100%;
2018-09-04 13:03:46 +00:00
text-transform: uppercase;
font-size: 11px;
color: $core-grey-dark-100;
opacity: 0.6;
margin-top: 0;
}
ul {
list-style: none;
margin-bottom: 2px;
margin-top: 2px;
font-size: 14px;
li {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: center;
2018-09-04 13:03:46 +00:00
&.key-row {
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100%;
.key-container {
width: 100%;
min-width: 100px;
2018-09-07 12:45:29 +00:00
.key-color {
2018-09-04 13:03:46 +00:00
display: inline-block;
2018-09-05 11:20:12 +00:00
width: 16px;
height: 16px;
2018-09-04 13:03:46 +00:00
margin-right: 8px;
}
.key-key {
margin-right: 6px;
}
}
.key-value {
font-weight: 600;
}
}
}
}
}
.bargroup {
&rect {
shape-rendering: crispEdges;
}
}
.grid {
2018-09-04 11:31:18 +00:00
.tick {
line {
2018-09-05 11:20:12 +00:00
stroke: $core-grey-light-500;
2018-09-04 11:31:18 +00:00
stroke-width: 1;
shape-rendering: crispEdges;
}
&:first-child {
line {
stroke: $core-grey-dark-500;
}
}
2018-09-04 13:03:46 +00:00
&:last-child {
line {
opacity: 0;
}
}
}
}
.tick {
padding-top: 10px;
2018-07-25 14:58:32 +00:00
stroke-width: 1;
}
2018-09-04 11:31:18 +00:00
.axis-month {
.tick {
2018-09-04 13:03:46 +00:00
opacity: 0;
2018-09-04 11:31:18 +00:00
&:first-child {
2018-09-04 13:03:46 +00:00
opacity: 1;
2018-09-04 11:31:18 +00:00
}
}
}
.y-axis {
2018-09-07 10:28:02 +00:00
text-anchor: start;
&.tick {
&text {
fill: $core-grey-dark-500;
}
}
}
2018-07-25 14:58:32 +00:00
line {
&.focus-grid {
2018-09-05 11:20:12 +00:00
stroke: $core-grey-light-700;
2018-07-25 14:58:32 +00:00
stroke-width: 1px;
}
}
&.is-placeholder {
@include placeholder();
display: inline-block;
height: 200px;
width: 100%;
margin: 0;
padding: 0;
margin-bottom: $gap;
border: 1px solid $core-grey-light-700;
}
2018-07-25 14:58:32 +00:00
}
.woocommerce-chart__container {
position: relative;
width: 100%;
.tooltip {
position: absolute;
}
}
.woocommerce-legend {
2018-08-13 11:09:44 +00:00
color: $black;
display: flex;
height: 100%;
margin: 0;
&.woocommerce-legend__direction-column {
flex-direction: column;
2018-09-05 11:20:12 +00:00
border-right: 1px solid $core-grey-light-700;
height: 300px;
min-width: 320px;
li {
margin: 0;
padding: 0;
button {
height: 32px;
padding: 0 17px;
}
&:first-child {
margin-top: 17px;
}
}
}
&.woocommerce-legend__direction-row {
flex-direction: row;
li {
2018-09-04 13:18:15 +00:00
padding: 0;
margin: 0;
button {
2018-09-04 13:18:15 +00:00
padding: 0 17px;
.woocommerce-legend__item-container {
height: 50px;
align-items: center;
.woocommerce-legend__item-checkmark {
top: 17px;
}
.woocommerce-legend__item-title {
margin-right: 17px;
}
}
}
}
}
li {
&.woocommerce-legend__item {
button {
&:hover {
2018-09-07 09:21:52 +00:00
background-color: $core-grey-light-100;
}
}
}
button {
2018-08-13 10:32:08 +00:00
background-color: $white;
display: inline-flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
width: 100%;
border: none;
padding: 0;
&:focus {
outline: none;
}
.woocommerce-legend__item-container {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
position: relative;
padding: 3px 0 3px 24px;
cursor: pointer;
font-size: 13px;
user-select: none;
width: 100%;
&:hover {
input {
~ .woocommerce-legend__item-checkmark {
2018-07-25 14:58:32 +00:00
background-color: $core-grey-light-200;
}
}
}
.woocommerce-legend__item-checkmark {
position: absolute;
top: 2px;
left: 0;
height: 16px;
width: 16px;
background-color: $white;
&:after {
content: '';
position: absolute;
display: none;
}
&.woocommerce-legend__item-checkmark-checked {
&:after {
display: block;
left: 6px;
top: 4px;
width: 3px;
height: 6px;
border: solid $white;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}
}
}
.woocommerce-legend__item-total {
font-weight: bold;
}
}
}
}
}