Widget:AdventureStyle: Unterschied zwischen den Versionen

aus Kamelopedia, der wüsten Enzyklopädie
Zur Navigation springen Zur Suche springen
K (Textersetzung - „http://kamelopedia.mormo.org/“ durch „http://kamelopedia.net/“)
 
(5 dazwischenliegende Versionen von einem anderen Benutzer werden nicht angezeigt)
Zeile 1: Zeile 1:
<style type="text/css">
+
<style type="text/css">
 +
 +
/* blind: schwarzer Hintergrund */
  
/* blind */
 
 
  body.adventure-style-blind div#content {
 
  body.adventure-style-blind div#content {
 
     color: white;
 
     color: white;
 
     background-color: black;
 
     background-color: black;
}
+
}
 +
 +
body.adventure-style-blind ul {
 +
    list-style-image: url("http://kamelopedia.net/images/c/c4/K_ulinvers.gif") !important;
 +
}
  
</style>
+
/* blindlink: hellere, lesbarere Linkfarben für "blind" */
  
<script type="text/javascript">
+
body.adventure-style-blindlink div#content a {
function makeAdventureStyle() {
+
    color: #9999ff;
         var styles = "<!--{$style|escape:'javascript'}-->".split("|");
+
}
 +
 
 +
</style>
 +
 
 +
<script type="text/javascript">
 +
function makeAdventureStyle() {
 +
         var styles = "<!--{$style|escape:'javascript'}-->".split(",");
 
         for (s in styles)
 
         for (s in styles)
 
         {
 
         {
Zeile 18: Zeile 29:
 
                 $(document.body).addClass("adventure-style-"+style);
 
                 $(document.body).addClass("adventure-style-"+style);
 
         }
 
         }
}
+
}
 
+
makeAdventureStyle();
+
makeAdventureStyle();
</script>
+
</script>

Aktuelle Version vom 3. Januar 2014, 01:33 Uhr

<style type="text/css">

/* blind: schwarzer Hintergrund */ 
body.adventure-style-blind div#content {
   color: white;
   background-color: black;
}

body.adventure-style-blind ul { 
   list-style-image: url("http://kamelopedia.net/images/c/c4/K_ulinvers.gif") !important;
}
/* blindlink: hellere, lesbarere Linkfarben für "blind" */
body.adventure-style-blindlink div#content a {
   color: #9999ff;
}
</style>
<script type="text/javascript">
function makeAdventureStyle() {
       var styles = "".split(",");
       for (s in styles)
       {
           var style = styles[s];
           if (/[A-Za-z]/.test(style))
                $(document.body).addClass("adventure-style-"+style);
       }
}

makeAdventureStyle();
</script>