File size: 2,335 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
@import "../styles/widget-base";
@import "../styles/scoped-theme-for-widget";
@import "../styles/wp-admin";
@import "../styles/typography";
@import "@wordpress/base-styles/breakpoints";
$segmentedControlItemBorderRadius: 4px;
.jp-stats-widget {
container-type: inline-size;
// Offset the margin and padding of the `.postbox .inside` container.
margin: -11px -12px -12px;
}
.stats-widget-content {
font-family: $font-sf-pro-text;
// For both MiniChart and Highlights.
.segmented-control {
height: 36px;
min-width: 259px;
.segmented-control__item {
&:first-of-type .segmented-control__link {
border-top-left-radius: $segmentedControlItemBorderRadius;
border-bottom-left-radius: $segmentedControlItemBorderRadius;
}
&:last-of-type .segmented-control__link {
border-top-right-radius: $segmentedControlItemBorderRadius;
border-bottom-right-radius: $segmentedControlItemBorderRadius;
}
// Black segmented controls.
.segmented-control__link:hover {
background-color: var(--color-neutral-0);
}
&.is-selected .segmented-control__link {
&,
&:hover,
&:focus {
background-color: var(--studio-black);
border-color: var(--studio-black);
}
}
&.is-selected + .segmented-control__item .segmented-control__link {
border-left-color: var(--studio-black);
}
}
.segmented-control__link {
color: var(--studio-gray-70);
font-weight: 600;
}
}
}
.stats-widget-wrapper {
padding: 24px;
background: var(--jetpack-white-off);
label {
cursor: auto;
font-family: $font-sf-pro-display;
}
}
// Shared styles for the stats widget cards.
.stats-widget-card {
padding: 16px;
color: var(--studio-gray-100);
background-color: var(--studio-white);
box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
border-radius: 4px;
}
.stats-widget-footer {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 24px;
a {
display: inline-block;
font-style: normal;
font-weight: 500;
font-size: $font-body-small;
line-height: 20px;
letter-spacing: -0.24px;
text-decoration-line: underline;
color: var(--studio-gray-100);
}
}
@container (max-width: #{$break-mobile}) {
@include stats-widget-single-column-view;
}
@media only screen and (max-width: $break-small) {
@include stats-widget-single-column-view;
}
|