Files
hiperiso/assets/webui/static/css/vtoy.css
T
vasilito 759ccf30dd fix: GUI build and web asset renaming
Qt5 .pro file:
- Replace hardcoded /home/panda/ paths with $$PWD-relative paths
- All SOURCES/HEADERS/FORMS/INCLUDEPATH use $$PWD for shadow build safety
- Fixes qmake path resolution from any working directory

QT source content:
- Rename Ventoy2DiskWindow → Hiperiso2DiskWindow (class, UI, translation context)
- Rename VTOY_* macros → HISO_* (JSON_FMT, DEVICE_USB, EFI_PART_BYTES)
- Rename vtoydata → hisodata (struct field)
- Zero Ventoy/ventoy/VTOY/vtoy references remain in QT source

Plugson www and assets/webui:
- Rename all ventoy/vtoy → hiperiso/hiso in HTML, JS, CSS
- Fix critical AJAX endpoint mismatch: /vtoy/json → /hiso/json
  (C backend already used /hiso/json, JS was stale)

Build artifacts cleanup:
- Remove stale QT/build/ and .pro.user from git
- Add to .gitignore

Verified: Full build_gui_all.sh succeeds — Qt5 (199K), GTK3 (383K),
WebUI (247K), Plugson (245K), hisocli (52K), hisolnk (18K)
2026-06-30 15:59:38 +03:00

358 lines
8.1 KiB
CSS

/*loading ¶¯»­*/
.loading {
width: 100%;
height: 100%;
position: fixed;
top:0;
left:0;
z-index: 999999;
background-color: rgba(0, 0, 0, 0);
}
.loading .title {
width: 300px;
text-align: center;
margin: 250px auto 0px;
color: #2F7095;
font-weight: 900;
font-size: 24px;
}
.loading .rectbox {
width: 150px;
height: 40px;
margin: 10px auto;
}
.loading .rectbox .title {
font-size: 14px;
font-family: 'Microsoft YaHei';
font-weight: 900;
text-align: center;
color: rgba(68, 149, 57, 1);
}
.loading .rectbox .rect {
width: 25px;
height: 25px;
background-color: rgba(68, 149, 57, 1);
margin: 0 2px auto 3px;
float: left;
-webkit-animation: loading 0.48s infinite ease-in-out;
-o-animation: loading 0.48s infinite ease-in-out;
animation: loading 0.48s infinite ease-in-out;
}
.loading .rectbox .rect1 {
-webkit-animation-delay: 0s;
-moz-animation-delay: 0s;
-o-animation-delay: 0s;
animation-delay: 0s;
}
.loading .rectbox .rect2 {
-webkit-animation-delay: 0.12s;
-moz-animation-delay: 0.12s;
-o-animation-delay: 0.12s;
animation-delay: 0.12s;
background-color: rgba(68, 149, 57, 0.2);
}
.loading .rectbox .rect3 {
-webkit-animation-delay: 0.24s;
-moz-animation-delay: 0.24s;
-o-animation-delay: 0.24s;
animation-delay: 0.24s;
background-color: rgba(68, 149, 57, 0.4);
}
.loading .rectbox .rect4 {
-webkit-animation-delay: 0.36s;
-moz-animation-delay: 0.36s;
-o-animation-delay: 0.36s;
animation-delay: 0.36s;
background-color: rgba(68, 149, 57, 0.6);
}
.loading .rectbox .rect5 {
-webkit-animation-delay: 0.48s;
-moz-animation-delay: 0.48s;
-o-animation-delay: 0.48s;
animation-delay: 0.48s;
background-color: rgba(68, 149, 57, 0.8);
}
@keyframes loading {
0% {
background-color: rgba(68, 149, 57, 1);
}
25% {
background-color: rgba(68, 149, 57, 0.8);
}
50% {
background-color: rgba(68, 149, 57, 0.6);
}
75% {
background-color: rgba(68, 149, 57, 0.4);
}
100% {
background-color: rgba(68, 149, 57, 0.2);
}
}
@-moz-keyframes loading {
0% {
background-color: rgba(68, 149, 57, 1);
}
25% {
background-color: rgba(68, 149, 57, 0.8);
}
50% {
background-color: rgba(68, 149, 57, 0.6);
}
75% {
background-color: rgba(68, 149, 57, 0.4);
}
100% {
background-color: rgba(68, 149, 57, 0.2);
}
}
@-ms-keyframes loading {
0% {
background-color: rgba(68, 149, 57, 1);
}
25% {
background-color: rgba(68, 149, 57, 0.8);
}
50% {
background-color: rgba(68, 149, 57, 0.6);
}
75% {
background-color: rgba(68, 149, 57, 0.4);
}
100% {
background-color: rgba(68, 149, 57, 0.2);
}
}
@-webkit-keyframes loading {
0% {
background-color: rgba(68, 149, 57, 1);
}
25% {
background-color: rgba(68, 149, 57, 0.8);
}
50% {
background-color: rgba(68, 149, 57, 0.6);
}
75% {
background-color: rgba(68, 149, 57, 0.4);
}
100% {
background-color: rgba(68, 149, 57, 0.2);
}
}
/*hiso server is running*/
#hiso-main .loading {
width: 100%;
position: relative;
top:0;
left:0;
background-color: rgba(0, 0, 0, 0);
}
#hiso-main .loading .title {
width: 300px;
text-align: center;
margin: 250px auto 0px;
color: #449539;
font-weight: 900;
font-size: 24px;
}
#hiso-main .loading .rectbox {
width: 120px;
height: 40px;
margin: 10px auto;
}
#hiso-main .loading .rectbox .title {
font-size: 14px;
font-family: 'Microsoft YaHei';
font-weight: 900;
text-align: center;
color: rgba(68, 149, 57, 1);
}
#hiso-main .loading .rectbox .rect {
width: 25px;
height: 25px;
background-color: rgba(68, 149, 57, 1);
margin: 0 2px auto 3px;
float: left;
-webkit-animation: loading 1.44s infinite ease-in-out;
-o-animation: loading 0.48s infinite ease-in-out;
animation: loading 0.48s infinite ease-in-out;
}
#hiso-main .loading .rectbox .rect1 {
-webkit-animation-delay: 0s;
-moz-animation-delay: 0s;
-o-animation-delay: 0s;
animation-delay: 0s;
}
#hiso-main .loading .rectbox .rect2 {
-webkit-animation-delay: 0.36s;
-moz-animation-delay: 0.12s;
-o-animation-delay: 0.12s;
animation-delay: 0.12s;
background-color: rgba(68, 149, 57, 0.2);
}
#hiso-main .loading .rectbox .rect3 {
-webkit-animation-delay: 0.72s;
-moz-animation-delay: 0.24s;
-o-animation-delay: 0.24s;
animation-delay: 0.24s;
background-color: rgba(68, 149, 57, 0.4);
}
#hiso-main .loading .rectbox .rect4 {
-webkit-animation-delay: 1.08s;
-moz-animation-delay: 0.36s;
-o-animation-delay: 0.36s;
animation-delay: 0.36s;
background-color: rgba(68, 149, 57, 0.6);
}
#hiso-main .loading .rectbox .rect5 {
-webkit-animation-delay: 1.44s;
-moz-animation-delay: 0.48s;
-o-animation-delay: 0.48s;
animation-delay: 0.48s;
background-color: rgba(68, 149, 57, 0.8);
}
@keyframes running {
0% {
background-color: rgba(68, 149, 57, 1);
}
25% {
background-color: rgba(68, 149, 57, 0.8);
}
50% {
background-color: rgba(68, 149, 57, 0.6);
}
75% {
background-color: rgba(68, 149, 57, 0.4);
}
100% {
background-color: rgba(68, 149, 57, 0.2);
}
}
@-moz-keyframes running {
0% {
background-color: rgba(68, 149, 57, 1);
}
25% {
background-color: rgba(68, 149, 57, 0.8);
}
50% {
background-color: rgba(68, 149, 57, 0.6);
}
75% {
background-color: rgba(68, 149, 57, 0.4);
}
100% {
background-color: rgba(68, 149, 57, 0.2);
}
}
@-ms-keyframes running {
0% {
background-color: rgba(68, 149, 57, 1);
}
25% {
background-color: rgba(68, 149, 57, 0.8);
}
50% {
background-color: rgba(68, 149, 57, 0.6);
}
75% {
background-color: rgba(68, 149, 57, 0.4);
}
100% {
background-color: rgba(68, 149, 57, 0.2);
}
}
@-webkit-keyframes running {
0% {
background-color: rgba(68, 149, 57, 1);
}
25% {
background-color: rgba(68, 149, 57, 0.8);
}
50% {
background-color: rgba(68, 149, 57, 0.6);
}
75% {
background-color: rgba(68, 149, 57, 0.4);
}
100% {
background-color: rgba(68, 149, 57, 0.2);
}
}
.loadEffect{
width: 110px;
height: 110px;
position: relative;
margin: 0 auto;
margin-top:0 auto;
}
.loadEffect span{
display: inline-block;
width: 20px;
height: 20px;
border-radius: 50%;
background: lightgreen;
position: absolute;
-webkit-animation: load 1.04s ease infinite;
}
@-webkit-keyframes load{
0%{
opacity: 1;
}
100%{
opacity: 0.2;
}
}
.loadEffect span:nth-child(1){
left: 40%;
top: -130%;
-webkit-animation-delay:0.13s;
}
.loadEffect span:nth-child(2){
left: 90%;
top: 8%;
margin-top:-120%;
-webkit-animation-delay:0.26s;
}
.loadEffect span:nth-child(3){
left: 110%;
top: -80%;
margin-left: %-100;
-webkit-animation-delay:0.39s;
}
.loadEffect span:nth-child(4){
top: -40%;
left:110%;
-webkit-animation-delay:0.52s;
}
.loadEffect span:nth-child(5){
left: 40%;
top: 0;
margin-top:10%;
-webkit-animation-delay:0.65s;
}
.loadEffect span:nth-child(6){
left: -20%;
bottom:120%;
-webkit-animation-delay:0.78s;
}
.loadEffect span:nth-child(7){
bottom: 160%;
left: -20%;
-webkit-animation-delay:0.91s;
}
.loadEffect span:nth-child(8){
bottom: 200%;
left: -10%;
-webkit-animation-delay:1.04s;
}