CSS Variables: Support for IE (#1385)

* Support for IE

Make IE look alright again.
Won't be theme-able but will at least work.

* Support for IE

Make IE look alright again.
Won't be theme-able but will at least work.

* Support for IE

Make IE look alright again.
Won't be theme-able but will at least work.

* Support for IE

Make IE look alright again.
Won't be theme-able but will at least work.

* Support for IE

Make IE look alright again.
Won't be theme-able but will at least work.

* Support for IE

Make IE look alright again.
Won't be theme-able but will at least work.

* Support for IE

Make IE look alright again.
Won't be theme-able but will at least work.
This commit is contained in:
Andrew Bone 2018-12-24 14:05:21 +00:00 committed by Ben Halpern
parent 3c3c40b9f5
commit 7a5239efc1
7 changed files with 10 additions and 1 deletions

View file

@ -1,6 +1,7 @@
@import 'variables';
.stories-show{
background:$lightest-gray;
background:var(--theme-background, $lightest-gray);
}
@ -563,6 +564,7 @@ article{
th{
border: 1px solid $light-medium-gray;
padding:5px 1vw;
background:$lightest-gray;
background:var(--theme-background, $lightest-gray);
text-align:left;
}
@ -1132,4 +1134,4 @@ article{
}
100% {
}
}
}

View file

@ -179,6 +179,7 @@
}
.org-publish-check-wrapper{
font-family: $helvetica;
background:$lightest-gray;
background:var(--theme-background, $lightest-gray);
padding:20px 14px;
text-align:center;

View file

@ -143,6 +143,7 @@
padding: 3px 12px;
display: inline-block;
border-radius: 3px;
background: $lightest-gray;
background: var(--theme-background, $lightest-gray);
border: 1px solid $light-medium-gray;
font-weight: bold;
@ -660,6 +661,7 @@
bottom: -14px;
left: 0;
right: 0;
background: $lightest-gray;
background: var(--theme-background, $lightest-gray);
border-top: 1px solid $light-medium-gray;
padding: 8px 10px 20px;

View file

@ -527,6 +527,7 @@ a.header-link{
code{
margin:auto;
white-space: nowrap;
background:$lightest-gray;
background:var(--theme-background, $lightest-gray);
padding:1px 5px 0px;
border-radius:2px;

View file

@ -167,6 +167,7 @@
code {
margin: auto;
white-space: nowrap;
background: $lightest-gray;
background: var(--theme-background, $lightest-gray);
padding: 1px 5px 0px;
border-radius: 2px;

View file

@ -1,6 +1,7 @@
@import 'variables';
body {
background: $lightest-gray;
background: var(--theme-background, $lightest-gray);
color: $black;
font-family: $helvetica;

View file

@ -20,6 +20,7 @@
z-index: 1000;
font-size: 17px;
height: 48px;
background: $tan;
background: var(--theme-top-bar-background, $tan);
position: fixed;
border-bottom: 1px solid rgba(0, 0, 0, 0.33);