css: correct endpoint colors on manager (#51737)

This commit is contained in:
Nicolas Roche 2021-03-12 16:07:45 +01:00
parent e336f45111
commit ba4c394afc
1 changed files with 4 additions and 4 deletions

View File

@ -285,12 +285,12 @@ div.section > div > ul.endpoints {
.endpoints .put-method::after {
content: "PUT";
background: hsl(35, 64%, 47%)
background: hsl(35, 64%, 47%);
}
.endpoints .put-method {
background: hsl(35, 64%, 95%)
border: hsl(35, 64%, 87%)
background: hsl(35, 64%, 95%);
border: hsl(35, 64%, 87%);
}
.endpoints .delete-method::after {
@ -299,7 +299,7 @@ div.section > div > ul.endpoints {
}
.endpoints .delete-method {
background: hsl(358, 69%, 95%)
background: hsl(358, 69%, 95%);
border: 1px solid hsl(358, 69%, 87%);
}