summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/page_bundles/issues_list.scss
blob: 8a958bdf0c5750cc1bbef47c88131ccf23f5c7fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
@import 'mixins_and_variables_and_functions';

.issues-list {
  &.manual-ordering {
    background-color: var(--gray-10, $gray-10);
    border-radius: $border-radius-default;
    padding: $gl-padding-8;

    .issue {
      background-color: var(--white, $white);
      margin-bottom: $gl-padding-8;
      border-radius: $border-radius-default;
      border: 1px solid var(--border-color, $border-color);
      box-shadow: 0 1px 2px $issue-boards-card-shadow;
    }
  }

  .issue {
    padding: 10px $gl-padding;
    position: relative;

    .title {
      margin-bottom: 2px;
    }

    .issue-labels,
    .author-link {
      display: inline-block;
    }

    .icon-merge-request-unmerged {
      height: 13px;
      margin-bottom: 3px;
    }
  }
}

.user-can-drag {
  cursor: grab;
}

.is-ghost {
  opacity: 0.3;
  pointer-events: none;
}