Improve macro sorting visuals (#105)

Closes #103
This commit is contained in:
Mikko Lakomaa
2016-09-20 12:40:00 +03:00
committed by József Farkas
parent 6fa6d35d86
commit 3e85cf45a6
2 changed files with 29 additions and 0 deletions

View File

@@ -11,6 +11,14 @@
}
}
&.gu-transit {
opacity: 0.2;
.list-group-item {
background: #f5f5f5;
}
}
.action {
&--item {
display: flex;

View File

@@ -114,3 +114,24 @@ h1 {
color: #337ab7;
}
}
// Dragula styles
.gu {
&-mirror {
position: fixed;
margin: 0;
z-index: 9999;
opacity: 0.8;
}
&-hide {
display: none;
}
&-unselectable {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
}