Update files
This commit is contained in:
parent
19b40b9160
commit
e9afda5e16
|
|
@ -268,21 +268,33 @@
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
animation: fadeIn 0.2s ease-out;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.fullview-header {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 12px 16px;
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
backdrop-filter: blur(10px);
|
||||
z-index: 10001;
|
||||
will-change: transform;
|
||||
transform: translateZ(0);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.fullview-counter {
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
color: white;
|
||||
min-width: 60px;
|
||||
text-align: center;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.fullview-btn {
|
||||
|
|
@ -295,6 +307,11 @@
|
|||
align-items: center;
|
||||
justify-content: center;
|
||||
transition: background 0.2s;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
z-index: 10002;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.fullview-btn:active {
|
||||
|
|
@ -308,13 +325,17 @@
|
|||
justify-content: center;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin-top: 68px;
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
|
||||
.fullview-content img {
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
max-height: calc(100vh - 148px);
|
||||
object-fit: contain;
|
||||
user-select: none;
|
||||
display: block;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.fullview-nav-btn {
|
||||
|
|
@ -347,6 +368,10 @@
|
|||
}
|
||||
|
||||
.fullview-dots {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
|
@ -354,6 +379,8 @@
|
|||
padding: 16px;
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
backdrop-filter: blur(10px);
|
||||
z-index: 10001;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.fullview-dot {
|
||||
|
|
|
|||
Loading…
Reference in New Issue