Problems: fix nodata styles, closes #717

This commit is contained in:
Alexander Zobnin
2019-04-22 15:32:38 +03:00
parent f908376802
commit 30ce9d8430

View File

@@ -69,6 +69,8 @@
.rt-noData { .rt-noData {
z-index: 2; z-index: 2;
background: unset;
color: $text-muted;
} }
.pagination-bottom { .pagination-bottom {
@@ -522,15 +524,22 @@
@for $i from 11 through 25 { @for $i from 11 through 25 {
.item-#{$i} { width: 2em * $i; } .item-#{$i} { width: 2em * $i; }
&.font-size--#{$i * 10} .rt-table { &.font-size--#{$i * 10} {
font-size: 1% * $i * 10; .rt-table {
font-size: 1% * $i * 10;
& .rt-tr .rt-td.custom-expander i { & .rt-tr .rt-td.custom-expander i {
font-size: 1.2rem * $i / 10; font-size: 1.2rem * $i / 10;
}
.problem-details-container.show {
font-size: 13px;
}
} }
.problem-details-container.show { .rt-noData {
font-size: 13px; top: 4.5em;
font-size: 1% * $i * 10;
} }
} }
} }