1
0

UI update

This commit is contained in:
Aiden
2026-06-10 10:53:06 +10:00
parent 36986ae639
commit 7265842deb
21 changed files with 265 additions and 200 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 796 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 666 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1014 B

View File

@@ -39,9 +39,10 @@
pointer-events: none;
}
.vrwp-play-button img {
.vrwp-play-button .vrwp-icon {
width: 100%;
height: 100%;
filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}
@media (max-width: 600px) {
@@ -135,52 +136,39 @@
cursor: pointer;
border: none;
background-color: transparent;
color: #fff;
display: grid;
place-items: center;
padding: 0;
position: relative;
transition: color 0.15s ease-in-out;
}
.vrwp-panel button:hover {
color: #d8d8d8;
}
.vrwp-icon {
width: 28px;
height: 28px;
stroke: currentColor;
}
.vrwp-fullscreen,
.vrwp-mute,
.vrwp-back,
.vrwp-play-toggle,
.vrwp-forward {
width: 44px;
height: 44px;
}
.vrwp-fullscreen {
grid-area: full;
width: 44px;
height: 44px;
background-image: url(images/fullscreen.png);
background-size: 44px 44px;
background-repeat: no-repeat;
background-position: center;
transition: background-image 0.15s ease-in-out;
}
.vrwp-fullscreen:hover {
background-image: url(images/fullscreen-hover.png);
}
.vrwp-mute {
grid-area: mute;
width: 44px;
height: 44px;
background-image: url(images/mute.png);
background-size: 44px 44px;
background-repeat: no-repeat;
background-position: center;
transition: background-image 0.15s ease-in-out;
}
.vrwp-mute:hover {
background-image: url(images/mute-hover.png);
}
.vrwp-mute.muted {
background-image: url(images/mute.png);
}
.vrwp-mute.muted:hover {
background-image: url(images/mute-hover.png);
}
.vrwp-mute.unmuted {
background-image: url(images/unmute.png);
}
.vrwp-mute.unmuted:hover {
background-image: url(images/unmute-hover.png);
}
.vrwp-nav {
@@ -191,60 +179,13 @@
height: 44px;
}
.vrwp-back {
width: 44px;
height: 44px;
background-image: url(images/back.png);
background-size: 44px 44px;
background-repeat: no-repeat;
background-position: center;
transition: background-image 0.15s ease-in-out;
}
.vrwp-back:hover {
background-image: url(images/back-hover.png);
}
.vrwp-play-toggle {
width: 44px;
height: 44px;
background-image: url(images/play2.png);
background-size: 44px 44px;
background-repeat: no-repeat;
background-position: center;
transition: background-image 0.15s ease-in-out;
}
.vrwp-play-toggle:hover {
background-image: url(images/play2-hover.png);
}
.vrwp-play-toggle.paused {
background-image: url(images/play2.png);
}
.vrwp-play-toggle.paused:hover {
background-image: url(images/play2-hover.png);
}
.vrwp-play-toggle.playing {
background-image: url(images/pause.png);
}
.vrwp-play-toggle.playing:hover {
background-image: url(images/pause-hover.png);
}
.vrwp-forward {
width: 44px;
height: 44px;
background-image: url(images/forward.png);
background-size: 44px 44px;
background-repeat: no-repeat;
background-position: center;
transition: background-image 0.15s ease-in-out;
}
.vrwp-forward:hover {
background-image: url(images/forward-hover.png);
.vrwp-skip-label {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -48%);
font-size: 0.625rem;
font-weight: 700;
line-height: 1;
pointer-events: none;
}