Browse Source

Fix debug window SEVERE style, add styles for FINE, FINER and FINEST (#11891)

Change-Id: Ibbe209a6a67e594318a7ac50f962c48aeab4730d
tags/7.1.0
Johannes Dahlström 11 years ago
parent
commit
51c9fb5322
1 changed files with 10 additions and 1 deletions
  1. 10
    1
      WebContent/VAADIN/themes/base/debug/debug.scss

+ 10
- 1
WebContent/VAADIN/themes/base/debug/debug.scss View File

@@ -207,13 +207,22 @@
.v-debugwindow-row:nth-child(odd) {
background-color: rgba(0, 61, 255, 0.11);
}
.v-debugwindow-row.ERROR {
.v-debugwindow-row.SEVERE {
color: #550000;
background-color: #FFC5C5;
}
.v-debugwindow-row.WARNING {
background-color: #FFFF99;
}
.v-debugwindow-row.FINE {
color: lighten($maincolor, 5%);
}
.v-debugwindow-row.FINER {
color: lighten($maincolor, 10%);
}
.v-debugwindow-row.FINEST {
color: lighten($maincolor, 15%);
}
.v-debugwindow-row > span {
display: table-cell;

Loading…
Cancel
Save