Projet

Général

Profil

0001-css-correct-endpoint-colors-on-manager-51737.patch

Nicolas Roche, 12 mars 2021 16:10

Télécharger (1,26 ko)

Voir les différences:

Subject: [PATCH] css: correct endpoint colors on manager (#51737)

 passerelle/static/css/style.css | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
passerelle/static/css/style.css
280 280

  
281 281
.endpoints .post-method {
282 282
	background: hsl(143, 82%, 95%);
283 283
	border: 1px solid hsl(143, 82%, 87%);
284 284
}
285 285

  
286 286
.endpoints .put-method::after {
287 287
	content: "PUT";
288
	background: hsl(35, 64%, 47%)
288
	background: hsl(35, 64%, 47%);
289 289
}
290 290

  
291 291
.endpoints .put-method {
292
	background: hsl(35, 64%, 95%)
293
	border: hsl(35, 64%, 87%)
292
	background: hsl(35, 64%, 95%);
293
	border: hsl(35, 64%, 87%);
294 294
}
295 295

  
296 296
.endpoints .delete-method::after {
297 297
	content: "DELETE";
298 298
	background: hsl(358, 69%, 38%);
299 299
}
300 300

  
301 301
.endpoints .delete-method {
302
	background: hsl(358, 69%, 95%)
302
	background: hsl(358, 69%, 95%);
303 303
	border: 1px solid hsl(358, 69%, 87%);
304 304
}
305 305

  
306 306
.endpoints .patch-method::after {
307 307
	content: "PATCH";
308 308
	background: hsl(14, 100%, 63%);
309 309
}
310 310

  
311
-