Inherit text color instead of defining it again
This way it's easier to customize colors, particularly when links use
the same colors as the text surrounding them.
Note that the `markdown-editor-header` isn't displayed since commit
76b7f66fb, which was probably an unintended side-effect. So we're
modifying the colors here as well instead of removing the element; we
might display it again in the future.
Also note the change in `.supported` only affects the proposals section;
budget investments use a different color for the `.supported` sucess
message. Not sure whether this was originally intended or done by
accident.
This commit is contained in:
@@ -135,7 +135,7 @@ $table-header: #ecf1f6;
|
|||||||
}
|
}
|
||||||
|
|
||||||
.title-bar {
|
.title-bar {
|
||||||
color: #000;
|
color: inherit;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 12px;
|
right: 12px;
|
||||||
}
|
}
|
||||||
@@ -840,6 +840,7 @@ table {
|
|||||||
.fullscreen {
|
.fullscreen {
|
||||||
|
|
||||||
.fullscreen-container {
|
.fullscreen-container {
|
||||||
|
color: $white;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
line-height: 3rem;
|
line-height: 3rem;
|
||||||
@@ -852,7 +853,6 @@ table {
|
|||||||
.markdown-editor-header {
|
.markdown-editor-header {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
color: $white;
|
|
||||||
|
|
||||||
@include breakpoint(medium) {
|
@include breakpoint(medium) {
|
||||||
line-height: 3rem;
|
line-height: 3rem;
|
||||||
@@ -891,7 +891,7 @@ table {
|
|||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: $white;
|
color: inherit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1490,7 +1490,7 @@ table {
|
|||||||
.button.button-facebook,
|
.button.button-facebook,
|
||||||
.button.button-google,
|
.button.button-google,
|
||||||
.button.button-wordpress {
|
.button.button-wordpress {
|
||||||
color: $text;
|
color: inherit;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
label {
|
label {
|
||||||
color: #fff;
|
color: inherit;
|
||||||
font-size: $tiny-font-size;
|
font-size: $tiny-font-size;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -81,7 +81,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.supported {
|
.supported {
|
||||||
color: $text;
|
color: inherit;
|
||||||
margin-top: rem-calc(12);
|
margin-top: rem-calc(12);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user