File tree Expand file tree Collapse file tree 9 files changed +42
-20
lines changed
DateRangePicker/DateInput
ChallengeCard/NumRegistrants
Tooltips/ProgressBarTooltip Expand file tree Collapse file tree 9 files changed +42
-20
lines changed Original file line number Diff line number Diff line change 9
9
10
10
input {
11
11
padding : 5px ;
12
- height : 30 px !important ;
12
+ height : 40 px !important ;
13
13
font-size : 13px !important ;
14
14
line-height : 16px !important ;
15
15
margin-bottom : 0 !important ;
43
43
position : absolute ;
44
44
cursor : pointer ;
45
45
margin-left : -22px ;
46
- margin-top : 6 px ;
46
+ margin-top : 11 px ;
47
47
}
Original file line number Diff line number Diff line change @@ -196,6 +196,9 @@ $down-arrow-size: $base-unit;
196
196
display : block ;
197
197
padding : 8px 20px ;
198
198
z-index : 100000 ;
199
+ border-bottom : 1px solid #aaa ;
200
+ border-left : 1px solid #aaa ;
201
+ border-right : 1px solid #aaa ;
199
202
}
200
203
201
204
.Select-option :last-child {
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ function SwitchWithLabel({
35
35
switch : theme . switch ,
36
36
} }
37
37
/>
38
- { labelAfter }
38
+ < span > { labelAfter } </ span >
39
39
</ div >
40
40
) ;
41
41
}
Original file line number Diff line number Diff line change 8
8
}
9
9
10
10
.rc-tooltip-inner {
11
- border-radius : 3 px ;
11
+ border-radius : 8 px ;
12
12
background : $tc-gray-80 ;
13
13
padding : 0 ;
14
14
}
Original file line number Diff line number Diff line change 6
6
}
7
7
8
8
.link :hover {
9
- color : $tc-dark-blue-110 ;
9
+ color : $tc-black ;
10
10
}
11
11
12
12
.number {
Original file line number Diff line number Diff line change @@ -510,7 +510,7 @@ export default function FiltersPanel({
510
510
onSwitch = { ( e ) => {
511
511
let { types } = filterState ;
512
512
513
- if ( e . target . checked ) {
513
+ if ( e ) {
514
514
types = types . concat ( option . value ) ;
515
515
} else {
516
516
types = types . filter ( type => type !== option . value ) ;
Original file line number Diff line number Diff line change @@ -339,6 +339,10 @@ hr.hr {
339
339
width : 130px ;
340
340
}
341
341
342
+ @include md-to-lg {
343
+ width : 26% ;
344
+ }
345
+
342
346
.radio-label {
343
347
display : inline-block ;
344
348
padding-left : 24px ;
@@ -362,6 +366,7 @@ hr.hr {
362
366
border : 1px solid #aaa ;
363
367
border-radius : 50% ;
364
368
box-shadow : 0 1px 2px 0 rgba ($tc-black , 0.29 );
369
+ background : #fff ;
365
370
}
366
371
367
372
& ::after {
@@ -585,12 +590,17 @@ hr.hr {
585
590
.Select.is-focused > .Select-control {
586
591
outline : none ;
587
592
box-shadow : none ;
588
- border-color : #137d60 !important ;
593
+ border-color : #151516 !important ;
589
594
}
590
595
591
596
.Select-menu-outer {
592
597
margin-top : 1px ;
593
598
font-size : 14px ;
599
+
600
+ .Select-option.is-selected {
601
+ background-color : #137d60 !important ;
602
+ color : $tc-white !important ;
603
+ }
594
604
}
595
605
}
596
606
}
@@ -611,7 +621,7 @@ hr.hr {
611
621
612
622
.recommended-challenge-tooltip {
613
623
position : absolute ;
614
- right : 54 px ;
624
+ left : 210 px ;
615
625
display : flex ;
616
626
flex-direction : column ;
617
627
justify-content : center ;
@@ -625,9 +635,9 @@ hr.hr {
625
635
}
626
636
627
637
.tctooltiptext {
628
- background : $tc-white ;
629
- color : $tc-gray-90 ;
630
- border-radius : 3 px ;
638
+ background : $tc-black ;
639
+ color : $tc-white ;
640
+ border-radius : 8 px ;
631
641
padding : 10px ;
632
642
}
633
643
@@ -642,6 +652,6 @@ hr.hr {
642
652
margin-left : -5px ;
643
653
border-width : 5px 5px 0 ;
644
654
left : 50% ;
645
- border-top-color : $tc-white ;
655
+ border-top-color : $tc-black ;
646
656
z-index : 1000 ;
647
657
}
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ div.progress-bar-tooltip {
18
18
19
19
.rc-tooltip-inner {
20
20
padding : 0 $base-unit * 3 ;
21
+ border-radius : 8px ;
21
22
}
22
23
23
24
.tip {
Original file line number Diff line number Diff line change @@ -131,12 +131,6 @@ $challenge-radius-4: $corner-radius * 2;
131
131
}
132
132
}
133
133
134
- .recommended-plus-tag {
135
- margin-left : 3px ;
136
- display : inline-block ;
137
- background-color : $tc-white ;
138
- }
139
-
140
134
.tag {
141
135
button {
142
136
border-radius : 2px ;
@@ -146,13 +140,23 @@ $challenge-radius-4: $corner-radius * 2;
146
140
font-weight : 500 ;
147
141
148
142
& :hover {
149
- background-color : #d4d4d4 ;
143
+ background-color : #d4d4d4 !important ;
150
144
}
151
145
}
152
146
}
153
147
148
+ .recommended-plus-tag {
149
+ margin-left : 3px ;
150
+ display : inline-block ;
151
+ background-color : $tc-white ;
152
+
153
+ button :hover {
154
+ background-color : #d4d4d4 !important ;
155
+ }
156
+ }
157
+
154
158
.additionalTagWrapper {
155
- background : $tc-white ;
159
+ background : $tc-black ;
156
160
display : inline-block ;
157
161
border-radius : 2px ;
158
162
padding : 3px 4px ;
@@ -181,6 +185,10 @@ $challenge-radius-4: $corner-radius * 2;
181
185
margin-top : 5px ;
182
186
margin-left : 3px ;
183
187
display : inline-block ;
188
+
189
+ & > button :hover {
190
+ background-color : #d4d4d4 !important ;
191
+ }
184
192
}
185
193
186
194
.tagContainer {
You can’t perform that action at this time.
0 commit comments