mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-15 02:33:22 +00:00
Improve ajax-select style
This commit is contained in:
parent
be5ce414ba
commit
45441c351d
@ -1,10 +1,4 @@
|
|||||||
/* This also requires ajax-select-index.css */
|
/* This also requires ajax-select-index.css */
|
||||||
.tomselected {
|
|
||||||
.select2-container--default {
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.ts-dropdown {
|
.ts-dropdown {
|
||||||
|
|
||||||
.select-item {
|
.select-item {
|
||||||
@ -22,20 +16,22 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.ts-control {
|
.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
|
||||||
|
border-left: 1px solid black;
|
||||||
.item {
|
}
|
||||||
|
|
||||||
cursor: pointer;
|
.ts-wrapper.multi .ts-control [data-value] {
|
||||||
background-color: #e4e4e4;
|
background-image: none;
|
||||||
border: 1px solid #aaa;
|
cursor: pointer;
|
||||||
border-radius: 4px;
|
background-color: #e4e4e4;
|
||||||
display: inline-block;
|
border: 1px solid #aaa;
|
||||||
margin-left: 5px;
|
border-radius: 4px;
|
||||||
margin-top: 5px;
|
display: inline-block;
|
||||||
margin-bottom: 5px;
|
margin-left: 5px;
|
||||||
padding-right: 10px;
|
margin-top: 5px;
|
||||||
padding-left: 10px;
|
margin-bottom: 5px;
|
||||||
}
|
padding-right: 10px;
|
||||||
|
padding-left: 10px;
|
||||||
|
text-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
}
|
}
|
@ -1,4 +1,4 @@
|
|||||||
import "tom-select/dist/css/tom-select.css";
|
import "tom-select/dist/css/tom-select.default.css";
|
||||||
import { inheritHtmlElement, registerComponent } from "#core:utils/web-components";
|
import { inheritHtmlElement, registerComponent } from "#core:utils/web-components";
|
||||||
import TomSelect from "tom-select";
|
import TomSelect from "tom-select";
|
||||||
import type {
|
import type {
|
||||||
@ -71,7 +71,6 @@ class AutocompleteSelect extends inheritHtmlElement("select") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected shouldLoad(query: string) {
|
protected shouldLoad(query: string) {
|
||||||
console.log(this);
|
|
||||||
return query.length >= this.minCharNumberForSearch; // Avoid launching search with less than setup number of characters
|
return query.length >= this.minCharNumberForSearch; // Avoid launching search with less than setup number of characters
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,6 +39,7 @@ class AutoCompleteSelectMixin:
|
|||||||
|
|
||||||
def get_context(self, name, value, attrs):
|
def get_context(self, name, value, attrs):
|
||||||
context = super().get_context(name, value, attrs)
|
context = super().get_context(name, value, attrs)
|
||||||
|
context["widget"]["attrs"]["autocomplete"] = "off"
|
||||||
context["component"] = self.component_name
|
context["component"] = self.component_name
|
||||||
context["statics"] = {
|
context["statics"] = {
|
||||||
"js": [staticfiles_storage.url(file) for file in self.js],
|
"js": [staticfiles_storage.url(file) for file in self.js],
|
||||||
|
Loading…
Reference in New Issue
Block a user