fix delte message overlay size and add subtle function to just compute

color
This commit is contained in:
Audric Ackermann 2020-08-28 10:42:50 +10:00
parent 22b2d80993
commit 4ec51b55bf
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4
3 changed files with 8 additions and 3 deletions

View File

@ -463,7 +463,8 @@ label {
.session-button.default.danger {
display: flex;
width: 80px;
// width: 80px;
margin-right: 0px;
}
}
.message-selection-overlay div[role='button'] {

View File

@ -151,7 +151,11 @@ $session-font-h4: 16px;
}
@mixin session-color-subtle($color) {
color: rgba($color, 0.6);
color: subtle($color);
}
@function subtle($color) {
@return rgba($color, 0.6);
}
// //////////////////////////////////////////////

View File

@ -116,7 +116,7 @@
margin-left: 5px;
.session-icon.check {
@include themify($themes) {
fill: themed('sentMessageText');
fill: subtle(themed('sentMessageText'));
}
}
}