Files
supabase/apps/studio/styles/code.css
Ivan Vasilov afd690ada5 chore: Migrate all apps to use Tailwind CSS configs (#45530)
This PR migrates all tailwind configs in the apps to be CSS configs.
They import a shared CSS Tailwind config from the `config` package
(which in turns imports the old JS config).

The shared JS config will be migrated to CSS in a followup PR.

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

* **Chores**
* Centralized Tailwind into a config-driven entrypoint and updated the
app build flow to use the new build step; many apps now import unified
global styles.

* **Style**
* Migrated global styles to a Tailwind v4-style setup, added
project-wide content scanning, consolidated theme imports, standardized
theme tokens (including new --container-site max-width), and added a
small prose utility to remove paragraph margins.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Co-authored-by: Claude Sonnet 4.6 <[email protected]>
2026-05-07 17:18:15 +02:00

178 lines
3.0 KiB
CSS

@reference "./globals.css";
.Code {
width: 100%;
.prism-code {
@apply m-0 p-1;
background-color: none;
white-space: normal;
word-break: break-word;
/* overflow: auto !important; */
}
.token-line {
@apply text-sm;
}
.token.imports,
.token.property-access {
@apply !text-foreground-lighter;
}
.token.keyword.module,
.token.function {
font-style: normal !important;
@apply !text-foreground-lighter;
}
.token.plain,
.token.parameter,
.token.punctuation,
.token.operator,
.token.console.class-name,
.token.doc-comment.parameter,
.token.doc-comment.optional-parameter,
.token.doc-comment.parameter.punctuation,
.token.doc-comment.optional-parameter.punctuation {
font-style: normal !important;
@apply !text-foreground-light;
}
.token.keyword,
.token.doc-comment.keyword {
font-style: normal !important;
@apply !text-blue-900;
}
.token.string {
font-style: normal !important;
@apply !text-brand;
}
.token.constant {
font-style: normal !important;
@apply !text-blue-900;
}
.token.comment {
font-style: normal !important;
@apply !text-foreground-lighter;
}
.token.number {
@apply !text-brand;
}
.token.boolean,
.token.doc-comment.class-name {
@apply text-brand;
}
.codeBlock {
margin-bottom: 0;
overflow: hidden;
overflow-wrap: break-word;
white-space: pre-wrap;
}
&.codeBlockWrapper {
position: relative;
}
&.codeBlockWrapper:hover .buttonContainer {
visibility: visible;
opacity: 1;
}
.buttonContainer {
right: 5px;
top: 5px;
opacity: 0;
position: absolute;
visibility: hidden;
transition:
opacity 200ms ease-in-out,
visibility 200ms ease-in-out,
bottom 200ms ease-in-out;
button {
@apply rounded-sm text-xs;
background: rgb(1, 22, 39);
border: 1px solid rgb(214, 222, 235);
color: rgb(214, 222, 235);
cursor: pointer;
line-height: 12px;
outline: none;
padding: 4px 8px;
}
}
&.codeBlockWrapper .sbui-btn-container {
position: absolute;
top: 2px;
right: 3px;
visibility: hidden;
opacity: 0;
}
&.codeBlockWrapper:hover .sbui-btn-container {
visibility: visible;
opacity: 1;
}
}
.CustomCodeBlock {
width: 100%;
.code-with-header pre {
border-radius: 0 0 4px 4px;
}
.code-with-response pre {
border-radius: 0;
}
.code-header {
/* @apply bg-gray-600; */
color: #ccc;
padding: 5px 15px;
border-radius: 4px 4px 0 0;
font-size: 0.8rem;
font-weight: bold;
border-bottom: 1px solid #444;
}
}
.FunctionBlock {
h4 {
margin-top: 36px;
margin-bottom: 12px;
}
p {
margin-top: 0px;
margin-bottom: 24px;
}
}
.panel-form {
button {
@apply m-4 mr-0;
}
.form {
.form-group {
@apply border-t border-b m-0 -mt-px text-left py-2;
input {
@apply px-4 text-white;
border: none !important;
width: 100%;
}
}
}
}