Skip to content

Commit

Permalink
Merge pull request #116 from pfadfinden/bugfix/#115-color-of-links
Browse files Browse the repository at this point in the history
[BUGFIX] Adjust colors of links on colored boxes
  • Loading branch information
cowboyxup authored Feb 15, 2022
2 parents bc93553 + 7c46ddc commit 001c3e2
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions Resources/Private/Source/Scss/8-components/_content-elements.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@
.ce-header {
@extend .ce-header--83;
}
a {
color: colors.get-color('bdp-blue', 'base');
text-decoration: none;
&:hover {
color: inherit;
text-decoration: underline;
}
}
}
&-2 {
background-color: colors.get-color('bdp-blue', 'base');
Expand All @@ -32,6 +40,14 @@
.ce-header {
@extend .ce-header--80;
}
a {
color: #ffffff;
text-decoration: underline #ffffff dotted;
&:hover {
color: inherit;
text-decoration: underline #ffffff solid;
}
}
}
&-3 {
background-color: colors.get-color('bdp-red', 'base');
Expand All @@ -40,6 +56,14 @@
.ce-header {
@extend .ce-header--84;
}
a {
color: #ffffff;
text-decoration: underline #ffffff dotted;
&:hover {
color: inherit;
text-decoration: underline #ffffff solid;
}
}
}
&-4 {
padding: 0;
Expand Down
2 changes: 1 addition & 1 deletion Resources/Public/Build/pfadfinden.css

Large diffs are not rendered by default.

Binary file modified Resources/Public/Build/pfadfinden.css.br
Binary file not shown.
Binary file modified Resources/Public/Build/pfadfinden.css.gz
Binary file not shown.

0 comments on commit 001c3e2

Please sign in to comment.