The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
grafana/public/sass/components/_row.scss

80 lines
1.3 KiB

.dashboard-row {
display: flex;
8 years ago
align-items: center;
height: 100%;
8 years ago
&--collapsed {
background: $panel-bg;
.dashboard-row__panel_count {
8 years ago
display: inline-block;
}
.dashboard-row__drag,
.dashboard-row__actions {
visibility: visible;
opacity: 1;
}
}
&:hover {
.dashboard-row__actions {
visibility: visible;
opacity: 1;
transition: opacity 200ms ease-in-out 100ms;
}
}
}
.dashboard-row__title {
flex-grow: 0;
8 years ago
font-size: 1.15rem;
font-weight: $font-weight-semi-bold;
color: $text-color;
.fa {
color: $text-muted;
8 years ago
font-size: $font-size-xs;
padding: 0 0.5rem;
}
}
.dashboard-row__actions {
color: $text-muted;
visibility: hidden;
opacity: 0;
a {
color: $text-color-weak;
padding-left: $spacer;
&:hover {
color: $link-hover-color;
}
}
flex-grow: 1;
}
.dashboard-row__panel_count {
8 years ago
padding-left: $spacer;
color: $text-color-weak;
font-style: italic;
font-size: $font-size-sm;
font-weight: normal;
display: none;
}
.dashboard-row__drag {
cursor: move;
width: 1rem;
height: 100%;
background: url("../img/grab_dark.svg") no-repeat 50% 50%;
background-size: 8px;
visibility: hidden;
position: absolute;
top: 0;
right: 0;
}