Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2012-08-04 22:12:18 +0400
committerThomas Tanghus <thomas@tanghus.net>2012-08-04 22:16:32 +0400
commit24af2e8078147578bd435983c1d9a11f13dae8c1 (patch)
tree76f2d8123f0b13c47127b5e61f230c11d83aa9c8 /settings/css
parenta6ce497dd932fc013301e433c635c6286fffe513 (diff)
Load OCS apps in an ajax call to avoid blocking the WUI.
Diffstat (limited to 'settings/css')
-rw-r--r--settings/css/settings.css8
1 files changed, 7 insertions, 1 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css
index d5634eec81f..e79029ddbfa 100644
--- a/settings/css/settings.css
+++ b/settings/css/settings.css
@@ -43,11 +43,17 @@ div.quota>span { position:absolute; right:0em; white-space:nowrap; top: 0.7em }
select.quota.active { background: #fff; }
/* APPS */
-li { color:#888; }
+li { color:#888; white-space: nowrap; }
li.active { color:#000; }
small.externalapp { color:#FFF; background-color:#BBB; font-weight:bold; font-size:6pt; padding:4px; border-radius: 4px;}
+small.externalapp.list { float: right; }
span.version { margin-left:3em; color:#ddd; }
+.app { position: relative; display: inline-block; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; z-index: 100; transition: .2s max-width linear; -o-transition: .2s max-width linear; -moz-transition: .2s max-width linear; -webkit-transition: .2s max-width linear; -ms-transition: .2s max-width linear; }
+.app.externalapp { max-width: 10em; }
+/* Transition to complete width! */
+.app:hover, .app:active { max-width: inherit; }
+
/* LOG */
#log { white-space:normal; }