mirror of
https://github.com/KevinMidboe/inline-html.git
synced 2026-07-24 02:12:04 +00:00
Add support for inlining CSS stylesheets. Add tests. Update docs.
This commit is contained in:
Vendored
+1
@@ -1 +1,2 @@
|
||||
/* basic.css */
|
||||
div { color: blue; }
|
||||
|
||||
Vendored
+2
-1
@@ -1 +1,2 @@
|
||||
div { background-image: url('file.txt'); }
|
||||
/* basic.less */
|
||||
div { color: blue; }
|
||||
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
@import 'basic.css';
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
@import 'missing.css';
|
||||
Vendored
+1
-1
@@ -1 +1 @@
|
||||
@import (less) 'missing.css';
|
||||
@import 'missing.less';
|
||||
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
div {
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
div { background-image: url('missing.png'); }
|
||||
Vendored
+1
-3
@@ -1,3 +1 @@
|
||||
div {
|
||||
background-image: url('missing.png');
|
||||
}
|
||||
div { background-image: url('missing.png'); }
|
||||
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
@import 'import.css';
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
div { background-image: url('file.txt'); }
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
div { background-image: url('file.txt'); }
|
||||
Reference in New Issue
Block a user