@quilltap/theme-storybook 1.0.46 → 1.0.47

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/dist/index.css CHANGED
@@ -1087,6 +1087,22 @@ body {
1087
1087
  .qt-chat-message-whisper-overheard {
1088
1088
  opacity: 0.6;
1089
1089
  }
1090
+ .qt-pascal-result {
1091
+ border-left: 3px solid var(--qt-alert-info-border);
1092
+ padding-left: 0.75rem;
1093
+ }
1094
+ .qt-pascal-result--success {
1095
+ border-left-color: var(--qt-alert-success-border);
1096
+ }
1097
+ .qt-pascal-result--partial {
1098
+ border-left-color: var(--qt-alert-warning-border);
1099
+ }
1100
+ .qt-pascal-result--failure {
1101
+ border-left-color: var(--qt-alert-error-border);
1102
+ }
1103
+ .qt-pascal-result--info {
1104
+ border-left-color: var(--qt-alert-info-border);
1105
+ }
1090
1106
  .qt-chat-message-silent {
1091
1107
  background: var(--qt-chat-silent-bg);
1092
1108
  color: var(--qt-chat-silent-fg);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quilltap/theme-storybook",
3
- "version": "1.0.46",
3
+ "version": "1.0.47",
4
4
  "description": "Storybook preset and stories for developing Quilltap theme plugins",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1165,6 +1165,32 @@
1165
1165
  opacity: 0.6;
1166
1166
  }
1167
1167
 
1168
+ /**
1169
+ * Pascal result — the outcome of a custom tool (pseudo-tool) roll, announced by
1170
+ * Pascal the Croupier. The accent carries the outcome's semantic `state`.
1171
+ * Built on the --qt-alert-* families, which every bundled theme defines.
1172
+ */
1173
+ .qt-pascal-result {
1174
+ border-left: 3px solid var(--qt-alert-info-border);
1175
+ padding-left: 0.75rem;
1176
+ }
1177
+
1178
+ .qt-pascal-result--success {
1179
+ border-left-color: var(--qt-alert-success-border);
1180
+ }
1181
+
1182
+ .qt-pascal-result--partial {
1183
+ border-left-color: var(--qt-alert-warning-border);
1184
+ }
1185
+
1186
+ .qt-pascal-result--failure {
1187
+ border-left-color: var(--qt-alert-error-border);
1188
+ }
1189
+
1190
+ .qt-pascal-result--info {
1191
+ border-left-color: var(--qt-alert-info-border);
1192
+ }
1193
+
1168
1194
  /**
1169
1195
  * Silent message — inner thoughts and actions from character in silent mode.
1170
1196
  * Distinguished from whispers by a dotted border (vs dashed) and sage/teal tones.