File tree Expand file tree Collapse file tree 7 files changed +37
-7
lines changed Expand file tree Collapse file tree 7 files changed +37
-7
lines changed Original file line number Diff line number Diff line change 14
14
#### Changed
15
15
- Removed ` vertical-align ` from button non-base variants to create vertical alignment consistency among all the buttons.
16
16
17
+ ### [ Checkbox] ( https://www.lightningdesignsystem.com/components/checkbox )
18
+ #### Fixed
19
+ - Right to left legend to be right aligned and match the alignment of content.
20
+ - Checkbox margin to properly support RTL.
21
+
22
+ ### [ Form Element] ( https://www.lightningdesignsystem.com/components/form-element )
23
+ #### Fixed
24
+ - Fixed form element label to support RTL layout by removing left aligned spacing and placing it back on the opposite side.
25
+
17
26
### [ Modals] ( https://www.lightningdesignsystem.com/components/modals )
18
27
#### Changed
19
28
- Added ` slds-modal__content_footless ` class to example for clarity.
Original file line number Diff line number Diff line change 4
4
5
5
<!-- ## [Unreleased] -->
6
6
7
+ ## 2.18.0
8
+
9
+ ### Fixed
10
+ - Right to left legend to be right aligned and match the alignment of content.
11
+ - Checkbox margin to properly support RTL.
12
+
7
13
## 2.17.5
8
14
9
15
### Fixed
Original file line number Diff line number Diff line change 209
209
.slds-form-element .slds-checkbox [type = " checkbox" ] + .slds-checkbox__label .slds-checkbox_faux ,
210
210
.slds-form-element .slds-checkbox [type = " checkbox" ] + .slds-checkbox__label .slds-checkbox--faux {
211
211
margin-right : $spacing-x-small ;
212
+
213
+ @include rtl () {
214
+ /* ! @noflip */
215
+ margin-right : 0 ;
216
+
217
+ /* ! @noflip */
218
+ margin-left : $spacing-x-small ;
219
+ }
212
220
}
Original file line number Diff line number Diff line change 3
3
# Form Element Release Notes
4
4
5
5
<!-- ## [Unreleased] -->
6
+
7
+ ## 2.18.0
8
+
9
+ ### Fixed
10
+ - Fixed form element label to support RTL layout by removing left aligned spacing and placing it back on the opposite side.
11
+
6
12
## 2.16.0
7
13
8
14
### Fixed
Original file line number Diff line number Diff line change 29
29
margin-bottom : $spacing-xxx-small ;
30
30
31
31
@include rtl () {
32
+ /* ! @noflip */
33
+ padding-right : 0 ;
34
+
32
35
/* ! @noflip */
33
36
padding-left : $spacing-x-small ;
34
37
}
Original file line number Diff line number Diff line change 52
52
width : 100% ;
53
53
flex-basis : 100% ;
54
54
clear : left ;
55
+
56
+ @include rtl () {
57
+ /* ! @noflip */
58
+ clear : right ;
59
+ }
55
60
}
56
61
57
62
.slds-form-element__icon {
Original file line number Diff line number Diff line change 158
158
margin-left : $spacing-x-small ;
159
159
}
160
160
}
161
-
162
- .slds-radio .slds-form-element__label {
163
- @include rtl () {
164
- /* ! @noflip */
165
- padding-right : 0 ;
166
- }
167
- }
You can’t perform that action at this time.
0 commit comments