Benutzer:Flo/monobook.css: Unterschied zwischen den Versionen

Aus DGL Wiki
Wechseln zu: Navigation, Suche
K (noch ein Test - funktioniert bisher immer noch nicht)
K (erstes wieder hergestellt welches mir Seiten mit runden Ecken im Firefox anzeigt)
Zeile 1: Zeile 1:
/* make the background behind the content area and the tabs a light grey */
+
/* make a few corners round, only supported by moz/firefox/other gecko browsers for now */
#content, #content table
+
#p-cactions ul li, #p-cactions ul li a {
#p-cactions ul li a { background: #f5f5f5; }
+
  -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;
 +
  -moz-border-radius-bottomleft: 1em;
 +
  -moz-border-radius-topleft: 1em;
 +
  margin: 0.4em;
 +
}
  
/* stop background image from scrolling with content area */
+
/* same following the css3 draft specs, any browsers supporting this? */
body { background-attachment: fixed; }
+
#p-cactions ul li, #p-cactions ul li a {
 
+
  border-radius-topleft: 1em;
/* replace the book in the background with something else */
+
  border-radius-topright: 1em;
body { background: Purple; }
+
}
 
+
#content {  
/* changes the background of pre areas  */
+
   border-radius-topleft: 1em;
pre { background: White }
+
   border-radius-bottomleft: 1em;
 
 
/* change the logo */
 
#p-logo a { background: url(http://en.wikipedia.org/upload/wiki.png) 35% 50% no-repeat !important; }
 
 
 
/* don't use any logo, move the boxes onto that area instead */
 
#p-logo { display: none }
 
#column-one { padding-top: 0; }
 
 
 
/* suppress the person icon by your username */
 
li#pt-userpage { background: none }
 
 
 
/* use browser prefs for text size and font */
 
body, #globalWrapper { font: inherit !important; }
 
 
 
/* always underline links */
 
:link { text-decoration: underline; }
 
 
 
/*Display body content in a narrower column for easier reading*/
 
/*adjust percentages as desired*/
 
div#bodyContent {
 
   width: 50%;
 
   line-height: 105%;
 
 
}
 
}
 
+
div.pBody {
/* change background of unselected tabs */
+
  border-radius-topright: 1em;
#p-cactions ul li a { background: #C7FDC7; }
+
  border-radius-bottomright: 1em;
 
 
/* change background of selected tabs */
 
#p-cactions ul li.selected a { background: white; }
 
 
 
/* change border background of selected tabs */
 
#p-cactions li.selected { border-color: #aaaaaa; }
 
 
 
/* tab bottom not removed on hover */
 
#p-cactions li a:hover { z-index: 0; text-decoration: none; }
 
#p-cactions li.selected a:hover { z-index: 3; }
 
 
 
/* style the search box and the buttons below it */
 
input.searchButton {
 
    background-color: #efefef !important;
 
    border: 1px outset !important;
 
 
}
 
}
#searchInput { border: 1px inset !important; }
 
 
/* standard link colors */
 
:link { color: #0000FF; }
 
:link:visited { color: #7F007F; }
 
:link:active, :link.new { color: #FF0000; }
 
:link.interwiki, :link.external { color: #3366BB; }
 
:link.stub { color: #772233; }
 
 
/* put scrollbar on pre sections instead of ugly cutoff/overlap in firefox */
 
pre { overflow: auto; }
 
 
/* strikeout Upload File link as a reminder to upload to Commons instead */
 
li#t-upload { text-decoration: line-through; }
 

Version vom 30. September 2005, 12:29 Uhr

/* 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;
  -moz-border-radius-bottomleft: 1em;
  -moz-border-radius-topleft: 1em;
  margin: 0.4em;
}

/* 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;
}