remove commented and unused stuff
This commit is contained in:
parent
52ffb8b219
commit
6e700ea43a
4 changed files with 7 additions and 17 deletions
|
@ -709,12 +709,6 @@ nav {
|
||||||
margin: 0.5em 0 0.5em 0;
|
margin: 0.5em 0 0.5em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.status .status-actions {
|
|
||||||
div {
|
|
||||||
max-width: 4em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-button {
|
.menu-button {
|
||||||
display: block;
|
display: block;
|
||||||
margin-right: 0.8em;
|
margin-right: 0.8em;
|
||||||
|
|
|
@ -24,10 +24,6 @@
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
// TODO: clean up the random margins in attachments, this makes preview line
|
|
||||||
// up with attachments...
|
|
||||||
// margin-right: 0.5em;
|
|
||||||
|
|
||||||
.card-image {
|
.card-image {
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
width: 120px;
|
width: 120px;
|
||||||
|
|
|
@ -334,7 +334,6 @@ const Status = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
replyEnter (id, event) {
|
replyEnter (id, event) {
|
||||||
console.log('replyEnter', id)
|
|
||||||
this.showPreview = true
|
this.showPreview = true
|
||||||
const targetId = id
|
const targetId = id
|
||||||
const statuses = this.$store.state.statuses.allStatuses
|
const statuses = this.$store.state.statuses.allStatuses
|
||||||
|
@ -353,7 +352,6 @@ const Status = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
replyLeave () {
|
replyLeave () {
|
||||||
console.log('replyLeave')
|
|
||||||
this.showPreview = false
|
this.showPreview = false
|
||||||
},
|
},
|
||||||
generateUserProfileLink (id, name) {
|
generateUserProfileLink (id, name) {
|
||||||
|
|
|
@ -277,20 +277,18 @@
|
||||||
|
|
||||||
.heading-name-row {
|
.heading-name-row {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
flex-shrink: 1;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: baseline;
|
|
||||||
|
|
||||||
.user-name {
|
.user-name {
|
||||||
flex-shrink: 1;
|
flex-shrink: 1;
|
||||||
margin-right: 0.5em;
|
margin-right: 0.4em;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
.account-name {
|
.account-name {
|
||||||
min-width: 1.6em;
|
min-width: 1.6em;
|
||||||
margin-right: 0.5em;
|
margin-right: 0.4em;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
@ -319,17 +317,21 @@
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.reply-info {
|
.reply-info {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
.reply-to {
|
.reply-to {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
.reply-to-text {
|
.reply-to-text {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
margin: 0 0.4em 0 0.2em;
|
margin: 0 0.4em 0 0.2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.replies {
|
.replies {
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue