Skip to content

Commit

Permalink
mixes color contrast on dropdown menu from navbar
Browse files Browse the repository at this point in the history
on file
  • Loading branch information
Godmartinz committed Mar 3, 2022
1 parent 292bf21 commit 708dc08
Show file tree
Hide file tree
Showing 18 changed files with 61 additions and 129 deletions.
92 changes: 46 additions & 46 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/css/dist/skins/skin-blue.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
background-color: rgba(255, 255, 255, 0.1);
}
.skin-blue .main-header .navbar .dropdown-menu li a {
color: #fff;
color: #333;
}
.skin-blue .main-header .navbar .dropdown-menu li a:hover {
background: #367fa9;
Expand Down
2 changes: 1 addition & 1 deletion public/css/dist/skins/skin-blue.min.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
background-color: rgba(255, 255, 255, 0.1);
}
.skin-blue .main-header .navbar .dropdown-menu li a {
color: #fff;
color: #333;
}
.skin-blue .main-header .navbar .dropdown-menu li a:hover {
background: #367fa9;
Expand Down
45 changes: 0 additions & 45 deletions public/mix-manifest.json

This file was deleted.

11 changes: 6 additions & 5 deletions resources/assets/less/skins/skin-black-dark.less
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
color: #fff;
}
a {
color: #fff;
color: #333;
&:hover {
background: darken(@black, 5%);
color: #fff;
Expand All @@ -36,6 +36,11 @@
}
}
}
@media (max-width: 991px) {
.navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
background-color: var(--back-sub);
}
}
//Logo

li.user-header {
Expand Down Expand Up @@ -245,10 +250,6 @@ body {
#details>div>div>div>table {
background-color: transparent;
}
.dropdown-menu, .dropdown-menu>li>a {
background-color: var(--back-sub);
color: var(--text-main) !important;
}
.dropdown-menu>li>a:hover {
background-color: var(--back-main);
color: var(--nav-link);
Expand Down
2 changes: 1 addition & 1 deletion resources/assets/less/skins/skin-black.less
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
background-color: rgba(255, 255, 255, 0.1);
}
a {
color: #fff;
color: #333;
&:hover {
background: darken(@black, 5%);
}
Expand Down
4 changes: 0 additions & 4 deletions resources/assets/less/skins/skin-blue-dark.less
Original file line number Diff line number Diff line change
Expand Up @@ -232,10 +232,6 @@ body {
#details>div>div>div>table {
background-color: transparent;
}
.dropdown-menu, .dropdown-menu>li>a {
background-color: var(--back-sub);
color: var(--text-main) !important;
}
.dropdown-menu>li>a:hover {
background-color: var(--back-main);
color: var(--nav-link);
Expand Down
2 changes: 1 addition & 1 deletion resources/assets/less/skins/skin-blue.less
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
background-color: rgba(255, 255, 255, 0.1);
}
a {
color: #fff;
color: #333;
&:hover {
background: darken(@light-blue, 5%);
}
Expand Down
4 changes: 0 additions & 4 deletions resources/assets/less/skins/skin-green-dark.less
Original file line number Diff line number Diff line change
Expand Up @@ -232,10 +232,6 @@ body {
#details>div>div>div>table {
background-color: transparent;
}
.dropdown-menu, .dropdown-menu>li>a {
background-color: var(--back-sub);
color: var(--text-main) !important;
}
.dropdown-menu>li>a:hover {
background-color: var(--back-main);
color: var(--nav-link);
Expand Down
2 changes: 1 addition & 1 deletion resources/assets/less/skins/skin-green.less
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
background-color: rgba(255, 255, 255, 0.1);
}
a {
color: #fff;
color: #333;
&:hover {
background: darken(@green, 5%);
}
Expand Down
4 changes: 0 additions & 4 deletions resources/assets/less/skins/skin-orange-dark.less
Original file line number Diff line number Diff line change
Expand Up @@ -234,10 +234,6 @@ a:link.btn-default{
#details>div>div>div>table {
background-color: transparent;
}
.dropdown-menu, .dropdown-menu>li>a {
background-color: var(--back-sub);
color: var(--text-main) !important;
}
.dropdown-menu>li>a:hover {
background-color: var(--back-main);
color: var(--nav-link);
Expand Down
2 changes: 1 addition & 1 deletion resources/assets/less/skins/skin-orange.less
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
background-color: rgba(255, 255, 255, 0.1);
}
a {
color: #fff;
color: #333;
&:hover {
background: darken(@orange, 5%);
}
Expand Down
4 changes: 0 additions & 4 deletions resources/assets/less/skins/skin-purple-dark.less
Original file line number Diff line number Diff line change
Expand Up @@ -234,10 +234,6 @@ body {
#details>div>div>div>table {
background-color: transparent;
}
.dropdown-menu, .dropdown-menu>li>a {
background-color: var(--back-sub);
color: var(--text-main) !important;
}
.dropdown-menu>li>a:hover {
background-color: var(--back-main);
color: var(--nav-link);
Expand Down
2 changes: 1 addition & 1 deletion resources/assets/less/skins/skin-purple.less
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
background-color: rgba(255, 255, 255, 0.1);
}
a {
color: #fff;
color: #333;
&:hover {
background: darken(@purple, 5%);
}
Expand Down
4 changes: 0 additions & 4 deletions resources/assets/less/skins/skin-red-dark.less
Original file line number Diff line number Diff line change
Expand Up @@ -233,10 +233,6 @@ body {
#details>div>div>div>table {
background-color: transparent;
}
.dropdown-menu, .dropdown-menu>li>a {
background-color: var(--back-sub);
color: var(--text-main) !important;
}
.dropdown-menu>li>a:hover {
background-color: var(--back-main);
color: var(--nav-link);
Expand Down
2 changes: 1 addition & 1 deletion resources/assets/less/skins/skin-red.less
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
background-color: rgba(255, 255, 255, 0.1);
}
a {
color: #fff;
color: #333;
&:hover {
background: darken(@red, 5%);
}
Expand Down
4 changes: 0 additions & 4 deletions resources/assets/less/skins/skin-yellow-dark.less
Original file line number Diff line number Diff line change
Expand Up @@ -234,10 +234,6 @@ body {
#details>div>div>div>table {
background-color: transparent;
}
.dropdown-menu, .dropdown-menu>li>a {
background-color: var(--back-sub);
color: var(--text-main) !important;
}
.dropdown-menu>li>a:hover {
background-color: var(--back-main);
color: var(--nav-link);
Expand Down
2 changes: 1 addition & 1 deletion resources/assets/less/skins/skin-yellow.less
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
background-color: rgba(255, 255, 255, 0.1);
}
a {
color: #fff;
color: #333;
&:hover {
background: darken(@yellow, 5%);
}
Expand Down

0 comments on commit 708dc08

Please sign in to comment.