sunrize 1.2.0 → 1.2.2

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.
@@ -2160,7 +2160,10 @@ ${scene .toXMLString ({ html: true, indent: " " .repeat (6) }) .trimEnd () }
2160
2160
 
2161
2161
  const oldValue = field .copy ()
2162
2162
 
2163
- undoManager .beginUndo (_ ("Change Field %s »%s«"), node .getTypeName (), field .getName ())
2163
+ if (node .getDisplayName ())
2164
+ undoManager .beginUndo (_ ("Change Field »%s« of Node %s »%s«"), field .getName (), node .getTypeName (), node .getDisplayName ());
2165
+ else
2166
+ undoManager .beginUndo (_ ("Change Field »%s« of Node %s"), field .getName (), node .getTypeName ())
2164
2167
 
2165
2168
  field .assign (auxillary)
2166
2169
 
@@ -2201,7 +2204,10 @@ ${scene .toXMLString ({ html: true, indent: " " .repeat (6) }) .trimEnd () }
2201
2204
 
2202
2205
  const oldValue = field .copy ();
2203
2206
 
2204
- undoManager .beginUndo (_ ("Change Field %s »%s«"), node .getTypeName (), field .getName ());
2207
+ if (node .getDisplayName ())
2208
+ undoManager .beginUndo (_ ("Change Field »%s« of Node %s »%s«"), field .getName (), node .getTypeName (), node .getDisplayName ());
2209
+ else
2210
+ undoManager .beginUndo (_ ("Change Field »%s« of Node %s"), field .getName (), node .getTypeName ());
2205
2211
 
2206
2212
  field .assign (auxillary);
2207
2213
 
@@ -34,6 +34,18 @@ body {
34
34
 
35
35
  /* common */
36
36
 
37
+ .green {
38
+ color: var(--system-green);
39
+ }
40
+
41
+ .red {
42
+ color: var(--system-red);
43
+ }
44
+
45
+ .yellow {
46
+ color: var(--system-yellow);
47
+ }
48
+
37
49
  .modal {
38
50
  pointer-events: none;
39
51
  }
@@ -1213,8 +1225,9 @@ body.dark .ui-widget .library-list .component {
1213
1225
  border: 0;
1214
1226
  margin: 2px 0 2px 20px;
1215
1227
  padding: 0;
1216
- min-width: calc(100% - 20px);
1228
+ min-width: 300px;
1217
1229
  max-width: calc(100% - 20px);
1230
+ width: calc(100% - 20px);
1218
1231
  background: var(--tint-color1);
1219
1232
  color: inherit;
1220
1233
  font-family: var(--sans-serif);
@@ -34,6 +34,18 @@ body {
34
34
 
35
35
  /* common */
36
36
 
37
+ .green {
38
+ color: var(--system-green);
39
+ }
40
+
41
+ .red {
42
+ color: var(--system-red);
43
+ }
44
+
45
+ .yellow {
46
+ color: var(--system-yellow);
47
+ }
48
+
37
49
  .modal {
38
50
  pointer-events: none;
39
51
  }
@@ -1213,8 +1225,9 @@ body.dark .ui-widget .library-list .component {
1213
1225
  border: 0;
1214
1226
  margin: 2px 0 2px 20px;
1215
1227
  padding: 0;
1216
- min-width: calc(100% - 20px);
1228
+ min-width: 300px;
1217
1229
  max-width: calc(100% - 20px);
1230
+ width: calc(100% - 20px);
1218
1231
  background: var(--tint-color1);
1219
1232
  color: inherit;
1220
1233
  font-family: var(--sans-serif);