@wwawing/styles 3.12.25 → 3.12.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/output/wwa.css +46 -1
- package/output/wwa_classic.css +47 -2
- package/package.json +2 -2
package/output/wwa.css
CHANGED
|
@@ -304,7 +304,7 @@ canvas.wwa-canvas {
|
|
|
304
304
|
display: none;
|
|
305
305
|
}
|
|
306
306
|
|
|
307
|
-
#wwa-text-message-window,
|
|
307
|
+
#wwa-game-frame-rate-window, #wwa-text-message-window,
|
|
308
308
|
.wwa-message-window, #wwa-battle-estimate, #wwa-password-window {
|
|
309
309
|
background-color: rgba(255, 255, 255, 0.9);
|
|
310
310
|
border: 2px solid #000;
|
|
@@ -430,6 +430,51 @@ canvas.wwa-canvas {
|
|
|
430
430
|
margin: 0 5px !important;
|
|
431
431
|
}
|
|
432
432
|
|
|
433
|
+
#wwa-game-frame-rate-window {
|
|
434
|
+
position: relative;
|
|
435
|
+
display: flex;
|
|
436
|
+
top: 0;
|
|
437
|
+
left: 0;
|
|
438
|
+
z-index: 301;
|
|
439
|
+
width: 160px;
|
|
440
|
+
flex-direction: row;
|
|
441
|
+
justify-content: center;
|
|
442
|
+
gap: 4px;
|
|
443
|
+
padding: 1px 0;
|
|
444
|
+
overflow: hidden;
|
|
445
|
+
font-size: 12px;
|
|
446
|
+
line-height: 1.2;
|
|
447
|
+
}
|
|
448
|
+
#wwa-game-frame-rate-window[aria-hidden=true] {
|
|
449
|
+
display: none;
|
|
450
|
+
}
|
|
451
|
+
#wwa-game-frame-rate-window > .wwa-game-frame-rate-window-close-button {
|
|
452
|
+
box-sizing: border-box;
|
|
453
|
+
position: absolute;
|
|
454
|
+
top: 0;
|
|
455
|
+
right: 0;
|
|
456
|
+
appearance: none;
|
|
457
|
+
width: 16px;
|
|
458
|
+
height: 16px;
|
|
459
|
+
padding: 2px;
|
|
460
|
+
margin: 0;
|
|
461
|
+
border: 0 none;
|
|
462
|
+
border-radius: 50%;
|
|
463
|
+
font-size: 8px;
|
|
464
|
+
font-weight: inherit;
|
|
465
|
+
text-align: center;
|
|
466
|
+
cursor: pointer;
|
|
467
|
+
}
|
|
468
|
+
#wwa-game-frame-rate-window > .wwa-game-frame-rate-window-close-button:hover, #wwa-game-frame-rate-window > .wwa-game-frame-rate-window-close-button:focus {
|
|
469
|
+
background-color: #CCCCCC;
|
|
470
|
+
}
|
|
471
|
+
#wwa-game-frame-rate-window > .wwa-game-frame-rate-window-close-button:focus {
|
|
472
|
+
outline: 1px solid #000000;
|
|
473
|
+
}
|
|
474
|
+
#wwa-game-frame-rate-window:not([data-classic-mode-enabled=true]) {
|
|
475
|
+
font-weight: bold;
|
|
476
|
+
}
|
|
477
|
+
|
|
433
478
|
div.savedata {
|
|
434
479
|
display: inline-block;
|
|
435
480
|
text-align: center;
|
package/output/wwa_classic.css
CHANGED
|
@@ -304,7 +304,7 @@ canvas.wwa-canvas {
|
|
|
304
304
|
display: none;
|
|
305
305
|
}
|
|
306
306
|
|
|
307
|
-
#wwa-text-message-window,
|
|
307
|
+
#wwa-game-frame-rate-window, #wwa-text-message-window,
|
|
308
308
|
.wwa-message-window, #wwa-battle-estimate, #wwa-password-window {
|
|
309
309
|
background-color: rgba(255, 255, 255, 0.9);
|
|
310
310
|
border: 2px solid #000;
|
|
@@ -430,6 +430,51 @@ canvas.wwa-canvas {
|
|
|
430
430
|
margin: 0 5px !important;
|
|
431
431
|
}
|
|
432
432
|
|
|
433
|
+
#wwa-game-frame-rate-window {
|
|
434
|
+
position: relative;
|
|
435
|
+
display: flex;
|
|
436
|
+
top: 0;
|
|
437
|
+
left: 0;
|
|
438
|
+
z-index: 301;
|
|
439
|
+
width: 160px;
|
|
440
|
+
flex-direction: row;
|
|
441
|
+
justify-content: center;
|
|
442
|
+
gap: 4px;
|
|
443
|
+
padding: 1px 0;
|
|
444
|
+
overflow: hidden;
|
|
445
|
+
font-size: 12px;
|
|
446
|
+
line-height: 1.2;
|
|
447
|
+
}
|
|
448
|
+
#wwa-game-frame-rate-window[aria-hidden=true] {
|
|
449
|
+
display: none;
|
|
450
|
+
}
|
|
451
|
+
#wwa-game-frame-rate-window > .wwa-game-frame-rate-window-close-button {
|
|
452
|
+
box-sizing: border-box;
|
|
453
|
+
position: absolute;
|
|
454
|
+
top: 0;
|
|
455
|
+
right: 0;
|
|
456
|
+
appearance: none;
|
|
457
|
+
width: 16px;
|
|
458
|
+
height: 16px;
|
|
459
|
+
padding: 2px;
|
|
460
|
+
margin: 0;
|
|
461
|
+
border: 0 none;
|
|
462
|
+
border-radius: 50%;
|
|
463
|
+
font-size: 8px;
|
|
464
|
+
font-weight: inherit;
|
|
465
|
+
text-align: center;
|
|
466
|
+
cursor: pointer;
|
|
467
|
+
}
|
|
468
|
+
#wwa-game-frame-rate-window > .wwa-game-frame-rate-window-close-button:hover, #wwa-game-frame-rate-window > .wwa-game-frame-rate-window-close-button:focus {
|
|
469
|
+
background-color: #CCCCCC;
|
|
470
|
+
}
|
|
471
|
+
#wwa-game-frame-rate-window > .wwa-game-frame-rate-window-close-button:focus {
|
|
472
|
+
outline: 1px solid #000000;
|
|
473
|
+
}
|
|
474
|
+
#wwa-game-frame-rate-window:not([data-classic-mode-enabled=true]) {
|
|
475
|
+
font-weight: bold;
|
|
476
|
+
}
|
|
477
|
+
|
|
433
478
|
div.savedata {
|
|
434
479
|
display: inline-block;
|
|
435
480
|
text-align: center;
|
|
@@ -1059,7 +1104,7 @@ div#wwa-sidebar #cell-gotowwa {
|
|
|
1059
1104
|
}
|
|
1060
1105
|
|
|
1061
1106
|
#wwa-text-message-window,
|
|
1062
|
-
.wwa-message-window, #wwa-password-window, #wwa-battle-estimate {
|
|
1107
|
+
.wwa-message-window, #wwa-password-window, #wwa-battle-estimate, #wwa-game-frame-rate-window {
|
|
1063
1108
|
background-color: #ffffff;
|
|
1064
1109
|
box-sizing: border-box;
|
|
1065
1110
|
border-radius: 15px;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wwawing/styles",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.28",
|
|
4
4
|
"description": "WWA Wing stylesheet files",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"ts-node": "^10.9.2",
|
|
26
26
|
"typescript": "^5.8.3"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "e9fc7305e0909e845f9d3f8fed93180d7d900b13"
|
|
29
29
|
}
|