Files
grafana/public/app/features/dashboard/components/AddPanelWidget/_AddPanelWidget.scss

48 lines
743 B
SCSS
Raw Normal View History

.add-panel-widget-container {
2018-04-06 20:31:44 +03:00
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%;
2018-12-14 17:39:33 +01:00
cursor: move;
.gicon {
font-size: 30px;
margin-right: $spacer;
}
2018-12-14 17:39:33 +01:00
&:hover {
transition: background-color 0.1s ease-in-out;
background-color: $panel-header-hover-bg;
}
}
.add-panel-widget__close {
margin-left: auto;
background-color: transparent;
border: 0;
font-size: 16px;
margin-right: -10px;
}
.add-panel-widget__btn-container {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
2018-12-14 17:39:33 +01:00
flex-direction: column;
.btn {
margin-bottom: 10px;
}
}