r112348 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r112347‎ | r112348 | r112349 >
Date:20:13, 24 February 2012
Author:kaldari
Status:ok
Tags:
Comment:
wikistandard.css is not a common skin file, it is only used by the classic/standard skin. moving from skins/common/ to skins/standard
Modified paths:
  • /trunk/phase3/resources/Resources.php (modified) (history)
  • /trunk/phase3/skins/common/wikistandard.css (deleted) (history)
  • /trunk/phase3/skins/standard (added) (history)
  • /trunk/phase3/skins/standard/main.css (added) (history)

Diff [purge]

Index: trunk/phase3/resources/Resources.php
@@ -55,7 +55,7 @@
5656 'localBasePath' => $GLOBALS['wgStyleDirectory'],
5757 ),
5858 'skins.standard' => array(
59 - 'styles' => array( 'common/wikistandard.css' => array( 'media' => 'screen' ) ),
 59+ 'styles' => array( 'standard/main.css' => array( 'media' => 'screen' ) ),
6060 'remoteBasePath' => $GLOBALS['wgStylePath'],
6161 'localBasePath' => $GLOBALS['wgStyleDirectory'],
6262 ),
Index: trunk/phase3/skins/common/wikistandard.css
@@ -1,188 +0,0 @@
2 -/**
3 - * This style sheet is used by the classic (aka standard) skin
4 - */
5 -
6 -#article {
7 - padding: 4px;
8 -}
9 -
10 -#content {
11 - margin: 0;
12 - padding: 0;
13 -}
14 -
15 -#footer {
16 - padding: 4px;
17 - font-size: 95%;
18 - clear: both;
19 -}
20 -
21 -#pagestats {
22 - font-size: 9pt;
23 -}
24 -
25 -#powersearch {
26 - background: #DDEEFF;
27 - border-style: solid;
28 - border-width: 1px;
29 - padding: 2px;
30 -}
31 -
32 -#quickbar {
33 - width: 140px;
34 - height: 100%;
35 - padding: 4px;
36 - visibility: visible;
37 - z-index: 99;
38 - font-size: 95%;
39 -}
40 -
41 -#topbar {
42 - padding: 4px;
43 - font-size: 95%;
44 -}
45 -
46 -/* Table of contents */
47 -.toctoggle,
48 -.editsection {
49 - font-size: smaller;
50 -}
51 -
52 -/* ... */
53 -#toolbar {
54 - padding: 0;
55 -}
56 -
57 -#infobox {
58 - background: #eeeeff;
59 - color: black;
60 -}
61 -
62 -#editform {
63 - margin-top: 1px;
64 -}
65 -
66 -a.interwiki,
67 -a.external {
68 - color: #3366BB;
69 -}
70 -
71 -a.printable {
72 - text-decoration: underline;
73 -}
74 -
75 -a.new {
76 - color: #ba0000;
77 -}
78 -
79 -a.stub {
80 - color: #772233;
81 - text-decoration: none;
82 -}
83 -
84 -a:visited {
85 - color: #5A3696;
86 -}
87 -
88 -body {
89 - margin: 0;
90 - padding: 4px;
91 - color: black;
92 -}
93 -
94 -form.inline {
95 - display: inline;
96 -}
97 -
98 -textarea {
99 - overflow: auto;
100 -}
101 -
102 -h1.pagetitle {
103 - padding-top: 0;
104 - margin-top: 0;
105 - padding-bottom: 0;
106 - margin-bottom: 0;
107 - font-size: 150%;
108 -}
109 -
110 -h1.pagetitle .editsection {
111 - font-size: 66.7%;
112 -}
113 -
114 -h2 {
115 - font-size: 120%;
116 -}
117 -
118 -h2 .editsection {
119 - font-size: 83.3%;
120 -}
121 -
122 -h2, h3, h4, h5, h6 {
123 - margin-bottom: 0;
124 -}
125 -
126 -h3 {
127 - font-size: 106.25%;
128 -}
129 -
130 -h3 .editsection {
131 - font-size: 94.1%;
132 -}
133 -
134 -h4 {
135 - font-size: 103.125%;
136 -}
137 -
138 -h4 .editsection {
139 - font-size: 97.0%;
140 -}
141 -
142 -h5 {
143 - font-size: 100%;
144 -}
145 -
146 -h5 .editsection {
147 - font-size: 100%;
148 -}
149 -
150 -h6 {
151 - font-size: 95%;
152 -}
153 -
154 -h6 .editsection {
155 - font-size: 105.3%;
156 -}
157 -
158 -hr.sep {
159 - color: gray;
160 - height: 1px;
161 - background-color: gray;
162 -}
163 -
164 -p.subpages {
165 - font-size: small;
166 -}
167 -
168 -p.subtitle {
169 - padding-top: 0;
170 - margin-top: 0;
171 -}
172 -
173 -.catlinks {
174 - font-size: small;
175 - margin-top: 0;
176 - text-align:right;
177 -}
178 -
179 -td {
180 - empty-cells: show;
181 -}
182 -
183 -td.bottom {
184 - border-top: 1px solid gray;
185 -}
186 -
187 -td.top {
188 - border-bottom: 1px solid gray;
189 -}
Index: trunk/phase3/skins/standard/main.css
@@ -0,0 +1,188 @@
 2+/**
 3+ * This style sheet is used by the classic (aka standard) skin
 4+ */
 5+
 6+#article {
 7+ padding: 4px;
 8+}
 9+
 10+#content {
 11+ margin: 0;
 12+ padding: 0;
 13+}
 14+
 15+#footer {
 16+ padding: 4px;
 17+ font-size: 95%;
 18+ clear: both;
 19+}
 20+
 21+#pagestats {
 22+ font-size: 9pt;
 23+}
 24+
 25+#powersearch {
 26+ background: #DDEEFF;
 27+ border-style: solid;
 28+ border-width: 1px;
 29+ padding: 2px;
 30+}
 31+
 32+#quickbar {
 33+ width: 140px;
 34+ height: 100%;
 35+ padding: 4px;
 36+ visibility: visible;
 37+ z-index: 99;
 38+ font-size: 95%;
 39+}
 40+
 41+#topbar {
 42+ padding: 4px;
 43+ font-size: 95%;
 44+}
 45+
 46+/* Table of contents */
 47+.toctoggle,
 48+.editsection {
 49+ font-size: smaller;
 50+}
 51+
 52+/* ... */
 53+#toolbar {
 54+ padding: 0;
 55+}
 56+
 57+#infobox {
 58+ background: #eeeeff;
 59+ color: black;
 60+}
 61+
 62+#editform {
 63+ margin-top: 1px;
 64+}
 65+
 66+a.interwiki,
 67+a.external {
 68+ color: #3366BB;
 69+}
 70+
 71+a.printable {
 72+ text-decoration: underline;
 73+}
 74+
 75+a.new {
 76+ color: #ba0000;
 77+}
 78+
 79+a.stub {
 80+ color: #772233;
 81+ text-decoration: none;
 82+}
 83+
 84+a:visited {
 85+ color: #5A3696;
 86+}
 87+
 88+body {
 89+ margin: 0;
 90+ padding: 4px;
 91+ color: black;
 92+}
 93+
 94+form.inline {
 95+ display: inline;
 96+}
 97+
 98+textarea {
 99+ overflow: auto;
 100+}
 101+
 102+h1.pagetitle {
 103+ padding-top: 0;
 104+ margin-top: 0;
 105+ padding-bottom: 0;
 106+ margin-bottom: 0;
 107+ font-size: 150%;
 108+}
 109+
 110+h1.pagetitle .editsection {
 111+ font-size: 66.7%;
 112+}
 113+
 114+h2 {
 115+ font-size: 120%;
 116+}
 117+
 118+h2 .editsection {
 119+ font-size: 83.3%;
 120+}
 121+
 122+h2, h3, h4, h5, h6 {
 123+ margin-bottom: 0;
 124+}
 125+
 126+h3 {
 127+ font-size: 106.25%;
 128+}
 129+
 130+h3 .editsection {
 131+ font-size: 94.1%;
 132+}
 133+
 134+h4 {
 135+ font-size: 103.125%;
 136+}
 137+
 138+h4 .editsection {
 139+ font-size: 97.0%;
 140+}
 141+
 142+h5 {
 143+ font-size: 100%;
 144+}
 145+
 146+h5 .editsection {
 147+ font-size: 100%;
 148+}
 149+
 150+h6 {
 151+ font-size: 95%;
 152+}
 153+
 154+h6 .editsection {
 155+ font-size: 105.3%;
 156+}
 157+
 158+hr.sep {
 159+ color: gray;
 160+ height: 1px;
 161+ background-color: gray;
 162+}
 163+
 164+p.subpages {
 165+ font-size: small;
 166+}
 167+
 168+p.subtitle {
 169+ padding-top: 0;
 170+ margin-top: 0;
 171+}
 172+
 173+.catlinks {
 174+ font-size: small;
 175+ margin-top: 0;
 176+ text-align:right;
 177+}
 178+
 179+td {
 180+ empty-cells: show;
 181+}
 182+
 183+td.bottom {
 184+ border-top: 1px solid gray;
 185+}
 186+
 187+td.top {
 188+ border-bottom: 1px solid gray;
 189+}
Property changes on: trunk/phase3/skins/standard/main.css
___________________________________________________________________
Added: svn:keywords
1190 + Author Date Id Revision
Added: svn:eol-style
2191 + native

Status & tagging log