mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
49276f2c12
* WIP: first stage * Another take * argghhh * Updated * My brain is mush * Minor progress * Progres * Starting to work * Fixes * fixed e2e
52 lines
842 B
SCSS
52 lines
842 B
SCSS
.toolbar {
|
|
display: flex;
|
|
align-content: center;
|
|
align-items: center;
|
|
padding: 16px;
|
|
position: relative;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.toolbar__heading {
|
|
font-size: $font-size-lg;
|
|
padding-right: 20px;
|
|
}
|
|
|
|
.toolbar__left {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
align-items: center;
|
|
}
|
|
|
|
.toolbar__main {
|
|
padding: 0 $space-sm;
|
|
font-size: $font-size-md;
|
|
line-height: $input-line-height;
|
|
color: $input-color;
|
|
background-color: $input-bg;
|
|
height: $input-height;
|
|
border: $input-border;
|
|
border-radius: $input-border-radius;
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
|
|
.fa {
|
|
margin-left: 20px;
|
|
display: inline-block;
|
|
position: relative;
|
|
}
|
|
}
|
|
|
|
.toolbar__main-image {
|
|
margin-right: 10px;
|
|
display: inline-block;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.toolbar__close {
|
|
flex-grow: 1;
|
|
text-align: left;
|
|
}
|