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

sidebar.scss « generic « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f6311ef74e8d0277f16a26f1725e5c07ae4b0087 (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
.ui.sidebar {
  z-index: 1000 !important;
  background: #fff;
  padding: 10px;
  width: 285px;
}

.ui.right.sidebar {
  border-left: 1px solid #e1e1e1;
  border-right: 0;
}

.sidebar-expand-button {
  cursor: pointer;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}

.fixed.sidebar-expand-button {
  background: #f9f9f9;
  color: #555;
  padding: 9px 12px 6px 14px;
  border: 1px solid #E1E1E1;
  border-right: 0;
  position: fixed;
  top: 108px;
  right: 0px;
  margin-right: 0;
  &:hover {
    background: #ddd;
    color: #333;
    padding-right: 25px;
  }
}

.btn.btn-default.sidebar-expand-button {
  margin-left: 12px;
  display: inline-block !important;
}

@media (min-width: 767px) {
.btn.btn-default.sidebar-expand-button {
  display: none!important;
 }
}