danoniplus 47.6.4 → 48.1.0
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/css/danoni_main.css +25 -1
- package/js/danoni_main.js +560 -74
- package/js/lib/danoni_constants.js +138 -101
- package/package.json +1 -1
- package/skin/danoni_skin_default.css +10 -1
- package/skin/danoni_skin_light.css +10 -1
- package/skin/danoni_skin_skyblue.css +10 -1
package/css/danoni_main.css
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
本体cssファイル
|
|
5
5
|
|
|
6
6
|
Created : 2018/10/08
|
|
7
|
-
Revised :
|
|
7
|
+
Revised : 2026/05/17 (v48.0.0)
|
|
8
8
|
|
|
9
9
|
https://github.com/cwtickle/danoniplus
|
|
10
10
|
------------------------------------------ */
|
|
@@ -839,6 +839,14 @@ input[type="color"] {
|
|
|
839
839
|
color: var(--life-color-border-x, #cccccc);
|
|
840
840
|
}
|
|
841
841
|
|
|
842
|
+
.life_frzNormal {
|
|
843
|
+
background: var(--life-frz-normal, var(--main-stepShobon, #ccccff));
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
.life_frzActive {
|
|
847
|
+
background: var(--life-frz-active, var(--main-stepMatari, #ff9966));
|
|
848
|
+
}
|
|
849
|
+
|
|
842
850
|
/* 結果画面:項目、設定値 */
|
|
843
851
|
.result_lbl {
|
|
844
852
|
color: var(--result-lbl-x, #999999);
|
|
@@ -909,6 +917,22 @@ input[type="color"] {
|
|
|
909
917
|
color: var(--common-excessive, var(--common-kita));
|
|
910
918
|
}
|
|
911
919
|
|
|
920
|
+
.common_auto {
|
|
921
|
+
color: var(--common-auto, var(--common-kita, #ffff99));
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
.common_shuffle {
|
|
925
|
+
color: var(--settings-shuffle-x, var(--common-iknai, #99ff66));
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
.common_assist {
|
|
929
|
+
color: var(--settings-assist-x, var(--common-kita, #ffff99));
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.common_another {
|
|
933
|
+
color: var(--settings-another-x, var(--common-ii, #66ffff));
|
|
934
|
+
}
|
|
935
|
+
|
|
912
936
|
/* 結果画面:枠 */
|
|
913
937
|
.result_PlayDataWindow {
|
|
914
938
|
border: solid 0.5px #666666;
|