Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Bennett <lukeeeebennettplus@gmail.com>2018-04-24 15:26:50 +0300
committerLuke Bennett <lukeeeebennettplus@gmail.com>2018-04-24 15:26:50 +0300
commit6b07a352a9ad23416f962846fd77bcc52ae06186 (patch)
tree6a78e50de755bbad4e6846abdefc3a7aa4a1879b /app/assets/stylesheets/pages/labels.scss
parentdc67ab29784b0895a76d3de705826a8749e8bf9b (diff)
Fix cursor for pri/other
Diffstat (limited to 'app/assets/stylesheets/pages/labels.scss')
-rw-r--r--app/assets/stylesheets/pages/labels.scss18
1 files changed, 7 insertions, 11 deletions
diff --git a/app/assets/stylesheets/pages/labels.scss b/app/assets/stylesheets/pages/labels.scss
index c4fb0c2c8e9..3ea6be9f638 100644
--- a/app/assets/stylesheets/pages/labels.scss
+++ b/app/assets/stylesheets/pages/labels.scss
@@ -73,30 +73,26 @@
.manage-labels-list {
> li:not(.empty-message):not(.is-not-draggable) {
background-color: $white-light;
- cursor: move;
- cursor: -webkit-grab;
- cursor: -moz-grab;
margin-bottom: 5px;
display: flex;
justify-content: space-between;
padding: 11px 10px 11px $gl-padding;
border-radius: $border-radius-default;
- &:active {
- cursor: -webkit-grabbing;
- cursor: -moz-grabbing;
- }
-
&.sortable-ghost {
opacity: 0.3;
}
.prioritized-labels & {
box-shadow: 0 1px 2px $issue-boards-card-shadow;
- }
+ cursor: move;
+ cursor: -webkit-grab;
+ cursor: -moz-grab;
- &.no-hand {
- cursor: auto;
+ &:active {
+ cursor: -webkit-grabbing;
+ cursor: -moz-grabbing;
+ }
}
}