mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* PLT-5975 - Back arrow in flag list cutting off * PLT-6049 - Fixing pin icon color, and hover state * PLT-5989 - Channel member and pin icon issue * PLT-6067 - Pinned icon misaligned in firefox * PLT-5885 - Adjusting icon spacing in modal
51 lines
668 B
SCSS
51 lines
668 B
SCSS
@charset 'UTF-8';
|
|
|
|
b,
|
|
strong {
|
|
font-weight: 600;
|
|
}
|
|
|
|
a {
|
|
color: $primary-color;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
word-break: break-word;
|
|
|
|
&:focus,
|
|
&:hover {
|
|
color: $primary-color--hover;
|
|
}
|
|
}
|
|
|
|
body {
|
|
@include font-smoothing;
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
|
|
.word-break--all {
|
|
word-break: break-all;
|
|
}
|
|
|
|
.whitespace--nowrap {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.overflow--ellipsis {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.fa {
|
|
&.fa-margin--left {
|
|
margin-left: 3px;
|
|
}
|
|
|
|
&.fa-margin--right {
|
|
margin-right: 3px;
|
|
}
|
|
}
|
|
|
|
.font-weight--normal {
|
|
font-weight: normal;
|
|
}
|