Remove deprecated scripts for adding head-matter to wt_config.xml, including Python and Bash implementations, to streamline configuration management.
This commit is contained in:
1
client/node_modules/@vueform/multiselect/themes/default.css
generated
vendored
Normal file
1
client/node_modules/@vueform/multiselect/themes/default.css
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
525
client/node_modules/@vueform/multiselect/themes/default.scss
generated
vendored
Normal file
525
client/node_modules/@vueform/multiselect/themes/default.scss
generated
vendored
Normal file
@@ -0,0 +1,525 @@
|
||||
.multiselect {
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
outline: none;
|
||||
border: var(--ms-border-width, 1px) solid var(--ms-border-color, #D1D5DB);
|
||||
border-radius: var(--ms-radius, 4px);
|
||||
background: var(--ms-bg, #FFFFFF);
|
||||
font-size: var(--ms-font-size, 1rem);
|
||||
min-height: calc(2 * var(--ms-border-width, 1px) + var(--ms-font-size, 1rem) * var(--ms-line-height, 1.375) + 2 * var(--ms-py, 0.5rem));
|
||||
|
||||
&.is-open {
|
||||
border-radius: var(--ms-radius, 4px) var(--ms-radius, 4px) 0 0;
|
||||
}
|
||||
|
||||
&.is-open-top {
|
||||
border-radius: 0 0 var(--ms-radius, 4px) var(--ms-radius, 4px);
|
||||
}
|
||||
|
||||
&.is-disabled {
|
||||
cursor: default;
|
||||
background: var(--ms-bg-disabled, #F3F4F6);
|
||||
}
|
||||
|
||||
&.is-active {
|
||||
border: var(--ms-border-width-active, var(--ms-border-width, 1px)) solid var(--ms-border-color-active, var(--ms-border-color, #D1D5DB));
|
||||
box-shadow: 0 0 0 var(--ms-ring-width, 3px) var(--ms-ring-color, #10B98130);
|
||||
}
|
||||
}
|
||||
|
||||
.multiselect-wrapper {
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
outline: none;
|
||||
min-height: calc(2 * var(--ms-border-width, 1px) + var(--ms-font-size, 1rem) * var(--ms-line-height, 1.375) + 2 * var(--ms-py, 0.5rem));
|
||||
}
|
||||
|
||||
.multiselect-multiple-label,
|
||||
.multiselect-single-label,
|
||||
.multiselect-placeholder {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
pointer-events: none;
|
||||
background: transparent;
|
||||
line-height: var(--ms-line-height, 1.375);
|
||||
padding-left: var(--ms-px, 0.875rem);
|
||||
padding-right: calc(1.25rem + var(--ms-px, 0.875rem) * 3);
|
||||
box-sizing: border-box;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.multiselect-placeholder {
|
||||
color: var(--ms-placeholder-color, #9CA3AF);
|
||||
}
|
||||
|
||||
.multiselect-single-label-text {
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.multiselect-search {
|
||||
width: 100%;
|
||||
height: 100%; // for FF
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
bottom: 0px;
|
||||
left: 0px;
|
||||
right: 0px;
|
||||
outline: none;
|
||||
box-sizing: border-box;
|
||||
border: 0;
|
||||
appearance: none;
|
||||
font-size: inherit;
|
||||
font-family: inherit;
|
||||
background: var(--ms-bg, #FFFFFF);
|
||||
border-radius: var(--ms-radius, 4px);
|
||||
padding-left: var(--ms-px, 0.875rem);
|
||||
|
||||
&::-webkit-search-decoration,
|
||||
&::-webkit-search-cancel-button,
|
||||
&::-webkit-search-results-button,
|
||||
&::-webkit-search-results-decoration {
|
||||
-webkit-appearance:none;
|
||||
}
|
||||
}
|
||||
|
||||
.multiselect-tags {
|
||||
flex-grow: 1;
|
||||
flex-shrink: 1;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin: var(--ms-tag-my, 0.25rem) 0 0;
|
||||
padding-left: var(--ms-py, 0.5rem);
|
||||
align-items: center;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.multiselect-tag {
|
||||
background: var(--ms-tag-bg, #10B981);
|
||||
color: var(--ms-tag-color, #FFFFFF);
|
||||
font-size: var(--ms-tag-font-size, 0.875rem);
|
||||
line-height: var(--ms-tag-line-height, 1.25rem);
|
||||
font-weight: var(--ms-tag-font-weight, 600);
|
||||
padding: var(--ms-tag-py, 0.125rem) 0 var(--ms-tag-py, 0.125rem) var(--ms-tag-px, 0.5rem);
|
||||
border-radius: var(--ms-tag-radius, 4px);
|
||||
margin-right: var(--ms-tag-mx, 0.25rem);
|
||||
margin-bottom: var(--ms-tag-my, 0.25rem);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
white-space: nowrap;
|
||||
min-width: 0;
|
||||
|
||||
&.is-disabled {
|
||||
padding-right: var(--ms-tag-px, 0.5rem);
|
||||
background: var(--ms-tag-bg-disabled, #9CA3AF);
|
||||
color: var(--ms-tag-color-disabled, #FFFFFF);
|
||||
}
|
||||
}
|
||||
|
||||
.multiselect-tag-wrapper {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.multiselect-tag-wrapper-break {
|
||||
white-space: normal;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.multiselect-tag-remove {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: var(--ms-tag-remove-py, 0.25rem) var(--ms-tag-remove-px, 0.25rem);
|
||||
margin: var(--ms-tag-remove-my, 0rem) var(--ms-tag-remove-mx, 0.125rem);
|
||||
border-radius: var(--ms-tag-remove-radius, 4px);
|
||||
|
||||
&:hover {
|
||||
background: #00000010;
|
||||
}
|
||||
}
|
||||
|
||||
.multiselect-tag-remove-icon {
|
||||
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 512' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M207.6 256l107.72-107.72c6.23-6.23 6.23-16.34 0-22.58l-25.03-25.03c-6.23-6.23-16.34-6.23-22.58 0L160 208.4 52.28 100.68c-6.23-6.23-16.34-6.23-22.58 0L4.68 125.7c-6.23 6.23-6.23 16.34 0 22.58L112.4 256 4.68 363.72c-6.23 6.23-6.23 16.34 0 22.58l25.03 25.03c6.23 6.23 16.34 6.23 22.58 0L160 303.6l107.72 107.72c6.23 6.23 16.34 6.23 22.58 0l25.03-25.03c6.23-6.23 6.23-16.34 0-22.58L207.6 256z'%3E%3C/path%3E%3C/svg%3E");
|
||||
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 512' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M207.6 256l107.72-107.72c6.23-6.23 6.23-16.34 0-22.58l-25.03-25.03c-6.23-6.23-16.34-6.23-22.58 0L160 208.4 52.28 100.68c-6.23-6.23-16.34-6.23-22.58 0L4.68 125.7c-6.23 6.23-6.23 16.34 0 22.58L112.4 256 4.68 363.72c-6.23 6.23-6.23 16.34 0 22.58l25.03 25.03c6.23 6.23 16.34 6.23 22.58 0L160 303.6l107.72 107.72c6.23 6.23 16.34 6.23 22.58 0l25.03-25.03c6.23-6.23 6.23-16.34 0-22.58L207.6 256z'%3E%3C/path%3E%3C/svg%3E");
|
||||
-webkit-mask-position: center;
|
||||
mask-position: center;
|
||||
-webkit-mask-repeat: no-repeat;
|
||||
mask-repeat: no-repeat;
|
||||
-webkit-mask-size: contain;
|
||||
mask-size: contain;
|
||||
background-color: currentColor;
|
||||
opacity: 0.8;
|
||||
display: inline-block;
|
||||
width: 0.75rem;
|
||||
height: 0.75rem;
|
||||
}
|
||||
|
||||
.multiselect-tags-search-wrapper {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
margin: 0 var(--ms-tag-mx, 4px) var(--ms-tag-my, 4px);
|
||||
flex-grow: 1;
|
||||
flex-shrink: 1;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.multiselect-tags-search-copy {
|
||||
visibility: hidden;
|
||||
white-space: pre-wrap;
|
||||
display: inline-block;
|
||||
height: 1px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.multiselect-tags-search {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
border: 0;
|
||||
appearance: none;
|
||||
outline: none;
|
||||
padding: 0;
|
||||
font-size: inherit;
|
||||
font-family: inherit;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
appearance: none;
|
||||
|
||||
&::-webkit-search-decoration,
|
||||
&::-webkit-search-cancel-button,
|
||||
&::-webkit-search-results-button,
|
||||
&::-webkit-search-results-decoration {
|
||||
-webkit-appearance:none;
|
||||
}
|
||||
}
|
||||
|
||||
.multiselect-inifite {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: calc(2 * var(--ms-border-width, 1px) + var(--ms-font-size, 1rem) * var(--ms-line-height, 1.375) + 2 * var(--ms-py, 0.5rem));
|
||||
}
|
||||
|
||||
.multiselect-spinner,
|
||||
.multiselect-inifite-spinner {
|
||||
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M456.433 371.72l-27.79-16.045c-7.192-4.152-10.052-13.136-6.487-20.636 25.82-54.328 23.566-118.602-6.768-171.03-30.265-52.529-84.802-86.621-144.76-91.424C262.35 71.922 256 64.953 256 56.649V24.56c0-9.31 7.916-16.609 17.204-15.96 81.795 5.717 156.412 51.902 197.611 123.408 41.301 71.385 43.99 159.096 8.042 232.792-4.082 8.369-14.361 11.575-22.424 6.92z'%3E%3C/path%3E%3C/svg%3E");
|
||||
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M456.433 371.72l-27.79-16.045c-7.192-4.152-10.052-13.136-6.487-20.636 25.82-54.328 23.566-118.602-6.768-171.03-30.265-52.529-84.802-86.621-144.76-91.424C262.35 71.922 256 64.953 256 56.649V24.56c0-9.31 7.916-16.609 17.204-15.96 81.795 5.717 156.412 51.902 197.611 123.408 41.301 71.385 43.99 159.096 8.042 232.792-4.082 8.369-14.361 11.575-22.424 6.92z'%3E%3C/path%3E%3C/svg%3E");
|
||||
-webkit-mask-position: center;
|
||||
mask-position: center;
|
||||
-webkit-mask-repeat: no-repeat;
|
||||
mask-repeat: no-repeat;
|
||||
-webkit-mask-size: contain;
|
||||
mask-size: contain;
|
||||
background-color: var(--ms-spinner-color, #10B981);
|
||||
width: 1rem;
|
||||
height: 1rem;
|
||||
z-index: 10;
|
||||
animation: multiselect-spin 1s linear infinite;
|
||||
flex-shrink: 0;
|
||||
flex-grow: 0;
|
||||
}
|
||||
|
||||
.multiselect-spinner {
|
||||
margin: 0 var(--ms-px, 0.875rem) 0 0;
|
||||
}
|
||||
|
||||
.multiselect-clear {
|
||||
padding: 0 var(--ms-px, 0.875rem) 0 0px;
|
||||
position: relative;
|
||||
z-index: 10;
|
||||
opacity: 1;
|
||||
transition: .3s;
|
||||
flex-shrink: 0;
|
||||
flex-grow: 0;
|
||||
display: flex;
|
||||
|
||||
&:hover .multiselect-clear-icon {
|
||||
background-color: var(--ms-clear-color-hover, #000000);
|
||||
}
|
||||
}
|
||||
|
||||
.multiselect-clear-icon {
|
||||
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 512' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M207.6 256l107.72-107.72c6.23-6.23 6.23-16.34 0-22.58l-25.03-25.03c-6.23-6.23-16.34-6.23-22.58 0L160 208.4 52.28 100.68c-6.23-6.23-16.34-6.23-22.58 0L4.68 125.7c-6.23 6.23-6.23 16.34 0 22.58L112.4 256 4.68 363.72c-6.23 6.23-6.23 16.34 0 22.58l25.03 25.03c6.23 6.23 16.34 6.23 22.58 0L160 303.6l107.72 107.72c6.23 6.23 16.34 6.23 22.58 0l25.03-25.03c6.23-6.23 6.23-16.34 0-22.58L207.6 256z'%3E%3C/path%3E%3C/svg%3E");
|
||||
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 512' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M207.6 256l107.72-107.72c6.23-6.23 6.23-16.34 0-22.58l-25.03-25.03c-6.23-6.23-16.34-6.23-22.58 0L160 208.4 52.28 100.68c-6.23-6.23-16.34-6.23-22.58 0L4.68 125.7c-6.23 6.23-6.23 16.34 0 22.58L112.4 256 4.68 363.72c-6.23 6.23-6.23 16.34 0 22.58l25.03 25.03c6.23 6.23 16.34 6.23 22.58 0L160 303.6l107.72 107.72c6.23 6.23 16.34 6.23 22.58 0l25.03-25.03c6.23-6.23 6.23-16.34 0-22.58L207.6 256z'%3E%3C/path%3E%3C/svg%3E");
|
||||
-webkit-mask-position: center;
|
||||
mask-position: center;
|
||||
-webkit-mask-repeat: no-repeat;
|
||||
mask-repeat: no-repeat;
|
||||
-webkit-mask-size: contain;
|
||||
mask-size: contain;
|
||||
background-color: var(--ms-clear-color, #999999);
|
||||
width: 0.625rem;
|
||||
height: 1.125rem;
|
||||
display: inline-block;
|
||||
transition: .3s;
|
||||
}
|
||||
|
||||
.multiselect-caret {
|
||||
transform: rotate(0deg);
|
||||
transition: .3s transform;
|
||||
-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 512' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'%3E%3C/path%3E%3C/svg%3E");
|
||||
mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 512' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'%3E%3C/path%3E%3C/svg%3E");
|
||||
-webkit-mask-position: center;
|
||||
mask-position: center;
|
||||
-webkit-mask-repeat: no-repeat;
|
||||
mask-repeat: no-repeat;
|
||||
-webkit-mask-size: contain;
|
||||
mask-size: contain;
|
||||
background-color: var(--ms-caret-color, #999999);
|
||||
width: 0.625rem;
|
||||
height: 1.125rem;
|
||||
margin: 0 var(--ms-px, 0.875rem) 0 0;
|
||||
position: relative;
|
||||
z-index: 10;
|
||||
flex-shrink: 0;
|
||||
flex-grow: 0;
|
||||
pointer-events: none;
|
||||
|
||||
&.is-open {
|
||||
transform: rotate(180deg);
|
||||
pointer-events: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.multiselect-dropdown {
|
||||
position: absolute;
|
||||
left: calc(var(--ms-border-width, 1px) * -1);
|
||||
right: calc(var(--ms-border-width, 1px) * -1);
|
||||
bottom: 0;
|
||||
transform: translateY(100%);
|
||||
border: var(--ms-dropdown-border-width, 1px) solid var(--ms-dropdown-border-color, #D1D5DB);
|
||||
margin-top: calc(var(--ms-border-width, 1px) * -1);
|
||||
overflow-y: scroll;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
z-index: 100;
|
||||
background: var(--ms-dropdown-bg, #FFFFFF);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border-radius: 0 0 var(--ms-dropdown-radius, 4px) var(--ms-dropdown-radius, 4px);
|
||||
outline: none;
|
||||
max-height: var(--ms-max-height, 10rem);
|
||||
|
||||
&.is-top {
|
||||
transform: translateY(-100%);
|
||||
top: var(--ms-border-width, 1px);
|
||||
bottom: auto;
|
||||
border-radius: var(--ms-dropdown-radius, 4px) var(--ms-dropdown-radius, 4px) 0 0;
|
||||
}
|
||||
|
||||
&.is-hidden {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.multiselect-options {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.multiselect-group {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.multiselect-group-label {
|
||||
padding: var(--ms-group-label-py, 0.3rem) var(--ms-group-label-px, 0.75rem);
|
||||
font-size: 0.875rem;
|
||||
font-weight: 600;
|
||||
background: var(--ms-group-label-bg, #E5E7EB);
|
||||
color: var(--ms-group-label-color, #374151);
|
||||
cursor: default;
|
||||
line-height: var(--ms-group-label-line-height, 1.375);
|
||||
display: flex;
|
||||
box-sizing: border-box;
|
||||
text-decoration: none;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
text-align: left;
|
||||
|
||||
&.is-pointable {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
&.is-pointed {
|
||||
background: var(--ms-group-label-bg-pointed, #D1D5DB);
|
||||
color: var(--ms-group-label-color-pointed, #374151);
|
||||
}
|
||||
|
||||
&.is-selected {
|
||||
background: var(--ms-group-label-bg-selected, #059669);
|
||||
color: var(--ms-group-label-color-selected, #FFFFFF);
|
||||
}
|
||||
|
||||
&.is-disabled {
|
||||
background: var(--ms-group-label-bg-disabled, #F3F4F6);
|
||||
color: var(--ms-group-label-color-disabled, #D1D5DB);
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
&.is-selected.is-pointed {
|
||||
background: var(--ms-group-label-bg-selected-pointed, #0c9e70);
|
||||
color: var(--ms-group-label-color-selected-pointed, #FFFFFF);
|
||||
}
|
||||
|
||||
&.is-selected.is-disabled {
|
||||
background: var(--ms-group-label-bg-selected-disabled, #75cfb1);
|
||||
color: var(--ms-group-label-color-selected-disabled, #D1FAE5);
|
||||
}
|
||||
}
|
||||
|
||||
.multiselect-group-options {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.multiselect-option {
|
||||
padding: var(--ms-option-py, 0.5rem) var(--ms-option-px, 0.75rem);
|
||||
font-size: var(--ms-option-font-size, 1rem);
|
||||
line-height: var(--ms-option-line-height, 1.375);
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
box-sizing: border-box;
|
||||
text-decoration: none;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
text-align: left;
|
||||
|
||||
&.is-pointed {
|
||||
background: var(--ms-option-bg-pointed, #F3F4F6);
|
||||
color: var(--ms-option-color-pointed, #1F2937);
|
||||
}
|
||||
|
||||
&.is-selected {
|
||||
background: var(--ms-option-bg-selected, #10B981);
|
||||
color: var(--ms-option-color-selected, #FFFFFF);
|
||||
}
|
||||
|
||||
&.is-disabled {
|
||||
background: var(--ms-option-bg-disabled, #FFFFFF);
|
||||
color: var(--ms-option-color-disabled, #D1D5DB);
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
&.is-selected.is-pointed {
|
||||
background: var(--ms-option-bg-selected-pointed, #26c08e);
|
||||
color: var(--ms-option-color-selected-pointed, #FFFFFF);
|
||||
}
|
||||
|
||||
&.is-selected.is-disabled {
|
||||
background: var(--ms-option-bg-selected-disabled, #87dcc0);
|
||||
color: var(--ms-option-color-selected-disabled, #D1FAE5);
|
||||
}
|
||||
}
|
||||
|
||||
.multiselect-no-options,
|
||||
.multiselect-no-results {
|
||||
padding: var(--ms-option-py, 0.5rem) var(--ms-option-px, 0.75rem);
|
||||
color: var(--ms-empty-color, #4B5563);
|
||||
}
|
||||
|
||||
.multiselect-fake-input {
|
||||
background: transparent;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: -1px;
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
font-size: 0;
|
||||
outline: none;
|
||||
|
||||
&:active, &:focus {
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
|
||||
.multiselect-assistive-text {
|
||||
position: absolute;
|
||||
margin: -1px;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0 0 0 0);
|
||||
}
|
||||
|
||||
.multiselect-spacer {
|
||||
display: none;
|
||||
}
|
||||
|
||||
[dir="rtl"] {
|
||||
.multiselect-multiple-label,
|
||||
.multiselect-single-label,
|
||||
.multiselect-placeholder {
|
||||
padding-right: var(--ms-px, 0.875rem);
|
||||
padding-left: calc(1.25rem + var(--ms-px, 0.875rem) * 3);
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.multiselect-search {
|
||||
padding-left: 0;
|
||||
padding-right: var(--ms-px, 0.875rem);
|
||||
}
|
||||
|
||||
.multiselect-tags {
|
||||
padding-left: 0;
|
||||
padding-right: var(--ms-py, 0.5rem);
|
||||
}
|
||||
|
||||
.multiselect-tag {
|
||||
padding: var(--ms-tag-py, 0.125rem) var(--ms-tag-px, 0.5rem) var(--ms-tag-py, 0.125rem) 0;
|
||||
margin-right: 0;
|
||||
margin-left: var(--ms-tag-mx, 0.25rem);
|
||||
|
||||
&.is-disabled {
|
||||
padding-left: var(--ms-tag-px, 0.5rem);
|
||||
}
|
||||
}
|
||||
|
||||
.multiselect-spinner,
|
||||
.multiselect-caret {
|
||||
margin: 0 0 0 var(--ms-px, 0.875rem);
|
||||
}
|
||||
|
||||
.multiselect-clear {
|
||||
padding: 0 0 0 var(--ms-px, 0.875rem);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes multiselect-spin {
|
||||
from {
|
||||
transform: rotate(0);
|
||||
}
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
193
client/node_modules/@vueform/multiselect/themes/tailwind.css
generated
vendored
Normal file
193
client/node_modules/@vueform/multiselect/themes/tailwind.css
generated
vendored
Normal file
@@ -0,0 +1,193 @@
|
||||
.multiselect {
|
||||
@apply relative mx-auto w-full flex items-center justify-end box-border cursor-pointer border border-gray-300 rounded bg-white text-base leading-snug outline-none;
|
||||
}
|
||||
.multiselect.is-disabled {
|
||||
@apply cursor-default bg-gray-100;
|
||||
}
|
||||
.multiselect.is-open {
|
||||
@apply rounded-b-none;
|
||||
}
|
||||
.multiselect.is-open-top {
|
||||
@apply rounded-t-none;
|
||||
}
|
||||
.multiselect.is-active {
|
||||
@apply ring ring-green-500 ring-opacity-30;
|
||||
}
|
||||
|
||||
.multiselect-wrapper {
|
||||
@apply relative mx-auto w-full flex items-center justify-end box-border cursor-pointer outline-none;
|
||||
}
|
||||
|
||||
.multiselect-single-label {
|
||||
@apply flex items-center h-full max-w-full absolute left-0 top-0 pointer-events-none bg-transparent leading-snug pl-3.5 pr-16 box-border rtl:left-auto rtl:right-0 rtl:pl-0 rtl:pr-3.5;
|
||||
}
|
||||
|
||||
.multiselect-single-label-text {
|
||||
@apply overflow-ellipsis overflow-hidden block whitespace-nowrap max-w-full;
|
||||
}
|
||||
|
||||
.multiselect-multiple-label {
|
||||
@apply flex items-center h-full absolute left-0 top-0 pointer-events-none bg-transparent leading-snug pl-3.5 rtl:left-auto rtl:right-0 rtl:pl-0 rtl:pr-3.5;
|
||||
}
|
||||
|
||||
.multiselect-search {
|
||||
@apply w-full absolute inset-0 outline-none focus:ring-0 appearance-none box-border border-0 text-base font-sans bg-white rounded pl-3.5 rtl:pl-0 rtl:pr-3.5;
|
||||
}
|
||||
|
||||
.multiselect-tags {
|
||||
@apply flex-grow flex-shrink flex flex-wrap items-center mt-1 pl-2 min-w-0 rtl:pl-0 rtl:pr-2;
|
||||
}
|
||||
|
||||
.multiselect-tag {
|
||||
@apply bg-green-500 text-white text-sm font-semibold py-0.5 pl-2 rounded mr-1 mb-1 flex items-center whitespace-nowrap min-w-0 rtl:pl-0 rtl:pr-2 rtl:mr-0 rtl:ml-1;
|
||||
}
|
||||
.multiselect-tag.is-disabled {
|
||||
@apply pr-2 opacity-50 rtl:pl-2;
|
||||
}
|
||||
|
||||
.multiselect-tag-wrapper {
|
||||
@apply whitespace-nowrap overflow-hidden overflow-ellipsis;
|
||||
}
|
||||
|
||||
.multiselect-tag-wrapper-break {
|
||||
@apply whitespace-normal break-all;
|
||||
}
|
||||
|
||||
.multiselect-tag-remove {
|
||||
@apply flex items-center justify-center p-1 mx-0.5 rounded-sm hover:bg-black hover:bg-opacity-10;
|
||||
}
|
||||
|
||||
.multiselect-tag-remove-icon {
|
||||
@apply bg-multiselect-remove bg-center bg-no-repeat opacity-30 inline-block w-3 h-3;
|
||||
}
|
||||
|
||||
.multiselect-tag-remove:hover .multiselect-tag-remove-icon {
|
||||
@apply opacity-60;
|
||||
}
|
||||
|
||||
.multiselect-tags-search-wrapper {
|
||||
@apply inline-block relative mx-1 mb-1 flex-grow flex-shrink h-full;
|
||||
}
|
||||
|
||||
.multiselect-tags-search {
|
||||
@apply absolute inset-0 border-0 outline-none focus:ring-0 appearance-none p-0 text-base font-sans box-border w-full;
|
||||
}
|
||||
|
||||
.multiselect-tags-search-copy {
|
||||
@apply invisible whitespace-pre-wrap inline-block h-px;
|
||||
}
|
||||
|
||||
.multiselect-placeholder {
|
||||
@apply flex items-center h-full absolute left-0 top-0 pointer-events-none bg-transparent leading-snug pl-3.5 text-gray-400 rtl:left-auto rtl:right-0 rtl:pl-0 rtl:pr-3.5;
|
||||
}
|
||||
|
||||
.multiselect-caret {
|
||||
@apply bg-multiselect-caret bg-center bg-no-repeat w-2.5 h-4 py-px box-content mr-3.5 relative z-10 opacity-40 flex-shrink-0 flex-grow-0 transition-transform transform pointer-events-none rtl:mr-0 rtl:ml-3.5;
|
||||
}
|
||||
.multiselect-caret.is-open {
|
||||
@apply rotate-180 pointer-events-auto;
|
||||
}
|
||||
|
||||
.multiselect-clear {
|
||||
@apply pr-3.5 relative z-10 opacity-40 transition duration-300 flex-shrink-0 flex-grow-0 flex hover:opacity-80 rtl:pr-0 rtl:pl-3.5;
|
||||
}
|
||||
|
||||
.multiselect-clear-icon {
|
||||
@apply bg-multiselect-remove bg-center bg-no-repeat w-2.5 h-4 py-px box-content inline-block;
|
||||
}
|
||||
|
||||
.multiselect-spinner {
|
||||
@apply bg-multiselect-spinner bg-center bg-no-repeat w-4 h-4 z-10 mr-3.5 animate-spin flex-shrink-0 flex-grow-0 rtl:mr-0 rtl:ml-3.5;
|
||||
}
|
||||
|
||||
.multiselect-inifite {
|
||||
@apply flex items-center justify-center w-full;
|
||||
}
|
||||
|
||||
.multiselect-inifite-spinner {
|
||||
@apply bg-multiselect-spinner bg-center bg-no-repeat w-4 h-4 z-10 animate-spin flex-shrink-0 flex-grow-0 m-3.5;
|
||||
}
|
||||
|
||||
.multiselect-dropdown {
|
||||
@apply max-h-60 absolute -left-px -right-px bottom-0 transform translate-y-full border border-gray-300 -mt-px overflow-y-scroll z-50 bg-white flex flex-col rounded-b;
|
||||
}
|
||||
.multiselect-dropdown.is-top {
|
||||
@apply -translate-y-full top-px bottom-auto rounded-b-none rounded-t;
|
||||
}
|
||||
.multiselect-dropdown.is-hidden {
|
||||
@apply hidden;
|
||||
}
|
||||
|
||||
.multiselect-options {
|
||||
@apply flex flex-col p-0 m-0 list-none;
|
||||
}
|
||||
|
||||
.multiselect-group {
|
||||
@apply p-0 m-0;
|
||||
}
|
||||
|
||||
.multiselect-group-label {
|
||||
@apply flex text-sm box-border items-center justify-start text-left py-1 px-3 font-semibold bg-gray-200 cursor-default leading-normal;
|
||||
}
|
||||
.multiselect-group-label.is-pointable {
|
||||
@apply cursor-pointer;
|
||||
}
|
||||
.multiselect-group-label.is-pointed {
|
||||
@apply bg-gray-300 text-gray-700;
|
||||
}
|
||||
.multiselect-group-label.is-selected {
|
||||
@apply bg-green-600 text-white;
|
||||
}
|
||||
.multiselect-group-label.is-disabled {
|
||||
@apply bg-gray-100 text-gray-300 cursor-not-allowed;
|
||||
}
|
||||
.multiselect-group-label.is-selected.is-pointed {
|
||||
@apply bg-green-600 text-white opacity-90;
|
||||
}
|
||||
.multiselect-group-label.is-selected.is-disabled {
|
||||
@apply text-green-100 bg-green-600 bg-opacity-50 cursor-not-allowed;
|
||||
}
|
||||
|
||||
.multiselect-group-options {
|
||||
@apply p-0 m-0;
|
||||
}
|
||||
|
||||
.multiselect-option {
|
||||
@apply flex items-center justify-start box-border text-left cursor-pointer text-base leading-snug py-2 px-3;
|
||||
}
|
||||
.multiselect-option.is-pointed {
|
||||
@apply text-gray-800 bg-gray-100;
|
||||
}
|
||||
.multiselect-option.is-selected {
|
||||
@apply text-white bg-green-500;
|
||||
}
|
||||
.multiselect-option.is-disabled {
|
||||
@apply text-gray-300 cursor-not-allowed;
|
||||
}
|
||||
.multiselect-option.is-selected.is-pointed {
|
||||
@apply text-white bg-green-500 opacity-90;
|
||||
}
|
||||
.multiselect-option.is-selected.is-disabled {
|
||||
@apply text-green-100 bg-green-500 bg-opacity-50 cursor-not-allowed;
|
||||
}
|
||||
|
||||
.multiselect-no-options {
|
||||
@apply py-2 px-3 text-gray-600 bg-white text-left rtl:text-right;
|
||||
}
|
||||
|
||||
.multiselect-no-results {
|
||||
@apply py-2 px-3 text-gray-600 bg-white text-left rtl:text-right;
|
||||
}
|
||||
|
||||
.multiselect-fake-input {
|
||||
@apply bg-transparent absolute left-0 right-0 -bottom-px w-full h-px border-0 p-0 appearance-none outline-none text-transparent;
|
||||
}
|
||||
|
||||
.multiselect-assistive-text {
|
||||
@apply absolute -m-px w-px h-px overflow-hidden;
|
||||
clip: rect(0 0 0 0);
|
||||
}
|
||||
|
||||
.multiselect-spacer {
|
||||
@apply h-9 py-px box-content;
|
||||
}
|
||||
212
client/node_modules/@vueform/multiselect/themes/tailwind.scss
generated
vendored
Normal file
212
client/node_modules/@vueform/multiselect/themes/tailwind.scss
generated
vendored
Normal file
@@ -0,0 +1,212 @@
|
||||
.multiselect {
|
||||
@apply relative mx-auto w-full flex items-center justify-end box-border cursor-pointer border border-gray-300 rounded bg-white text-base leading-snug outline-none;
|
||||
|
||||
&.is-disabled {
|
||||
@apply cursor-default bg-gray-100;
|
||||
}
|
||||
|
||||
&.is-open {
|
||||
@apply rounded-b-none;
|
||||
}
|
||||
|
||||
&.is-open-top {
|
||||
@apply rounded-t-none;
|
||||
}
|
||||
|
||||
&.is-active {
|
||||
@apply ring ring-green-500 ring-opacity-30;
|
||||
}
|
||||
}
|
||||
|
||||
.multiselect-wrapper {
|
||||
@apply relative mx-auto w-full flex items-center justify-end box-border cursor-pointer outline-none;
|
||||
}
|
||||
|
||||
.multiselect-single-label {
|
||||
@apply flex items-center h-full max-w-full absolute left-0 top-0 pointer-events-none bg-transparent leading-snug pl-3.5 pr-16 box-border rtl:left-auto rtl:right-0 rtl:pl-0 rtl:pr-3.5;
|
||||
}
|
||||
|
||||
.multiselect-single-label-text {
|
||||
@apply overflow-ellipsis overflow-hidden block whitespace-nowrap max-w-full;
|
||||
}
|
||||
|
||||
.multiselect-multiple-label {
|
||||
@apply flex items-center h-full absolute left-0 top-0 pointer-events-none bg-transparent leading-snug pl-3.5 rtl:left-auto rtl:right-0 rtl:pl-0 rtl:pr-3.5;
|
||||
}
|
||||
|
||||
.multiselect-search {
|
||||
@apply w-full absolute inset-0 outline-none focus:ring-0 appearance-none box-border border-0 text-base font-sans bg-white rounded pl-3.5 rtl:pl-0 rtl:pr-3.5;
|
||||
}
|
||||
|
||||
.multiselect-tags {
|
||||
@apply flex-grow flex-shrink flex flex-wrap items-center mt-1 pl-2 min-w-0 rtl:pl-0 rtl:pr-2;
|
||||
}
|
||||
|
||||
.multiselect-tag {
|
||||
@apply bg-green-500 text-white text-sm font-semibold py-0.5 pl-2 rounded mr-1 mb-1 flex items-center whitespace-nowrap min-w-0 rtl:pl-0 rtl:pr-2 rtl:mr-0 rtl:ml-1;
|
||||
|
||||
&.is-disabled {
|
||||
@apply pr-2 opacity-50 rtl:pl-2;
|
||||
}
|
||||
}
|
||||
|
||||
.multiselect-tag-wrapper {
|
||||
@apply whitespace-nowrap overflow-hidden overflow-ellipsis;
|
||||
}
|
||||
|
||||
.multiselect-tag-wrapper-break {
|
||||
@apply whitespace-normal break-all;
|
||||
}
|
||||
|
||||
.multiselect-tag-remove {
|
||||
@apply flex items-center justify-center p-1 mx-0.5 rounded-sm hover:bg-black hover:bg-opacity-10;
|
||||
}
|
||||
|
||||
.multiselect-tag-remove-icon {
|
||||
@apply bg-multiselect-remove bg-center bg-no-repeat opacity-30 inline-block w-3 h-3;
|
||||
}
|
||||
|
||||
.multiselect-tag-remove:hover .multiselect-tag-remove-icon {
|
||||
@apply opacity-60;
|
||||
}
|
||||
|
||||
.multiselect-tags-search-wrapper {
|
||||
@apply inline-block relative mx-1 mb-1 flex-grow flex-shrink h-full;
|
||||
}
|
||||
|
||||
.multiselect-tags-search {
|
||||
@apply absolute inset-0 border-0 outline-none focus:ring-0 appearance-none p-0 text-base font-sans box-border w-full;
|
||||
}
|
||||
|
||||
.multiselect-tags-search-copy {
|
||||
@apply invisible whitespace-pre-wrap inline-block h-px;
|
||||
}
|
||||
|
||||
.multiselect-placeholder {
|
||||
@apply flex items-center h-full absolute left-0 top-0 pointer-events-none bg-transparent leading-snug pl-3.5 text-gray-400 rtl:left-auto rtl:right-0 rtl:pl-0 rtl:pr-3.5;
|
||||
}
|
||||
|
||||
.multiselect-caret {
|
||||
@apply bg-multiselect-caret bg-center bg-no-repeat w-2.5 h-4 py-px box-content mr-3.5 relative z-10 opacity-40 flex-shrink-0 flex-grow-0 transition-transform transform pointer-events-none rtl:mr-0 rtl:ml-3.5;
|
||||
|
||||
&.is-open {
|
||||
@apply rotate-180 pointer-events-auto;
|
||||
}
|
||||
}
|
||||
|
||||
.multiselect-clear {
|
||||
@apply pr-3.5 relative z-10 opacity-40 transition duration-300 flex-shrink-0 flex-grow-0 flex hover:opacity-80 rtl:pr-0 rtl:pl-3.5;
|
||||
}
|
||||
|
||||
.multiselect-clear-icon {
|
||||
@apply bg-multiselect-remove bg-center bg-no-repeat w-2.5 h-4 py-px box-content inline-block;
|
||||
}
|
||||
|
||||
.multiselect-spinner {
|
||||
@apply bg-multiselect-spinner bg-center bg-no-repeat w-4 h-4 z-10 mr-3.5 animate-spin flex-shrink-0 flex-grow-0 rtl:mr-0 rtl:ml-3.5;
|
||||
}
|
||||
|
||||
.multiselect-inifite {
|
||||
@apply flex items-center justify-center w-full;
|
||||
}
|
||||
|
||||
.multiselect-inifite-spinner {
|
||||
@apply bg-multiselect-spinner bg-center bg-no-repeat w-4 h-4 z-10 animate-spin flex-shrink-0 flex-grow-0 m-3.5;
|
||||
}
|
||||
|
||||
.multiselect-dropdown {
|
||||
@apply max-h-60 absolute -left-px -right-px bottom-0 transform translate-y-full border border-gray-300 -mt-px overflow-y-scroll z-50 bg-white flex flex-col rounded-b;
|
||||
|
||||
&.is-top {
|
||||
@apply -translate-y-full top-px bottom-auto rounded-b-none rounded-t;
|
||||
}
|
||||
|
||||
&.is-hidden {
|
||||
@apply hidden;
|
||||
}
|
||||
}
|
||||
|
||||
.multiselect-options {
|
||||
@apply flex flex-col p-0 m-0 list-none;
|
||||
}
|
||||
|
||||
.multiselect-group {
|
||||
@apply p-0 m-0;
|
||||
}
|
||||
|
||||
.multiselect-group-label {
|
||||
@apply flex text-sm box-border items-center justify-start text-left py-1 px-3 font-semibold bg-gray-200 cursor-default leading-normal;
|
||||
|
||||
&.is-pointable {
|
||||
@apply cursor-pointer;
|
||||
}
|
||||
|
||||
&.is-pointed {
|
||||
@apply bg-gray-300 text-gray-700;
|
||||
}
|
||||
|
||||
&.is-selected {
|
||||
@apply bg-green-600 text-white;
|
||||
}
|
||||
|
||||
&.is-disabled {
|
||||
@apply bg-gray-100 text-gray-300 cursor-not-allowed;
|
||||
}
|
||||
|
||||
&.is-selected.is-pointed {
|
||||
@apply bg-green-600 text-white opacity-90;
|
||||
}
|
||||
|
||||
&.is-selected.is-disabled {
|
||||
@apply text-green-100 bg-green-600 bg-opacity-50 cursor-not-allowed;
|
||||
}
|
||||
}
|
||||
|
||||
.multiselect-group-options {
|
||||
@apply p-0 m-0;
|
||||
}
|
||||
|
||||
.multiselect-option {
|
||||
@apply flex items-center justify-start box-border text-left cursor-pointer text-base leading-snug py-2 px-3;
|
||||
|
||||
&.is-pointed {
|
||||
@apply text-gray-800 bg-gray-100;
|
||||
}
|
||||
|
||||
&.is-selected {
|
||||
@apply text-white bg-green-500;
|
||||
}
|
||||
|
||||
&.is-disabled {
|
||||
@apply text-gray-300 cursor-not-allowed;
|
||||
}
|
||||
|
||||
&.is-selected.is-pointed {
|
||||
@apply text-white bg-green-500 opacity-90;
|
||||
}
|
||||
|
||||
&.is-selected.is-disabled {
|
||||
@apply text-green-100 bg-green-500 bg-opacity-50 cursor-not-allowed;
|
||||
}
|
||||
}
|
||||
|
||||
.multiselect-no-options {
|
||||
@apply py-2 px-3 text-gray-600 bg-white text-left rtl:text-right;
|
||||
}
|
||||
|
||||
.multiselect-no-results {
|
||||
@apply py-2 px-3 text-gray-600 bg-white text-left rtl:text-right;
|
||||
}
|
||||
|
||||
.multiselect-fake-input {
|
||||
@apply bg-transparent absolute left-0 right-0 -bottom-px w-full h-px border-0 p-0 appearance-none outline-none text-transparent;
|
||||
}
|
||||
|
||||
.multiselect-assistive-text {
|
||||
@apply absolute -m-px w-px h-px overflow-hidden;
|
||||
clip: rect(0 0 0 0);
|
||||
}
|
||||
|
||||
.multiselect-spacer {
|
||||
@apply h-9 py-px box-content;
|
||||
}
|
||||
Reference in New Issue
Block a user