handler-playable-sdk 0.5.32 → 0.5.36

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.
@@ -981,6 +981,10 @@
981
981
  text-transform: uppercase;
982
982
  letter-spacing: 0.6px;
983
983
  margin-bottom: 6px;
984
+ display: flex;
985
+ align-items: center;
986
+ justify-content: space-between;
987
+ gap: 8px;
984
988
  }
985
989
 
986
990
  .scene-object-count {
@@ -1044,6 +1048,38 @@
1044
1048
  color: var(--ui-accent-2);
1045
1049
  }
1046
1050
 
1051
+ .scene-object-badge.system {
1052
+ background: rgba(255, 165, 0, 0.2);
1053
+ color: #ff9500;
1054
+ }
1055
+
1056
+ .scene-object-group-system {
1057
+ border-left: 3px solid #ff9500;
1058
+ padding-left: 8px;
1059
+ margin-bottom: 16px;
1060
+ }
1061
+
1062
+ .scene-object-group-delete {
1063
+ background: none;
1064
+ border: none;
1065
+ font-size: 14px;
1066
+ cursor: pointer;
1067
+ padding: 4px 6px;
1068
+ border-radius: 4px;
1069
+ color: var(--ui-text-secondary);
1070
+ transition: all var(--ui-duration-fast) var(--ui-ease);
1071
+ display: flex;
1072
+ align-items: center;
1073
+ justify-content: center;
1074
+ opacity: 0.6;
1075
+ }
1076
+
1077
+ .scene-object-group-delete:hover {
1078
+ background: var(--ui-danger-overlay-1);
1079
+ color: var(--ui-danger);
1080
+ opacity: 1;
1081
+ }
1082
+
1047
1083
  .scene-object-item:hover {
1048
1084
  border-color: var(--ui-terracotta);
1049
1085
  background: var(--ui-accent-overlay-1);