blob: 58e843047f37bf48c4ff646d2798892e95ec8bcf [file] [log] [blame]
Michael Landoefa037d2017-02-19 12:57:33 +02001.section-title {
Avi Zivb8e2faf2017-07-18 19:45:38 +03002 @extend .heading-3-semibold;
talig8e9c0652017-12-20 14:30:43 +02003 padding: 50px 0 20px 0;
Michael Landoefa037d2017-02-19 12:57:33 +02004 &:first-child {
talig8e9c0652017-12-20 14:30:43 +02005 padding-top: 0;
Michael Landoefa037d2017-02-19 12:57:33 +02006 }
7}
AviZi280f8012017-06-09 02:39:56 +03008
9.validation-form-content {
10 fieldset[disabled] {
11 .form-group {
12 opacity: 0.7;
13 cursor: auto;
14 pointer-events: none;
15 .dropdown-multi-select {
16 .form-group {
17 opacity: 1;
18 }
19 .Select-control {
20 background-color: $tlv-light-gray;
21 }
22 }
23 }
24 }
25}
26
Michael Landoefa037d2017-02-19 12:57:33 +020027.dropdown-multi-select {
28 .Select {
29 display: block;
30 width: 100%;
AviZi280f8012017-06-09 02:39:56 +030031 .Select-menu-outer {
32 .Select-option {
33 &:hover {
34 background-color: $blue;
35 color: $white;
36 }
37 }
38 }
Michael Landoefa037d2017-02-19 12:57:33 +020039 .Select-control {
40 height: 28px;
41 border-radius: 2px;
42 .Select-input {
43 height: 28px;
44 input {
45 height: 28px;
46 padding: 0;
47 }
48 }
49 .Select-placeholder {
50 line-height: 30px;
51 }
52 }
53 &.Select--multi {
54 .Select-value {
55 color: $text-black;
AviZi280f8012017-06-09 02:39:56 +030056 background-color: $background-gray;
57 border: none;
58 margin: 3px 0 3px 10px;
59 border-radius: 10px;
60 padding-left: 8px;
61 padding-right: 6px;
Michael Landoefa037d2017-02-19 12:57:33 +020062 }
63 .Select-value-icon {
AviZi280f8012017-06-09 02:39:56 +030064 border: none;
65 float: right;
66 &:hover {
67 background-color: inherit;
68 color: inherit;
69 }
Michael Landoefa037d2017-02-19 12:57:33 +020070 }
71 .Select-arrow-zone {
AviZi280f8012017-06-09 02:39:56 +030072 padding-top: 4px;
Michael Landoefa037d2017-02-19 12:57:33 +020073 }
74 }
75 }
76}