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

sortable.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25868061d04d43762e8a461252058061c4966b11 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
.sortable-container {
  background-color: $gray-light;

  .flex-list {
    padding: 5px;
    margin-bottom: 0;
  }
}

.sortable-row {
  .flex-row {
    display: flex;

    &.issuable-info-container {
      padding-right: 0;
    }
  }

  .sortable-link {
    color: $black;
  }
}

.gl-sortable {
  .header {
    user-select: none;

    &:hover {
      cursor: pointer;
      background-color: $gray-100;
    }

    &:focus {
      outline: 1px solid $blue-300;
    }
  }
}

.related-issues-list-item {
  .card-body,
  .issuable-info-container {
    padding: $gl-padding-4 $gl-padding-4 $gl-padding-4 $gl-padding;

    .block-truncated {
      padding: $gl-padding-8 0;
      line-height: $gl-btn-line-height;
    }

    @include media-breakpoint-down(md) {
      padding-left: $gl-padding;

      .block-truncated {
        flex-direction: column-reverse;
        padding: $gl-padding-4 0;

        .text-secondary {
          margin-top: $gl-padding-4;
        }

        .issue-token-title-text {
          display: block;
        }
      }

      .issue-item-remove-button {
        align-self: baseline;
      }
    }

    @include media-breakpoint-only(md) {
      .block-truncated .issue-token-title-text {
        white-space: nowrap;
      }

      .issue-item-remove-button {
        align-self: center;
      }
    }

    @include media-breakpoint-down(sm) {
      padding-left: $gl-padding-8;

      .block-truncated .issue-token-title-text {
        white-space: normal;
      }
    }
  }

  &.is-dragging {
    padding: 0;
  }
}

.is-dragging {
  // Important because plugin sets inline CSS
  opacity: 1 !important;

  * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    // !important to make sure no style can override this when dragging
    cursor: grabbing !important;
  }

  &.no-drop * {
    cursor: no-drop !important;
  }
}