Compare commits

...

6 Commits

3 changed files with 7 additions and 11 deletions

View File

@ -23,15 +23,7 @@ class DocumentTitle extends PureComponent {
} }
_sideEffects () { _sideEffects () {
const { unread } = this.props; document.title = title;
if (unread > 99) {
document.title = `(*) ${title}`;
} else if (unread > 0) {
document.title = `(${unread}) ${title}`;
} else {
document.title = title;
}
} }
render () { render () {

View File

@ -8,6 +8,10 @@
max-width: 400px; max-width: 400px;
min-width: 330px; min-width: 330px;
} }
.layout-multiple-columns .column {
flex-grow: 1 !important;
max-width: 400px;
}
} }
/* Don't show outline around statuses if we're in /* Don't show outline around statuses if we're in

View File

@ -272,7 +272,7 @@ body.about-body {
} }
} }
.status__content a, .reply-indicator__content a, .status__content a,
.status__content a.unhandled-link, .reply-indicator__content a.unhandled-link { .status__content a.unhandled-link {
color: mix($ui-highlight-color, $ui-secondary-color, 10%); color: mix($ui-highlight-color, $ui-secondary-color, 10%);
} }