You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
169 lines
2.7 KiB
169 lines
2.7 KiB
.mui-preview-image.mui-fullscreen { |
|
position: fixed; |
|
z-index: 20; |
|
background-color: #000; |
|
} |
|
|
|
.mui-preview-header, |
|
.mui-preview-footer { |
|
position: absolute; |
|
width: 100%; |
|
left: 0; |
|
z-index: 10; |
|
} |
|
|
|
.mui-preview-header { |
|
height: 0.44rem; |
|
top: 0.2rem; |
|
} |
|
|
|
.mui-preview-footer { |
|
height: 0.5rem; |
|
bottom: 0rem; |
|
} |
|
|
|
.mui-preview-header .mui-preview-indicator { |
|
display: block; |
|
line-height: 0.25rem; |
|
color: #fff; |
|
text-align: center; |
|
margin: 0.15rem auto 4; |
|
width: 0.70rem; |
|
background-color: rgba(0, 0, 0, 0.4); |
|
border-radius: 0.12rem; |
|
font-size: 0.25rem; |
|
} |
|
|
|
.mui-preview-image { |
|
display: none; |
|
-webkit-animation-duration: 0.5s; |
|
animation-duration: 0.5s; |
|
-webkit-animation-fill-mode: both; |
|
animation-fill-mode: both; |
|
} |
|
|
|
.mui-preview-image.mui-preview-in { |
|
-webkit-animation-name: fadeIn; |
|
animation-name: fadeIn; |
|
} |
|
|
|
.mui-preview-image.mui-preview-out { |
|
background: none; |
|
-webkit-animation-name: fadeOut; |
|
animation-name: fadeOut; |
|
} |
|
|
|
.mui-preview-image.mui-preview-out .mui-preview-header, |
|
.mui-preview-image.mui-preview-out .mui-preview-footer { |
|
display: none; |
|
} |
|
|
|
.mui-zoom-scroller { |
|
position: absolute; |
|
display: -webkit-box; |
|
display: -webkit-flex; |
|
display: flex; |
|
-webkit-box-align: center; |
|
-webkit-align-items: center; |
|
align-items: center; |
|
-webkit-box-pack: center; |
|
-webkit-justify-content: center; |
|
justify-content: center; |
|
left: 0; |
|
right: 0; |
|
bottom: 0; |
|
top: 0; |
|
width: 100%; |
|
height: 100%; |
|
margin: 0; |
|
-webkit-backface-visibility: hidden; |
|
} |
|
|
|
.mui-zoom { |
|
-webkit-transform-style: preserve-3d; |
|
transform-style: preserve-3d; |
|
} |
|
|
|
.mui-slider .mui-slider-group .mui-slider-item img { |
|
width: auto; |
|
height: auto; |
|
max-width: 100%; |
|
max-height: 100%; |
|
} |
|
|
|
.mui-android-4-1 .mui-slider .mui-slider-group .mui-slider-item img { |
|
width: 100%; |
|
} |
|
|
|
.mui-android-4-1 .mui-slider.mui-preview-image .mui-slider-group .mui-slider-item { |
|
display: inline-table; |
|
} |
|
|
|
.mui-android-4-1 .mui-slider.mui-preview-image .mui-zoom-scroller img { |
|
display: table-cell; |
|
vertical-align: middle; |
|
} |
|
|
|
.mui-preview-loading { |
|
position: absolute; |
|
width: 100%; |
|
height: 100%; |
|
top: 0; |
|
left: 0; |
|
display: none; |
|
} |
|
|
|
.mui-preview-loading.mui-active { |
|
display: block; |
|
} |
|
|
|
.mui-preview-loading .mui-spinner-white { |
|
position: absolute; |
|
top: 50%; |
|
left: 50%; |
|
margin-left: -0.25rem; |
|
margin-top: -0.25rem; |
|
height: 1rem; |
|
width: 1rem; |
|
} |
|
|
|
.mui-preview-image img.mui-transitioning { |
|
-webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease; |
|
transition: transform 0.5s ease, opacity 0.5s ease; |
|
} |
|
|
|
@-webkit-keyframes fadeIn { |
|
0% { |
|
opacity: 0; |
|
} |
|
100% { |
|
opacity: 1; |
|
} |
|
} |
|
|
|
@keyframes fadeIn { |
|
0% { |
|
opacity: 0; |
|
} |
|
100% { |
|
opacity: 1; |
|
} |
|
} |
|
|
|
@-webkit-keyframes fadeOut { |
|
0% { |
|
opacity: 1; |
|
} |
|
100% { |
|
opacity: 0; |
|
} |
|
} |
|
|
|
@keyframes fadeOut { |
|
0% { |
|
opacity: 1; |
|
} |
|
100% { |
|
opacity: 0; |
|
} |
|
} |