source: resources/assets/sass/components/select2.scss@ 7304c7f

develop
Last change on this file since 7304c7f was 7304c7f, checked in by beratkjufliju <kufliju@…>, 3 years ago

added user authentication, create & forgot password methods and blades

  • Property mode set to 100644
File size: 952 bytes
Line 
1.select2 {
2 width: 100% !important;
3}
4
5.select2.select2-container {
6 .select2-selection {
7 border: 1px solid #ced4da;
8
9 .select2-selection__placeholder {
10 line-height: calc(2.25rem + 2px);
11 }
12
13 .select2-selection__arrow {
14 height: calc(2.25rem + 2px);
15 width: 30px;
16 }
17
18 .select2-selection__choice {
19 display: flex;
20 align-items: center;
21 border: none;
22
23 .select2-selection__choice__remove {
24 font-size: $default-font-size + 2;
25 padding: 0 5px 0 3px;
26 }
27 }
28
29 &.select2-container--focus {
30 border-color: red;
31 }
32 }
33}
34
35.select2-container--default .select2-results__option--highlighted[aria-selected] {
36 background-color: $color-primary;
37 color: white;
38}
39
40.select2-container--default.select2-container--focus .select2-selection--multiple {
41 border-color: rgba($color-primary, 0.8);
42}
43
44.select2-container--default .select2-search--dropdown .select2-search__field {
45 height: calc(2.25rem + 2px);
46 padding: .375rem .75rem;
47}
Note: See TracBrowser for help on using the repository browser.