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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-04-07 13:39:11 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-05-16 10:50:21 +0300
commit6ada8254c9da63638f3b7e0cceaacf4254f43916 (patch)
treef12b324fe26db57dbbebe1c1e9491409696c164a /core
parent85f5ae9264c6cf8dcdcd061f0e5d8008f745a596 (diff)
Added language support in users list
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core')
-rw-r--r--core/css/inputs.scss7
1 files changed, 6 insertions, 1 deletions
diff --git a/core/css/inputs.scss b/core/css/inputs.scss
index 29b131ef015..721cb89f8c0 100644
--- a/core/css/inputs.scss
+++ b/core/css/inputs.scss
@@ -718,6 +718,8 @@ input {
border: 1px solid nc-darken($color-main-background, 14%);
background: $color-main-background;
z-index: 50;
+ max-height: 250px;
+ overflow-y: auto;
.multiselect__content {
width: 100%;
padding: 5px 0;
@@ -750,7 +752,7 @@ input {
color: nc-lighten($color-main-text, 33%);
width: 100%;
/* selected checkmark icon */
- &::before {
+ &:not(.multiselect__option--disabled)::before {
content: ' ';
background-image: url('../img/actions/checkmark.svg?v=1');
background-repeat: no-repeat;
@@ -762,6 +764,9 @@ input {
margin-right: 5px;
visibility: hidden;
}
+ &.multiselect__option--disabled {
+ background-color: nc-darken($color-main-background, 8%);
+ }
/* add the prop tag-placeholder="create" to add the +
* icon on top of an unknown-and-ready-to-be-created entry
*/