Merge pull request #296 from dod-ccpo/ie/fix-toggler

Ie/fix toggler
This commit is contained in:
andrewdds
2018-09-18 12:01:51 -04:00
committed by GitHub
7 changed files with 151 additions and 11 deletions

View File

@@ -15,4 +15,10 @@ meter {
&::-moz-meter-bar {
background: $color-primary;
}
.meter__fallback {
display: inline-block;
background: $color-primary;
height: 100%;
}
}

View File

@@ -8,6 +8,10 @@
@include panel-margin;
min-width: 100%;
@include ie-only {
border-collapse: separate;
}
th, td {
&.table-cell--align-right {
text-align: right;

View File

@@ -217,7 +217,7 @@
}
&.previous-month {
opacity: 0.65;
color: $color-gray;
}
&.meter-cell {
@@ -250,9 +250,12 @@
@include media($medium-screen) {
display: block;
color: $color-white;
background-color: rgba($color-blue, 0.65);
border-radius: $gap/2;
position: absolute;
top: 2.3rem;
left: $gap;
left: $gap / 2;
padding: 0 ($gap / 2);
}
}
}
@@ -277,6 +280,13 @@
.spend-table__project__env {
margin-left: $gap;
&:last-child {
td, th {
padding-bottom: $gap * 5;
box-shadow: inset 0 (-$gap * 2.5) 0 $color-gray-lightest;
}
}
}
}
}