summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-03-22 11:24:13 +0100
committerJulius Härtl <jus@bitgrid.net>2018-03-22 11:24:13 +0100
commit138ae59901007aa1353912799e5046cda9105edd (patch)
tree69c44696aecfacaa5e49263823516aba401fe8ad
parentdd92923afa618e677d8d32aed7fd6e25c8b3ef25 (diff)
downloadnextcloud-server-138ae59901007aa1353912799e5046cda9105edd.tar.gz
nextcloud-server-138ae59901007aa1353912799e5046cda9105edd.zip
Make text of edit entry being aligned with other entries
Signed-off-by: Julius Härtl <jus@bitgrid.net>
-rw-r--r--core/css/apps.scss11
1 files changed, 9 insertions, 2 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss
index dc4b8290e99..6b3ab623704 100644
--- a/core/css/apps.scss
+++ b/core/css/apps.scss
@@ -206,12 +206,19 @@ kbd {
left: 22px; /* 44px / 2 */
}
- > .app-navigation-entry-deleted,
- > .app-navigation-entry-edit {
+ > .app-navigation-entry-deleted {
/* margin to keep active indicator visible */
margin-left: 4px;
padding-left: 84px;
}
+
+ > .app-navigation-entry-edit {
+ /* margin to keep active indicator visible */
+ margin-left: 4px;
+ /* align the input correctly with the link text
+ 44px+44px-4px-6px padding for the input */
+ padding-left: 78px !important;
+ }
}
}
}