Fix color of "More" preview button in Morning

This commit is contained in:
Jérémie Astori 2018-04-12 00:52:05 -04:00
parent 2b051194c8
commit ee6fb8c619
No known key found for this signature in database
GPG key ID: B9A4F245CD67BDE8
2 changed files with 11 additions and 6 deletions

View file

@ -2,6 +2,11 @@
@import "bootstrap.css";
@import "../../node_modules/primer-tooltips/build/build.css";
:root {
/* Links and link-looking buttons */
--link-color: #50a656;
}
html,
body {
height: 100%;
@ -29,7 +34,7 @@ body {
a,
a:hover,
a:focus {
color: #50a656;
color: var(--link-color);
}
a {
@ -1416,7 +1421,7 @@ kbd {
}
#chat .toggle-content .more {
color: #50a656;
color: var(--link-color);
font-weight: normal;
margin-left: 10px;
flex-shrink: 0;

View file

@ -1,3 +1,7 @@
:root {
--link-color: #428bca;
}
body {
color: #ccc;
}
@ -81,10 +85,6 @@ body {
#chat.colored-nicks .user.color-31 { color: #f2a4eb; }
#chat.colored-nicks .user.color-32 { color: #85f27d; }
#chat a {
color: #428bca;
}
/* Increase contrast of some IRC colors */
.irc-fg2 { color: #0074d9; }
.irc-fg5 { color: #e969a7; }