summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/page_bundles/environments.scss
blob: 871f118ea9d86517430a4cf35445731857fb089c (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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
@import 'page_bundles/mixins_and_variables_and_functions';

.environments-container {
  .ci-table {
    .commit-title {
      margin: 0;
    }

    .external-url,
    .dropdown-new {
      color: var(--gray-500, $gray-500);
    }

    .build-link,
    .ref-name {
      color: var(--gray-900, $gray-900);
    }

    .folder-icon {
      margin-right: 3px;
      color: var(--gray-500, $gray-500);
      display: inline-block;
      vertical-align: text-top;
    }

    .folder-name {
      cursor: pointer;
      color: var(--gray-500, $gray-500);
      display: inline-block;
    }

    .icon-container {
      width: 20px;
      text-align: center;
    }

    .no-btn {
      border: 0;
      background: none;
      outline: none;
      width: 100%;
      text-align: left;
    }

    .environment-child-row {
      padding-left: 20px;
    }
  }
}

.gl-responsive-table-row {
  .branch-commit {
    max-width: 100%;
  }
}

.folder-row {
  border-left: 0;
  border-right: 0;

  @media (min-width: map-get($grid-breakpoints, md)-1) {
    border-top: 0;
  }
}

.x-axis path,
.y-axis path,
.label-x-axis-line,
.label-y-axis-line {
  fill: none;
  stroke-width: 1;
  shape-rendering: crispEdges;
}

.x-axis path,
.y-axis path {
  stroke: var(--gray-300, $gray-300);
}

.label-x-axis-line,
.label-y-axis-line {
  stroke: var(--gray-100, $gray-100);
}

.y-axis {
  line {
    stroke: var(--gray-300, $gray-300);
    stroke-width: 1;
  }
}

.metric-area {
  opacity: 0.25;
}

.rect-text-metric {
  fill: var(--white, $white);
  stroke-width: 1;
  stroke: var(--gray-600, $gray-600);
}

.rect-axis-text {
  fill: var(--white, $white);
}

.text-metric {
  font-size: 12px;
}

.selected-metric-line {
  stroke: var(--gray-900, $gray-900);
  stroke-width: 1;
}

.deployment-line {
  stroke: var(--white, $white);
  stroke-width: 1;
}

.divider-line {
  stroke-width: 1;
  stroke: var(--gray-600, $gray-600);
}

.environments-actions {
  .external-url,
  .monitoring-url,
  .terminal-button {
    width: 38px;
  }
}