Skip to content

Commit

Permalink
Problems: fix nodata styles, closes #717
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderzobnin committed Apr 22, 2019
1 parent f908376 commit 30ce9d8
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions src/sass/_panel-problems.scss
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@

.rt-noData {
z-index: 2;
background: unset;
color: $text-muted;
}

.pagination-bottom {
Expand Down Expand Up @@ -522,15 +524,22 @@

@for $i from 11 through 25 {
.item-#{$i} { width: 2em * $i; }
&.font-size--#{$i * 10} .rt-table {
font-size: 1% * $i * 10;
&.font-size--#{$i * 10} {
.rt-table {
font-size: 1% * $i * 10;

& .rt-tr .rt-td.custom-expander i {
font-size: 1.2rem * $i / 10;
& .rt-tr .rt-td.custom-expander i {
font-size: 1.2rem * $i / 10;
}

.problem-details-container.show {
font-size: 13px;
}
}

.problem-details-container.show {
font-size: 13px;
.rt-noData {
top: 4.5em;
font-size: 1% * $i * 10;
}
}
}
Expand Down

0 comments on commit 30ce9d8

Please sign in to comment.