1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
.system-check td:first-child {
width: 40%;
}
.system-check {
td.error {
color: red;
font-size: 100%;
font-weight: bold;
border: 2px solid red!important;
width: 550px;
padding: 20px;
margin-bottom: 10px;
img {
border: 0;
float: right;
margin: 10px;
}
}
}
.system-check .icon-ok {
color: @color-green-matomo;
margin-right: 13.5px;
}
.system-check .icon-warning {
color: #DF9D27;
margin-right: 13.5px;
}
.system-check .icon-error {
color: #D73F36;
margin-right: 13.5px;
}
.system-check .icon-info {
color: #00bcd4;
margin-right: 13.5px;
}
.widgetBody.system-check {
.icon-ok,
.icon-warning,
.icon-error {
margin-right: 0;
}
ul {
li {
> span {
padding-right: 4px;
}
font-weight: bold;
&.system-check-widget-warning {
color: #DF9D27;
}
&.system-check-widget-error {
color: #D73F36;
}
}
}
}
.system-success {
color: @color-green-matomo !important;
font-weight: bold;
}
.system-errors {
font-weight: bold;
color: #D73F36 !important;
}
.system-warnings {
font-weight: bold;
color: #DF9D27 !important;
}
|