diff --git a/dist/css/print.css b/dist/css/print.css index e24741aa..3b2c97ce 100644 --- a/dist/css/print.css +++ b/dist/css/print.css @@ -725,6 +725,9 @@ color: black; text-decoration: none; } +.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a.toggleOperation.deprecated { + text-decoration: line-through; +} .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a:hover { text-decoration: underline; } diff --git a/dist/css/screen.css b/dist/css/screen.css index 5573fcf1..a83aaa4c 100644 --- a/dist/css/screen.css +++ b/dist/css/screen.css @@ -725,6 +725,9 @@ color: black; text-decoration: none; } +.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a.toggleOperation.deprecated { + text-decoration: line-through; +} .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a:hover { text-decoration: underline; } diff --git a/src/main/html/css/print.css b/src/main/html/css/print.css index e24741aa..3b2c97ce 100644 --- a/src/main/html/css/print.css +++ b/src/main/html/css/print.css @@ -725,6 +725,9 @@ color: black; text-decoration: none; } +.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a.toggleOperation.deprecated { + text-decoration: line-through; +} .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a:hover { text-decoration: underline; } diff --git a/src/main/html/css/screen.css b/src/main/html/css/screen.css index 5573fcf1..a83aaa4c 100644 --- a/src/main/html/css/screen.css +++ b/src/main/html/css/screen.css @@ -725,6 +725,9 @@ color: black; text-decoration: none; } +.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a.toggleOperation.deprecated { + text-decoration: line-through; +} .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a:hover { text-decoration: underline; } diff --git a/src/main/less/specs.less b/src/main/less/specs.less index 9979feac..c90e0338 100644 --- a/src/main/less/specs.less +++ b/src/main/less/specs.less @@ -367,11 +367,11 @@ font-size: 0.9em; label { font-weight:normal!important; /* JSONEditor uses bold by default for all labels, we revert that back to normal to not give the impression that by default fields are required */ - } + } } - + .editor_holder label.required { - font-weight:bold!important; + font-weight:bold!important; } input.parameter { @@ -655,6 +655,9 @@ a { color: black; text-decoration: none; + &.toggleOperation.deprecated { + text-decoration: line-through; + } } a:hover { text-decoration: underline;