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

help.scss « stylesheets « assets « content - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db1fa84fa7256b3ea3ef873a21dd68bab5e5c632 (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
111
112
113
114
115
116
---
version: 6
---

@import 'variables';

.help-and-feedback-section {
  background-color: $help-indigo-50;
  border-radius: 0.267rem;
  padding: 1rem;
  margin-top: 2rem;
  color: $help-gray-900;
  font-size: $body-font-size;
  line-height: 1.333rem;

  .right-col {
    @media all and (min-width: $bp-sm) {
      border-left: 0.067 solid $help-gray-100;
    }
  }

  .help-subsection {
    @media all and (max-width: $bp-sm) {
      margin-top: 1rem;
    }
  }

  h4,
  h5 {
    border-bottom: 0;
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 0;
  }

  h4[id]::before {
    display: none;
  }

  a {
    text-decoration: underline;
    color: $help-blue-500;
  }

  p {
    margin-bottom: 0;
    color: $help-gray-900;
  }

  .help-icon,
  .toggle-icon {
    fill: $help-indigo-500;
    vertical-align: text-top;
  }

  .help-icon {
    margin-left: 0 !important;
  }

  .toggle-icon {
    float: right;
    transition: 0.35s ease-in-out;
  }

  .help-and-feedback-toggle {
    color: $gds-gray-950;

    &:hover {
      color: $gds-gray-950;
      text-decoration: none;
    }

    &.collapsed .toggle-icon {
      transform: rotate(180deg);
    }
  }

  .help-and-feedback-title {
    font-size: 1.067rem;
    font-weight: 700;
  }

  .help-and-feedback-heading {
    color: $gds-gray-950;
    font-size: $body-font-size;
    font-weight: 700;
    margin-bottom: 0.25rem;
  }

  .help-and-feedback-link {
    color: $help-blue-500;
    text-decoration: underline;
  }

  .support-btn {
    background-color: $gds-white;
    border-color: $help-gray-200;
    color: $help-gray-900;
    font-size: $body-font-size;

    &:hover {
      color: $help-gray-900;
    }
  }
}

.disqus-comments-gitlab {
  iframe {
    padding-left: 1.067rem;
    padding-right: 1.067rem;
    background-color: $color-white;
    border-radius: 0.333rem;
    box-shadow: 0.133rem 0.133rem 0.467rem $search-border;
    margin-top: 1.667rem;
  }
}