File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change @@ -222,6 +222,11 @@ export interface DockerConfigOverrideType {
222
222
ciBuildConfig : CIBuildConfigType
223
223
}
224
224
225
+ export enum WORKFLOW_CACHE_CONFIG_ENUM {
226
+ INHERIT = 'INHERIT' ,
227
+ OVERRIDE = 'OVERRIDE' ,
228
+ }
229
+
225
230
export interface FormType {
226
231
name : string
227
232
args : { key : string ; value : string } [ ]
@@ -254,6 +259,11 @@ export interface FormType {
254
259
isDockerConfigOverridden ?: boolean
255
260
dockerConfigOverride ?: DockerConfigOverrideType
256
261
isOffendingMandatoryPlugin ?: boolean
262
+ workflowCacheConfig ?: {
263
+ type : WORKFLOW_CACHE_CONFIG_ENUM
264
+ value : boolean
265
+ globalValue : boolean
266
+ }
257
267
}
258
268
259
269
export interface ErrorObj {
Original file line number Diff line number Diff line change @@ -120,3 +120,31 @@ input:focus + .toggle__slider {
120
120
}
121
121
}
122
122
}
123
+
124
+ .dc__toggle-square-toggle--h20 {
125
+ .toggle__slider {
126
+ border-color : var (--color );
127
+ background-color : var (--color ) !important ;
128
+
129
+ & :before {
130
+ background-color : transparent ;
131
+ }
132
+
133
+ & .with-icon svg {
134
+ height : 18px ;
135
+ width : 18px ;
136
+ margin-top : 1px ;
137
+ background-color : var (--N0 );
138
+ left : 0 ;
139
+ padding : 2px ;
140
+ border-radius : 3px ;
141
+ }
142
+ }
143
+
144
+ input :checked + .toggle__slider {
145
+ & .with-icon svg {
146
+ left : -10px ;
147
+ background-color : var (--N0 );
148
+ }
149
+ }
150
+ }
You can’t perform that action at this time.
0 commit comments