summary refs log tree commit diff stats
path: root/theme/layouts
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2010-05-24 19:24:42 -0400
committerStarla Insigna <hatkirby@fourisland.com>2010-05-24 19:24:42 -0400
commit6bb267cd55cab179e7f0b00aca533a4c39292a64 (patch)
tree86240c4d1e15dcb214279c63a5e5c74a71472636 /theme/layouts
parent4c91415ed1bc36eefbc1f3c8215022da567d5316 (diff)
downloadfourisland-6bb267cd55cab179e7f0b00aca533a4c39292a64.tar.gz
fourisland-6bb267cd55cab179e7f0b00aca533a4c39292a64.tar.bz2
fourisland-6bb267cd55cab179e7f0b00aca533a4c39292a64.zip
Fixed some stylistic problems
Including padding around posts on layouts 4.5 and 6.2, corner rounding on The Fourm and duplicate profile links on The Fourm on layout 6.2.
Diffstat (limited to 'theme/layouts')
-rwxr-xr-xtheme/layouts/4.5/style.css44
-rwxr-xr-xtheme/layouts/6.2/style.css41
-rwxr-xr-xtheme/layouts/7/style.css33
-rwxr-xr-x[-rw-r--r--]theme/layouts/subtle/layout.tpl0
-rwxr-xr-x[-rw-r--r--]theme/layouts/subtle/style.php0
5 files changed, 118 insertions, 0 deletions
diff --git a/theme/layouts/4.5/style.css b/theme/layouts/4.5/style.css index 7e9b574..a8b9306 100755 --- a/theme/layouts/4.5/style.css +++ b/theme/layouts/4.5/style.css
@@ -239,3 +239,47 @@ div.module + cite {
239div.module.unrounded + cite { 239div.module.unrounded + cite {
240 top: -0.4em; 240 top: -0.4em;
241} 241}
242
243#phpBB3-page-body .post,
244#phpBB3-page-body .rules {
245 -moz-border-radius: 10px;
246 -webkit-border-radius: 10px;
247 -khtml-border-radius: 10px;
248 border-radius: 10px;
249 padding: 10px;
250}
251
252#phpBB3-page-body .forabg,
253#phpBB3-page-body .forumbg {
254 -moz-border-radius: 10px;
255 -webkit-border-radius: 10px;
256 -khtml-border-radius: 10px;
257 border-radius: 10px;
258 padding: 5px;
259}
260
261.navbar,
262.panel {
263 -moz-border-radius: 10px;
264 -webkit-border-radius: 10px;
265 -khtml-border-radius: 10px;
266 border-radius: 10px;
267}
268
269span.corners-top,
270span.corners-bottom,
271span.corners-top span,
272span.corners-bottom span {
273 visibility: hidden;
274}
275
276/*#phpBB3-page-body span.corners-top,
277#phpBB3-page-body span.corners-bottom,
278#phpBB3-page-body span.corners-top span,
279#phpBB3-page-body span.corners-bottom span {
280 background-repeat: repeat-x;
281}*/
282
283.entry .rounded {
284 padding: 10px;
285}
diff --git a/theme/layouts/6.2/style.css b/theme/layouts/6.2/style.css index e68f7f8..e450f3d 100755 --- a/theme/layouts/6.2/style.css +++ b/theme/layouts/6.2/style.css
@@ -253,3 +253,44 @@ div.module + cite {
253div.module.unrounded + cite { 253div.module.unrounded + cite {
254 top: -0.4em; 254 top: -0.4em;
255} 255}
256
257#phpBB3-page-body .post,
258#phpBB3-page-body .rules {
259 -moz-border-radius: 10px;
260 -webkit-border-radius: 10px;
261 -khtml-border-radius: 10px;
262 border-radius: 10px;
263 padding: 10px;
264}
265
266#phpBB3-page-body .forabg,
267#phpBB3-page-body .forumbg {
268 -moz-border-radius: 10px;
269 -webkit-border-radius: 10px;
270 -khtml-border-radius: 10px;
271 border-radius: 10px;
272 padding: 5px;
273}
274
275.navbar,
276.panel {
277 -moz-border-radius: 10px;
278 -webkit-border-radius: 10px;
279 -khtml-border-radius: 10px;
280 border-radius: 10px;
281}
282
283span.corners-top,
284span.corners-bottom,
285span.corners-top span,
286span.corners-bottom span {
287 visibility: hidden;
288}
289
290#phpBB3-page-body ul {
291 list-style: none !important;
292}
293
294.entry .rounded {
295 padding: 10px;
296}
diff --git a/theme/layouts/7/style.css b/theme/layouts/7/style.css index 2816c53..744625c 100755 --- a/theme/layouts/7/style.css +++ b/theme/layouts/7/style.css
@@ -188,3 +188,36 @@ div.module + cite {
188div.module.unrounded + cite { 188div.module.unrounded + cite {
189 top: -0.7em; 189 top: -0.7em;
190} 190}
191
192#phpBB3-page-body .post,
193#phpBB3-page-body .rules {
194 -moz-border-radius: 10px;
195 -webkit-border-radius: 10px;
196 -khtml-border-radius: 10px;
197 border-radius: 10px;
198 padding: 10px;
199}
200
201#phpBB3-page-body .forabg,
202#phpBB3-page-body .forumbg {
203 -moz-border-radius: 10px;
204 -webkit-border-radius: 10px;
205 -khtml-border-radius: 10px;
206 border-radius: 10px;
207 padding: 5px;
208}
209
210.navbar,
211.panel {
212 -moz-border-radius: 10px;
213 -webkit-border-radius: 10px;
214 -khtml-border-radius: 10px;
215 border-radius: 10px;
216}
217
218span.corners-top,
219span.corners-bottom,
220span.corners-top span,
221span.corners-bottom span {
222 visibility: hidden;
223}
diff --git a/theme/layouts/subtle/layout.tpl b/theme/layouts/subtle/layout.tpl index 9dbb6ca..9dbb6ca 100644..100755 --- a/theme/layouts/subtle/layout.tpl +++ b/theme/layouts/subtle/layout.tpl
diff --git a/theme/layouts/subtle/style.php b/theme/layouts/subtle/style.php index 77a01cb..77a01cb 100644..100755 --- a/theme/layouts/subtle/style.php +++ b/theme/layouts/subtle/style.php