Skip to content

Commit

Permalink
Fix link color in tables
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun committed Jan 15, 2024
1 parent 391fb0f commit 3843308
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 12 additions & 3 deletions private/djangocms-simple-admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

--link-fg: var(--dca-primary);
/*--link-hover-color: #036;*/
/*--link-selected-fg: #5b80b2;*/
--link-selected-fg: var(--dca-primary);

--hairline-color: var(--dca-gray-lightest);
--border-color: var(--dca-gray-lighter);
Expand Down Expand Up @@ -130,10 +130,11 @@ h2 {
h3 {
font-size: 1.2rem;
}
h4, td, th, .module h2, .module caption, .inline-group h2, label {
h4, .module h2, .module caption, .inline-group h2,
#changelist .actions label, label {
font-size: 1rem;
}
h5, .small, .help, p.help, form p.help, div.help, form div.help, div.help li {
h5, .small, td, th, thead th, .help, p.help, form p.help, div.help, form div.help, div.help li {
font-size: 0.875rem;
}
.mini {
Expand All @@ -144,6 +145,14 @@ li, dt, dd {
line-height: 1.6rem;
}

table thead th .text span {
padding: 12px;
}

a:link, a:visited {
color: var(--dca-primary);
}

/* Colors */
.module h2, .module caption, .inline-group h2 {
background: var(--body-bg);
Expand Down

0 comments on commit 3843308

Please sign in to comment.