mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-23 00:56:33 +03:00
IE/Edge ui fixes
This commit is contained in:
parent
4acae04d96
commit
7e4d56c405
|
@ -64,6 +64,7 @@ span.zippy-indicator {
|
|||
}
|
||||
|
||||
.zippy-hidden {
|
||||
overflow: hidden;
|
||||
visibility: hidden;
|
||||
height: 0;
|
||||
padding: 0;
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue
Block a user