2018-08-17 10:19:25 -04:00
|
|
|
.admin-report {
|
2018-08-06 16:57:40 -04:00
|
|
|
.admin-report-counters {
|
|
|
|
display: grid;
|
2019-01-21 13:40:55 -05:00
|
|
|
flex: 1 0 0px;
|
2018-08-06 16:57:40 -04:00
|
|
|
grid-template-columns: 33% repeat(auto-fit, minmax(20px, 1fr));
|
|
|
|
grid-template-rows: repeat(auto-fit, minmax(32px, 1fr));
|
|
|
|
align-items: center;
|
|
|
|
|
2018-11-05 12:51:26 -05:00
|
|
|
// IE11 grid support
|
|
|
|
display: -ms-grid;
|
|
|
|
-ms-grid-columns: 2fr 1fr 1fr 1fr 1fr;
|
|
|
|
.cell {
|
|
|
|
-ms-grid-row: 1;
|
|
|
|
-ms-grid-column-span: 1;
|
|
|
|
|
|
|
|
&:nth-of-type(1) {
|
|
|
|
-ms-grid-column: 1;
|
|
|
|
}
|
|
|
|
&:nth-of-type(2) {
|
|
|
|
-ms-grid-column: 2;
|
|
|
|
}
|
|
|
|
&:nth-of-type(3) {
|
|
|
|
-ms-grid-column: 3;
|
|
|
|
}
|
|
|
|
&:nth-of-type(4) {
|
|
|
|
-ms-grid-column: 4;
|
|
|
|
}
|
|
|
|
&:nth-of-type(5) {
|
|
|
|
-ms-grid-column: 5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-06 16:57:40 -04:00
|
|
|
.cell {
|
|
|
|
padding: 0.25em;
|
|
|
|
text-align: right;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
&.title {
|
|
|
|
text-align: left;
|
2018-08-17 10:19:25 -04:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
2018-08-06 16:57:40 -04:00
|
|
|
|
|
|
|
.d-icon {
|
|
|
|
color: $primary-low-mid;
|
|
|
|
min-width: 14px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2018-11-26 16:49:57 -05:00
|
|
|
.d-icon {
|
2018-08-06 16:57:40 -04:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 400px) {
|
2018-08-17 10:19:25 -04:00
|
|
|
&.title .d-icon {
|
|
|
|
display: none;
|
2018-08-06 16:57:40 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-24 11:16:01 -04:00
|
|
|
.d-icon-minus {
|
|
|
|
color: $primary-medium;
|
|
|
|
font-size: $font-down-3;
|
2018-08-22 12:00:11 -04:00
|
|
|
}
|
|
|
|
|
2018-08-06 16:57:40 -04:00
|
|
|
&.high-trending-up,
|
|
|
|
&.trending-up {
|
2018-11-26 16:49:57 -05:00
|
|
|
.d-icon {
|
2018-08-06 16:57:40 -04:00
|
|
|
color: $success;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.high-trending-down,
|
|
|
|
&.trending-down {
|
2018-11-26 16:49:57 -05:00
|
|
|
.d-icon {
|
2018-08-06 16:57:40 -04:00
|
|
|
color: $danger;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-17 10:19:25 -04:00
|
|
|
}
|
2018-08-06 16:57:40 -04:00
|
|
|
|
2018-08-17 10:19:25 -04:00
|
|
|
.rtl .counters-list .counters-header .counters-cell {
|
|
|
|
text-align: left;
|
|
|
|
}
|
2018-08-06 16:59:45 -04:00
|
|
|
|
2018-08-17 10:19:25 -04:00
|
|
|
.rtl .counters-list {
|
|
|
|
.cell {
|
2018-08-06 16:59:45 -04:00
|
|
|
text-align: left;
|
2018-08-17 10:19:25 -04:00
|
|
|
|
|
|
|
&.title {
|
|
|
|
text-align: right;
|
|
|
|
}
|
2018-08-06 16:59:45 -04:00
|
|
|
}
|
2018-08-06 16:57:40 -04:00
|
|
|
}
|