1
0
mirror of http://git.whoc.org.uk/git/password-manager.git synced 2025-10-29 10:27:35 +01:00

Implemented card archiving, both the DataModel login and UI (still very rough, though)

This commit is contained in:
Giulio Cesare Solaroli
2014-07-30 09:28:05 +02:00
parent c0f96f5de9
commit 86634cc4af
9 changed files with 213 additions and 32 deletions

View File

@@ -14,10 +14,6 @@ div.cardList {
}
ul {
li.selected {
background-color: yellow;
}
li {
cursor: pointer;
@@ -26,6 +22,14 @@ div.cardList {
@include flexbox();
@include flex-direction(row);
&.selected {
background-color: yellow;
}
&.archived {
background-color: pink;
}
.favicon {
width: $cardListHeight;
@include flex(none);

View File

@@ -3,7 +3,7 @@
color: $main-alternate-text-color;
font-size: 18pt;
overflow: scroll;
height: 100%;
// height: 100%;
$iconColumnWidth: 40px;
@@ -66,4 +66,7 @@
font-size: 14pt;
}
}
.showArchivedCards {
}
}