diff --git a/lib/common/components/Zippy/zippy.scss b/lib/common/components/Zippy/zippy.scss index 97958a38..f31e943b 100644 --- a/lib/common/components/Zippy/zippy.scss +++ b/lib/common/components/Zippy/zippy.scss @@ -64,6 +64,7 @@ span.zippy-indicator { } .zippy-hidden { + overflow: hidden; visibility: hidden; height: 0; padding: 0; diff --git a/lib/components/ParamsList/params-list.scss b/lib/components/ParamsList/params-list.scss index 23c9b10a..2475d8f7 100644 --- a/lib/components/ParamsList/params-list.scss +++ b/lib/components/ParamsList/params-list.scss @@ -28,23 +28,27 @@ display: table-row; } -.param:first-of-type .param-name:before { - content: ""; - display: block; - position: absolute; - left: -$lines-width; - top: 0; - border-left: $line-border-erase; - height: ($param-name-height/2) + $cell-padding; +.param:last-of-type > .param-name { + border-left: 0; + &:after { + content: ""; + display: block; + position: absolute; + left: 0; + border-left: $line-border; + height: ($param-name-height/2) + $cell-padding + $lines-width; + background-color: white; + top: 0; + } } -.param:last-of-type .param-name:after { +.param:first-of-type .param-name:after { content: ""; display: block; position: absolute; left: -$lines-width; border-left: $line-border-erase; - top: ($param-name-height/2) + $cell-padding + $lines-width; + height: ($param-name-height/2) + $cell-padding; background-color: white; - bottom: 0; + top: 0; } diff --git a/lib/components/Redoc/redoc.js b/lib/components/Redoc/redoc.js index ddf5ce26..827a0b8e 100644 --- a/lib/components/Redoc/redoc.js +++ b/lib/components/Redoc/redoc.js @@ -93,14 +93,13 @@ export default class Redoc extends BaseComponent { position: relative; display: block; min-height:350px; - animation: 2s move linear infinite; } @keyframes move { - 0% {transform: translateY(0px)} - 25% {transform: translateY(-10px)} - 50% {transform: translateY(0px)} - 75% {transform: translateY(10px)} + 0% {transform: translateY(10px)} + 25% {transform: translateY(0px)} + 50% {transform: translateY(10px)} + 75% {transform: translateY(20px)} } redoc.loading:before { @@ -120,6 +119,7 @@ export default class Redoc extends BaseComponent { z-index: 9999; opacity: 1; transition: all 0.6s ease-out; + animation: 2s move linear infinite; } redoc.loading-remove:before {