Skip to content

Commit e1b70d7

Browse files
committed
Fix sprockets compilation error related to filter: progid:
``` Invalid CSS after "...);filter:progid": expected ";", was ": DXImageTransf..." ```
1 parent d3a2625 commit e1b70d7

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

debug/simplemde.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ span.CodeMirror-selectedtext { background: none; }
427427
background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(125, 185, 232, 0.01) 100%);
428428
background: -ms-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(125, 185, 232, 0.01) 100%);
429429
background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(125, 185, 232, 0.01) 100%);
430-
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#037db9e8', GradientType=1);
430+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#037db9e8', GradientType=1);
431431
position: fixed;
432432
top: 0;
433433
left: 0;
@@ -444,7 +444,7 @@ span.CodeMirror-selectedtext { background: none; }
444444
background: -o-linear-gradient(left, rgba(125, 185, 232, 0.01) 0%, rgba(254, 254, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
445445
background: -ms-linear-gradient(left, rgba(125, 185, 232, 0.01) 0%, rgba(254, 254, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
446446
background: linear-gradient(to right, rgba(125, 185, 232, 0.01) 0%, rgba(254, 254, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
447-
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#037db9e8', endColorstr='#ffffff', GradientType=1);
447+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#037db9e8', endColorstr='#ffffff', GradientType=1);
448448
position: fixed;
449449
top: 0;
450450
right: 0;
@@ -643,6 +643,7 @@ span.CodeMirror-selectedtext { background: none; }
643643
.CodeMirror .CodeMirror-code .cm-strikethrough {
644644
text-decoration: line-through;
645645
}
646+
646647
.CodeMirror .cm-spell-error:not(.cm-url):not(.cm-comment) {
647648
background: rgba(255, 0, 0, .15);
648649
}

0 commit comments

Comments
 (0)