65 lines
930 B
SCSS
Executable File
65 lines
930 B
SCSS
Executable File
//
|
|
// flot.scss
|
|
//
|
|
|
|
.flotTip {
|
|
padding: 8px 12px;
|
|
background-color: $dark;
|
|
z-index: 100;
|
|
color: color-yiq($dark);
|
|
opacity: 1;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.legend {
|
|
font-size: 14px;
|
|
|
|
tr {
|
|
height: 30px;
|
|
font-family: $font-family-secondary;
|
|
}
|
|
|
|
> div {
|
|
background-color: transparent !important;
|
|
}
|
|
}
|
|
|
|
.legendLabel {
|
|
padding-left: 5px !important;
|
|
line-height: 10px;
|
|
padding-right: 10px;
|
|
font-size: 13px;
|
|
font-weight: $font-weight-medium;
|
|
color: $gray-600;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.legendColorBox {
|
|
div {
|
|
div {
|
|
border-radius: 50%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.flot-text {
|
|
color: $text-muted !important;
|
|
}
|
|
|
|
.flot-svg {
|
|
text {
|
|
fill: $text-muted !important;
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-down(sm) {
|
|
.legendLabel {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.legendIcon {
|
|
width: 1.5em;
|
|
height: 1.5em;
|
|
}
|