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

boards.scss « pages « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40aa694967221c48bab56878f99457fd42d72b8d (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
.issue-boards-page {
  .page-with-sidebar {
    display: flex;
    min-height: 100vh;
    max-height: 100vh;
  }

  .issue-boards-content {
    display: flex;
    height: 100%;

    .content {
      display: flex;
      flex-direction: column;
      width: 100%;
    }
  }
}

.boards-list {
  display: flex;
  height: 100%;
  padding-top: 25px;
  padding-right: ($gl-padding / 2);
  padding-left: ($gl-padding / 2);
  overflow-x: scroll;
}

.board {
  min-width: 400px;
  height: 100%;
  min-height: 500px;
  padding-right: ($gl-padding / 2);
  padding-left: ($gl-padding / 2);
}

.board-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  font-size: $issue-boards-font-size;
  background: $background-color;
  border: 1px solid $border-color;
  border-radius: $border-radius-default;
}

.board-inner-container {
  border-bottom: 1px solid $border-color;
  padding: $gl-padding;
}

.board-title {
  margin: 0;
  font-size: 1em;
}

.board-search-container {
  background-color: #fff;
}

.board-list {
  flex: 1;
  margin: 0;
  padding: 5px;
  list-style: none;
  overflow: scroll;
}

.card {
  width: 100%;
  padding: 10px $gl-padding;
  background: #fff;
  border-radius: $border-radius-default;
  box-shadow: 0 1px 2px rgba(186, 186, 186, 0.5);

  &:not(:last-child) {
    margin-bottom: 5px;
  }
}

.card-title {
  margin: 0;
  font-size: 1em;
}

.card-footer {
  margin-top: 5px;

  .label {
    margin-right: 4px;
    font-size: (14px / $issue-boards-font-size);
  }
}

.card-number {
  margin-right: 8px;
  font-weight: 500;
}