summaryrefslogtreecommitdiff
path: root/css/block-editing.css
diff options
context:
space:
mode:
Diffstat (limited to 'css/block-editing.css')
-rwxr-xr-xcss/block-editing.css25
1 files changed, 25 insertions, 0 deletions
diff --git a/css/block-editing.css b/css/block-editing.css
new file mode 100755
index 0000000..ba86d71
--- /dev/null
+++ b/css/block-editing.css
@@ -0,0 +1,25 @@
+/**
+ * @file
+ * Zen's rollover edit links for blocks.
+ */
+
+
+div.block.with-block-editing {
+ position: relative;
+}
+
+div.block.with-block-editing div.edit {
+ display: none;
+ position: absolute;
+ right: 0; /* LTR */
+ top: 0;
+ z-index: 40;
+ border: 1px solid #eee;
+ padding: 0 2px;
+ font-size: 0.75em;
+ background-color: #fff;
+}
+
+div.block.with-block-editing:hover div.edit {
+ display: block;
+}