Compare commits
6 Commits
82cd16c957
...
17d3ed59a6
Author | SHA1 | Date |
---|---|---|
|
17d3ed59a6 | |
|
8dd00194a8 | |
|
e0ebb89b65 | |
|
3d8eb5dd7d | |
|
279f182c2d | |
|
1d0a80b4fd |
|
@ -23,15 +23,7 @@ class DocumentTitle extends PureComponent {
|
|||
}
|
||||
|
||||
_sideEffects () {
|
||||
const { unread } = this.props;
|
||||
|
||||
if (unread > 99) {
|
||||
document.title = `(*) ${title}`;
|
||||
} else if (unread > 0) {
|
||||
document.title = `(${unread}) ${title}`;
|
||||
} else {
|
||||
document.title = title;
|
||||
}
|
||||
document.title = title;
|
||||
}
|
||||
|
||||
render () {
|
||||
|
|
|
@ -8,6 +8,10 @@
|
|||
max-width: 400px;
|
||||
min-width: 330px;
|
||||
}
|
||||
.layout-multiple-columns .column {
|
||||
flex-grow: 1 !important;
|
||||
max-width: 400px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Don't show outline around statuses if we're in
|
||||
|
|
|
@ -272,7 +272,7 @@ body.about-body {
|
|||
}
|
||||
}
|
||||
|
||||
.status__content a, .reply-indicator__content a,
|
||||
.status__content a.unhandled-link, .reply-indicator__content a.unhandled-link {
|
||||
.status__content a,
|
||||
.status__content a.unhandled-link {
|
||||
color: mix($ui-highlight-color, $ui-secondary-color, 10%);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue