-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Colors defined twice with no default options #4967
Copy link
Copy link
Open
Description
The actions colors defined here:
swagger-ui/src/style/_variables.scss
Lines 25 to 32 in 9a9b636
| $_color-post: #49cc90 !default; | |
| $_color-get: #61affe !default; | |
| $_color-put: #fca130 !default; | |
| $_color-delete: #f93e3e !default; | |
| $_color-head: #9012fe !default; | |
| $_color-patch: #50e3c2 !default; | |
| $_color-disabled: #ebebeb !default; | |
| $_color-options: #0d5aa7 !default; |
Are also defined here: https://github.com/swagger-api/swagger-ui/blob/master/src/style/_colors.scss
And without the !default key.
It make colors overriding impossible with main.scss integration. The only workaround is to import files one by one without the _colors.scss one.
Reactions are currently unavailable