refs #223 Add menu to open toot detail in browser

This commit is contained in:
AkiraFukushima 2018-04-15 13:41:20 +09:00
parent c91dc7fa89
commit 7a63f22caf
1 changed files with 13 additions and 11 deletions

View File

@ -46,6 +46,9 @@
<li role="button" @click="openDetail(message)">
View Toot Detail
</li>
<li role="button" @click="openBrowser(message)">
Open in Browser
</li>
</ul>
</popover>
</div>
@ -106,6 +109,9 @@ export default {
this.$store.dispatch('TimelineSpace/Contents/SideBar/TootDetail/changeToot', message)
this.$store.commit('TimelineSpace/Contents/SideBar/changeOpenSideBar', true)
},
openBrowser (message) {
console.log(message)
},
changeReblog (message) {
if (message.reblogged) {
this.$store.dispatch('TimelineSpace/Contents/Cards/Toot/unreblog', message)
@ -273,25 +279,21 @@ function findLink (target) {
color: #e6a23c;
}
.toot-menu{
.toot-menu {
padding: 0;
font-size: 0.8em;
margin-left: 0.5em;
list-style-type: none;
text-align: center;
text-align: left;
li{
li {
box-sizing: border-box;
padding-left: 0.5em;
padding-bottom: 0.5em;
border-bottom: 1px solid #ddd;
&:hover{
&:hover {
background-color: #f2f6fc;
cursor: pointer;
}
&:last-child{
border: 0;
padding: 0;
}
}
}
}