Skip to content

Commit 0a87b0b

Browse files
authored
Merge pull request #15784 from Godmartinz/Fieldset_table_borders
Fixed dark background to fieldsets and right border
2 parents f2fc110 + ca4bafc commit 0a87b0b

File tree

8 files changed

+30
-9
lines changed

8 files changed

+30
-9
lines changed

resources/assets/less/overrides.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
padding: 10px;
4848
background: #f4f4f4;
4949
margin-bottom: 3px;
50-
border-left: 2px solid #e6e7e8;
50+
border-inline: 2px solid #e6e7e8;
5151
color: #444;
5252
cursor: move;
5353
}

resources/assets/less/skins/skin-black-dark.less

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,10 @@ a {
112112
color: #fff;
113113
}
114114

115-
116-
115+
#sort tr.cansort{
116+
background-color:var(--back-main);
117+
color:var(--text-main);
118+
}
117119

118120
:root {
119121
--background: #222;

resources/assets/less/skins/skin-blue-dark.less

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@ a {
107107
.text-primary {
108108
color: #fff;
109109
}
110+
#sort tr.cansort{
111+
background-color:var(--back-main);
112+
color:var(--text-main);
113+
}
110114

111115

112116

resources/assets/less/skins/skin-green-dark.less

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@ a {
107107
color: #fff;
108108
}
109109

110+
#sort tr.cansort{
111+
background-color:var(--back-main);
112+
color:var(--text-main);
113+
}
110114

111115

112116

resources/assets/less/skins/skin-orange-dark.less

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,11 @@ li.dropdown-item-marker {
9898
color: #fff;
9999
}
100100

101+
#sort tr.cansort{
102+
background-color:var(--back-main);
103+
color:var(--text-main);
104+
}
105+
101106
:root {
102107
--background: #222;
103108
--back-main: #333;

resources/assets/less/skins/skin-purple-dark.less

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,10 @@ a {
108108
color: #fff;
109109
}
110110

111-
112-
111+
#sort tr.cansort{
112+
background-color:var(--back-main);
113+
color:var(--text-main);
114+
}
113115

114116
:root {
115117
--background: #222;

resources/assets/less/skins/skin-red-dark.less

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,10 @@ a {
107107
color: #fff;
108108
}
109109

110-
111-
110+
#sort tr.cansort{
111+
background-color:var(--back-main);
112+
color:var(--text-main);
113+
}
112114

113115
:root {
114116
--background: #222;

resources/assets/less/skins/skin-yellow-dark.less

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,10 @@ a {
104104
color: #fff;
105105
}
106106

107-
108-
107+
#sort tr.cansort{
108+
background-color:var(--back-main);
109+
color:var(--text-main);
110+
}
109111

110112
:root {
111113
--background: #222;

0 commit comments

Comments
 (0)