Browse Source

Grafana: modal color fix

pull/15/head
gilbN 6 years ago
parent
commit
5841e61cb0
  1. 11
      CSS/themes/grafana/grafana-base.css

11
CSS/themes/grafana/grafana-base.css

@ -452,11 +452,12 @@ border-color: #b56d16 !important;
} }
.modal-header { .modal-header {
background: -webkit-gradient(linear,left top,right top,from(#292a2d),to(#000)); background: var(--modal-bg-color);
background: -webkit-linear-gradient(left,#292a2d,#000);
background: -o-linear-gradient(left,#292a2d,#000);
background: var(--main-bg-color);
-webkit-box-shadow: none; -webkit-box-shadow: none;
box-shadow: none; box-shadow: none;
border-bottom: 1px solid #343436; border-bottom: 1px solid #d8d9da;
}
.modal-body {
position: relative;
background: var(--modal-bg-color);
} }
Loading…
Cancel
Save