Skip to content

Commit 9426929

Browse files
fix(datagrid-web): update border radius and margin properties for RTL support in datagrid filters
1 parent 219ca0f commit 9426929

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/modules/data-widgets/src/themesource/datawidgets/web/_datagrid-filters.scss

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
position: relative;
2121

2222
.filter-input {
23-
border-top-left-radius: 0;
24-
border-bottom-left-radius: 0;
23+
border-start-start-radius: 0;
24+
border-end-start-radius: 0;
2525
}
2626

2727
.btn-calendar {
28-
margin-left: 5px; //Review in atlas, the current date picker is also 5px
28+
margin-inline-start: 5px; //Review in atlas, the current date picker is also 5px
2929
.button-icon {
3030
width: 18px;
3131
height: 18px;
@@ -43,16 +43,16 @@
4343

4444
.filter-selector-button {
4545
padding: 8px;
46-
border-top-right-radius: 0;
47-
border-bottom-right-radius: 0;
48-
border-right: none;
46+
border-start-end-radius: 0;
47+
border-end-end-radius: 0;
48+
border-inline-end: none;
4949
height: 100%;
5050

5151
&:before {
5252
justify-content: center;
5353
width: 20px;
5454
height: 20px;
55-
padding-left: 4px; /* The font has spaces in the right side, so to align in the middle we need this */
55+
padding-inline-start: 4px; /* The font has spaces in the right side, so to align in the middle we need this */
5656
}
5757
}
5858
}

0 commit comments

Comments
 (0)