grafana/public/less/panel.less

188 lines
2.8 KiB
Plaintext
Raw Normal View History

.panel {
display: inline-block;
float: left;
vertical-align: top;
position: relative;
}
.panel-margin {
2015-02-03 03:46:33 -06:00
margin: 5px;
display: block;
}
.panel-container {
2015-03-27 08:39:03 -05:00
background-color: @grafanaPanelBackground;
position: relative;
border: @grafanaPanelBorder;
2014-11-17 02:11:54 -06:00
&:hover {
.panel-actions {
display: block;
}
}
2015-03-27 08:39:03 -05:00
&.panel-transparent {
background-color: transparent;
border: none;
}
}
.panel-content {
padding: 0px 10px 5px 10px;
}
.panel-title-container {
min-height: 5px;
padding-top: 4px;
cursor: pointer;
}
.panel-title {
border: 0px;
font-weight: bold;
position: relative;
cursor: pointer;
2014-11-17 02:11:54 -06:00
width: 100%;
display: block;
}
2014-11-11 05:51:57 -06:00
.panel-links-btn {
margin-left: 10px;
display: none;
}
.panel-loading {
position:absolute;
top: -3px;
right: 0px;
z-index: 800;
}
2014-09-06 07:02:18 -05:00
.panel-header {
text-align: center;
}
.panel-error {
color: @white;
position: absolute;
left: 0;
padding: 0px 17px 6px 5px;
top: 0;
z-index: 10;
i {
position: relative;
top: -2px;
}
}
.panel-error-arrow {
width: 0;
height: 0;
position: absolute;
border-left: 31px solid transparent;
border-right: 30px solid transparent;
border-bottom: 27px solid @grafanaPanelBackground;
left: 0;
bottom: 0;
}
.panel-fullscreen {
margin: 5px 20px;
.panel-title-container {
padding: 8px;
}
}
.panel-full-edit {
margin-top: 20px;
margin-bottom: 20px;
}
2014-09-06 07:02:18 -05:00
.panel-menu {
z-index: 500;
2014-09-23 09:11:31 -05:00
position: absolute;
background: @grafanaTargetFuncBackground;
border: 1px solid black;
.panel-menu-row {
white-space: nowrap;
2014-09-06 07:02:18 -05:00
border-bottom: 1px solid black;
2014-09-23 09:11:31 -05:00
&:last-child {
border-bottom: none;
}
2014-09-06 07:02:18 -05:00
}
2014-09-23 09:11:31 -05:00
.panel-menu-link, .panel-menu-icon {
padding: 5px 10px;
}
.panel-menu-link {
display: inline-block;
2014-09-23 09:11:31 -05:00
border-right: 1px solid black;
&:last-child {
border: none;
}
2014-09-06 07:02:18 -05:00
}
.dropdown-menu {
text-align: left;
}
2014-09-06 07:02:18 -05:00
}
.panel-highlight {
2014-09-23 09:11:31 -05:00
.box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 5px rgba(82,168,236, 0.8)");
}
.on-drag-hover {
.panel-container {
.box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 5px rgba(82,168,236, 0.8)");
}
}
.panel-drop-zone {
display: none;
.panel-container {
border: 1px solid @grayDark;
}
}
2014-11-17 02:11:54 -06:00
.panel-ghost{
width: 100%;
2015-03-24 11:16:13 -05:00
.panel-container {
border: none;
background: transparent;
}
.panel-ghost-list {
margin: 10px 0 10px 20px;
}
button {
text-align: left;
min-width: 135px;
.fa {
position: relative;
left: -5px;
}
2015-03-24 11:16:13 -05:00
}
}
.panel-time-info {
font-weight: bold;
float: right;
margin-right: 15px;
color: @blue;
font-size: 85%;
position: absolute;
top: 0;
right: 0;
}
.resize-panel-handle {
cursor: se-resize;
position: absolute;
bottom: 0;
right: 0;
width: 15px;
height: 15px;
display: block;
}