36 lines
737 B
SCSS
Executable File
36 lines
737 B
SCSS
Executable File
//
|
|
// morris.scss
|
|
//
|
|
|
|
.morris-chart {
|
|
text {
|
|
font-family: $font-family-secondary !important;
|
|
fill: $dropdown-link-color;
|
|
}
|
|
}
|
|
.morris-hover {
|
|
position: absolute;
|
|
z-index: 10;
|
|
|
|
&.morris-default-style {
|
|
font-size: 12px;
|
|
text-align: center;
|
|
border-radius: 5px;
|
|
padding: 10px 12px;
|
|
background: $dark;
|
|
color: color-yiq($dark);
|
|
font-family: $font-family-base;
|
|
|
|
.morris-hover-row-label {
|
|
font-weight: bold;
|
|
margin: 0.25em 0;
|
|
font-family: $font-family-secondary;
|
|
}
|
|
|
|
.morris-hover-point {
|
|
white-space: nowrap;
|
|
margin: 0.1em 0;
|
|
color: $white;
|
|
}
|
|
}
|
|
} |