Skip to content

Commit

Permalink
Add some dots between action-spans
Browse files Browse the repository at this point in the history
  • Loading branch information
Subilan committed Apr 22, 2020
1 parent 8d129e5 commit 4edaee9
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion src/css/logue.less
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@
.action-span {
display: inline;
color: #bbb;
margin-left: 16px;
opacity: 0;
transition: opacity .2s ease;
cursor: pointer;
Expand All @@ -105,6 +104,26 @@
opacity: .5;
transition: opacity .2s ease;
}

&.edit {
margin-left: 16px;
}

&.id {
font-weight: bold;
}

&:not(.edit)::before {
content: "·";
color: #aaa;
display: inline-block;
margin-right: 8px;
margin-left: 8px;
}

&:first-child::before {
content: none !important;
}
}
}

Expand Down

0 comments on commit 4edaee9

Please sign in to comment.