diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-03-30 15:58:20 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-04-03 13:21:24 +0200 |
commit | 0816cf91422346313d44cba5f017125899afbf2d (patch) | |
tree | a07e2b644f252896f9b271db31009b66f0d0f367 /settings/css | |
parent | a2087f30d1c4b379b9a53a7ba8ef604038d2b8cb (diff) | |
download | nextcloud-server-0816cf91422346313d44cba5f017125899afbf2d.tar.gz nextcloud-server-0816cf91422346313d44cba5f017125899afbf2d.zip |
Add experimental applications switch
Allows administrators to disable or enabled experimental applications as well as show the trust level.
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.css | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index c619bd7b9b3..eb6b0f54053 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -210,6 +210,24 @@ span.version { margin-left:1em; margin-right:1em; color:#555; } opacity: .5; } +.app-level { + color: white; +} + +.app-level .official, .app-level .approved { + background-color: #E8C805; + border-radius: 2px; + margin-left: 5px; + padding: 3px; +} + +.app-level .experimental { + background-color: #F02405; + border-radius: 2px; + margin-left: 5px; + padding: 3px; +} + #apps-list { position: relative; height: 100%; @@ -236,6 +254,7 @@ span.version { margin-left:1em; margin-right:1em; color:#555; } .app-name, .app-version, .app-score, +.app-level, .recommendedapp { display: inline-block; } @@ -261,7 +280,7 @@ span.version { margin-left:1em; margin-right:1em; color:#555; } white-space: pre-line; } -#app-category-2 { +#app-category-1 { border-bottom: 1px solid #e8e8e8; } |