* Remove components, core and modules LESS stylesheets * Remove variables LESS stylesheets * Remove app LESS stylesheets * Remove github-sync, onboarding LESS stylesheets * Remove main-light and IEEE LESS stylesheets * Remove Less loader configuration * Remove bootstrap-3 entrypoint * Rename bootstrap-5 entrypoint to bootstrap * Remove bootstrap-5 CSS folder and move stylesheets * Update CSS variables * Restore and update github-sync.scss path * Fix try-premium.scss path and fix undefined mixin error * Restore entrypoints * Simplify buildCssPath to always use main-style.css * Remove less from prettier formatting scripts * Remove less from addHook extension * Source format * Remove nvd3 file reference from prettierignore (equivalent of nvd3.scss) * Remove less and less-loader * Add SCSS files to pirates require hook GitOrigin-RevId: bd83c79f4d6ef7305d75993959a4dc5e7714ef9c
193 lines
2.9 KiB
SCSS
193 lines
2.9 KiB
SCSS
#metrics {
|
|
max-width: none;
|
|
padding: 0 var(--spacing-09);
|
|
width: auto;
|
|
|
|
svg.nvd3-svg {
|
|
width: 100%;
|
|
}
|
|
|
|
.overbox {
|
|
margin: 0;
|
|
padding: var(--spacing-10) var(--spacing-07);
|
|
background: #fff;
|
|
border: 1px solid #dfdfdf;
|
|
|
|
.box {
|
|
padding-bottom: var(--spacing-09);
|
|
overflow: hidden;
|
|
margin-bottom: var(--spacing-10);
|
|
border-bottom: 1px solid rgb(216 216 216);
|
|
|
|
.header {
|
|
margin-bottom: var(--spacing-07);
|
|
|
|
h4 {
|
|
font-size: 19px;
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.overbox-small {
|
|
padding: var(--spacing-04);
|
|
}
|
|
}
|
|
|
|
.print-button {
|
|
margin-right: var(--spacing-04);
|
|
font-size: 20px;
|
|
}
|
|
|
|
.title-button {
|
|
margin-right: 5px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.metric-col {
|
|
position: relative;
|
|
padding: var(--spacing-06);
|
|
}
|
|
|
|
svg {
|
|
display: block;
|
|
height: 250px;
|
|
|
|
text {
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
|
|
&:not(:root) {
|
|
overflow: visible;
|
|
}
|
|
|
|
&.hidden-legend-margin-fix {
|
|
margin-top: 15px;
|
|
height: 235px;
|
|
}
|
|
|
|
&.no-fill-opacity {
|
|
.nvd3 {
|
|
.nv-area {
|
|
fill-opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.nvtooltip {
|
|
z-index: 10;
|
|
}
|
|
|
|
// BEGIN: Metrics header
|
|
.metric-header-container {
|
|
h4 {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
> h4 {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.metric-tooltip {
|
|
top: -1em;
|
|
font-size: 0.5em;
|
|
}
|
|
}
|
|
|
|
// END: Metrics header
|
|
|
|
// BEGIN: Metrics footer
|
|
.metric-footer-container {
|
|
text-align: center;
|
|
}
|
|
|
|
// END: Metrics footer
|
|
|
|
// BEGIN: Metrics overlays
|
|
.metric-overlay-loading,
|
|
.metric-overlay-error,
|
|
.metric-overlay-backdrop {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
padding: 16px; /* 15px of .metric-col padding + 1px border */
|
|
padding-top: 56px; /* Same as above + 30px for title + 10px overbox padding */
|
|
}
|
|
|
|
.metric-overlay-loading {
|
|
padding: 175px 20%;
|
|
}
|
|
|
|
.metric-overlay-error {
|
|
display: none;
|
|
text-align: center;
|
|
padding-top: 175px;
|
|
}
|
|
|
|
.metric-overlay-backdrop {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.metric-overlay-backdrop-inner {
|
|
background-color: #fff;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
// END: Metrics overlays
|
|
}
|
|
|
|
#metrics-header {
|
|
@include media-breakpoint-up(lg) {
|
|
margin-bottom: var(--spacing-09);
|
|
}
|
|
|
|
h3 {
|
|
display: inline-block;
|
|
}
|
|
|
|
.section-header {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
#filters-container {
|
|
text-align: right;
|
|
|
|
.by {
|
|
color: #989898;
|
|
font-style: italic;
|
|
}
|
|
}
|
|
|
|
#lags-container {
|
|
.dropdown-menu {
|
|
min-width: 0;
|
|
}
|
|
}
|
|
|
|
#dates-container {
|
|
display: inline-block;
|
|
|
|
.daterangepicker {
|
|
margin-right: var(--spacing-06);
|
|
}
|
|
|
|
#metrics-dates {
|
|
padding: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
#metrics-footer {
|
|
margin-top: var(--spacing-09);
|
|
text-align: center;
|
|
}
|
|
|
|
body.print-loading #metrics .metric-col {
|
|
opacity: 0.5;
|
|
}
|