aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-03-04 16:24:14 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-03-04 16:24:14 +0100
commitc401a8cf2653512c9babfabca4a5d24293e8e7be (patch)
tree86b471aa7db4d0867f8f5bdbcad204361dcd7427
parente70570cbd7d98dd9f759184a571366b16ee38723 (diff)
downloadnextcloud-server-c401a8cf2653512c9babfabca4a5d24293e8e7be.tar.gz
nextcloud-server-c401a8cf2653512c9babfabca4a5d24293e8e7be.zip
Fixed loading state in apps nav menu
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
-rw-r--r--core/css/header.scss48
1 files changed, 25 insertions, 23 deletions
diff --git a/core/css/header.scss b/core/css/header.scss
index 3273d2d8372..35e756cfcd5 100644
--- a/core/css/header.scss
+++ b/core/css/header.scss
@@ -268,10 +268,10 @@ nav[role='navigation'] {
}
a {
position: relative;
- display: block;
+ display: inline-flex;
padding: 10px 12px;
- height:40px;
- vertical-align: text-bottom;
+ height: 40px;
+ align-items: center;
span {
display: inline-block;
padding-bottom: 0;
@@ -286,9 +286,6 @@ nav[role='navigation'] {
span {
opacity: .7;
}
- svg {
- margin-bottom: 2px;
- }
&:hover svg,
&:focus svg,
&:hover span,
@@ -308,20 +305,20 @@ nav[role='navigation'] {
max-width: 32px;
}
-}
-
-/* loading feedback for apps */
-.app-loading {
- .icon-loading-small-dark {
- display: inline !important;
- position: absolute;
- left: 12px;
- width: 16px;
- height: 16px;
- }
- .app-icon {
- opacity: 0;
+ /* loading feedback for apps */
+ .app-loading {
+ .icon-loading-small {
+ display: inline !important;
+ position: absolute;
+ left: 12px;
+ width: 16px;
+ height: 16px;
+ }
+ .app-icon {
+ opacity: 0;
+ }
}
+
}
/* Apps management */
@@ -462,10 +459,15 @@ nav[role='navigation'] {
opacity: .6;
}
}
- .app-loading .icon-loading-small-dark {
- top: 12px;
- width: 20px;
- height: 20px;
+ .app-loading {
+ > svg {
+ display: none;
+ }
+ .icon-loading-small-dark {
+ width: 20px;
+ height: 20px;
+ display: block !important;
+ }
}