123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- .select2-selection--multiple {
- background-color: white;
- //border: 1px solid $cnaf-border;
- border-radius: 0px;
- cursor: text;
- .select2-selection__rendered {
- box-sizing: border-box;
- list-style: none;
- margin: 0;
- padding: 0 5px;
- width: 100%;
- li {
- list-style: none;
- }
- }
- .select2-selection__placeholder {
- //color: $cnaf-placeholder;
- margin-top: 5px;
- float: left;
- }
- .select2-selection__clear {
- cursor: pointer;
- float: right;
- font-weight: bold;
- margin-top: 5px;
- margin-right: 10px;
- }
- .select2-selection__choice {
- background-color: $secondary;
- border: 0;
- border-radius: 2px;
- cursor: default;
- //color: $cnaf;
- float: left;
- margin-right: 5px;
- margin-top: 5px;
- padding: 0 5px;
- }
- .select2-selection__choice__remove {
- //color: $cnaf;
- cursor: pointer;
- display: inline-block;
- font-weight: bold;
- margin-right: 2px;
- &:hover {
- //color: $cnaf-dark;
- }
- }
- }
- &[dir="rtl"] {
- .select2-selection--multiple {
- .select2-selection__choice, .select2-selection__placeholder, .select2-search--inline {
- float: right;
- }
- .select2-selection__choice {
- margin-left: 5px;
- margin-right: auto;
- }
- .select2-selection__choice__remove {
- margin-left: 2px;
- margin-right: auto;
- }
- }
- }
- &.select2-container--focus {
- .select2-selection--multiple {
- //border: solid $cnaf-border 1px;
- outline: 0;
- }
- }
- &.select2-container--disabled {
- .select2-selection--multiple {
- //background-color: $cnaf-disabled;
- cursor: default;
- }
- .select2-selection__choice__remove {
- display: none;
- }
- }
|