summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-17 14:04:47 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-17 14:04:47 +0000
commit29f443761f4dec428e7d98dafe6095f86ec89880 (patch)
tree815147f8d5c6a92e220eebee09f67a4668fc25c4 /themes
parent81ecb970bc638951b3fc468da2268803b54968a4 (diff)
downloadbrdo-29f443761f4dec428e7d98dafe6095f86ec89880.tar.gz
brdo-29f443761f4dec428e7d98dafe6095f86ec89880.tar.bz2
#197425 by mooffie, slightly modified: add blockquote support by default and blockquote theming to Garland and Bluemarine (other themes have it already)
Diffstat (limited to 'themes')
-rw-r--r--themes/bluemarine/style-rtl.css7
-rw-r--r--themes/bluemarine/style.css8
-rw-r--r--themes/garland/style-rtl.css8
-rw-r--r--themes/garland/style.css10
4 files changed, 33 insertions, 0 deletions
diff --git a/themes/bluemarine/style-rtl.css b/themes/bluemarine/style-rtl.css
index ef3c46905..9c63297cd 100644
--- a/themes/bluemarine/style-rtl.css
+++ b/themes/bluemarine/style-rtl.css
@@ -2,6 +2,13 @@
body {
direction: rtl;
}
+blockquote {
+ padding: 0 15px 0 0;
+ margin: 1.1em 35px 1.1em 40px;
+ border-left-style: none;
+ border-right-style: solid;
+ border-right-width: 4px;
+}
#logo img {
float: right;
}
diff --git a/themes/bluemarine/style.css b/themes/bluemarine/style.css
index c88def143..9db6519af 100644
--- a/themes/bluemarine/style.css
+++ b/themes/bluemarine/style.css
@@ -29,6 +29,14 @@ p {
margin-top: 0.5em;
margin-bottom: 0.9em;
}
+blockquote {
+ padding: 0 0 0 15px; /* LTR */
+ margin: 1.1em 40px 1.1em 35px; /* LTR */
+ border-left-style: solid; /* LTR */
+ border-left-width: 4px; /* LTR */
+ border-color: #69c;
+ font-style: italic;
+}
a {
text-decoration: none;
font-weight: bold;
diff --git a/themes/garland/style-rtl.css b/themes/garland/style-rtl.css
index 791abf243..f772ad6cf 100644
--- a/themes/garland/style-rtl.css
+++ b/themes/garland/style-rtl.css
@@ -11,6 +11,14 @@ body {
direction: rtl;
}
+blockquote {
+ padding: 0 15px 0 0;
+ margin: 1.1em 35px 1.1em 40px;
+ border-left-style: none;
+ border-right-style: solid;
+ border-right-width: 4px;
+}
+
ol li, ul li {
margin: 0.4em .5em 0.4em 0;
}
diff --git a/themes/garland/style.css b/themes/garland/style.css
index cc882fca8..396eafbb2 100644
--- a/themes/garland/style.css
+++ b/themes/garland/style.css
@@ -71,6 +71,16 @@ p {
padding: 0;
}
+blockquote {
+ padding: 0 0 0 15px; /* LTR */
+ margin: 1.1em 40px 1.1em 35px; /* LTR */
+ border-left-style: solid; /* LTR */
+ border-left-width: 4px; /* LTR */
+ /* Same as link color, keeps this colorable. */
+ border-color: #027AC6;
+ font-style: italic;
+}
+
a:link, a:visited {
color: #027AC6;
text-decoration: none;