IE/Edge ui fixes

This commit is contained in:
Roman Hotsiy 2016-02-07 16:52:59 +02:00
parent 4acae04d96
commit 7e4d56c405
3 changed files with 21 additions and 16 deletions

View File

@ -64,6 +64,7 @@ span.zippy-indicator {
} }
.zippy-hidden { .zippy-hidden {
overflow: hidden;
visibility: hidden; visibility: hidden;
height: 0; height: 0;
padding: 0; padding: 0;

View File

@ -28,23 +28,27 @@
display: table-row; display: table-row;
} }
.param:first-of-type .param-name:before { .param:last-of-type > .param-name {
border-left: 0;
&:after {
content: ""; content: "";
display: block; display: block;
position: absolute; position: absolute;
left: -$lines-width; left: 0;
border-left: $line-border;
height: ($param-name-height/2) + $cell-padding + $lines-width;
background-color: white;
top: 0; top: 0;
border-left: $line-border-erase; }
height: ($param-name-height/2) + $cell-padding;
} }
.param:last-of-type .param-name:after { .param:first-of-type .param-name:after {
content: ""; content: "";
display: block; display: block;
position: absolute; position: absolute;
left: -$lines-width; left: -$lines-width;
border-left: $line-border-erase; border-left: $line-border-erase;
top: ($param-name-height/2) + $cell-padding + $lines-width; height: ($param-name-height/2) + $cell-padding;
background-color: white; background-color: white;
bottom: 0; top: 0;
} }

View File

@ -93,14 +93,13 @@ export default class Redoc extends BaseComponent {
position: relative; position: relative;
display: block; display: block;
min-height:350px; min-height:350px;
animation: 2s move linear infinite;
} }
@keyframes move { @keyframes move {
0% {transform: translateY(0px)} 0% {transform: translateY(10px)}
25% {transform: translateY(-10px)} 25% {transform: translateY(0px)}
50% {transform: translateY(0px)} 50% {transform: translateY(10px)}
75% {transform: translateY(10px)} 75% {transform: translateY(20px)}
} }
redoc.loading:before { redoc.loading:before {
@ -120,6 +119,7 @@ export default class Redoc extends BaseComponent {
z-index: 9999; z-index: 9999;
opacity: 1; opacity: 1;
transition: all 0.6s ease-out; transition: all 0.6s ease-out;
animation: 2s move linear infinite;
} }
redoc.loading-remove:before { redoc.loading-remove:before {