1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

finish implementing view page

This commit is contained in:
Kyle Spearrin
2018-01-25 14:25:44 -05:00
parent 15868ab541
commit 8f9cc29661
9 changed files with 303 additions and 16 deletions

View File

@@ -589,6 +589,9 @@ a {
padding: 10px 15px;
position: relative;
z-index: 1;
display: block;
color: $text-color;
overflow-wrap: break-word;
&:before {
content: "";
@@ -626,6 +629,12 @@ a {
overflow-x: auto;
}
.no-wrap {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.row-label {
font-size: $font-size-small;
color: $text-muted;
@@ -666,6 +675,23 @@ a {
}
}
}
.right-icon {
float: right;
margin-top: 4px;
color: $list-icon-color;
}
.row-sub-label {
float: right;
display: block;
margin-right: 15px;
color: $gray-light;
}
small.row-sub-label {
margin-top: 2px;
}
}
}