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

dashboard.scss « sections « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6487e0acd910dfd71ffb6d1e155eaa0a9b71ad4f (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
.dashboard {
  .side {
    .panel {
      .panel-heading {
        background: #EEE;
        border-top-left-radius: 0;
      }
      border-top-left-radius: 0;
    }
  }
}

.dashboard-search-filter {
  padding:5px;

  .search-text-input {
    float:left;
    @extend .col-md-2;
  }
  .btn {
    margin-left: 5px;
    float:left;
  }
}

.dashboard {
  .dash-filter {
    width: 205px;
    float: left;
    height: inherit;
  }
}

@media (max-width: 1200px) {
  .dashboard .dash-filter {
    width: 140px;
  }
}

.dash-sidebar-tabs {
  margin-bottom: 2px;
  border: none;
  margin: 0 !important;

  li {
    &.active {
      a {
        background-color: #EEE;
        border-bottom: 1px solid #EEE !important;
        &:hover {
          background: #eee;
        }
      }
    }

    a {
      border-color: #DDD !important;
    }
  }
}

.project-row, .group-row {
  padding: 8px 15px !important;
  font-size: 14px;
  line-height: 24px;

  a {
    display: block;
  }

  .project-name, .group-name {
    font-weight: 500;
  }

  .arrow {
    float: right;
    margin: 0;
    font-size: 20px;
  }

  .last-activity {
    float: right;
    font-size: 12px;
    color: #AAA;
    display: block;
    .date {
      color: #777;
    }
  }
}

.project-access-icon {
  margin-left: 10px;
  float: left;
  margin-right: 15px;
  font-size: 20px;
  margin-bottom: 15px;
  border: 1px solid #EEE;
  padding: 8px 12px;
  border-radius: 50px;
  background: #f5f5f5;
  text-align: center;

  i {
    color: #BBB;
  }
}

.dash-project-access-icon {
  float: left;
  margin-right: 3px;
  width: 16px;
}