Fix .sort-handle cursor

This commit is contained in:
Giuseppe Criscione 2019-10-14 11:23:43 +02:00
parent d0dbf35e9c
commit cb77214584
3 changed files with 6 additions and 4 deletions

View File

@ -2486,12 +2486,13 @@ span.CodeMirror-selectedtext {
.sort-handle {
margin-right: 0.25rem;
margin-bottom: 0;
width: 0.75rem; }
width: 0.75rem;
cursor: grab; }
.sort-handle::before {
color: #979797;
font-size: 0.75rem;
cursor: grab;
cursor: inherit;
font-family: Icons, sans-serif; }
.pages-list {

File diff suppressed because one or more lines are too long

View File

@ -214,11 +214,12 @@
margin-right: $sort-handle-margin-right;
margin-bottom: 0;
width: $sort-handle-width;
cursor: grab;
}
.sort-handle::before {
color: $color-gray-dark;
font-size: $font-size-xs;
cursor: grab;
cursor: inherit;
@include icon(bars);
}