Improve display of LineAwesome icons
This commit is contained in:
parent
2015560a42
commit
bc4f953af2
8 changed files with 12 additions and 3 deletions
|
@ -346,7 +346,7 @@ class Status extends ImmutablePureComponent {
|
|||
if (featured) {
|
||||
prepend = (
|
||||
<div className='status__prepend'>
|
||||
<div className='status__prepend-icon-wrapper'><Icon id='thumb-tack' className='status__prepend-icon' fixedWidth /></div>
|
||||
<div className='status__prepend-icon-wrapper'><Icon id='thumbtack' className='status__prepend-icon' fixedWidth /></div>
|
||||
<FormattedMessage id='status.pinned' defaultMessage='Pinned post' />
|
||||
</div>
|
||||
);
|
||||
|
|
|
@ -89,7 +89,7 @@
|
|||
"fa fa-star-half",
|
||||
"fa fa-heart-o",
|
||||
"fa fa-sign-out",
|
||||
"fa fa-thumb-tack",
|
||||
"fa fa-thumbtack",
|
||||
"fa fa-external-link",
|
||||
"fa fa-sign-in",
|
||||
"fa fa-trophy",
|
||||
|
|
|
@ -62,7 +62,7 @@ class InstanceInfoPanel extends ImmutablePureComponent {
|
|||
render() {
|
||||
const { remoteInstance, pinned } = this.props;
|
||||
const menu = this.makeMenu();
|
||||
const icon = pinned ? 'thumb-tack' : 'globe-w';
|
||||
const icon = pinned ? 'thumbtack' : 'globe-w';
|
||||
|
||||
return (
|
||||
<div className='wtf-panel instance-federation-panel'>
|
||||
|
|
|
@ -584,6 +584,7 @@
|
|||
.column-header__icon {
|
||||
display: inline-block;
|
||||
margin-right: 5px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.column-settings__outer {
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
|
||||
&__icon {
|
||||
margin-right: 10px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
&__label {
|
||||
|
|
|
@ -33,5 +33,6 @@
|
|||
&__icon,
|
||||
.icon-with-counter {
|
||||
margin-right: 12px;
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,9 +12,14 @@
|
|||
&-track-x {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 15px;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
i.fa {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
|
||||
&__icon {
|
||||
margin-right: 10px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
&__label {
|
||||
|
|
Loading…
Reference in a new issue