mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
85 lines
1.4 KiB
SCSS
85 lines
1.4 KiB
SCSS
.add-panel-widget-container {
|
|
height: 100%;
|
|
}
|
|
|
|
.add-panel-widget {
|
|
height: 100%;
|
|
}
|
|
|
|
.add-panel-widget__header {
|
|
top: 0;
|
|
position: absolute;
|
|
padding: 0 15px;
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
cursor: move;
|
|
background: $page-header-bg;
|
|
box-shadow: $page-header-shadow;
|
|
border-bottom: 1px solid $page-header-border-color;
|
|
|
|
.gicon {
|
|
font-size: 30px;
|
|
margin-right: $spacer;
|
|
}
|
|
|
|
&:hover {
|
|
transition: background-color 0.1s ease-in-out;
|
|
background-color: $panel-header-hover-bg;
|
|
}
|
|
}
|
|
|
|
.add-panel-widget__title {
|
|
font-size: $font-size-md;
|
|
font-weight: $font-weight-semi-bold;
|
|
margin-right: $spacer*2;
|
|
}
|
|
|
|
.add-panel-widget__link {
|
|
margin: 0 8px;
|
|
width: 154px;
|
|
}
|
|
|
|
.add-panel-widget__icon {
|
|
margin-bottom: 8px;
|
|
|
|
.gicon {
|
|
color: white;
|
|
height: 44px;
|
|
width: 53px;
|
|
position: relative;
|
|
left: 5px;
|
|
}
|
|
}
|
|
|
|
.add-panel-widget__close {
|
|
margin-left: auto;
|
|
background-color: transparent;
|
|
border: 0;
|
|
font-size: 16px;
|
|
margin-right: -10px;
|
|
}
|
|
|
|
.add-panel-widget__create {
|
|
display: inherit;
|
|
margin-bottom: 24px;
|
|
// this is to have the big button appear centered
|
|
margin-top: 55px;
|
|
}
|
|
|
|
.add-panel-widget__actions {
|
|
display: inherit;
|
|
}
|
|
|
|
.add-panel-widget__action {
|
|
margin: 0 4px;
|
|
}
|
|
|
|
.add-panel-widget__btn-container {
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|