@kookee/sdk 0.0.15 → 0.0.16
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/package.json +1 -1
- package/styles/code.css +15 -9
package/package.json
CHANGED
package/styles/code.css
CHANGED
|
@@ -70,16 +70,22 @@
|
|
|
70
70
|
border: none;
|
|
71
71
|
}
|
|
72
72
|
|
|
73
|
-
/* Inline code - Slack-style */
|
|
74
|
-
.kookee-code-block
|
|
75
|
-
background-color: #f8e8ea;
|
|
76
|
-
color: #c41e3a;
|
|
77
|
-
padding: 0.125rem 0.375rem;
|
|
78
|
-
border-radius: 0.25rem;
|
|
73
|
+
/* Inline code - Slack-style (global, not scoped to .kookee-code-block) */
|
|
74
|
+
code:not(pre code):not(.kookee-code-block pre code) {
|
|
75
|
+
background-color: #f8e8ea !important;
|
|
76
|
+
color: #c41e3a !important;
|
|
77
|
+
padding: 0.125rem 0.375rem !important;
|
|
78
|
+
border-radius: 0.25rem !important;
|
|
79
79
|
font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, SFMono-Regular, Menlo, Monaco,
|
|
80
|
-
'Courier New', monospace;
|
|
81
|
-
font-size: 0.875em;
|
|
82
|
-
border: 1px solid #f0d0d4;
|
|
80
|
+
'Courier New', monospace !important;
|
|
81
|
+
font-size: 0.875em !important;
|
|
82
|
+
border: 1px solid #f0d0d4 !important;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/* Remove Tailwind prose backticks from inline code */
|
|
86
|
+
code:not(pre code)::before,
|
|
87
|
+
code:not(pre code)::after {
|
|
88
|
+
content: none !important;
|
|
83
89
|
}
|
|
84
90
|
|
|
85
91
|
/* Syntax highlighting - VS Code Dark+ theme */
|