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: 23b210e3a8e9888da15da74dba8cef71a5e030ec (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
@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;
    }

    .task-list-item-actions-wrapper {
      position: absolute;
      inset-block-start: 0;
      inset-inline-end: -2rem;
    }

    .task-list-item-actions-wrapper.show .task-list-item-actions,
    .task-list-item-actions:is(:focus, :hover) {
      opacity: 1;
    }
  }

  .md.has-task-list-item-actions > :is(ul, ol) > li {
    margin-inline-end: 1.5rem;
  }

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

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

  .dropdown-item.text-danger p {
    color: var(--red-500, $red-500); /* Override typography.scss making text black */
  }
}

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