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/edit_sidemenu.scss

59 lines
1004 B

.edit-tab-with-sidemenu {
display: flex;
flex-direction: row;
}
.edit-tab-content {
flex-grow: 1;
min-width: 0;
}
//Deprecated class but maybe used by plugins (in panel settings)
.edit-sidemenu-aside {
margin-right: $spacer * 2;
}
//Deprecated class but maybe used by plugins (in panel settings)
.edit-sidemenu {
width: 100%;
list-style: none;
li.active {
@include left-brand-border-gradient();
}
a {
display: block;
color: $text-color;
margin: 0 0 1.5rem 1rem;
white-space: nowrap;
}
}
.column-styles-heading {
border-bottom: 1px solid $gray-1;
}
@include media-breakpoint-down(sm) {
.edit-tab-with-sidemenu {
flex-direction: column;
}
//Deprecated class but maybe used by plugins (in panel settings)
.edit-sidemenu-aside {
width: 100%;
margin-bottom: 2rem;
}
//Deprecated class but maybe used by plugins (in panel settings)
.edit-sidemenu {
li {
float: left;
}
a {
margin: 0.3rem 1rem;
}
}
}