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

issuable.scss « pages « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: abc27a19e3243e188245e4f9ad0901b2f1b71303 (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
@media (max-width: $screen-sm-max) {
  .issuable-affix {
    margin-top: 20px;
  }
}

@media (max-width: $screen-md-max) {
  .issuable-affix {
    position: static;
  }
}

@media (min-width: $screen-md-max) {
  .issuable-affix {
    &.affix-top {
      position: static;
    }

    &.affix {
      position: fixed;
      top: 70px;
      margin-right: 35px;
    }
  }
}

.issuable-context-title {
  margin-bottom: 5px;

  .avatar {
    margin-left: 0;
  }

  label {
    color: $gl-gray;
    font-weight: normal;
    margin-right: 4px;
  }
}

.project-issuable-filter {
  .controls {
    float: right;
    margin-top: 7px;
  }

  .center-top-menu {
    text-align: left;
  }
}

.issuable-details {
  .page-title {
    margin-top: -15px;
    padding: 10px 0;
    margin-bottom: 0;
    color: #5c5d5e;
    font-size: 16px;

    .author {
      color: #5c5d5e;
    }

    .issue-id {
      color: #5c5d5e;
    }
  }

  .issue-title {
    margin: 0;
    font-size: 23px;
    color: #313236;
  }

  .description {
    margin-top: 6px;

    p:last-child {
      margin-bottom: 0;
    }
  }
}

.issuable-filter-count {
  span {
    display: block;
    margin-bottom: -16px;
    padding: 13px 0;
  }
}

.cross-project-reference {
  text-align: center;
  width: 100%;

  .slead {
    padding: 5px;
  }

  span, button {
    background-color: $background-color;
  }
}