Skip to content

Commit

Permalink
fixes dropdown column select font color in bootstrap tables
Browse files Browse the repository at this point in the history
  • Loading branch information
Godmartinz committed Jun 23, 2022
1 parent 366f3aa commit 541ae91
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 9 deletions.
4 changes: 3 additions & 1 deletion resources/assets/less/skins/skin-black-dark.less
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,9 @@ a {
.bootstrap-table .fixed-table-container .table thead th .sortable {
color: var(--nav-link);
}

.bootstrap-table .fixed-table-toolbar .columns label {
color:#000;
}
.thead, .navbar-nav>li>a:link {
color: var(--nav-link);
}
Expand Down
8 changes: 6 additions & 2 deletions resources/assets/less/skins/skin-blue-dark.less
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ a {
.bootstrap-table .fixed-table-container .table thead th .sortable {
color: var(--nav-link);
}

.bootstrap-table .fixed-table-toolbar .columns label {
color:#000;
}
.thead, .navbar-nav>li>a:link {
color: var(--nav-link);
}
Expand All @@ -149,7 +151,9 @@ a:link {
.btn-primary.hover {
color: var(--nav-link);
}

.bootstrap-table .fixed-table-toolbar .columns label {
color:#000;
}
.small-box h3, .small-box p {
color: var(--nav-link) !important;
a:hover {
Expand Down
3 changes: 3 additions & 0 deletions resources/assets/less/skins/skin-orange-dark.less
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@
.bootstrap-table .fixed-table-container .table thead th .sortable {
color: var(--nav-link);
}
.bootstrap-table .fixed-table-toolbar .columns label {
color:#000;
}

.thead, .navbar-nav>li>a:link {
color: var(--nav-link);
Expand Down
4 changes: 3 additions & 1 deletion resources/assets/less/skins/skin-purple-dark.less
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ a {
.bootstrap-table .fixed-table-container .table thead th .sortable {
color: var(--nav-link);
}

.bootstrap-table .fixed-table-toolbar .columns label {
color:#000;
}
.thead, .navbar-nav>li>a:link {
color: var(--nav-link);
}
Expand Down
3 changes: 3 additions & 0 deletions resources/assets/less/skins/skin-red-dark.less
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ a {
.bootstrap-table .fixed-table-container .table thead th .sortable {
color: var(--nav-link);
}
.bootstrap-table .fixed-table-toolbar .columns label {
color:#000;
}

.thead, .navbar-nav>li>a:link {
color: var(--nav-link);
Expand Down
12 changes: 7 additions & 5 deletions resources/assets/less/skins/skin-yellow-dark.less
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ a {
--back-main: #333;
--back-sub: #3d4144;
--back-sub-alt: rgba(0, 0, 0, 0.36);
--button-default: #FFFF00;
--button-primary: darken(#FFFF00, 25%);
--button-hover: darken(#FFFF00, 30%);
--header: #FFFF00; /* Use same as Header picker */
--button-default: #FFCC32;
--button-primary: darken(#FFCC32, 25%);
--button-hover: darken(#FFCC32, 30%);
--header: #FFCC32; /* Use same as Header picker */
--text-main: #BBB;
--text-sub: #9b9b9b;
--link: #F0E68C; /* Use same as Header picker, lighten by 70% */
Expand All @@ -131,7 +131,9 @@ a.btn.btn-default{
.bootstrap-table .fixed-table-container .table thead th .sortable {
color: var(--nav-link);
}

.bootstrap-table .fixed-table-toolbar .columns label {
color:#000;
}
.thead, .navbar-nav>li>a:link {
color: var(--nav-link);
}
Expand Down

0 comments on commit 541ae91

Please sign in to comment.