dev #37
@@ -14,6 +14,13 @@
|
|||||||
.section-header h2 {
|
.section-header h2 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
.media-panel-header{
|
||||||
|
margin-bottom: var(--space-3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.group-header{
|
||||||
|
margin-bottom: var(--space-3);
|
||||||
|
}
|
||||||
|
|
||||||
.header-copy {
|
.header-copy {
|
||||||
display: grid;
|
display: grid;
|
||||||
|
|||||||
@@ -40,12 +40,20 @@ label {
|
|||||||
|
|
||||||
input {
|
input {
|
||||||
border: 1px solid var(--color-border);
|
border: 1px solid var(--color-border);
|
||||||
border-radius: var(--radius-md);
|
border-radius: var(--radius-sm);
|
||||||
padding: var(--space-2);
|
padding: var(--space-2);
|
||||||
|
background: var(--color-bg-card);
|
||||||
|
color: var(--color-text);
|
||||||
font: inherit;
|
font: inherit;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input:focus {
|
||||||
|
outline: none;
|
||||||
|
border-color: var(--color-brand);
|
||||||
|
box-shadow: var(--focus-ring);
|
||||||
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
border: 0;
|
border: 0;
|
||||||
border-radius: var(--radius-md);
|
border-radius: var(--radius-md);
|
||||||
|
|||||||
@@ -97,24 +97,127 @@
|
|||||||
min-width: 0;
|
min-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
:host ::ng-deep .content .ui-form-control {
|
:host ::ng-deep .content .ui-form-control,
|
||||||
|
:host ::ng-deep .content input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
|
||||||
|
:host ::ng-deep .content select,
|
||||||
|
:host ::ng-deep .content textarea {
|
||||||
|
width: 100%;
|
||||||
|
border: 1px solid var(--color-border);
|
||||||
|
border-radius: var(--radius-sm);
|
||||||
padding: var(--space-2);
|
padding: var(--space-2);
|
||||||
|
background: var(--color-bg-card);
|
||||||
|
color: var(--color-text);
|
||||||
|
font: inherit;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
|
transition:
|
||||||
|
border-color 0.2s ease,
|
||||||
|
box-shadow 0.2s ease,
|
||||||
|
background-color 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
:host ::ng-deep .content .ui-form-control:focus,
|
||||||
|
:host ::ng-deep .content input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
|
||||||
|
:host ::ng-deep .content select:focus,
|
||||||
|
:host ::ng-deep .content textarea:focus {
|
||||||
|
outline: none;
|
||||||
|
border-color: var(--color-brand);
|
||||||
|
box-shadow: var(--focus-ring);
|
||||||
|
}
|
||||||
|
|
||||||
|
:host ::ng-deep .content .ui-form-control:disabled,
|
||||||
|
:host ::ng-deep .content input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):disabled,
|
||||||
|
:host ::ng-deep .content select:disabled,
|
||||||
|
:host ::ng-deep .content textarea:disabled {
|
||||||
|
background: var(--color-surface-muted);
|
||||||
|
cursor: not-allowed;
|
||||||
|
}
|
||||||
|
|
||||||
|
:host ::ng-deep .content select,
|
||||||
:host ::ng-deep .content select.ui-form-control {
|
:host ::ng-deep .content select.ui-form-control {
|
||||||
background-position: right 0.75rem center;
|
appearance: auto;
|
||||||
padding-right: 2.35rem;
|
background-image: none;
|
||||||
|
background-position: initial;
|
||||||
|
background-size: initial;
|
||||||
|
padding-right: var(--space-2);
|
||||||
}
|
}
|
||||||
|
|
||||||
:host ::ng-deep .content .ui-form-caption {
|
:host ::ng-deep .content .ui-form-caption,
|
||||||
|
:host ::ng-deep .content .form-field > span,
|
||||||
|
:host ::ng-deep .content .toolbar-field > span,
|
||||||
|
:host ::ng-deep .content .form-grid label > span,
|
||||||
|
:host ::ng-deep .content .status-editor label,
|
||||||
|
:host ::ng-deep .content .status-editor-field label {
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--color-text-muted);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
:host ::ng-deep .content button,
|
||||||
:host ::ng-deep .content .ui-button {
|
:host ::ng-deep .content .ui-button {
|
||||||
|
border: 0;
|
||||||
|
border-radius: var(--radius-md);
|
||||||
padding: var(--space-2) var(--space-4);
|
padding: var(--space-2) var(--space-4);
|
||||||
|
background: var(--color-brand);
|
||||||
|
color: var(--color-neutral-900);
|
||||||
|
font: inherit;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
|
font-weight: 600;
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
|
cursor: pointer;
|
||||||
|
transition:
|
||||||
|
background-color 0.2s ease,
|
||||||
|
border-color 0.2s ease,
|
||||||
|
color 0.2s ease,
|
||||||
|
opacity 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
:host ::ng-deep .content button:hover:not(:disabled),
|
||||||
|
:host ::ng-deep .content .ui-button:hover:not(:disabled) {
|
||||||
|
background: var(--color-brand-hover);
|
||||||
|
}
|
||||||
|
|
||||||
|
:host ::ng-deep .content button:disabled,
|
||||||
|
:host ::ng-deep .content .ui-button:disabled {
|
||||||
|
opacity: 0.65;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
:host ::ng-deep .content .ui-button--ghost,
|
||||||
|
:host ::ng-deep .content .ghost,
|
||||||
|
:host ::ng-deep .content .btn-secondary,
|
||||||
|
:host ::ng-deep .content .panel-toggle {
|
||||||
|
background: var(--color-bg-card);
|
||||||
|
border: 1px solid var(--color-border);
|
||||||
|
color: var(--color-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
:host ::ng-deep .content .ui-button--ghost:hover:not(:disabled),
|
||||||
|
:host ::ng-deep .content .ghost:hover:not(:disabled),
|
||||||
|
:host ::ng-deep .content .btn-secondary:hover:not(:disabled),
|
||||||
|
:host ::ng-deep .content .panel-toggle:hover:not(:disabled) {
|
||||||
|
background: var(--color-surface-muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
:host ::ng-deep .content .ui-button--danger,
|
||||||
|
:host ::ng-deep .content .btn-delete {
|
||||||
|
background: var(--color-danger-500);
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
:host ::ng-deep .content .ui-button--danger:hover:not(:disabled),
|
||||||
|
:host ::ng-deep .content .btn-delete:hover:not(:disabled) {
|
||||||
|
background: #dc2626;
|
||||||
|
}
|
||||||
|
|
||||||
|
:host ::ng-deep .content .ui-button--ghost-danger {
|
||||||
|
background: var(--color-bg-card);
|
||||||
|
border: 1px solid var(--color-border);
|
||||||
|
color: var(--color-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
:host ::ng-deep .content .ui-button--ghost-danger:hover:not(:disabled) {
|
||||||
|
background: #fff0f0;
|
||||||
|
border-color: #d9534f;
|
||||||
}
|
}
|
||||||
|
|
||||||
:host ::ng-deep .content .ui-checkbox {
|
:host ::ng-deep .content .ui-checkbox {
|
||||||
|
|||||||
@@ -67,10 +67,9 @@
|
|||||||
color: var(--color-text);
|
color: var(--color-text);
|
||||||
text-align: left;
|
text-align: left;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition:
|
transition: background-color 0.18s ease,
|
||||||
background-color 0.18s ease,
|
border-color 0.18s ease,
|
||||||
border-color 0.18s ease,
|
transform 0.18s ease;
|
||||||
transform 0.18s ease;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.category-link:hover,
|
.category-link:hover,
|
||||||
@@ -253,13 +252,12 @@
|
|||||||
.skeleton-card {
|
.skeleton-card {
|
||||||
min-height: 400px;
|
min-height: 400px;
|
||||||
border-radius: 1.1rem;
|
border-radius: 1.1rem;
|
||||||
background:
|
background: linear-gradient(
|
||||||
linear-gradient(
|
|
||||||
110deg,
|
110deg,
|
||||||
rgba(255, 255, 255, 0.7) 8%,
|
rgba(255, 255, 255, 0.7) 8%,
|
||||||
rgba(238, 235, 226, 0.95) 18%,
|
rgba(238, 235, 226, 0.95) 18%,
|
||||||
rgba(255, 255, 255, 0.7) 33%
|
rgba(255, 255, 255, 0.7) 33%
|
||||||
);
|
);
|
||||||
background-size: 220% 100%;
|
background-size: 220% 100%;
|
||||||
animation: skeleton 1.35s linear infinite;
|
animation: skeleton 1.35s linear infinite;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user