Add sqlformat support

This commit is contained in:
Spxg
2025-05-27 01:04:02 +08:00
parent 9bc627488a
commit 5f88554db9
13 changed files with 359 additions and 143 deletions

View File

@@ -0,0 +1,38 @@
.-buttonReset {
color: var(--font-color);
border: none;
background: inherit;
background-color: transparent; /* IE 11 */
padding: 0;
font: inherit;
line-height: inherit;
text-align: inherit;
}
.-menuItemFullButton {
composes: -buttonReset;
transition: color var(--header-transition);
width: 100%;
user-select: text;
}
.container {
composes: -menuItemFullButton;
&:hover {
color: var(--header-tint);
}
}
.-menuItemTitle {
font-weight: 600;
}
.name {
composes: -menuItemTitle;
margin: 0;
}
.description {
margin: 0;
}

View File

@@ -0,0 +1,4 @@
.aside {
margin: 0.25em 0 0;
color: #888;
}