Files
Aislo/B08_wf5_Quantity/B08_wf5_Quantity_UI_Style.css
T

201 lines
3.6 KiB
CSS

.b08-page {
--bg: #0d1422;
--panel: #172235;
--line: #2a3a54;
--text: #e8eef8;
--muted: #91a2ba;
--accent: #6d8cff;
display: grid;
gap: 16px;
min-height: calc(100vh - 120px);
padding: 22px;
color: var(--text);
background: linear-gradient(145deg, #0a101b, var(--bg));
box-sizing: border-box;
}
.b08-header {
display: flex;
align-items: center;
justify-content: space-between;
}
.b08-header p,
.b08-tab-heading p {
margin: 0;
color: var(--muted);
font-size: 12px;
}
.b08-header h2,
.b08-tab-heading h3 {
margin: 4px 0;
}
.b08-project {
padding: 6px 11px;
border: 1px solid var(--line);
border-radius: 999px;
color: #b9c8dd;
font-size: 12px;
}
.b08-message {
min-height: 20px;
margin: 0;
color: #ffd078;
font-size: 13px;
}
.b08-tabs {
display: flex;
gap: 6px;
padding-bottom: 8px;
overflow-x: auto;
border-bottom: 1px solid var(--line);
}
.b08-tabs button {
display: grid;
grid-template-columns: auto 1fr;
gap: 7px;
align-items: center;
min-width: max-content;
padding: 9px 12px;
color: var(--muted);
border: 1px solid transparent;
border-radius: 8px;
background: transparent;
cursor: pointer;
}
.b08-tabs button b {
display: grid;
place-items: center;
width: 25px;
height: 25px;
border-radius: 50%;
background: #233149;
font-size: 11px;
}
.b08-tabs button.active {
color: white;
border-color: #516fb9;
background: #1c2a43;
}
.b08-tabs button.active b {
background: var(--accent);
}
.b08-content {
min-width: 0;
}
.b08-tab-section {
display: grid;
gap: 14px;
margin-bottom: 16px;
padding: 16px;
border: 1px solid var(--line);
border-radius: 12px;
background: color-mix(in srgb, var(--panel) 96%, transparent);
box-shadow: 0 10px 25px rgb(0 0 0/16%);
}
.b08-tab-section .b08-tab-section {
margin: 0;
background: #111c2e;
box-shadow: none;
}
.b08-tab-heading {
display: flex;
justify-content: space-between;
align-items: flex-start;
border-bottom: 1px solid var(--line);
padding-bottom: 12px;
}
.b08-form-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
gap: 10px;
align-items: end;
}
.b08-inline-form {
display: flex;
gap: 8px;
align-items: end;
flex-wrap: wrap;
}
.b08-policy-form .b08-field {
min-width: 130px;
}
.b08-field {
display: grid;
gap: 5px;
min-width: 150px;
color: var(--muted);
font-size: 12px;
}
.b08-field input,
.b08-field select {
width: 100%;
padding: 8px 9px;
color: var(--text);
border: 1px solid var(--line);
border-radius: 7px;
background: #0e1727;
box-sizing: border-box;
}
.b08-button {
padding: 9px 13px;
color: var(--text);
border: 1px solid var(--line);
border-radius: 7px;
background: #25344d;
cursor: pointer;
}
.b08-button--primary {
color: white;
border-color: #7b96ff;
background: var(--accent);
}
.b08-button:disabled {
opacity: 0.45;
cursor: not-allowed;
}
.b08-table {
width: 100%;
border-collapse: collapse;
font-size: 12px;
}
.b08-table th,
.b08-table td {
padding: 9px 10px;
text-align: left;
border-bottom: 1px solid var(--line);
white-space: nowrap;
}
.b08-table th {
position: sticky;
top: 0;
color: #b9c8dc;
background: #101a2a;
}
.b08-table tbody tr:hover {
background: rgb(109 140 255/5%);
}
.b08-tab-section > .b08-table {
display: block;
overflow: auto;
}
.b08-empty,
.b08-run-id {
color: var(--muted);
}
@media (max-width: 760px) {
.b08-page {
padding: 12px;
}
.b08-header {
align-items: flex-start;
flex-direction: column;
gap: 8px;
}
.b08-form-grid {
grid-template-columns: 1fr;
}
.b08-inline-form {
align-items: stretch;
flex-direction: column;
}
}