mirror of
http://git.whoc.org.uk/git/password-manager.git
synced 2025-10-29 10:27:35 +01:00
Highlighted selected items in the selection panel.
Also added some improvements suggested here: http://www.luster.io/blog/9-29-14-mobile-web-checklist.html
This commit is contained in:
@@ -220,6 +220,8 @@ $cardViewBasePadding: 10px;
|
||||
|
||||
.content {
|
||||
.cardLabel {
|
||||
@include user-select(text);
|
||||
|
||||
font-size: 24pt;
|
||||
padding: $cardViewBasePadding;
|
||||
}
|
||||
@@ -258,6 +260,7 @@ $cardViewBasePadding: 10px;
|
||||
|
||||
.fieldValue {
|
||||
font-size: 18pt;
|
||||
@include user-select(text);
|
||||
|
||||
&.hidden {
|
||||
font-family: clipperz-password;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#loginPage {
|
||||
overflow: scroll;
|
||||
|
||||
@include overflow-scroll;
|
||||
|
||||
div.loginForm {
|
||||
@include flexbox;
|
||||
@include flex-direction(column);
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
background-color: $main-alternate-color;
|
||||
color: $main-alternate-text-color;
|
||||
font-size: 18pt;
|
||||
overflow: scroll;
|
||||
@include overflow-scroll;
|
||||
// height: 100%;
|
||||
|
||||
$iconColumnWidth: 40px;
|
||||
@@ -89,4 +89,40 @@
|
||||
@include border-radius(4px);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$selectionColor: yellow;
|
||||
|
||||
#selections.ALL {
|
||||
li.allCards {
|
||||
color: $selectionColor;
|
||||
}
|
||||
}
|
||||
|
||||
#selections.RECENT {
|
||||
li.recentCards {
|
||||
color: $selectionColor;
|
||||
}
|
||||
}
|
||||
|
||||
#selections.UNTAGGED {
|
||||
li.untaggedCards {
|
||||
color: $selectionColor;
|
||||
}
|
||||
}
|
||||
|
||||
#selections.SEARCH {
|
||||
div.search {
|
||||
color: $selectionColor;
|
||||
}
|
||||
}
|
||||
|
||||
#selections.TAG {
|
||||
ul.tagList {
|
||||
li.selected {
|
||||
color: $selectionColor;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user