2024-11-05 16:18:04 +00:00
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
globally kill the tailwind ring by default
|
|
|
|
|
*/
|
|
|
|
|
input {
|
|
|
|
|
--tw-ring-shadow: 0 0 #000 !important;
|
2025-01-30 19:04:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
Allow HTML5 validation on Choices-js
|
|
|
|
|
https://github.com/Choices-js/Choices/issues/449
|
|
|
|
|
*/
|
|
|
|
|
.choices[data-type*="select-one"] select.choices__input {
|
|
|
|
|
display: block !important;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.choices[data-type*="select-multiple"] select.choices__input {
|
|
|
|
|
display: block !important;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
2025-03-11 21:54:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.choices {
|
|
|
|
|
margin-bottom: 0px !important;
|
2024-11-05 16:18:04 +00:00
|
|
|
}
|