summaryrefslogtreecommitdiffstats
path: root/etherpad/src/static
diff options
context:
space:
mode:
authorEgil Moeller <egil.moller@freecode.no>2010-04-06 19:32:17 +0200
committerEgil Moeller <egil.moller@freecode.no>2010-04-06 19:32:17 +0200
commita2151e06591cf6467a1e0ea36ca3961ae8b73930 (patch)
tree8fbb8a7d482f8ada1f1661871fe5080f171856cc /etherpad/src/static
parentf4fb4fee242f5a85ebcc5646a98672f90dc6b8b4 (diff)
downloadetherpad-a2151e06591cf6467a1e0ea36ca3961ae8b73930.tar.gz
etherpad-a2151e06591cf6467a1e0ea36ca3961ae8b73930.tar.bz2
etherpad-a2151e06591cf6467a1e0ea36ca3961ae8b73930.zip
More plugin manager styling
Diffstat (limited to 'etherpad/src/static')
-rw-r--r--etherpad/src/static/css/admin/pluginmanager.css18
1 files changed, 18 insertions, 0 deletions
diff --git a/etherpad/src/static/css/admin/pluginmanager.css b/etherpad/src/static/css/admin/pluginmanager.css
index 5814c08..136a713 100644
--- a/etherpad/src/static/css/admin/pluginmanager.css
+++ b/etherpad/src/static/css/admin/pluginmanager.css
@@ -42,3 +42,21 @@
#editorcontainerbox table tr td:first-child {
border-left-color: #e6e6e6;
}
+
+.mousover_parent .mouseover_child {
+ display: none;
+ position: absolute;
+ padding: 4pt;
+
+ border-top-color: #e6e6e6;
+ border-bottom-color: #c3c3c3;
+ border-left-color: #e6e6e6;
+ border-right-color: #c3c3c3;
+ border: 1px solid;
+
+ background: #ffffff;
+}
+
+.mousover_parent:hover .mouseover_child {
+ display: block;
+}