with dist
This commit is contained in:
parent
05c65aad4d
commit
ddd716c0a0
64 changed files with 262892 additions and 1 deletions
335
dist/library/assets/css/external-sources.css
vendored
Normal file
335
dist/library/assets/css/external-sources.css
vendored
Normal file
|
|
@ -0,0 +1,335 @@
|
|||
#form-manifesto {
|
||||
position: fixed;
|
||||
bottom: 12px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: min(640px, 95vw);
|
||||
|
||||
background: rgba(250, 247, 242, 0.94);
|
||||
backdrop-filter: blur(8px);
|
||||
|
||||
border-radius: 10px;
|
||||
border: 1px solid rgba(164, 151, 132, 0.22);
|
||||
box-shadow: 0 14px 30px rgba(129, 116, 96, 0.14);
|
||||
|
||||
padding: 14px;
|
||||
font-family: system-ui, -apple-system, Segoe UI, sans-serif;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
#form-manifesto * {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.form-manifesto-group {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
margin-bottom: 12px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.form-manifesto-group.column {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
#form-manifesto textarea {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
#form-manifesto input,
|
||||
#form-manifesto textarea {
|
||||
padding: 8px 10px;
|
||||
font-size: 14px;
|
||||
|
||||
border-radius: 6px;
|
||||
border: 1px solid rgba(164, 151, 132, 0.22);
|
||||
background: rgba(255, 252, 247, 0.96);
|
||||
|
||||
transition: border-color .15s, box-shadow .15s;
|
||||
}
|
||||
|
||||
#form-manifesto textarea {
|
||||
resize: vertical;
|
||||
font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
|
||||
}
|
||||
|
||||
/* focus */
|
||||
#form-manifesto input:focus,
|
||||
#form-manifesto textarea:focus {
|
||||
outline: none;
|
||||
border-color: #4c6ef5;
|
||||
box-shadow: 0 0 0 2px rgba(76,110,245,.2);
|
||||
}
|
||||
|
||||
#form-manifesto button {
|
||||
white-space: nowrap;
|
||||
padding: 8px 14px;
|
||||
font-size: 13px;
|
||||
border-radius: 6px;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
|
||||
transition: background .15s, transform .05s;
|
||||
}
|
||||
|
||||
#form-manifesto button:active {
|
||||
transform: translateY(1px);
|
||||
}
|
||||
|
||||
/* primary */
|
||||
#form-manifesto button.primary {
|
||||
background: #4c6ef5;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#form-manifesto button.primary:hover {
|
||||
background: #3b5bdb;
|
||||
}
|
||||
|
||||
/* secondary */
|
||||
#form-manifesto button.secondary {
|
||||
background: #e9ecef;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
#form-manifesto button.secondary:hover {
|
||||
background: #dee2e6;
|
||||
}
|
||||
|
||||
/* Text area actions */
|
||||
#form-manifesto .actions {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.form-manifesto-label {
|
||||
font-size: 13px;
|
||||
color: #605242;
|
||||
white-space: nowrap;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
#form-manifesto select {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
|
||||
padding: 8px 10px;
|
||||
font-size: 13px;
|
||||
|
||||
border-radius: 6px;
|
||||
border: 1px solid rgba(164, 151, 132, 0.22);
|
||||
background-color: rgba(255, 252, 247, 0.96);
|
||||
|
||||
appearance: none;
|
||||
background-image:
|
||||
linear-gradient(45deg, transparent 50%, #666 50%),
|
||||
linear-gradient(135deg, #666 50%, transparent 50%);
|
||||
background-position:
|
||||
calc(100% - 16px) 50%,
|
||||
calc(100% - 11px) 50%;
|
||||
background-size: 5px 5px;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
transition: border-color .15s, box-shadow .15s;
|
||||
}
|
||||
|
||||
#form-manifesto select:focus {
|
||||
outline: none;
|
||||
border-color: #4c6ef5;
|
||||
box-shadow: 0 0 0 2px rgba(76,110,245,.2);
|
||||
}
|
||||
|
||||
.form-manifesto-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.form-manifesto-header .title {
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
color: #25211c;
|
||||
}
|
||||
|
||||
.form-manifesto-header .tools {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.form-manifesto-header button {
|
||||
background: transparent;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
font-size: 14px;
|
||||
padding: 4px 6px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.form-manifesto-header button:hover {
|
||||
background: rgba(96, 82, 66, .08);
|
||||
}
|
||||
|
||||
#form-manifesto.collapsed .form-manifesto-group {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#form-manifesto.collapsed {
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
|
||||
#form-manifesto[data-viewer-theme="dark"] {
|
||||
background: rgba(30, 32, 36, 0.95);
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
#form-manifesto[data-viewer-theme="dark"] .form-manifesto-header .title {
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
#form-manifesto[data-viewer-theme="dark"] .form-manifesto-label {
|
||||
color: #cfd3d9;
|
||||
}
|
||||
|
||||
/* inputs */
|
||||
#form-manifesto[data-viewer-theme="dark"] input,
|
||||
#form-manifesto[data-viewer-theme="dark"] textarea,
|
||||
#form-manifesto[data-viewer-theme="dark"] select {
|
||||
background: #1e2024;
|
||||
color: #eee;
|
||||
border-color: #444;
|
||||
}
|
||||
|
||||
#form-manifesto select {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
|
||||
padding: 8px 36px 8px 10px;
|
||||
font-size: 13px;
|
||||
|
||||
border-radius: 6px;
|
||||
border: 1px solid #cfd3d9;
|
||||
background-color: #fff;
|
||||
|
||||
appearance: none;
|
||||
|
||||
background-image:
|
||||
linear-gradient(45deg, transparent 50%, #666 50%),
|
||||
linear-gradient(135deg, #666 50%, transparent 50%);
|
||||
background-position:
|
||||
calc(100% - 20px) 50%,
|
||||
calc(100% - 14px) 50%;
|
||||
background-size: 7px 7px;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
#form-manifesto[data-viewer-theme="dark"] select {
|
||||
appearance: auto;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
#form-manifesto[data-viewer-theme="dark"] input::placeholder,
|
||||
#form-manifesto[data-viewer-theme="dark"] textarea::placeholder {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
/* buttons */
|
||||
#form-manifesto[data-viewer-theme="dark"] button.primary {
|
||||
background: #5c7cfa;
|
||||
}
|
||||
|
||||
#form-manifesto[data-viewer-theme="dark"] button.secondary {
|
||||
background: #343a40;
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
#form-manifesto[data-viewer-theme="dark"] .form-manifesto-header button:hover {
|
||||
background: rgba(255,255,255,.12);
|
||||
}
|
||||
|
||||
#example-model-picker {
|
||||
display: none;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
margin: 5px 0px;
|
||||
padding: 4px 10px;
|
||||
border: 1px solid rgba(164, 151, 132, 0.24);
|
||||
border-radius: 10px;
|
||||
background: rgba(250, 247, 242, 0.94);
|
||||
box-shadow: 0 12px 24px rgba(129, 116, 96, 0.12);
|
||||
font:
|
||||
12px/1.2 "Segoe UI", "Helvetica Neue", Arial, sans-serif;
|
||||
color: #111827;
|
||||
transition:
|
||||
background-color 0.2s ease,
|
||||
border-color 0.2s ease,
|
||||
box-shadow 0.2s ease,
|
||||
color 0.2s ease;
|
||||
}
|
||||
|
||||
#example-model-picker label {
|
||||
font-weight: 600;
|
||||
color: #42382d;
|
||||
}
|
||||
|
||||
#example-model-picker .example-model-picker-spacer {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
#example-model-picker select {
|
||||
min-width: 220px;
|
||||
padding: 8px 10px;
|
||||
border: 1px solid rgba(164, 151, 132, 0.24);
|
||||
border-radius: 8px;
|
||||
background: rgba(255, 252, 247, 0.96);
|
||||
color: #25211c;
|
||||
transition:
|
||||
background-color 0.2s ease,
|
||||
border-color 0.2s ease,
|
||||
color 0.2s ease;
|
||||
}
|
||||
|
||||
#example-theme-toggle {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
border: 1px solid rgba(164, 151, 132, 0.24);
|
||||
border-radius: 999px;
|
||||
background: rgba(255, 252, 247, 0.96);
|
||||
color: #25211c;
|
||||
cursor: pointer;
|
||||
font-size: 16px;
|
||||
line-height: 1;
|
||||
transition:
|
||||
background-color 0.2s ease,
|
||||
border-color 0.2s ease,
|
||||
color 0.2s ease,
|
||||
transform 0.2s ease;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#example-theme-toggle:hover {
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
body[data-viewer-theme="dark"] #example-model-picker {
|
||||
border-color: #444;
|
||||
background: rgba(30, 32, 36, 0.95);
|
||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
body[data-viewer-theme="dark"] #example-model-picker label {
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
body[data-viewer-theme="dark"] #example-model-picker select {
|
||||
border-color: #444;
|
||||
background: #1e2024;
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
body[data-viewer-theme="dark"] #example-theme-toggle {
|
||||
border-color: #444;
|
||||
background: #1e2024;
|
||||
color: #eee;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue