Skip to content

Commit e8c644a

Browse files
authored
Merge pull request #18165 from Godmartinz/border-color-create-new-button-fix
Fixes #18140 Changes border color of create New in Dark modes
2 parents 9f6a73b + 7f10a53 commit e8c644a

File tree

7 files changed

+21
-5
lines changed

7 files changed

+21
-5
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@
9191
color: #fff;
9292
}
9393
}
94-
94+
.btn-info {
95+
border-color: #fff;
96+
}
9597
/**
9698
The dropdown is white, so use a darker color
9799
*/

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@
8686
color: #fff;
8787
}
8888
}
89+
.btn-info {
90+
border-color: #fff;
91+
}
8992

9093
/**
9194
The dropdown is white, so use a darker color

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@
8686
color: #FFF;
8787
}
8888
}
89-
89+
.btn-info {
90+
border-color: #fff;
91+
}
9092
/**
9193
The dropdown is white, so use a darker color
9294
*/

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@
8686
color: #fff;
8787
}
8888
}
89-
89+
.btn-info {
90+
border-color: #fff;
91+
}
9092
/**
9193
The dropdown is white, so use a darker color
9294
*/

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@
8686
color: #fff;
8787
}
8888
}
89-
89+
.btn-info {
90+
border-color: #fff;
91+
}
9092

9193
/**
9294
The dropdown is white, so use a darker color

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@
8484
color: #fff;
8585
}
8686
}
87-
87+
.btn-info {
88+
border-color: #fff;
89+
}
8890

8991
/**
9092
The dropdown is white, so use a darker color

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@
7575
color: #545454;
7676
}
7777
}
78+
.btn-info {
79+
border-color: #fff;
80+
}
7881
a.actions {
7982
color:#fff !important;
8083
}

0 commit comments

Comments
 (0)