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

Implemented field manual ordering through drag&drop

This commit is contained in:
Giulio Cesare Solaroli
2014-09-04 18:58:56 +02:00
parent 3796182d77
commit 54b264b6a1
8 changed files with 707 additions and 25 deletions

View File

@@ -249,10 +249,22 @@ $cardViewBasePadding: 10px;
padding: $cardViewBasePadding;
}
.dropArea {
border: 3px dashed red;
width: 100%;
height: 40px;
}
.cardField {
@include flexbox;
@include flex-direction(row);
background-color: lightgreen;
&.dragged {
// border: 4px dotted red;
display: none;
}
.fieldValues {
@include flex(1);
padding: $cardViewBasePadding;