mirror of
https://github.com/znc/znc.git
synced 2026-08-07 17:33:34 +02:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
<style>
|
||||
a.external {
|
||||
background: url(<? VAR URIPrefix TOP ?>/skinfiles/_default_/External.png) center right no-repeat;
|
||||
padding-right: 13px;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user