shipit-engine 0.44.3 → 0.45.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,282 +0,0 @@
1
- .deploy-checklist {
2
- list-style-type: none;
3
- padding: 0;
4
- margin-top: 1.5rem;
5
- }
6
-
7
- .deploy-checklist__item {
8
- margin-bottom: 1rem;
9
- display: flex;
10
- }
11
-
12
- .variables-header {
13
- margin: 1rem 0;
14
- padding-top: 1rem;
15
- }
16
-
17
- .variables-fields {
18
- input, select {
19
- display: inline-block;
20
- width: inherit;
21
- margin-right: 1rem;
22
- }
23
- }
24
-
25
- .deploy-checklist__item__label {
26
-
27
- }
28
-
29
- .deploy-checklist__item__checkbox {
30
- margin-right: 1rem;
31
- flex-shrink: 0;
32
- }
33
-
34
- .action-button {
35
- margin: 0 0.5rem;
36
-
37
- display: none;
38
- &[data-status="running"],
39
- &[data-status="aborting"],
40
- &[data-status="pending"] {
41
- display: inline-block;
42
- }
43
-
44
- .caption--pending {
45
- display: none;
46
- }
47
-
48
- &.pending {
49
- .deploy-action {
50
- cursor: default;
51
- }
52
- .caption--ready {
53
- display: none;
54
- }
55
- .caption--pending {
56
- display: inline;
57
- }
58
- }
59
- }
60
-
61
- .task-output-container.task-output-container-main-page {
62
- height: calc(100vh - 9rem - 4rem - 1px); // .header and .deploy-banner. -1px is to floor the result
63
- }
64
-
65
- .output-line {
66
- height: 1.5rem;
67
- }
68
-
69
- .deploy-banner {
70
- min-height: 4rem;
71
- height: auto;
72
- background-color: #f0f4f7;
73
- display: flex;
74
- justify-content: center;
75
- align-items: center;
76
- position: relative;
77
- flex-wrap: wrap;
78
- overflow-x: hidden;
79
-
80
- .deploy-banner-section {
81
- display: inline-block;
82
- padding: .75rem 1.5rem;
83
- }
84
-
85
- .stack-link {
86
- display: none;
87
- }
88
-
89
- .action-buttons {
90
- flex: none;
91
- }
92
-
93
- .deploy-banner-status {
94
- height: 2px;
95
- position: absolute;
96
- bottom: 0;
97
- left: 0;
98
- }
99
-
100
- &[data-status="failure"],
101
- &[data-status="error"],
102
- &[data-status="timedout"] {
103
- .deploy-banner-status {
104
- background-color: $bright-red;
105
- width: 100%;
106
- }
107
- }
108
-
109
- &[data-status="aborted"],
110
- &[data-status="flapping"] {
111
- .deploy-banner-status {
112
- background-color: $orange;
113
- width: 100%;
114
- }
115
- }
116
-
117
- &[data-status="success"] .deploy-banner-status {
118
- background-color: $green;
119
- width: 100%;
120
- }
121
-
122
- &[data-status="pending"] .deploy-banner-status,
123
- &[data-status="running"] .deploy-banner-status {
124
- background-color: $blue;
125
- width: 0%;
126
- z-index: 9999;
127
- -webkit-animation: loading-slide 1.2s linear infinite;
128
- }
129
-
130
- &[data-status="aborting"] .deploy-banner-status {
131
- background-color: $orange;
132
- width: 0%;
133
- z-index: 9999;
134
- -webkit-animation: loading-slide 1.2s linear infinite;
135
- }
136
-
137
- .deploy-status {
138
- color: #8f9498;
139
- }
140
- .short-sha {
141
- background: #e6eaed;
142
- font-family: Menlo, monospace;
143
- color: #9cacbb;
144
- border-radius: 4px;
145
- font-size: .875rem;
146
- padding: .25em .45em;
147
- }
148
-
149
- .short-sha-no-bg {
150
- font-family: Menlo, monospace;
151
- border-radius: 4px;
152
- font-size: .875rem;
153
- }
154
- }
155
-
156
- .search-bar {
157
- background-color: #f0f4f7;
158
- border: 1px solid #f0f4f7;
159
- position: absolute;
160
- right: 0px;
161
- padding: .125rem;
162
- border-bottom-left-radius: .25rem;
163
-
164
- input[type="search"] {
165
- width: 300px;
166
- }
167
- }
168
-
169
- @include keyframes(loading-slide) {
170
- 0% { width: 0%; left: 0%; }
171
- 30% { left: 0%; }
172
- 100% { width: 50%; left: 100%; }
173
- }
174
-
175
- .code-preview {
176
- margin: 1.5rem 0;
177
- }
178
-
179
- .sidebar.enabled + .deploy-main {
180
- margin-left: 300px;
181
- }
182
-
183
- .sidebar {
184
- background-color: $slate;
185
- color: white;
186
- overflow: hidden;
187
- height: calc(100vh - 9rem - 1px); // .header. -1px is to floor the result
188
- position: absolute;
189
- width: 0px;
190
- &.enabled {
191
- width: 300px;
192
- }
193
- }
194
-
195
- .sidebar-plugins {
196
- height: 100%;
197
- width: 100%;
198
- overflow-y: auto;
199
- overflow-x: hidden;
200
- }
201
-
202
- .commit-checks {
203
- border: .25rem solid $terminal-black;
204
- &[data-status="success"] {
205
- border-color: $green;
206
- }
207
-
208
- &[data-status="failed"],
209
- &[data-status="failure"],
210
- &[data-status="error"],
211
- &[data-status="timedout"] {
212
- border-color: $bright-red;
213
- }
214
-
215
- &[data-status="pending"],
216
- &[data-status="running"] {
217
- border-color: $dark-yellow;
218
- }
219
- }
220
-
221
- .monitoring-panel {
222
- display: inline-block;
223
- iframe {
224
- border: none;
225
- }
226
- }
227
-
228
- .ignored-safeties {
229
- color: $orange;
230
- }
231
-
232
- .deploy-actions {
233
- flex-shrink: 0;
234
-
235
- @include media(desktop) {
236
- margin-left: 1rem;
237
- min-width: 12rem;
238
-
239
- .btn {
240
- float: right;
241
- }
242
- }
243
- }
244
-
245
- .release-validation {
246
- display: inline-block;
247
- .icon {
248
- background-color: #ddd;
249
- }
250
-
251
- &:hover .icon {
252
- background-color: darken(#ddd, 20%);
253
- }
254
- }
255
-
256
- .deploy[data-release-status="success"] .release-validation .action-validate-release,
257
- .deploy[data-release-status="failure"] .release-validation .action-reject-release {
258
- &:before, &:after {
259
- display: none; // Hide tooltips
260
- }
261
- .icon {
262
- background-color: #ddd;
263
- }
264
- }
265
-
266
- .deploy .commit-lock {
267
- .icon {
268
- background-color: $bright-red;
269
- }
270
-
271
- &:hover .icon {
272
- background-color: darken($bright-red, 20%);
273
- }
274
-
275
- .action-lock-commit {
276
- display: none;
277
- }
278
-
279
- .action-unlock-commit {
280
- display: inline-block;
281
- }
282
- }
@@ -1,148 +0,0 @@
1
- .repository-search {
2
- -webkit-appearance: none;
3
- width: 100%;
4
- @extend h1;
5
- border: none;
6
- font-family: "Helvetica Neue", sans-serif;
7
- font-weight: 200;
8
- background: asset-data-url('search.svg') no-repeat center right;
9
- &::-webkit-input-placeholder {
10
- color: #B5C0CA;
11
- }
12
- &:focus {
13
- outline: none;
14
- background-image: asset-data-url('search-active.svg');
15
- }
16
- }
17
-
18
- .repository-table-header {
19
- @include clearfix;
20
- margin: 0; padding: 1.25rem 0 1rem;
21
- .col {
22
- width: 25%;
23
- float: left;
24
- }
25
- li {
26
- list-style-type: none;
27
- font-size: .875em;
28
- color: #BAC5D1;
29
- }
30
- }
31
-
32
- .repository-lst {
33
- list-style-type: none;
34
- margin: 0; padding: 0; margin-bottom: 1.5rem;
35
- .col {
36
- width: 25%;
37
- float: left;
38
- text-overflow: ellipsis;
39
- white-space: nowrap;
40
- overflow: hidden;
41
- padding-right: .5rem;
42
- box-sizing: border-box;
43
- }
44
- .undeployed {
45
- background-image: asset-data-url('ship.png');
46
- background-repeat: no-repeat;
47
- background-size: 22px 22px;
48
- background-position: 0px center;
49
- padding-left: 30px;
50
- margin-left: -30px;
51
- }
52
- .archived {
53
- // From FontAwesome, license @ https://fontawesome.com/license/free
54
- background-image: asset-data-url('archive-solid.svg');
55
- background-repeat: no-repeat;
56
- background-size: 22px 22px;
57
- background-position: 0px center;
58
- padding-left: 30px;
59
- margin-left: -30px;
60
- }
61
- .auto-provisioned {
62
- // From FontAwesome, license @ https://fontawesome.com/license/free
63
- background-image: asset-data-url('magic-solid.svg');
64
- background-repeat: no-repeat;
65
- background-size: 22px 22px;
66
- background-position: 0px center;
67
- padding-left: 30px;
68
- margin-left: -30px;
69
- }
70
- }
71
-
72
- .repository-lst:empty:before {
73
- content: "No environment to deploy to, Shipit Squirrel is displeased";
74
- }
75
-
76
- .repository-lst li {
77
- &:nth-child(even) a {
78
- background-color: lighten(#EDF1F3, 3.5%);
79
- }
80
-
81
- &.selected a {
82
- background-color: $blue;
83
- outline: none;
84
- span { color: #fff; }
85
- small { color: rgba(#fff, .8); }
86
- }
87
-
88
- a {
89
- padding: .35rem;
90
- margin-left: -0.35rem; margin-right: -0.35rem;
91
- @include clearfix;
92
- border-radius: 4px;
93
- display: block;
94
- &:hover, &:focus {
95
- background-color: $blue;
96
- outline: none;
97
- span { color: #fff; }
98
- small { color: rgba(#fff, .8); }
99
- }
100
- }
101
- }
102
-
103
- .repository-search input {
104
- margin-left: 4%;
105
- width: 92%;
106
- padding: 6px;
107
- font-size: larger;
108
- -moz-border-radius: 8px;
109
- -webkit-border-radius: 8px;
110
- border-radius: 8px;
111
- outline: 0;
112
- border: 1px #a0a0a0 solid;
113
- }
114
-
115
- .repository-search-header {
116
- display: none;
117
- }
118
-
119
- .show-all-repositories {
120
- display: none;
121
- }
122
-
123
- .filtering-enabled {
124
- .show-all-repositories {
125
- display: inline-block;
126
- }
127
-
128
- .repository-search-header {
129
- display: block;
130
- }
131
- .search-item.not-matching {
132
- display: none;
133
- }
134
- }
135
-
136
- .new_repository {
137
- input.repo {
138
- width: 200px;
139
- display: inline;
140
-
141
- &:focus {
142
- padding-right: 30px !important;
143
- }
144
- }
145
- input:focus {
146
- border-color: $blue;
147
- }
148
- }
@@ -1,24 +0,0 @@
1
- // =============================================================================
2
- // SETTINGS PAGE
3
- // =============================================================================
4
-
5
- .setting-section {
6
- padding: 2rem 0;
7
-
8
- & + & {
9
- border-top: 1px solid #e5e5e5;
10
- }
11
-
12
- .form-hint {
13
- font-size: smaller;
14
- font-style: italic;
15
- }
16
-
17
- .ccmenu-url {
18
- width: 85%;
19
- }
20
-
21
- .hidden {
22
- display: none;
23
- }
24
- }
@@ -1,255 +0,0 @@
1
- .stack-search {
2
- -webkit-appearance: none;
3
- width: 100%;
4
- @extend h1;
5
- border: none;
6
- font-family: "Helvetica Neue", sans-serif;
7
- font-weight: 200;
8
- background: asset-data-url('search.svg') no-repeat center right;
9
- &::-webkit-input-placeholder {
10
- color: #B5C0CA;
11
- }
12
- &:focus {
13
- outline: none;
14
- background-image: asset-data-url('search-active.svg');
15
- }
16
- }
17
-
18
- .stack-table-header {
19
- @include clearfix;
20
- margin: 0; padding: 1.25rem 0 1rem;
21
- .col {
22
- width: 25%;
23
- float: left;
24
- }
25
- li {
26
- list-style-type: none;
27
- font-size: .875em;
28
- color: #BAC5D1;
29
- }
30
- }
31
-
32
- .stack-lst {
33
- list-style-type: none;
34
- margin: 0; padding: 0; margin-bottom: 1.5rem;
35
- .col {
36
- width: 25%;
37
- float: left;
38
- text-overflow: ellipsis;
39
- white-space: nowrap;
40
- overflow: hidden;
41
- padding-right: .5rem;
42
- box-sizing: border-box;
43
- }
44
- .undeployed {
45
- background-image: asset-data-url('ship.png');
46
- background-repeat: no-repeat;
47
- background-size: 22px 22px;
48
- background-position: 0px center;
49
- padding-left: 30px;
50
- margin-left: -30px;
51
- }
52
- .archived {
53
- // From FontAwesome, license @ https://fontawesome.com/license/free
54
- background-image: asset-data-url('archive-solid.svg');
55
- background-repeat: no-repeat;
56
- background-size: 22px 22px;
57
- background-position: 0px center;
58
- padding-left: 30px;
59
- margin-left: -30px;
60
- }
61
- .auto-provisioned {
62
- // From FontAwesome, license @ https://fontawesome.com/license/free
63
- background-image: asset-data-url('magic-solid.svg');
64
- background-repeat: no-repeat;
65
- background-size: 22px 22px;
66
- background-position: 0px center;
67
- padding-left: 30px;
68
- margin-left: -30px;
69
- }
70
- }
71
-
72
- .stack-lst:empty:before {
73
- content: "No environment to deploy to, Shipit Squirrel is displeased";
74
- }
75
-
76
- .stack-lst li {
77
- &:nth-child(even) a {
78
- background-color: lighten(#EDF1F3, 3.5%);
79
- }
80
-
81
- &.selected a {
82
- background-color: $blue;
83
- outline: none;
84
- span { color: #fff; }
85
- small { color: rgba(#fff, .8); }
86
- }
87
-
88
- a {
89
- padding: .35rem;
90
- margin-left: -0.35rem; margin-right: -0.35rem;
91
- @include clearfix;
92
- border-radius: 4px;
93
- display: block;
94
- &:hover, &:focus {
95
- background-color: $blue;
96
- outline: none;
97
- span { color: #fff; }
98
- small { color: rgba(#fff, .8); }
99
- }
100
- }
101
- }
102
-
103
- .commits-path {
104
- font-size: 18px;
105
- small {
106
- font-size: 18px;
107
- color: #8D9EB0;
108
- }
109
- }
110
-
111
- .stack-search input {
112
- margin-left: 4%;
113
- width: 92%;
114
- padding: 6px;
115
- font-size: larger;
116
- -moz-border-radius: 8px;
117
- -webkit-border-radius: 8px;
118
- border-radius: 8px;
119
- outline: 0;
120
- border: 1px #a0a0a0 solid;
121
- }
122
-
123
- .stack-search-header {
124
- display: none;
125
- }
126
-
127
- .show-all-stacks {
128
- display: none;
129
- }
130
-
131
- .filtering-enabled {
132
- .show-all-stacks {
133
- display: inline-block;
134
- }
135
-
136
- .stack-search-header {
137
- display: block;
138
- }
139
- .search-item.not-matching {
140
- display: none;
141
- }
142
- }
143
-
144
- .message {
145
- background-color: #E2F1FF;
146
- margin: 0px;
147
- padding-top: 20px;
148
- padding-bottom: 20px;
149
-
150
- h2 { font-weight: bold; padding-bottom: 10px; }
151
- p { margin: 0px; }
152
- }
153
-
154
- .configure-ci, .ignoring-ci {
155
- background-color: #E2F1FF;
156
- padding-top: 20px;
157
- padding-bottom: 20px;
158
-
159
- p { font-weight: bold; }
160
- }
161
-
162
- .new_stack {
163
- input.repo {
164
- width: 200px;
165
- display: inline;
166
-
167
- &:focus {
168
- padding-right: 30px !important;
169
- }
170
- }
171
- input:focus {
172
- border-color: $blue;
173
- }
174
- }
175
-
176
- .pagination {
177
- text-align: center;
178
- }
179
-
180
- .box {
181
- border-radius: 5px;
182
- width: 32%;
183
- float: left;
184
- padding: 5px;
185
- }
186
-
187
- .box__header {
188
- padding: 15px 25px;
189
- position: relative;
190
- }
191
-
192
- .box__header-title {
193
- color: #333;
194
- font-size: 18px;
195
- }
196
-
197
- .box__body {
198
- padding: 0 25px;
199
- }
200
-
201
- .row {
202
- @include clearfix;
203
- }
204
-
205
- .auto-provisioned {
206
- // From FontAwesome, license @ https://fontawesome.com/license/free
207
- background-image: asset-data-url('magic-solid.svg');
208
- background-repeat: no-repeat;
209
- background-size: 22px 22px;
210
- background-position: 0px center;
211
- padding-left: 30px;
212
- margin-left: 5px;
213
- }
214
-
215
- /* STATS */
216
-
217
- .stats {
218
- color: #333;
219
- position: relative;
220
- padding-bottom: 25px;
221
- }
222
-
223
- .stats__amount {
224
- font-size: 54px;
225
- line-height: 1.2;
226
- }
227
-
228
- .stats__caption {
229
- font-size: 18px;
230
-
231
- }
232
-
233
- .stats__change {
234
- position: absolute;
235
- top: 10px;
236
- right: 0;
237
- text-align: right;
238
- color: #B1B7C8;
239
- }
240
-
241
- .stats__value {
242
- font-size: 18px;
243
- }
244
-
245
- .stats__period {
246
- font-size: 14px;
247
- }
248
-
249
- .stats__value--positive {
250
- color: #AEDC6F;
251
- }
252
-
253
- .stats__value--negative {
254
- color: #FB5055;
255
- }