Added toot visibility icons and removed Boost btn changing icon

This commit is contained in:
Ondřej Hruška
2017-07-07 09:30:25 +02:00
committed by beatrix
parent 7859e6ad45
commit d41cec90cf
3 changed files with 32 additions and 0 deletions

View File

@@ -611,6 +611,22 @@
.notification__message {
margin: -10px 0 10px;
}
// Visibility icons
&::before {
float: right;
padding-top: 5px;
margin-left: 8px;
font-family: "FontAwesome";
color: lighten($ui-base-color, 26%);
text-align: center;
width: 16px;
}
&.status-public::before { content: "\F0AC" }
&.status-unlisted::before { content: "\F13E" }
&.status-private::before { content: "\F023" }
&.status-direct::before { content: "\F0E0" }
}
.notification-favourite {