-
Notifications
You must be signed in to change notification settings - Fork 522
JS CSS minify and combine
Ethan Lai edited this page Sep 3, 2013
·
3 revisions
// @koala-prepend "jquery.js"
// jQuery is ready
$(function(){
// TODO
})
// @koala-prepend "jquery.js"
// @koala-append "other.js"
$(function(){
// TODO
})
// the content of other.js will be combine into here
@import url("reset.css");
@import "./libs/jquery.ui/jquery.ui.css";
/*For this page*/
body {}
Checked Combine Import
will combine imported CSS files.
Add this parameter behind the relative image url: ?base64
.
(This feature only supports css currently.)
Source code:
#test {
background: url(../img/logo.png?base64) no-repeat;
}
Output Code:
#test {
background: url(data:image/png;base64,R0lGODlhEAAQAMQAAORHHOVS.....) no-repeat;
}
/* START Navbar style+layout changed 260422*/ .navbar-collapse ul.nav.navbar-nav > li { width: 150px; border-bottom: 2px solid #b2b2b2; height: 70px; } .navbar-collapse ul.nav.navbar-nav > li.active { height: 70px; border-bottom: 3px solid #257FA6 !important; } .navbar-collapse ul.nav li a { font-size: 16px !important; font-family: 'Open Sans' !important; color: #2c2c2c !important; height: 54px; border-right: 2px solid #b2b2b2; text-align: center; padding: 10px 18px !impo