diff options
author | Robin Appelman <icewind1991@gmail.com> | 2010-10-15 23:42:58 +0000 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2010-10-15 23:42:58 +0000 |
commit | a98dfbbf71336f4f0fbf4299c101239aaa65826b (patch) | |
tree | 230278a4053e35506018652d017f4266ca04d12f /css | |
parent | 494d88a4353799ae2fbc2631578664715c063c7e (diff) | |
download | nextcloud-server-a98dfbbf71336f4f0fbf4299c101239aaa65826b.tar.gz nextcloud-server-a98dfbbf71336f4f0fbf4299c101239aaa65826b.zip |
plugin manager and plugin installer
Diffstat (limited to 'css')
-rw-r--r-- | css/default.php | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/css/default.php b/css/default.php index 5f69eeaa1ba..1c7e6e7beeb 100644 --- a/css/default.php +++ b/css/default.php @@ -456,15 +456,16 @@ div.moreActionsList tr:hover{ height:100%; } -table.userlist{ +table.userlist, table.pluginlist{ margin:0px; padding:0px; width:100%; border-spacing:0px; } -table.userlist>thead{ +table.userlist>thead, table.pluginlist>thead{ background-color:#DDD; + font-weight:bold; } table.userlist td.sellect{ @@ -490,7 +491,7 @@ p.description{ padding-bottom:3px; } -#settingsContent_user_managment{ +div.settingsContent{ background-color:#F2F2F2; min-height:100%; } @@ -504,4 +505,17 @@ p.description{ text-align:left; background-color:#DDD; width:100%; +} + +table.pluginlist td.name{ + width:150px; +} + +table.pluginlist td.disable{ + width:50px; +} + +table.pluginlist td.version{ + width:60px; + text-align:center }
\ No newline at end of file |