diff options
author | Starla Insigna <hatkirby@fourisland.com> | 2010-05-24 19:24:42 -0400 |
---|---|---|
committer | Starla Insigna <hatkirby@fourisland.com> | 2010-05-24 19:24:42 -0400 |
commit | 6bb267cd55cab179e7f0b00aca533a4c39292a64 (patch) | |
tree | 86240c4d1e15dcb214279c63a5e5c74a71472636 /theme/layouts/7 | |
parent | 4c91415ed1bc36eefbc1f3c8215022da567d5316 (diff) | |
download | fourisland-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/7')
-rwxr-xr-x | theme/layouts/7/style.css | 33 |
1 files changed, 33 insertions, 0 deletions
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 { | |||
188 | div.module.unrounded + cite { | 188 | div.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 | |||
218 | span.corners-top, | ||
219 | span.corners-bottom, | ||
220 | span.corners-top span, | ||
221 | span.corners-bottom span { | ||
222 | visibility: hidden; | ||
223 | } | ||