aboutsummaryrefslogtreecommitdiffstats
path: root/stylesheets/common.css
diff options
context:
space:
mode:
authornobody <nobody@localhost>2004-06-27 00:05:32 +0000
committernobody <nobody@localhost>2004-06-27 00:05:32 +0000
commit0c1d741ff4792d486258b390cf50cf3f9e229511 (patch)
tree55961c46b433ade0739763bee2ba3c4843d13751 /stylesheets/common.css
parentd5c8171a3157337557bc54ecb730d7dd35778ca3 (diff)
parent1aaed5fd7c7f4d7ea7abbfc7915bab5954d60a30 (diff)
downloadmediawikicore-1.3.0beta4a.tar.gz
mediawikicore-1.3.0beta4a.zip
This commit was manufactured by cvs2svn to create tag1.3.0beta4a
'REL1_3_0beta4a'.
Diffstat (limited to 'stylesheets/common.css')
-rw-r--r--stylesheets/common.css81
1 files changed, 65 insertions, 16 deletions
diff --git a/stylesheets/common.css b/stylesheets/common.css
index 712e4fe78ae0..b32503f42fb4 100644
--- a/stylesheets/common.css
+++ b/stylesheets/common.css
@@ -18,7 +18,6 @@ div.floatleft p { font-style: italic; }
/* table standards */
table.rimage {
float:right;
- width:1pt;
margin-left:1em;
margin-bottom:1em;
text-align:center;
@@ -30,6 +29,7 @@ div.thumb {
margin: 10px;
text-align: center;
width: auto;
+ overflow: hidden;
}
div.thumb div {
border: 1px solid #8888aa;
@@ -66,7 +66,7 @@ div.tleft {
/* Page history styling */
/* the auto-generated edit comments */
-.autocomment { color: gray; }
+.autocomment { color: #4b4b4b; }
#pagehistory span.user {
margin-left: 1.4em;
margin-right: 0.4em;
@@ -78,27 +78,26 @@ div.tleft {
border:1px dashed #aaaaaa;
}
-table.diff {
- background:white;
+table.diff { background:white; }
+td.diff-otitle { background:#cccccc; }
+td.diff-ntitle { background:#cccccc; }
+td.diff-addedline {
+ background:#ccffcc;
+ font-size: smaller;
}
-td.diff-otitle {
- background:#cccccc;
-}
-td.diff-ntitle {
- background:#cccccc;
-}
-td.diff-addedline {
- background:#ccffcc;
-}
-td.diff-deletedline {
- background:#ffffaa;
+td.diff-deletedline {
+ background:#ffffaa;
+ font-size: smaller;
}
td.diff-context {
- background:#eeeeee;
+ background:#eeeeee;
+ font-size: smaller;
}
+span.diffchange { color: red; }
img { border: none; }
img.tex { vertical-align: middle; }
+span.texhtml { font-family: serif; }
#toc {
@@ -107,6 +106,14 @@ img.tex { vertical-align: middle; }
padding: 5px;
font-size: 95%;
}
+#toc .tocindent { margin-left: 2em; }
+#toc .tocline { margin-bottom: 0px; }
+#toc p { margin: 0 }
+#toc .toctoggle { font-size: 94%; }
+#toc .editsection {
+ margin-top: 0.7em;
+ font-size: 94%;
+}
.error {
color: red;
@@ -140,3 +147,45 @@ div.prefsectiontip {
}
fieldset.prefsection { margin-top: 1em }
fieldset.operaprefsection { margin-left: 15em }
+
+/* emulate center */
+.center {
+ width: 100%;
+ text-align: center;
+}
+*.center * {
+ margin-left: auto;
+ margin-right: auto;
+}
+
+div.townBox {
+ position:relative;
+ float:right;
+ background:White;
+ margin-left:1em;
+ border: 1px solid Grey;
+ padding:0.3em;
+ width: 200px;
+ overflow: hidden;
+ clear: right;
+}
+div.townBox dl {
+ padding: 0;
+ margin: 0 0 0.3em 0;
+ font-size: 96%;
+}
+div.townBox dl dt {
+ background: none;
+ margin: 0.4em 0 0 0;
+}
+div.townBox dl dd {
+ margin: 0.1em 0 0 1.1em;
+ background-color: #f3f3f3;
+}
+/* use this instead of #toc for page content */
+.toccolours {
+ border:1px solid #aaaaaa;
+ background-color:#f9f9f9;
+ padding:5px;
+ font-size: 95%;
+}