1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

active tab styles, bottom border on list to not go full width like iOS

This commit is contained in:
Kyle Spearrin
2016-09-10 23:30:08 -04:00
parent 0a3a7427ba
commit 37865c0531
3 changed files with 19 additions and 8 deletions

View File

@@ -105,7 +105,7 @@
text-overflow: ellipsis;
&:hover {
background-color: rgba(255, 255, 255, 0.8);
background-color: @list-item-hover;
}
i {
@@ -171,7 +171,18 @@
overflow: hidden;
text-overflow: ellipsis;
color: @text-color;
border-bottom: 1px solid @border-color;
position: relative;
z-index: 1;
&:before {
content: "";
position: absolute;
right: 0;
bottom: 0;
height: 1px;
width: 97%;
border-bottom: 1px solid @border-color;
}
&:last-child {
border: none;