Compare commits
2 Commits
2bed3b6438
...
15ad26c505
| Author | SHA1 | Date | |
|---|---|---|---|
| 15ad26c505 | |||
| e529f101b7 |
@ -88,7 +88,7 @@
|
||||
</div>
|
||||
}
|
||||
|
||||
@if (project.categories?.length) {
|
||||
@if (project.categories.length) {
|
||||
<div class="detail-section">
|
||||
<h4>Categories</h4>
|
||||
<div class="tag-list">
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
max-height: 80vh;
|
||||
overflow-y: auto;
|
||||
background: var(--eerie-black-2, #1e1e1e);
|
||||
border: 1px solid var(--jet, #383838);
|
||||
border: 1.2px solid hsla(45, 100%, 72%, 0.45);
|
||||
border-radius: 14px;
|
||||
}
|
||||
|
||||
|
||||
@ -1,10 +1,18 @@
|
||||
/* Dynamic form spacing and material tweaks to match popup theme */
|
||||
.full-width { width: 100%; display: block; }
|
||||
.full-width {
|
||||
width: 100%;
|
||||
display: block;
|
||||
}
|
||||
|
||||
mat-form-field.full-width { margin-bottom: 12px; }
|
||||
mat-form-field.full-width {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
/* Reduce label size slightly to fit popup */
|
||||
mat-form-field .mat-form-field-label { font-size: 0.95rem; color: var(--light-gray-70); }
|
||||
mat-form-field .mat-form-field-label {
|
||||
font-size: 0.95rem;
|
||||
color: var(--light-gray-70);
|
||||
}
|
||||
|
||||
/* Make input text contrast better */
|
||||
.mat-input-element,
|
||||
@ -15,10 +23,16 @@ textarea.mat-mdc-input-element,
|
||||
}
|
||||
|
||||
/* Smaller helper/hint text */
|
||||
.mat-hint { color: var(--light-gray-70); font-size: 0.85rem; }
|
||||
.mat-hint {
|
||||
color: var(--light-gray-70);
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
/* Error styling consistent with theme */
|
||||
mat-error { color: #ff8a80; font-size: 0.9rem; }
|
||||
mat-error {
|
||||
color: #ff8a80;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
/* Outline border always visible, highlight on focus */
|
||||
::ng-deep .mdc-notched-outline__leading,
|
||||
@ -34,8 +48,18 @@ mat-error { color: #ff8a80; font-size: 0.9rem; }
|
||||
}
|
||||
|
||||
/* Make array item fields inline on larger screens */
|
||||
.array-item-fields { display: flex; gap: 12px; align-items: baseline; flex-wrap: wrap; }
|
||||
.array-item-fields mat-form-field { flex: 1 1 auto; margin-bottom: 0; min-width: 120px; }
|
||||
.array-item-fields {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
align-items: baseline;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.array-item-fields mat-form-field {
|
||||
flex: 1 1 auto;
|
||||
margin-bottom: 0;
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
/* Stack array item fields vertically on small screens */
|
||||
@media (max-width: 580px) {
|
||||
@ -83,6 +107,7 @@ mat-error { color: #ff8a80; font-size: 0.9rem; }
|
||||
|
||||
/* Force material label/input colors to match dark popup theme (covers MDC + legacy classes) */
|
||||
.themed-popup {
|
||||
|
||||
::ng-deep .mat-form-field-label,
|
||||
::ng-deep .mat-mdc-floating-label,
|
||||
::ng-deep .mat-form-field .mat-form-field-label {
|
||||
@ -107,6 +132,7 @@ mat-error { color: #ff8a80; font-size: 0.9rem; }
|
||||
opacity: 1 !important;
|
||||
}
|
||||
}
|
||||
|
||||
.form-array {
|
||||
margin-bottom: 20px;
|
||||
padding: 10px 0;
|
||||
|
||||
@ -507,9 +507,9 @@
|
||||
.mat-mdc-text-field.mat-mdc-focused .mat-mdc-notched-outline .mat-mdc-notched-outline-path {
|
||||
stroke: var(--orange-yellow-crayola) !important;
|
||||
border-color: var(--orange-yellow-crayola) !important;
|
||||
|
||||
}
|
||||
/* Additional overrides: set MDC theme variables and force a gold focus ring */
|
||||
.themed-popup {
|
||||
// .themed-popup {
|
||||
/* Override MDC primary color used by many Material components */
|
||||
--mdc-theme-primary: var(--orange-yellow-crayola);
|
||||
--mdc-theme-on-primary: var(--smoky-black);
|
||||
@ -529,9 +529,8 @@
|
||||
.mat-mdc-text-field.mat-mdc-focused .mat-mdc-notched-outline-path {
|
||||
stroke: var(--orange-yellow-crayola) !important;
|
||||
}
|
||||
}
|
||||
box-shadow: 0 6px 18px rgba(36,26,18,0.12) !important;
|
||||
}
|
||||
// }
|
||||
// box-shadow: 0 6px 18px rgba(36,26,18,0.12) !important;
|
||||
}
|
||||
|
||||
.contacts-list {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user