Skip to content

Commit 0b27fee

Browse files
committed
fix(sidebar.scss): url("data:,") turns into url("'data:,'")
now replaced with Base64 Encode of 1x1px Transparent gif, closes #49 1. `ie11` ignores `list-style:none` (ie11 rtl sidebar minimized issue) 2. `url("data:,")` turns into `url("'data:,'")` after minification 3. angular 7 cli build complains on `url("'data:,'")`
1 parent dbb01a7 commit 0b27fee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scss/_sidebar.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@
497497
.sidebar-minimized {
498498
.sidebar {
499499
.nav {
500-
list-style-image: url("data:,");
500+
list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
501501
.divider {
502502
height: 0;
503503
}

0 commit comments

Comments
 (0)