diff options
author | Joas Schilling <coding@schilljs.com> | 2018-05-02 14:57:57 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-05-07 14:11:00 +0200 |
commit | b045272951b37fdb9cb3c5afd3f2911c8d647730 (patch) | |
tree | ef52dd1446a20b822ef26c8774a153bf701840ac /core/css | |
parent | d161d4473edbd80272ff36991186c9b1f19204ad (diff) | |
download | nextcloud-server-b045272951b37fdb9cb3c5afd3f2911c8d647730.tar.gz nextcloud-server-b045272951b37fdb9cb3c5afd3f2911c8d647730.zip |
Add support for a highlighted navigation counter
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/apps.scss | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index e323195f70f..997c6f856fe 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -435,6 +435,13 @@ kbd { font-size: 9pt; line-height: 44px; padding: 0 12px; /* Same padding as all li > a in the app-navigation */ + + span.highlighted { + padding: 2px 5px; + border-radius: 10px; + background-color: $color-primary; + color: $color-primary-text; + } } } |