Skip to content

Commit 4b15f7c

Browse files
committed
IE hex transparency fix
1 parent 7ead31b commit 4b15f7c

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

src/index.css

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,14 @@ if there's any unexpected styling (esp. coloring), check node_modules\bootstrap\
1010
--white: #FFFFFF;
1111

1212
/*for hover transparency transitions*/
13-
--dullblueRGBA1: #46549100;
14-
--dullblueRGBA2: #465491FF;
13+
14+
/*ie11 does not support hex rgba*/
15+
--dullblueRGBA1: rgba(70,84,145,0);
16+
--dullblueRGBA2: rgba(70,84,145,1);
1517

16-
--whiteRGBA1: #FFFFFF00;
17-
--whiteRGBA2: #FFFFFFFF;
18+
/*#FFFFFF*/
19+
--whiteRGBA1: rgba(255,255,255,0);
20+
--whiteRGBA2: rgba(255,255,255,0);
1821
}
1922

2023
a:hover{

0 commit comments

Comments
 (0)