—
Index: drupal/themes/garland/fix-ie.css
--- drupal/themes/garland/fix-ie.css Base (1.8)
+++ drupal/themes/garland/fix-ie.css Locally Modified (Based On 1.8)
@@ -67,3 +67,21 @@
/* Fading elements in IE causes the text to bleed unless they have a background. */
background-color: #ffffff;
}
+
+/**
+ * blockquote .
+ */
+blockquote {
+ height: 100%;
+}
+blockquote .quote_start {
+ height: expression(this.parentNode.clientHeight-35);
+ bottom: auto;
+}
+blockquote div div {
+ background-repeat: no-repeat;
+}
+blockquote .quote_end {
+ height: expression(this.parentNode.clientHeight-35);
+ top: auto;
+}
Index: drupal/themes/garland/node.tpl.php
--- drupal/themes/garland/node.tpl.php Base (1.5)
+++ drupal/themes/garland/node.tpl.php Locally Modified (Based On 1.5)
@@ -14,7 +14,7 @@
Index: drupal/themes/garland/style-rtl.css
--- drupal/themes/garland/style-rtl.css Base (1.6)
+++ drupal/themes/garland/style-rtl.css Locally Modified (Based On 1.6)
@@ -291,3 +291,29 @@
#squeeze .right-corner {
min-height: 1%;
}
+
+/**
+ * blockquote .
+ */
+blockquote .quote_start {
+ border-left:none;
+ border-right:1px solid #E9EFF3;
+ left:auto;
+ right:0;
+}
+blockquote .quote_start div {
+ background-position:right top;
+ left:auto;
+ right:-5px;
+}
+blockquote .quote_end {
+ border-left:1px solid #E9EFF3;
+ border-right:none;
+ left:0;
+ right:auto;
+}
+blockquote .quote_end div {
+ background-position:left bottom;
+ left:-5px;
+ right:auto;
+}
Index: drupal/themes/garland/style.css
--- drupal/themes/garland/style.css Base (1.38)
+++ drupal/themes/garland/style.css Locally Modified (Based On 1.38)
@@ -1077,3 +1077,50 @@
background-color: #dfd;
border-color: #beb;
}
+
+/**
+ * blockquote .
+ */
+blockquote {
+ padding:1em;
+ position:relative;
+ font-style: italic;
+}
+blockquote .quote_start {
+ border-left:1px solid #E9EFF3; /* LTR */
+ border-top:1px solid #E9EFF3;
+ bottom:3em;
+ left:0; /* LTR */
+ min-height:2em;
+ position:absolute;
+ top:0;
+ width:20%;
+}
+blockquote .quote_start div {
+ background-position:left top; /* LTR */
+ left:-5px; /* LTR */
+ top:-5px;
+}
+blockquote .quote_end {
+ border-bottom:1px solid #E9EFF3;
+ border-right:1px solid #E9EFF3; /* LTR */
+ bottom:0;
+ position:absolute;
+ right:0; /* LTR */
+ top:2.3em;
+ width:20%;
+}
+blockquote .quote_end div {
+ background-position:right bottom; /* LTR */
+ bottom:-5px;
+ right:-5px; /* LTR */
+}
+blockquote div div {
+ background-image:url(images/menu-leaf.gif);
+ height:9px;
+ position:absolute;
+ width:9px;
+}
+blockquote p {
+ margin:0;
+}