@ai-setting/roy-plugin-task-show 0.9.7 → 0.9.8

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/public/style.css CHANGED
@@ -1027,3 +1027,67 @@ details summary {
1027
1027
  border: 1px solid rgba(148, 163, 184, 0.4);
1028
1028
  }
1029
1029
 
1030
+ /* ---------- Session forest metadata ---------- */
1031
+ .session-forest > ul {
1032
+ list-style: none;
1033
+ margin: 0;
1034
+ padding: 0;
1035
+ }
1036
+ .session-row {
1037
+ min-width: 0;
1038
+ margin: 8px 0;
1039
+ padding: 10px 12px;
1040
+ border: 1px solid var(--border);
1041
+ border-radius: 8px;
1042
+ background: rgba(24, 36, 66, 0.45);
1043
+ }
1044
+ .session-row .session-title {
1045
+ display: inline-block;
1046
+ font-weight: 600;
1047
+ overflow-wrap: anywhere;
1048
+ }
1049
+ .session-toggle {
1050
+ margin-left: 10px;
1051
+ }
1052
+ .session-details {
1053
+ margin-top: 8px;
1054
+ }
1055
+ .session-details dl {
1056
+ display: grid;
1057
+ grid-template-columns: minmax(10rem, 15rem) minmax(0, 1fr);
1058
+ gap: 6px 12px;
1059
+ margin: 10px 0 0;
1060
+ }
1061
+ .session-details dt {
1062
+ color: var(--muted);
1063
+ font-weight: 600;
1064
+ overflow-wrap: anywhere;
1065
+ }
1066
+ .session-details dd {
1067
+ min-width: 0;
1068
+ margin: 0;
1069
+ overflow-wrap: anywhere;
1070
+ }
1071
+ .session-details pre.metadata-json,
1072
+ .session-details pre.metadata-text {
1073
+ max-height: 24rem;
1074
+ margin: 0;
1075
+ white-space: pre-wrap;
1076
+ overflow: auto;
1077
+ overflow-wrap: anywhere;
1078
+ word-break: break-word;
1079
+ }
1080
+ .session-operations {
1081
+ list-style: none;
1082
+ margin: 12px 0 0;
1083
+ padding: 0;
1084
+ }
1085
+ @media (max-width: 700px) {
1086
+ .session-details dl {
1087
+ grid-template-columns: 1fr;
1088
+ gap: 2px;
1089
+ }
1090
+ .session-details dd {
1091
+ margin-bottom: 8px;
1092
+ }
1093
+ }