mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
28 lines
476 B
SCSS
28 lines
476 B
SCSS
.toggle-button-group {
|
|
display: flex;
|
|
|
|
.gf-form-label {
|
|
background-color: $input-label-bg;
|
|
}
|
|
|
|
.btn {
|
|
@include buttonBackground($input-bg, $input-bg);
|
|
&.active {
|
|
background-color: lighten($input-label-bg, 5%);
|
|
color: $link-color;
|
|
&:hover {
|
|
cursor: default;
|
|
}
|
|
}
|
|
}
|
|
|
|
&:first-child {
|
|
border-radius: 2px 0 0 2px;
|
|
margin: 0;
|
|
}
|
|
&:last-child {
|
|
border-radius: 0 2px 2px 0;
|
|
margin-left: 0 !important;
|
|
}
|
|
}
|