Blame view

frontend/themes/markup/src/scss/custom/_select.scss 870 Bytes
d1f8bd40   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  .select2-container {
    width: 100%!important;
    height: 35px;
    background-color: #ffffff;
    //border: solid 1px #ffed82;
    font-size: 16px;
    text-align: left;
    color: #7a9cb4;
    *:focus, &:focus{
      outline: none!important;
    }
  }
  .required .select2-container, .required .select2-container--default .select2-selection--single {
    background-color: #fffade;
  }
  .select2-container--default .select2-selection--single .select2-selection__arrow b{
    border: none!important;
    width: 20px;
    height: 11px;
    background: url("../img/down-arrow2.png") center no-repeat;
    margin-left: -15px;
  }
  .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{
    transform: rotate(180deg);
  }
  .select2-container--default .select2-search--dropdown .select2-search__field{
  
  }
  .select-container{
    margin: 20px 0;
    position: relative;
  }