mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 09:35:56 -05:00
added transparent for ui primary for cross browser support to colors css
This commit is contained in:
parent
0d894e3208
commit
a160180245
2 changed files with 2 additions and 3 deletions
|
@ -28,6 +28,7 @@ $ui-coral-dark: hsla(350, 100, 60, 1); // #FF3355 More Blocks tertiary
|
||||||
$ui-white: hsla(0, 100%, 100%, 1); //#FFF
|
$ui-white: hsla(0, 100%, 100%, 1); //#FFF
|
||||||
$ui-white-15percent: hsla(0, 100%, 100%, .15); //#FFF
|
$ui-white-15percent: hsla(0, 100%, 100%, .15); //#FFF
|
||||||
$ui-light-primary: hsl(215, 100, 95);
|
$ui-light-primary: hsl(215, 100, 95);
|
||||||
|
$ui-light-primary-transparent: hsla(215, 100, 95, 0);
|
||||||
|
|
||||||
$ui-border: hsla(0, 0, 85, 1); //#D9D9D9
|
$ui-border: hsla(0, 0, 85, 1); //#D9D9D9
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
@import "../../../colors";
|
@import "../../../colors";
|
||||||
|
|
||||||
$cross-browser-transparent: hsla(0, 0, 100%, 0);
|
|
||||||
|
|
||||||
.compose-comment {
|
.compose-comment {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
|
@ -174,7 +172,7 @@ $cross-browser-transparent: hsla(0, 0, 100%, 0);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
background: linear-gradient(
|
background: linear-gradient(
|
||||||
$cross-browser-transparent,
|
$ui-light-primary-transparent,
|
||||||
$ui-light-primary
|
$ui-light-primary
|
||||||
);
|
);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
Loading…
Reference in a new issue