mirror of https://github.com/zulip/zulip.git
dark-mode: Refactor compose icons to be translucent.
This makes the compose icons translucent rather than medium grey and black (which isn't even our base text color) to be half opaque (approx) and base text color.
This commit is contained in:
parent
edffa56c51
commit
e37838c926
|
@ -404,7 +404,8 @@ input.recipient_box {
|
||||||
|
|
||||||
#compose a.message-control-button {
|
#compose a.message-control-button {
|
||||||
display: block;
|
display: block;
|
||||||
color: hsl(0, 0%, 46%);
|
opacity: 0.4;
|
||||||
|
color: inherit;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
width: 14px;
|
width: 14px;
|
||||||
|
@ -416,7 +417,7 @@ input.recipient_box {
|
||||||
}
|
}
|
||||||
|
|
||||||
#compose a.message-control-button:hover {
|
#compose a.message-control-button:hover {
|
||||||
color: hsl(0, 0%, 0%);
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.drag {
|
.drag {
|
||||||
|
|
Loading…
Reference in New Issue