Make text of edit entry being aligned with other entries

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2018-03-22 11:24:13 +01:00
parent dd92923afa
commit 138ae59901
No known key found for this signature in database
GPG key ID: 4C614C6ED2CDE6DF

View file

@ -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;
}
}
}
}