Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorkorelstar <korelstar@users.noreply.github.com>2018-06-23 21:53:19 +0300
committerkorelstar <korelstar@users.noreply.github.com>2018-11-02 23:05:52 +0300
commitf852e1bee4dd0c09f1841199bfd3c79f94a52ab1 (patch)
tree6255d81ac78c0ca2045ad419e351362ae1628833 /css
parent934dcc6df8ee8e9d145af936b42516bca81d7c41 (diff)
show category selector in navigation
Diffstat (limited to 'css')
-rw-r--r--css/notes.css29
1 files changed, 29 insertions, 0 deletions
diff --git a/css/notes.css b/css/notes.css
index 8de9cfbb..5fe88eae 100644
--- a/css/notes.css
+++ b/css/notes.css
@@ -220,6 +220,7 @@ form.category .icon-confirm {
}
.ui-autocomplete.category-autocomplete {
z-index: 5000 !important;
+ position: fixed;
max-height: 200px;
overflow-y: auto;
overflow-x: hidden;
@@ -348,3 +349,31 @@ form.category .icon-confirm {
padding-left: 90px;
}
}
+
+
+/* icons for sidebar */
+.nav-icon-emptyfolder {
+ background-image: url('../img/folder-empty.svg?v=1');
+}
+.nav-icon-files {
+ background-image: url('../img/folder.svg?v=1');
+}
+.nav-icon-recent {
+ background-image: url('../img/recent.svg?v=1');
+}
+.nav-icon-favorites {
+ background-image: url('../img/star.svg?v=1');
+}
+
+
+
+.separator-below {
+ border-bottom: 1px solid var(--color-border);
+}
+.separator-above {
+ border-top: 1px solid var(--color-border);
+}
+.current-category-item > a,
+a.current-category-item {
+ font-weight: bold;
+}