@wwawing/styles 3.6.0-beta.0 → 3.6.3
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/LICENSE +1 -1
- package/output/wwa.css +26 -0
- package/output/wwa_classic.css +26 -0
- package/package.json +6 -6
package/LICENSE
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
3
|
Copyright (c) 1996-2015 NAO
|
|
4
|
-
Copyright (c) 2015-
|
|
4
|
+
Copyright (c) 2015-2022 WWA Wing Team
|
|
5
5
|
|
|
6
6
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
of this software and associated documentation files (the "Software"), to deal
|
package/output/wwa.css
CHANGED
|
@@ -514,6 +514,32 @@ div.savedata > div.ss > span {
|
|
|
514
514
|
padding: 3px 7px;
|
|
515
515
|
}
|
|
516
516
|
|
|
517
|
+
.wwa-vardump-wrapper {
|
|
518
|
+
margin: 0 auto;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.wwa-vardump-wrapper > table {
|
|
522
|
+
margin: 0 auto;
|
|
523
|
+
text-align: center;
|
|
524
|
+
width: 560px;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
.wwa-vardump-wrapper > table th.varlist-header {
|
|
528
|
+
background-color: orange;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
.wwa-vardump-wrapper > table tr.var-number > th {
|
|
532
|
+
background-color: #FFFF66;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
.wwa-vardump-wrapper > table tr.var-val > td {
|
|
536
|
+
background-color: #FFFFCC;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.wwa-vardump-wrapper > table th, .wwa-vardump-wrapper > table td {
|
|
540
|
+
width: 3em;
|
|
541
|
+
}
|
|
542
|
+
|
|
517
543
|
#wwa-virtualpad-left,
|
|
518
544
|
#wwa-virtualpad-right {
|
|
519
545
|
bottom: 0;
|
package/output/wwa_classic.css
CHANGED
|
@@ -514,6 +514,32 @@ div.savedata > div.ss > span {
|
|
|
514
514
|
padding: 3px 7px;
|
|
515
515
|
}
|
|
516
516
|
|
|
517
|
+
.wwa-vardump-wrapper {
|
|
518
|
+
margin: 0 auto;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.wwa-vardump-wrapper > table {
|
|
522
|
+
margin: 0 auto;
|
|
523
|
+
text-align: center;
|
|
524
|
+
width: 560px;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
.wwa-vardump-wrapper > table th.varlist-header {
|
|
528
|
+
background-color: orange;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
.wwa-vardump-wrapper > table tr.var-number > th {
|
|
532
|
+
background-color: #FFFF66;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
.wwa-vardump-wrapper > table tr.var-val > td {
|
|
536
|
+
background-color: #FFFFCC;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.wwa-vardump-wrapper > table th, .wwa-vardump-wrapper > table td {
|
|
540
|
+
width: 3em;
|
|
541
|
+
}
|
|
542
|
+
|
|
517
543
|
#wwa-virtualpad-left,
|
|
518
544
|
#wwa-virtualpad-right {
|
|
519
545
|
bottom: 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wwawing/styles",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.3",
|
|
4
4
|
"description": "WWA Wing stylesheet files",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"author": "WWA Wing Team",
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@types/node-sass": "^
|
|
19
|
-
"node-sass": "^
|
|
18
|
+
"@types/node-sass": "^4.11.2",
|
|
19
|
+
"node-sass": "^7.0.0",
|
|
20
20
|
"shx": "^0.3.3",
|
|
21
|
-
"ts-node": "^
|
|
22
|
-
"typescript": "^4.
|
|
21
|
+
"ts-node": "^10.4.0",
|
|
22
|
+
"typescript": "^4.5.4"
|
|
23
23
|
},
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "7ab953658968ae12809a060193eccfd23dc2bc77"
|
|
25
25
|
}
|