Wipe the existing code from existance
This commit is contained in:
parent
7253f06236
commit
4f1d6614e5
40 changed files with 0 additions and 1530 deletions
|
|
@ -1 +0,0 @@
|
|||
@use "./v1/index.scss";
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
.dialog-content:not(:only-child) {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.dialog-content {
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
.prompt {
|
||||
margin-top: 8px;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
// Disclaimer: This CSS is used by a custom web component and is scoped to JUST
|
||||
// the corresponding web component. This should only be imported by web component
|
||||
// style files.
|
||||
|
||||
:host {
|
||||
display: inline-block;
|
||||
}
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
/*
|
||||
Disclaimer: This CSS is used by a custom web component and is scoped to JUST
|
||||
the corresponding web component. Importing this into other files is forbidden
|
||||
*/
|
||||
|
||||
$default-size: 1rem;
|
||||
|
||||
@use "./common.scss";
|
||||
|
||||
div {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
svg {
|
||||
width: var(--size, $default-size);
|
||||
height: var(--size, $default-size);
|
||||
fill: var(--fill);
|
||||
stroke: var(--stroke);
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
/*
|
||||
Disclaimer: This CSS is used by a custom web component and is scoped to JUST
|
||||
the corresponding web component. Importing this into other files is forbidden
|
||||
*/
|
||||
|
||||
$default-border-radius: 4px;
|
||||
$default-height: 1.5rem;
|
||||
|
||||
@use "./common.scss";
|
||||
|
||||
div {
|
||||
display: grid;
|
||||
grid-template-columns: var(--height, $default-height) var(--width, 50px) var(--height, $default-height);
|
||||
grid-template-rows: var(--height, 1fr);
|
||||
border-radius: var(--border-radius, $default-border-radius);
|
||||
}
|
||||
|
||||
span, input {
|
||||
border: none;
|
||||
outline: none;
|
||||
background: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
input {
|
||||
font-family: var(--font-family, inherit);
|
||||
text-align: center;
|
||||
font-size: var(--font-size, inherit);
|
||||
padding: 2px 4px;
|
||||
|
||||
&::-webkit-inner-spin-button, &::-webkit-outer-spin-button {
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
margin: 0
|
||||
}
|
||||
}
|
||||
|
||||
.increment, .decrement {
|
||||
aspect-ratio: 1 / 1;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.increment {
|
||||
border-radius: 0 var(--border-radius, $default-border-radius) var(--border-radius, 4px) 0;
|
||||
}
|
||||
.decrement {
|
||||
border-radius: var(--border-radius, $default-border-radius) 0 0 var(--border-radius, $default-border-radius);
|
||||
}
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
// Styling version 1
|
||||
|
||||
@use "./Dialog.scss";
|
||||
|
||||
@use "./player/root.scss";
|
||||
|
|
@ -1,42 +0,0 @@
|
|||
.actor--player.style-v1 {
|
||||
--header-size: 75px;
|
||||
|
||||
form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.header-row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
border-radius: 4px;
|
||||
border: 1px solid var(--color-underline-header);
|
||||
}
|
||||
|
||||
.avatar {
|
||||
--size: var(--header-size);
|
||||
width: var(--size);
|
||||
height: var(--size);
|
||||
border: none;
|
||||
border-right: 1px solid var(--color-underline-header);
|
||||
}
|
||||
|
||||
.actor-name {
|
||||
height: var(--header-size);
|
||||
padding: 8px 1rem;
|
||||
font-size: clamp(1rem, 2rem, calc(var(--header-size) - 16px));
|
||||
border: none;
|
||||
}
|
||||
|
||||
prose-mirror {
|
||||
--menu-background: rgba(0, 0, 0, 0.1);
|
||||
flex-grow: 1;
|
||||
border: 1px solid var(--color-underline-header);
|
||||
border-radius: 4px;
|
||||
|
||||
.editor-container {
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue