feature(urls) change url: "/" -> "../"

This commit is contained in:
coderaiser 2014-09-25 10:49:49 -04:00
parent 80d72abf6e
commit 8595f54301

View file

@ -5,11 +5,11 @@
/* http://fontello.com/ */
@font-face {
font-family: 'Fontello';
src: url("/font/fontello.eot");
src: url("/font/fontello.eot?#iefix") format('embedded-opentype'),
url("/font/fontello.woff") format('woff'),
url("/font/fontello.ttf") format('truetype'),
url("/font/fontello.svg#cloudcmd") format('svg');
src: url("../font/fontello.eot");
src: url("../font/fontello.eot?#iefix") format('embedded-opentype'),
url("../font/fontello.woff") format('woff'),
url("../font/fontello.ttf") format('truetype'),
url("../font/fontello.svg#cloudcmd") format('svg');
font-weight: normal;
font-style: normal;
}
@ -19,10 +19,10 @@
src : url(https://themes.googleusercontent.com/static/fonts/droidsansmono/v5/ns-m2xQYezAtqh7ai59hJTwtzT4qNq-faudv5qbO9-U.eot);
src : local('Droid Sans Mono'),
local('DroidSansMono'),
url(/font/DroidSansMono.eot) format('embedded-opentype'),
url(../font/DroidSansMono.eot) format('embedded-opentype'),
url(https://themes.googleusercontent.com/static/fonts/droidsansmono/v5/ns-m2xQYezAtqh7ai59hJTwtzT4qNq-faudv5qbO9-U.eot?#iefix) format('embedded-opentype'),
url(https://themes.googleusercontent.com/static/fonts/droidsansmono/v5/ns-m2xQYezAtqh7ai59hJTwtzT4qNq-faudv5qbO9-U.eot) format('embedded-opentype'),
url(/font/DroidSansMono.woff) format('woff'),
url(../font/DroidSansMono.woff) format('woff'),
url(https://themes.googleusercontent.com/static/fonts/droidsansmono/v5/ns-m2xQYezAtqh7ai59hJUYuTAAIFFn5GTWtryCmBQ4.woff) format('woff'),
local('Consolas');
font-style : normal;
@ -30,16 +30,16 @@
}
.directory {
background-image:url('/img/dir.png');
background-image:url('../img/dir.png');
}
.text-file {
background-image:url('/img/txt.png');
background-image:url('../img/txt.png');
}
.loading-svg {
background : url(/img/spinner.svg);
background : url(../img/spinner.svg);
}
.loading-gif {
background : url(/img/spinner.gif);
background : url(../img/spinner.gif);
}