Positions: More UI enhancements

This commit is contained in:
Djamil Legato
2016-07-20 20:24:51 -07:00
parent 10ad9a5e0e
commit fe4603f04b
3 changed files with 31 additions and 3 deletions
+15 -1
View File
@@ -28,6 +28,7 @@
ul {
position: relative;
min-height: 95%;
font-size: 1rem;
&:empty:after {
content: "Drop positions here...";
@@ -52,6 +53,13 @@
@include display(flex);
@include flex-direction(row);
@include justify-content(flex-start);
&:hover {
.item-settings {
opacity: 1;
@include transition(opacity 0.2s);
}
}
}
.position-dragging {
@@ -66,7 +74,7 @@
}
.item-reorder, .item-settings, .title-status {
color: #bbb;
color: #333;
text-align: left;
line-height: 1.2rem;
@@ -75,6 +83,10 @@
}
}
.title-status {
margin-right: $content-padding / 2;
}
.title-status, .title-status:hover {
color: inherit;
}
@@ -82,6 +94,8 @@
.item-settings {
cursor: pointer;
text-align: right;
opacity: 0;
@include transition(opacity 0.2s);
}
}
}