MediaWiki:Monobook.css: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Sab (Diskussion | Beiträge) |
Sab (Diskussion | Beiträge) K |
||
(8 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt) | |||
Zeile 6: | Zeile 6: | ||
text-transform: none; | text-transform: none; | ||
} | } | ||
+ | |||
+ | a { text-decoration:none !important } | ||
+ | a:hover { text-decoration:underline !important } | ||
+ | |||
+ | /* Logo ändern */ | ||
+ | #p-logo a { | ||
+ | background: url(http://is.uni-sb.de/img/frontpage_wiki_icon.gif) 35% 50% no-repeat !important; | ||
+ | } | ||
+ | |||
+ | |||
/* Beispiel für geändertes CSS: */ | /* Beispiel für geändertes CSS: */ | ||
/* Nicht vergessen: Control+F5 drücken, damit die Änderungen auch vom Browser geladen werden! */ | /* Nicht vergessen: Control+F5 drücken, damit die Änderungen auch vom Browser geladen werden! */ | ||
+ | /* Mehr Infos: http://meta.wikimedia.org/wiki/User_styles */ | ||
+ | |||
+ | |||
/* make a few corners round, only supported by moz/firefox/other gecko browsers for now */ | /* make a few corners round, only supported by moz/firefox/other gecko browsers for now */ | ||
#p-cactions ul li, #p-cactions ul li a { | #p-cactions ul li, #p-cactions ul li a { |
Aktuelle Version vom 12. Januar 2009, 16:08 Uhr
/** Do not force 'lowercase' */ .portlet h5, .portlet h6, #p-personal ul, #p-cactions li a { text-transform: none; } a { text-decoration:none !important } a:hover { text-decoration:underline !important } /* Logo ändern */ #p-logo a { background: url(http://is.uni-sb.de/img/frontpage_wiki_icon.gif) 35% 50% no-repeat !important; } /* Beispiel für geändertes CSS: */ /* Nicht vergessen: Control+F5 drücken, damit die Änderungen auch vom Browser geladen werden! */ /* Mehr Infos: http://meta.wikimedia.org/wiki/User_styles */ /* make a few corners round, only supported by moz/firefox/other gecko browsers for now */ #p-cactions ul li, #p-cactions ul li a { -moz-border-radius-topleft: 1em; -moz-border-radius-topright: 1em; } #content { -moz-border-radius-topleft: 1em; -moz-border-radius-bottomleft: 1em; } div.pBody { -moz-border-radius-topright: 1em; -moz-border-radius-bottomright: 1em; } /* same following the css3 draft specs, any browsers supporting this? */ #p-cactions ul li, #p-cactions ul li a { border-radius-topleft: 1em; border-radius-topright: 1em; } #content { border-radius-topleft: 1em; border-radius-bottomleft: 1em; } div.pBody { border-radius-topright: 1em; border-radius-bottomright: 1em; }