Files
grafana/public/sass/components/_toolbar.scss

56 lines
949 B
SCSS
Raw Normal View History

2018-11-10 17:27:25 +01:00
.toolbar {
display: flex;
align-content: center;
align-items: center;
2018-11-21 20:32:04 +01:00
padding: 3px 20px 3px 20px;
2018-11-10 17:27:25 +01:00
position: relative;
z-index: 1;
flex: 0 0 auto;
2018-11-22 15:34:55 +01:00
background: $toolbar-bg;
2018-11-22 08:46:54 +01:00
border-radius: 3px;
2018-11-23 07:31:13 +01:00
height: 44px;
2018-11-10 17:27:25 +01:00
}
2018-11-21 20:32:04 +01:00
.toolbar__heading {
font-size: $font-size-lg;
2018-11-22 15:34:55 +01:00
padding-right: 20px;
2018-11-21 20:32:04 +01:00
}
2019-01-18 15:29:58 +01:00
.toolbar__left {
display: flex;
flex-grow: 1;
align-items: center;
}
2018-11-10 17:27:25 +01:00
.toolbar__main {
2018-12-15 11:29:50 -08:00
padding: 0 $input-padding-x;
2018-11-10 17:27:25 +01:00
font-size: $font-size-md;
line-height: $input-line-height;
color: $input-color;
background-color: $input-bg;
2018-12-15 11:29:50 -08:00
height: $gf-form-input-height;
2018-11-10 17:27:25 +01:00
border: $input-border;
border-radius: $input-border-radius;
display: flex;
align-items: center;
2018-11-10 12:17:40 -08:00
cursor: pointer;
2018-11-10 17:27:25 +01:00
.fa {
margin-left: 20px;
display: inline-block;
position: relative;
}
}
.toolbar__main-image {
margin-right: 10px;
display: inline-block;
width: 20px;
height: 20px;
}
2018-12-17 12:57:40 +01:00
.toolbar__close {
flex-grow: 1;
text-align: left;
2018-11-10 17:27:25 +01:00
}