mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
Fix #2052 move all charset and import statements to the beginning of concatenated CSS scripts
This commit is contained in:
parent
a55ba4fab9
commit
d34d08438f
5 changed files with 38 additions and 13 deletions
|
|
@ -1,4 +1,4 @@
|
|||
@charset "UTF-8";
|
||||
@charset "CP949";
|
||||
@import url(concat.source3.css);
|
||||
@import url(//fonts.googleapis.com/earlyaccess/nanumgothic.css);
|
||||
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap');
|
||||
|
|
|
|||
|
|
@ -1,19 +1,20 @@
|
|||
@charset "UTF-8";
|
||||
@import url("//fonts.googleapis.com/earlyaccess/nanumgothic.css");
|
||||
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap");
|
||||
/* Original file: tests/_data/formatter/concat.source1.css */
|
||||
|
||||
@charset "UTF-8";
|
||||
.rhymix {
|
||||
background: url("../_data/formatter/foo/bar.jpg");
|
||||
}
|
||||
|
||||
/* Original file: tests/_data/formatter/concat.source2.css */
|
||||
|
||||
@charset "UTF-8";
|
||||
.imported {
|
||||
background-image: url("../_data/_data/formatter/test.jpg");
|
||||
font-family: sans-serif;
|
||||
}
|
||||
@import url("//fonts.googleapis.com/earlyaccess/nanumgothic.css");
|
||||
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap");
|
||||
|
||||
|
||||
.wordpress {
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
@charset "UTF-8";
|
||||
@import url("//fonts.googleapis.com/earlyaccess/nanumgothic.css");
|
||||
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap");
|
||||
/* Original file: tests/_data/formatter/concat.source1.css */
|
||||
|
||||
@media screen and (max-width: 640px) {
|
||||
|
||||
@charset "UTF-8";
|
||||
.rhymix {
|
||||
background: url("../_data/formatter/foo/bar.jpg");
|
||||
}
|
||||
|
|
@ -11,13 +13,12 @@
|
|||
|
||||
/* Original file: tests/_data/formatter/concat.source2.css */
|
||||
|
||||
@charset "UTF-8";
|
||||
.imported {
|
||||
background-image: url("../_data/_data/formatter/test.jpg");
|
||||
font-family: sans-serif;
|
||||
}
|
||||
@import url("//fonts.googleapis.com/earlyaccess/nanumgothic.css");
|
||||
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap");
|
||||
|
||||
|
||||
.wordpress {
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
@charset "UTF-8";
|
||||
/* Original file: tests/_data/formatter/scss.source1.scss */
|
||||
@import url("//fonts.googleapis.com/css?family=Raleway:700,400");
|
||||
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap");
|
||||
/* Original file: tests/_data/formatter/scss.source1.scss */
|
||||
/* Original file: tests/_data/formatter/scss.source2.scss */
|
||||
.inc1 {
|
||||
margin: 5px;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue