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

issues_show.scss « page_bundles « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26d694f7421dec7edf03f6e92d5c26743e0e4489 (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
@import 'mixins_and_variables_and_functions';

.description {
  li {
    position: relative;
    margin-inline-start: 2.25rem;

    .drag-icon {
      position: absolute;
      inset-block-start: 0.3rem;
      inset-inline-start: -2.3rem;
      padding-inline-end: 1rem;
      width: 2rem;
    }
  }

  ul.task-list > li.task-list-item {
    margin-inline-start: 0.5rem !important; /* Override typography.scss */

    > .drag-icon {
      inset-inline-start: -0.6rem;
    }
  }
}

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