Move CSS definition into template file so it can be processed by template engine.

This gives us opportunity to handle URI prefixes.
This commit is contained in:
Vasily Fomin
2014-06-10 22:51:14 +02:00
parent 8dd88374d3
commit c927f9d419
2 changed files with 6 additions and 5 deletions
-5
View File
@@ -26,11 +26,6 @@ a:hover {
text-decoration: underline;
}
a.external {
background: url(/skinfiles/_default_/External.png) center right no-repeat;
padding-right: 13px;
}
#main a:visited {
color: #99008B;
}
+6
View File
@@ -0,0 +1,6 @@
<style>
a.external {
background: url(<? VAR URIPrefix TOP ?>/skinfiles/_default_/External.png) center right no-repeat;
padding-right: 13px;
}
</style>