This commit is contained in:
Roman Pyrih
2024-08-21 15:09:10 +02:00
parent 669370bc1c
commit 222724992c
159 changed files with 8639 additions and 3576 deletions

View File

@@ -0,0 +1,538 @@
.jpselect2-container {
box-sizing: border-box;
display: inline-block;
margin: 0;
position: relative;
vertical-align: middle;
}
.jpselect2-container .jpselect2-selection--single {
box-sizing: border-box;
cursor: pointer;
display: block;
height: 28px;
-moz-user-select: none;
user-select: none;
-webkit-user-select: none;
}
.jpselect2-container .jpselect2-selection--single .jpselect2-selection__rendered {
display: block;
padding-left: 8px;
padding-right: 20px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.jpselect2-container .jpselect2-selection--single .jpselect2-selection__clear {
position: relative;
}
.jpselect2-container[dir=rtl] .jpselect2-selection--single .jpselect2-selection__rendered {
padding-right: 8px;
padding-left: 20px;
}
.jpselect2-container .jpselect2-selection--multiple {
box-sizing: border-box;
cursor: pointer;
display: block;
min-height: 32px;
-moz-user-select: none;
user-select: none;
-webkit-user-select: none;
}
.jpselect2-container .jpselect2-selection--multiple .jpselect2-selection__rendered {
display: inline-block;
overflow: hidden;
padding-left: 8px;
text-overflow: ellipsis;
white-space: nowrap;
}
.jpselect2-container .jpselect2-search--inline {
float: left;
}
.jpselect2-container .jpselect2-search--inline .jpselect2-search__field {
box-sizing: border-box;
border: none;
font-size: 100%;
margin-top: 5px;
padding: 0;
}
.jpselect2-container .jpselect2-search--inline .jpselect2-search__field::-webkit-search-cancel-button {
-webkit-appearance: none;
}
.jpselect2-dropdown {
background-color: white;
border: 1px solid #aaa;
border-radius: 4px;
box-sizing: border-box;
display: block;
position: absolute;
left: -100000px;
width: 100%;
z-index: 1051;
}
.jpselect2-results {
display: block;
}
.jpselect2-results__options {
list-style: none;
margin: 0;
padding: 0;
}
.jpselect2-results__option {
padding: 6px;
-moz-user-select: none;
user-select: none;
-webkit-user-select: none;
}
.jpselect2-results__option[aria-selected] {
cursor: pointer;
}
.jpselect2-container--open .jpselect2-dropdown {
left: 0;
}
.jpselect2-container--open .jpselect2-dropdown--above {
border-bottom: none;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.jpselect2-container--open .jpselect2-dropdown--below {
border-top: none;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.jpselect2-search--dropdown {
display: block;
padding: 4px;
}
.jpselect2-search--dropdown .jpselect2-search__field {
padding: 4px;
width: 100%;
box-sizing: border-box;
}
.jpselect2-search--dropdown .jpselect2-search__field::-webkit-search-cancel-button {
-webkit-appearance: none;
}
.jpselect2-search--dropdown.jpselect2-search--hide {
display: none;
}
.jpselect2-close-mask {
border: 0;
margin: 0;
padding: 0;
display: block;
position: fixed;
left: 0;
top: 0;
min-height: 100%;
min-width: 100%;
height: auto;
width: auto;
opacity: 0;
z-index: 99;
background-color: #fff;
filter: alpha(opacity=0);
}
.jpselect2-hidden-accessible {
border: 0 !important;
clip: rect(0 0 0 0) !important;
height: 1px !important;
margin: -1px !important;
overflow: hidden !important;
padding: 0 !important;
position: absolute !important;
width: 1px !important;
}
.jpselect2-container--default .jpselect2-selection--single {
background-color: #fff;
border: 1px solid #aaa;
border-radius: 4px;
}
.jpselect2-container--default .jpselect2-selection--single .jpselect2-selection__rendered {
color: #444;
line-height: 28px;
}
.jpselect2-container--default .jpselect2-selection--single .jpselect2-selection__clear {
cursor: pointer;
float: right;
font-weight: bold;
}
.jpselect2-container--default .jpselect2-selection--single .jpselect2-selection__placeholder {
color: #999;
}
.jpselect2-container--default .jpselect2-selection--single .jpselect2-selection__arrow {
height: 26px;
position: absolute;
top: 1px;
right: 1px;
width: 20px;
}
.jpselect2-container--default .jpselect2-selection--single .jpselect2-selection__arrow b {
border-color: #888 transparent transparent transparent;
border-style: solid;
border-width: 5px 4px 0 4px;
height: 0;
left: 50%;
margin-left: -4px;
margin-top: -2px;
position: absolute;
top: 50%;
width: 0;
}
.jpselect2-container--default[dir=rtl] .jpselect2-selection--single .jpselect2-selection__clear {
float: left;
}
.jpselect2-container--default[dir=rtl] .jpselect2-selection--single .jpselect2-selection__arrow {
left: 1px;
right: auto;
}
.jpselect2-container--default.jpselect2-container--disabled .jpselect2-selection--single {
background-color: #eee;
cursor: default;
}
.jpselect2-container--default.jpselect2-container--disabled .jpselect2-selection--single .jpselect2-selection__clear {
display: none;
}
.jpselect2-container--default.jpselect2-container--open .jpselect2-selection--single .jpselect2-selection__arrow b {
border-color: transparent transparent #888 transparent;
border-width: 0 4px 5px 4px;
}
.jpselect2-container--default .jpselect2-selection--multiple {
background-color: white;
border: 1px solid #aaa;
border-radius: 4px;
cursor: text;
}
.jpselect2-container--default .jpselect2-selection--multiple .jpselect2-selection__rendered {
box-sizing: border-box;
list-style: none;
margin: 0;
padding: 0 5px;
width: 100%;
}
.jpselect2-container--default .jpselect2-selection--multiple .jpselect2-selection__rendered li {
list-style: none;
}
.jpselect2-container--default .jpselect2-selection--multiple .jpselect2-selection__placeholder {
color: #999;
margin-top: 5px;
float: left;
}
.jpselect2-container--default .jpselect2-selection--multiple .jpselect2-selection__clear {
cursor: pointer;
float: right;
font-weight: bold;
margin-top: 5px;
margin-right: 10px;
}
.jpselect2-container--default .jpselect2-selection--multiple .jpselect2-selection__choice {
background-color: #e4e4e4;
border: 1px solid #aaa;
border-radius: 4px;
cursor: default;
float: left;
margin-right: 5px;
margin-top: 5px;
padding: 0 5px;
}
.jpselect2-container--default .jpselect2-selection--multiple .jpselect2-selection__choice__remove {
color: #999;
cursor: pointer;
display: inline-block;
font-weight: bold;
margin-right: 2px;
}
.jpselect2-container--default .jpselect2-selection--multiple .jpselect2-selection__choice__remove:hover {
color: #333;
}
.jpselect2-container--default[dir=rtl] .jpselect2-selection--multiple .jpselect2-selection__choice, .jpselect2-container--default[dir=rtl] .jpselect2-selection--multiple .jpselect2-selection__placeholder, .jpselect2-container--default[dir=rtl] .jpselect2-selection--multiple .jpselect2-search--inline {
float: right;
}
.jpselect2-container--default[dir=rtl] .jpselect2-selection--multiple .jpselect2-selection__choice {
margin-left: 5px;
margin-right: auto;
}
.jpselect2-container--default[dir=rtl] .jpselect2-selection--multiple .jpselect2-selection__choice__remove {
margin-left: 2px;
margin-right: auto;
}
.jpselect2-container--default.jpselect2-container--focus .jpselect2-selection--multiple {
border: solid black 1px;
outline: 0;
}
.jpselect2-container--default.jpselect2-container--disabled .jpselect2-selection--multiple {
background-color: #eee;
cursor: default;
}
.jpselect2-container--default.jpselect2-container--disabled .jpselect2-selection__choice__remove {
display: none;
}
.jpselect2-container--default.jpselect2-container--open.jpselect2-container--above .jpselect2-selection--single, .jpselect2-container--default.jpselect2-container--open.jpselect2-container--above .jpselect2-selection--multiple {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.jpselect2-container--default.jpselect2-container--open.jpselect2-container--below .jpselect2-selection--single, .jpselect2-container--default.jpselect2-container--open.jpselect2-container--below .jpselect2-selection--multiple {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.jpselect2-container--default .jpselect2-search--dropdown .jpselect2-search__field {
border: 1px solid #aaa;
}
.jpselect2-container--default .jpselect2-search--inline .jpselect2-search__field {
background: transparent;
border: none;
outline: 0;
box-shadow: none;
-webkit-appearance: textfield;
}
.jpselect2-container--default .jpselect2-results > .jpselect2-results__options {
max-height: 200px;
overflow-y: auto;
}
.jpselect2-container--default .jpselect2-results__option[role=group] {
padding: 0;
}
.jpselect2-container--default .jpselect2-results__option[aria-disabled=true] {
color: #999;
}
.jpselect2-container--default .jpselect2-results__option[aria-selected=true] {
background-color: #ddd;
}
.jpselect2-container--default .jpselect2-results__option .jpselect2-results__option {
padding-left: 1em;
}
.jpselect2-container--default .jpselect2-results__option .jpselect2-results__option .jpselect2-results__group {
padding-left: 0;
}
.jpselect2-container--default .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option {
margin-left: -1em;
padding-left: 2em;
}
.jpselect2-container--default .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option {
margin-left: -2em;
padding-left: 3em;
}
.jpselect2-container--default .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option {
margin-left: -3em;
padding-left: 4em;
}
.jpselect2-container--default .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option {
margin-left: -4em;
padding-left: 5em;
}
.jpselect2-container--default .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option {
margin-left: -5em;
padding-left: 6em;
}
.jpselect2-container--default .jpselect2-results__option--highlighted[aria-selected] {
background-color: #5897fb;
color: white;
}
.jpselect2-container--default .jpselect2-results__group {
cursor: default;
display: block;
padding: 6px;
}
.jpselect2-container--classic .jpselect2-selection--single {
background-color: #f7f7f7;
border: 1px solid #aaa;
border-radius: 4px;
outline: 0;
background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}
.jpselect2-container--classic .jpselect2-selection--single:focus {
border: 1px solid #5897fb;
}
.jpselect2-container--classic .jpselect2-selection--single .jpselect2-selection__rendered {
color: #444;
line-height: 28px;
}
.jpselect2-container--classic .jpselect2-selection--single .jpselect2-selection__clear {
cursor: pointer;
float: right;
font-weight: bold;
margin-right: 10px;
}
.jpselect2-container--classic .jpselect2-selection--single .jpselect2-selection__placeholder {
color: #999;
}
.jpselect2-container--classic .jpselect2-selection--single .jpselect2-selection__arrow {
background-color: #ddd;
border: none;
border-left: 1px solid #aaa;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
height: 26px;
position: absolute;
top: 1px;
right: 1px;
width: 20px;
background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}
.jpselect2-container--classic .jpselect2-selection--single .jpselect2-selection__arrow b {
border-color: #888 transparent transparent transparent;
border-style: solid;
border-width: 5px 4px 0 4px;
height: 0;
left: 50%;
margin-left: -4px;
margin-top: -2px;
position: absolute;
top: 50%;
width: 0;
}
.jpselect2-container--classic[dir=rtl] .jpselect2-selection--single .jpselect2-selection__clear {
float: left;
}
.jpselect2-container--classic[dir=rtl] .jpselect2-selection--single .jpselect2-selection__arrow {
border: none;
border-right: 1px solid #aaa;
border-radius: 0;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
left: 1px;
right: auto;
}
.jpselect2-container--classic.jpselect2-container--open .jpselect2-selection--single {
border: 1px solid #5897fb;
}
.jpselect2-container--classic.jpselect2-container--open .jpselect2-selection--single .jpselect2-selection__arrow {
background: transparent;
border: none;
}
.jpselect2-container--classic.jpselect2-container--open .jpselect2-selection--single .jpselect2-selection__arrow b {
border-color: transparent transparent #888 transparent;
border-width: 0 4px 5px 4px;
}
.jpselect2-container--classic.jpselect2-container--open.jpselect2-container--above .jpselect2-selection--single {
border-top: none;
border-top-left-radius: 0;
border-top-right-radius: 0;
background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}
.jpselect2-container--classic.jpselect2-container--open.jpselect2-container--below .jpselect2-selection--single {
border-bottom: none;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}
.jpselect2-container--classic .jpselect2-selection--multiple {
background-color: white;
border: 1px solid #aaa;
border-radius: 4px;
cursor: text;
outline: 0;
}
.jpselect2-container--classic .jpselect2-selection--multiple:focus {
border: 1px solid #5897fb;
}
.jpselect2-container--classic .jpselect2-selection--multiple .jpselect2-selection__rendered {
list-style: none;
margin: 0;
padding: 0 5px;
}
.jpselect2-container--classic .jpselect2-selection--multiple .jpselect2-selection__clear {
display: none;
}
.jpselect2-container--classic .jpselect2-selection--multiple .jpselect2-selection__choice {
background-color: #e4e4e4;
border: 1px solid #aaa;
border-radius: 4px;
cursor: default;
float: left;
margin-right: 5px;
margin-top: 5px;
padding: 0 5px;
}
.jpselect2-container--classic .jpselect2-selection--multiple .jpselect2-selection__choice__remove {
color: #888;
cursor: pointer;
display: inline-block;
font-weight: bold;
margin-right: 2px;
}
.jpselect2-container--classic .jpselect2-selection--multiple .jpselect2-selection__choice__remove:hover {
color: #555;
}
.jpselect2-container--classic[dir=rtl] .jpselect2-selection--multiple .jpselect2-selection__choice {
float: right;
}
.jpselect2-container--classic[dir=rtl] .jpselect2-selection--multiple .jpselect2-selection__choice {
margin-left: 5px;
margin-right: auto;
}
.jpselect2-container--classic[dir=rtl] .jpselect2-selection--multiple .jpselect2-selection__choice__remove {
margin-left: 2px;
margin-right: auto;
}
.jpselect2-container--classic.jpselect2-container--open .jpselect2-selection--multiple {
border: 1px solid #5897fb;
}
.jpselect2-container--classic.jpselect2-container--open.jpselect2-container--above .jpselect2-selection--multiple {
border-top: none;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.jpselect2-container--classic.jpselect2-container--open.jpselect2-container--below .jpselect2-selection--multiple {
border-bottom: none;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.jpselect2-container--classic .jpselect2-search--dropdown .jpselect2-search__field {
border: 1px solid #aaa;
outline: 0;
}
.jpselect2-container--classic .jpselect2-search--inline .jpselect2-search__field {
outline: 0;
box-shadow: none;
}
.jpselect2-container--classic .jpselect2-dropdown {
background-color: white;
border: 1px solid transparent;
}
.jpselect2-container--classic .jpselect2-dropdown--above {
border-bottom: none;
}
.jpselect2-container--classic .jpselect2-dropdown--below {
border-top: none;
}
.jpselect2-container--classic .jpselect2-results > .jpselect2-results__options {
max-height: 200px;
overflow-y: auto;
}
.jpselect2-container--classic .jpselect2-results__option[role=group] {
padding: 0;
}
.jpselect2-container--classic .jpselect2-results__option[aria-disabled=true] {
color: grey;
}
.jpselect2-container--classic .jpselect2-results__option--highlighted[aria-selected] {
background-color: #3875d7;
color: white;
}
.jpselect2-container--classic .jpselect2-results__group {
cursor: default;
display: block;
padding: 6px;
}
.jpselect2-container--classic.jpselect2-container--open .jpselect2-dropdown {
border-color: #5897fb;
}/*# sourceMappingURL=core.css.map */

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,193 @@
.jpselect2-container--classic .jpselect2-selection--single {
background-color: #f7f7f7;
border: 1px solid #aaa;
border-radius: 4px;
outline: 0;
background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}
.jpselect2-container--classic .jpselect2-selection--single:focus {
border: 1px solid #5897fb;
}
.jpselect2-container--classic .jpselect2-selection--single .jpselect2-selection__rendered {
color: #444;
line-height: 28px;
}
.jpselect2-container--classic .jpselect2-selection--single .jpselect2-selection__clear {
cursor: pointer;
float: right;
font-weight: bold;
margin-right: 10px;
}
.jpselect2-container--classic .jpselect2-selection--single .jpselect2-selection__placeholder {
color: #999;
}
.jpselect2-container--classic .jpselect2-selection--single .jpselect2-selection__arrow {
background-color: #ddd;
border: none;
border-left: 1px solid #aaa;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
height: 26px;
position: absolute;
top: 1px;
right: 1px;
width: 20px;
background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}
.jpselect2-container--classic .jpselect2-selection--single .jpselect2-selection__arrow b {
border-color: #888 transparent transparent transparent;
border-style: solid;
border-width: 5px 4px 0 4px;
height: 0;
left: 50%;
margin-left: -4px;
margin-top: -2px;
position: absolute;
top: 50%;
width: 0;
}
.jpselect2-container--classic[dir=rtl] .jpselect2-selection--single .jpselect2-selection__clear {
float: left;
}
.jpselect2-container--classic[dir=rtl] .jpselect2-selection--single .jpselect2-selection__arrow {
border: none;
border-right: 1px solid #aaa;
border-radius: 0;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
left: 1px;
right: auto;
}
.jpselect2-container--classic.jpselect2-container--open .jpselect2-selection--single {
border: 1px solid #5897fb;
}
.jpselect2-container--classic.jpselect2-container--open .jpselect2-selection--single .jpselect2-selection__arrow {
background: transparent;
border: none;
}
.jpselect2-container--classic.jpselect2-container--open .jpselect2-selection--single .jpselect2-selection__arrow b {
border-color: transparent transparent #888 transparent;
border-width: 0 4px 5px 4px;
}
.jpselect2-container--classic.jpselect2-container--open.jpselect2-container--above .jpselect2-selection--single {
border-top: none;
border-top-left-radius: 0;
border-top-right-radius: 0;
background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}
.jpselect2-container--classic.jpselect2-container--open.jpselect2-container--below .jpselect2-selection--single {
border-bottom: none;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}
.jpselect2-container--classic .jpselect2-selection--multiple {
background-color: white;
border: 1px solid #aaa;
border-radius: 4px;
cursor: text;
outline: 0;
}
.jpselect2-container--classic .jpselect2-selection--multiple:focus {
border: 1px solid #5897fb;
}
.jpselect2-container--classic .jpselect2-selection--multiple .jpselect2-selection__rendered {
list-style: none;
margin: 0;
padding: 0 5px;
}
.jpselect2-container--classic .jpselect2-selection--multiple .jpselect2-selection__clear {
display: none;
}
.jpselect2-container--classic .jpselect2-selection--multiple .jpselect2-selection__choice {
background-color: #e4e4e4;
border: 1px solid #aaa;
border-radius: 4px;
cursor: default;
float: left;
margin-right: 5px;
margin-top: 5px;
padding: 0 5px;
}
.jpselect2-container--classic .jpselect2-selection--multiple .jpselect2-selection__choice__remove {
color: #888;
cursor: pointer;
display: inline-block;
font-weight: bold;
margin-right: 2px;
}
.jpselect2-container--classic .jpselect2-selection--multiple .jpselect2-selection__choice__remove:hover {
color: #555;
}
.jpselect2-container--classic[dir=rtl] .jpselect2-selection--multiple .jpselect2-selection__choice {
float: right;
}
.jpselect2-container--classic[dir=rtl] .jpselect2-selection--multiple .jpselect2-selection__choice {
margin-left: 5px;
margin-right: auto;
}
.jpselect2-container--classic[dir=rtl] .jpselect2-selection--multiple .jpselect2-selection__choice__remove {
margin-left: 2px;
margin-right: auto;
}
.jpselect2-container--classic.jpselect2-container--open .jpselect2-selection--multiple {
border: 1px solid #5897fb;
}
.jpselect2-container--classic.jpselect2-container--open.jpselect2-container--above .jpselect2-selection--multiple {
border-top: none;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.jpselect2-container--classic.jpselect2-container--open.jpselect2-container--below .jpselect2-selection--multiple {
border-bottom: none;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.jpselect2-container--classic .jpselect2-search--dropdown .jpselect2-search__field {
border: 1px solid #aaa;
outline: 0;
}
.jpselect2-container--classic .jpselect2-search--inline .jpselect2-search__field {
outline: 0;
box-shadow: none;
}
.jpselect2-container--classic .jpselect2-dropdown {
background-color: white;
border: 1px solid transparent;
}
.jpselect2-container--classic .jpselect2-dropdown--above {
border-bottom: none;
}
.jpselect2-container--classic .jpselect2-dropdown--below {
border-top: none;
}
.jpselect2-container--classic .jpselect2-results > .jpselect2-results__options {
max-height: 200px;
overflow-y: auto;
}
.jpselect2-container--classic .jpselect2-results__option[role=group] {
padding: 0;
}
.jpselect2-container--classic .jpselect2-results__option[aria-disabled=true] {
color: grey;
}
.jpselect2-container--classic .jpselect2-results__option--highlighted[aria-selected] {
background-color: #3875d7;
color: white;
}
.jpselect2-container--classic .jpselect2-results__group {
cursor: default;
display: block;
padding: 6px;
}
.jpselect2-container--classic.jpselect2-container--open .jpselect2-dropdown {
border-color: #5897fb;
}/*# sourceMappingURL=layout.css.map */

View File

@@ -0,0 +1 @@
{"version":3,"sources":["_single.scss","_defaults.scss","../../mixins/_gradients.scss","layout.css","_multiple.scss","layout.scss"],"names":[],"mappings":"AAAA;EACE,yBAAA;EAEA,sBAAA;EACA,kBCGc;EDDd,UAAA;EEGA,qEAAA;EACA,2BAAA;EACA,sHAAA;ACDF;AHAE;EACE,yBAAA;AGEJ;AHCE;EACE,WAAA;EACA,iBAAA;AGCJ;AHEE;EACE,eAAA;EACA,YAAA;EACA,iBAAA;EACA,kBAAA;AGAJ;AHGE;EACE,WAAA;AGDJ;AHIE;EACE,sBAAA;EAEA,YAAA;EACA,2BAAA;EACA,4BC5BY;ED6BZ,+BC7BY;ED+BZ,YAAA;EAEA,kBAAA;EAEA,QAAA;EACA,UAAA;EAEA,WAAA;EEpCF,uEAAA;EACA,2BAAA;EACA,sHAAA;ACgCF;AHMI;EACE,sDAAA;EACA,mBAAA;EACA,2BAAA;EAEA,SAAA;EACA,SAAA;EAEA,iBAAA;EACA,gBAAA;EAEA,kBAAA;EAEA,QAAA;EACA,QAAA;AGRN;AHeI;EACE,WAAA;AGbN;AHgBI;EACE,YAAA;EACA,4BAAA;EAEA,gBAAA;EACA,2BCxEU;EDyEV,8BCzEU;ED2EV,SAAA;EACA,WAAA;AGhBN;AHsBE;EACE,yBAAA;AGpBJ;AHsBI;EACE,uBAAA;EAEA,YAAA;AGrBN;AHuBM;EACE,sDAAA;EACA,2BAAA;AGrBR;AH2BI;EACE,gBAAA;EACA,yBAAA;EACA,0BAAA;EEnGJ,mEAAA;EACA,2BAAA;EACA,sHAAA;AC6EF;AH2BI;EACE,mBAAA;EACA,4BAAA;EACA,6BAAA;EE7GJ,qEAAA;EACA,2BAAA;EACA,sHAAA;ACuFF;AClGA;EACE,uBAAA;EAEA,sBAAA;EACA,kBHGc;EGDd,YAAA;EAEA,UAAA;ADiGF;AC/FE;EACE,yBAAA;ADiGJ;AC9FE;EACE,gBAAA;EACA,SAAA;EACA,cAAA;ADgGJ;AC7FE;EACE,aAAA;AD+FJ;AC5FE;EACE,yBAAA;EAEA,sBAAA;EACA,kBHrBY;EGuBZ,eAAA;EAEA,WAAA;EAEA,iBAAA;EACA,eAAA;EACA,cAAA;AD0FJ;ACvFE;EACE,WHxCW;EGyCX,eAAA;EAEA,qBAAA;EACA,iBAAA;EAEA,iBAAA;ADuFJ;ACrFI;EACE,WHhDe;AEuIrB;AChFI;EACE,YAAA;ADkFN;AC/EI;EACE,gBAAA;EACA,kBAAA;ADiFN;AC9EI;EACE,gBAAA;EACA,kBAAA;ADgFN;AC1EE;EACE,yBAAA;AD4EJ;ACxEI;EACE,gBAAA;EACA,yBAAA;EACA,0BAAA;AD0EN;ACrEI;EACE,mBAAA;EACA,4BAAA;EACA,6BAAA;ADuEN;AExJI;EACE,sBAAA;EACA,UAAA;AF0JN;AErJI;EACE,UAAA;EACA,gBAAA;AFuJN;AEnJE;EACE,uBJTqB;EIUrB,6BAAA;AFqJJ;AElJE;EACE,mBAAA;AFoJJ;AEjJE;EACE,gBAAA;AFmJJ;AEhJE;EACE,iBJRiB;EISjB,gBAAA;AFkJJ;AE9II;EACE,UAAA;AFgJN;AE7II;EACE,WJZiC;AE2JvC;AE3IE;EACE,yBJpB4B;EIqB5B,YJpB4B;AEiKhC;AE1IE;EACE,eAAA;EACA,cAAA;EACA,YAAA;AF4IJ;AEzIE;EACE,qBJpDiB;AE+LrB","file":"layout.css"}

View File

@@ -0,0 +1,190 @@
.jpselect2-container--default .jpselect2-selection--single {
background-color: #fff;
border: 1px solid #aaa;
border-radius: 4px;
}
.jpselect2-container--default .jpselect2-selection--single .jpselect2-selection__rendered {
color: #444;
line-height: 28px;
}
.jpselect2-container--default .jpselect2-selection--single .jpselect2-selection__clear {
cursor: pointer;
float: right;
font-weight: bold;
}
.jpselect2-container--default .jpselect2-selection--single .jpselect2-selection__placeholder {
color: #999;
}
.jpselect2-container--default .jpselect2-selection--single .jpselect2-selection__arrow {
height: 26px;
position: absolute;
top: 1px;
right: 1px;
width: 20px;
}
.jpselect2-container--default .jpselect2-selection--single .jpselect2-selection__arrow b {
border-color: #888 transparent transparent transparent;
border-style: solid;
border-width: 5px 4px 0 4px;
height: 0;
left: 50%;
margin-left: -4px;
margin-top: -2px;
position: absolute;
top: 50%;
width: 0;
}
.jpselect2-container--default[dir=rtl] .jpselect2-selection--single .jpselect2-selection__clear {
float: left;
}
.jpselect2-container--default[dir=rtl] .jpselect2-selection--single .jpselect2-selection__arrow {
left: 1px;
right: auto;
}
.jpselect2-container--default.jpselect2-container--disabled .jpselect2-selection--single {
background-color: #eee;
cursor: default;
}
.jpselect2-container--default.jpselect2-container--disabled .jpselect2-selection--single .jpselect2-selection__clear {
display: none;
}
.jpselect2-container--default.jpselect2-container--open .jpselect2-selection--single .jpselect2-selection__arrow b {
border-color: transparent transparent #888 transparent;
border-width: 0 4px 5px 4px;
}
.jpselect2-container--default .jpselect2-selection--multiple {
background-color: white;
border: 1px solid #aaa;
border-radius: 4px;
cursor: text;
}
.jpselect2-container--default .jpselect2-selection--multiple .jpselect2-selection__rendered {
box-sizing: border-box;
list-style: none;
margin: 0;
padding: 0 5px;
width: 100%;
}
.jpselect2-container--default .jpselect2-selection--multiple .jpselect2-selection__rendered li {
list-style: none;
}
.jpselect2-container--default .jpselect2-selection--multiple .jpselect2-selection__placeholder {
color: #999;
margin-top: 5px;
float: left;
}
.jpselect2-container--default .jpselect2-selection--multiple .jpselect2-selection__clear {
cursor: pointer;
float: right;
font-weight: bold;
margin-top: 5px;
margin-right: 10px;
}
.jpselect2-container--default .jpselect2-selection--multiple .jpselect2-selection__choice {
background-color: #e4e4e4;
border: 1px solid #aaa;
border-radius: 4px;
cursor: default;
float: left;
margin-right: 5px;
margin-top: 5px;
padding: 0 5px;
}
.jpselect2-container--default .jpselect2-selection--multiple .jpselect2-selection__choice__remove {
color: #999;
cursor: pointer;
display: inline-block;
font-weight: bold;
margin-right: 2px;
}
.jpselect2-container--default .jpselect2-selection--multiple .jpselect2-selection__choice__remove:hover {
color: #333;
}
.jpselect2-container--default[dir=rtl] .jpselect2-selection--multiple .jpselect2-selection__choice, .jpselect2-container--default[dir=rtl] .jpselect2-selection--multiple .jpselect2-selection__placeholder, .jpselect2-container--default[dir=rtl] .jpselect2-selection--multiple .jpselect2-search--inline {
float: right;
}
.jpselect2-container--default[dir=rtl] .jpselect2-selection--multiple .jpselect2-selection__choice {
margin-left: 5px;
margin-right: auto;
}
.jpselect2-container--default[dir=rtl] .jpselect2-selection--multiple .jpselect2-selection__choice__remove {
margin-left: 2px;
margin-right: auto;
}
.jpselect2-container--default.jpselect2-container--focus .jpselect2-selection--multiple {
border: solid black 1px;
outline: 0;
}
.jpselect2-container--default.jpselect2-container--disabled .jpselect2-selection--multiple {
background-color: #eee;
cursor: default;
}
.jpselect2-container--default.jpselect2-container--disabled .jpselect2-selection__choice__remove {
display: none;
}
.jpselect2-container--default.jpselect2-container--open.jpselect2-container--above .jpselect2-selection--single, .jpselect2-container--default.jpselect2-container--open.jpselect2-container--above .jpselect2-selection--multiple {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.jpselect2-container--default.jpselect2-container--open.jpselect2-container--below .jpselect2-selection--single, .jpselect2-container--default.jpselect2-container--open.jpselect2-container--below .jpselect2-selection--multiple {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.jpselect2-container--default .jpselect2-search--dropdown .jpselect2-search__field {
border: 1px solid #aaa;
}
.jpselect2-container--default .jpselect2-search--inline .jpselect2-search__field {
background: transparent;
border: none;
outline: 0;
box-shadow: none;
-webkit-appearance: textfield;
}
.jpselect2-container--default .jpselect2-results > .jpselect2-results__options {
max-height: 200px;
overflow-y: auto;
}
.jpselect2-container--default .jpselect2-results__option[role=group] {
padding: 0;
}
.jpselect2-container--default .jpselect2-results__option[aria-disabled=true] {
color: #999;
}
.jpselect2-container--default .jpselect2-results__option[aria-selected=true] {
background-color: #ddd;
}
.jpselect2-container--default .jpselect2-results__option .jpselect2-results__option {
padding-left: 1em;
}
.jpselect2-container--default .jpselect2-results__option .jpselect2-results__option .jpselect2-results__group {
padding-left: 0;
}
.jpselect2-container--default .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option {
margin-left: -1em;
padding-left: 2em;
}
.jpselect2-container--default .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option {
margin-left: -2em;
padding-left: 3em;
}
.jpselect2-container--default .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option {
margin-left: -3em;
padding-left: 4em;
}
.jpselect2-container--default .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option {
margin-left: -4em;
padding-left: 5em;
}
.jpselect2-container--default .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option .jpselect2-results__option {
margin-left: -5em;
padding-left: 6em;
}
.jpselect2-container--default .jpselect2-results__option--highlighted[aria-selected] {
background-color: #5897fb;
color: white;
}
.jpselect2-container--default .jpselect2-results__group {
cursor: default;
display: block;
padding: 6px;
}/*# sourceMappingURL=layout.css.map */

View File

@@ -0,0 +1 @@
{"version":3,"sources":["_single.scss","layout.css","_multiple.scss","layout.scss"],"names":[],"mappings":"AAAA;EACE,sBAAA;EACA,sBAAA;EACA,kBAAA;ACCF;ADCE;EACE,WAAA;EACA,iBAAA;ACCJ;ADEE;EACE,eAAA;EACA,YAAA;EACA,iBAAA;ACAJ;ADGE;EACE,WAAA;ACDJ;ADIE;EACE,YAAA;EAEA,kBAAA;EAEA,QAAA;EACA,UAAA;EAEA,WAAA;ACLJ;ADOI;EACE,sDAAA;EACA,mBAAA;EACA,2BAAA;EAEA,SAAA;EACA,SAAA;EAEA,iBAAA;EACA,gBAAA;EAEA,kBAAA;EAEA,QAAA;EACA,QAAA;ACTN;ADgBI;EACE,WAAA;ACdN;ADiBI;EACE,SAAA;EACA,WAAA;ACfN;ADqBE;EACE,sBAAA;EACA,eAAA;ACnBJ;ADqBI;EACE,aAAA;ACnBN;AD2BM;EACE,sDAAA;EACA,2BAAA;ACzBR;ACrDA;EACE,uBAAA;EACA,sBAAA;EACA,kBAAA;EACA,YAAA;ADuDF;ACrDE;EACE,sBAAA;EACA,gBAAA;EACA,SAAA;EACA,cAAA;EACA,WAAA;ADuDJ;ACrDI;EACE,gBAAA;ADuDN;ACnDE;EACE,WAAA;EAEA,eAAA;EAEA,WAAA;ADmDJ;AChDE;EACE,eAAA;EACA,YAAA;EACA,iBAAA;EACA,eAAA;EACA,kBAAA;ADkDJ;AC/CE;EACE,yBAAA;EAEA,sBAAA;EACA,kBAAA;EACA,eAAA;EAEA,WAAA;EAEA,iBAAA;EACA,eAAA;EACA,cAAA;AD8CJ;AC3CE;EACE,WAAA;EACA,eAAA;EAEA,qBAAA;EACA,iBAAA;EAEA,iBAAA;AD2CJ;ACzCI;EACE,WAAA;AD2CN;ACpCI;EACE,YAAA;ADsCN;ACnCI;EACE,gBAAA;EACA,kBAAA;ADqCN;AClCI;EACE,gBAAA;EACA,kBAAA;ADoCN;AC9BE;EACE,uBAAA;EACA,UAAA;ADgCJ;AC3BE;EACE,sBAAA;EACA,eAAA;AD6BJ;AC1BE;EACE,aAAA;AD4BJ;AEtHI;EACE,yBAAA;EACA,0BAAA;AFwHN;AEnHI;EACE,4BAAA;EACA,6BAAA;AFqHN;AEhHI;EACE,sBAAA;AFkHN;AE7GI;EACE,uBAAA;EACA,YAAA;EACA,UAAA;EACA,gBAAA;EACA,6BAAA;AF+GN;AE3GE;EACE,iBAAA;EACA,gBAAA;AF6GJ;AEzGI;EACE,UAAA;AF2GN;AExGI;EACE,WAAA;AF0GN;AEvGI;EACE,sBAAA;AFyGN;AEtGI;EACE,iBAAA;AFwGN;AEtGM;EACE,eAAA;AFwGR;AErGM;EACE,iBAAA;EACA,iBAAA;AFuGR;AErGQ;EACE,iBAAA;EACA,iBAAA;AFuGV;AErGU;EACE,iBAAA;EACA,iBAAA;AFuGZ;AErGY;EACE,iBAAA;EACA,iBAAA;AFuGd;AErGc;EACE,iBAAA;EACA,iBAAA;AFuGhB;AE9FE;EACE,yBAAA;EACA,YAAA;AFgGJ;AE7FE;EACE,eAAA;EACA,cAAA;EACA,YAAA;AF+FJ","file":"layout.css"}

View File

@@ -0,0 +1,10 @@
.widget_options-roles {
clear: both;
overflow: hidden;
}
.widget_options-roles label {
width: 50%;
display: inline-block;
float: left;
margin-top: 5px;
}/*# sourceMappingURL=widget-editor.css.map */

View File

@@ -0,0 +1 @@
{"version":3,"sources":["widget-editor.scss","widget-editor.css"],"names":[],"mappings":"AAAA;EACE,WAAA;EACA,gBAAA;ACCF;ADCE;EACE,UAAA;EACA,qBAAA;EACA,WAAA;EACA,eAAA;ACCJ","file":"widget-editor.css"}