summaryrefslogtreecommitdiffstats
path: root/core/css
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2015-11-30 15:40:17 +0100
committerVincent Petry <pvince81@owncloud.com>2016-01-19 16:24:26 +0100
commitffba6d0a7e1988bed1c0f0dfa2334092a65c568d (patch)
tree02e0daa2bf915983f6ec40f574b0ca8640c205d1 /core/css
parent8d41cbb97a7a1fa750db520dc8879da4402f31e3 (diff)
downloadnextcloud-server-ffba6d0a7e1988bed1c0f0dfa2334092a65c568d.tar.gz
nextcloud-server-ffba6d0a7e1988bed1c0f0dfa2334092a65c568d.zip
Added system tags GUI in sidebar
Added files details sidebar panel to assign/unassign/rename/delete system tags.
Diffstat (limited to 'core/css')
-rw-r--r--core/css/systemtags.css80
1 files changed, 80 insertions, 0 deletions
diff --git a/core/css/systemtags.css b/core/css/systemtags.css
new file mode 100644
index 00000000000..5c667e54547
--- /dev/null
+++ b/core/css/systemtags.css
@@ -0,0 +1,80 @@
+/*
+ * Copyright (c) 2016
+ *
+ * This file is licensed under the Affero General Public License version 3
+ * or later.
+ *
+ * See the COPYING-README file.
+ *
+ */
+.systemtags-select2-dropdown .select2-selected {
+ display: list-item;
+ background-color: #f8f8f8;
+}
+.systemtags-select2-dropdown .select2-highlighted,
+.systemtags-select2-dropdown .select2-selected.select2-highlighted {
+ background: #3875d7;
+}
+
+.systemtags-select2-dropdown .select2-highlighted {
+ color: #000000;
+}
+.systemtags-select2-dropdown .select2-result-label .checkmark {
+ visibility: hidden;
+}
+
+.systemtags-select2-dropdown .select2-result-label .new-item .systemtags-actions {
+ display: none;
+}
+
+.systemtags-select2-dropdown .select2-selected .select2-result-label .checkmark {
+ visibility: visible;
+}
+
+.systemtags-select2-dropdown .select2-result-label .icon {
+ display: inline-block;
+}
+
+.systemtags-select2-dropdown .systemtags-actions {
+ float: right;
+}
+
+.systemtags-select2-dropdown .systemtags-rename-form {
+ display: inline;
+ margin-left: 10px;
+}
+
+.systemtags-select2-container {
+ width: 80%;
+}
+
+.systemtags-select2-container .select2-choices {
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ background: #fff;
+ color: #555;
+ box-sizing: content-box;
+ border-radius: 3px;
+ border: 1px solid #ddd;
+ margin: 3px 3px 3px 0;
+ padding: 7px 6px 5px;
+ min-height: auto;
+}
+
+.systemtags-select2-container .select2-choices .select2-search-choice {
+ border: 0;
+ box-shadow: none;
+ background: none;
+ padding: 0;
+ margin: 0;
+ line-height: 20px;
+}
+.systemtags-select2-container .select2-choices .select2-search-choice-close {
+ display: none;
+}
+.systemtags-select2-container .select2-choices .select2-search-field input {
+ margin: 0;
+ padding: 0;
+ line-height: 20px;
+}
+