From 831a7ae60449bc4ebefa31385adbc12e3113e2c1 Mon Sep 17 00:00:00 2001 From: Nara Kasbergen Date: Wed, 13 May 2015 17:29:40 -0400 Subject: [PATCH] Just realized this adds some extra horizontal padding which may not be desirable, so this fixes that --- dist/css/print.css | 3 +++ dist/css/screen.css | 3 +++ src/main/html/css/print.css | 3 +++ src/main/html/css/screen.css | 3 +++ src/main/less/specs.less | 4 ++++ 5 files changed, 16 insertions(+) diff --git a/dist/css/print.css b/dist/css/print.css index a48f0585..706b1ac4 100644 --- a/dist/css/print.css +++ b/dist/css/print.css @@ -1069,6 +1069,9 @@ .swagger-section .swagger-ui-wrap form.form_box p strong { color: black; } +.swagger-section .swagger-ui-wrap .operation-status td.markdown > p:last-child { + padding-bottom: 0; +} .swagger-section .title { font-style: bold; } diff --git a/dist/css/screen.css b/dist/css/screen.css index ca381b9e..9c312796 100644 --- a/dist/css/screen.css +++ b/dist/css/screen.css @@ -1069,6 +1069,9 @@ .swagger-section .swagger-ui-wrap form.form_box p strong { color: black; } +.swagger-section .swagger-ui-wrap .operation-status td.markdown > p:last-child { + padding-bottom: 0; +} .swagger-section .title { font-style: bold; } diff --git a/src/main/html/css/print.css b/src/main/html/css/print.css index a48f0585..706b1ac4 100644 --- a/src/main/html/css/print.css +++ b/src/main/html/css/print.css @@ -1069,6 +1069,9 @@ .swagger-section .swagger-ui-wrap form.form_box p strong { color: black; } +.swagger-section .swagger-ui-wrap .operation-status td.markdown > p:last-child { + padding-bottom: 0; +} .swagger-section .title { font-style: bold; } diff --git a/src/main/html/css/screen.css b/src/main/html/css/screen.css index ca381b9e..9c312796 100644 --- a/src/main/html/css/screen.css +++ b/src/main/html/css/screen.css @@ -1069,6 +1069,9 @@ .swagger-section .swagger-ui-wrap form.form_box p strong { color: black; } +.swagger-section .swagger-ui-wrap .operation-status td.markdown > p:last-child { + padding-bottom: 0; +} .swagger-section .title { font-style: bold; } diff --git a/src/main/less/specs.less b/src/main/less/specs.less index 070de3ab..850ca794 100644 --- a/src/main/less/specs.less +++ b/src/main/less/specs.less @@ -1085,6 +1085,10 @@ } } } + + .operation-status td.markdown > p:last-child { + padding-bottom: 0; + } } } \ No newline at end of file