Fix broken link colors in tabs/dropdowns

This commit is contained in:
Andy Miller
2021-04-22 21:30:55 -06:00
parent c9be7941e9
commit 2034ea1e3c
4 changed files with 2 additions and 12 deletions

View File

@@ -13,6 +13,7 @@
* Prevent Save actions from Flex Objects to trigger the unsaved unload notice [#2125](https://github.com/getgrav/grav-plugin-admin/issues/2125)
* Fixed audit vulnerabilities in module dependencies and house cleanup [#2096](https://github.com/getgrav/grav-plugin-admin/issues/2096)
* Fixed issue preventing Drag & Drop of media files while in Expert Mode [#1927](https://github.com/getgrav/grav-plugin-admin/issues/1927)
* Fixed broken link colors in `preset.css` which was causing issues with tabs and dropdowns
# v1.10.12
## 04/15/2021

View File

@@ -292,10 +292,6 @@ tr td.gpm-details {
#admin-main .admin-block {
background: #ffffff;
color: #6f7b8a; }
#admin-main .admin-block a:not(.button) {
color: #0090D9; }
#admin-main .admin-block a:not(.button):hover {
color: #007fc0; }
#admin-main .admin-block h1 {
color: #414147;
border-bottom: 1px solid #f7f7f7; }

File diff suppressed because one or more lines are too long

View File

@@ -524,13 +524,6 @@ tr {
background: $content-bg;
color: $content-text;
a:not(.button) {
color: $content-link;
&:hover {
color: darken($content-link, 5%);
}
}
h1 {
color: $content-header;
border-bottom: 1px solid $underline;