chore: clean up unimported utility-bar.css and ignore scratch test artifacts
This commit is contained in:
@@ -36,3 +36,5 @@ Thumbs.db
|
||||
# Local application databases, backups, logs, and SQLite sidecars
|
||||
/var/
|
||||
file.json
|
||||
database.sqlite
|
||||
/scratch/
|
||||
|
||||
@@ -1,305 +0,0 @@
|
||||
/* ==========================================================================
|
||||
Detail Utility Bar & Header Navigation (Meez Parity)
|
||||
========================================================================== */
|
||||
|
||||
.application-body .detail-utility {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 30;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
height: 48px;
|
||||
min-height: 48px;
|
||||
padding: 0 28px 0 36px;
|
||||
background: #ffffff;
|
||||
border-bottom: 1px solid #edf0f5;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.application-body .recipe-read-shell .detail-utility,
|
||||
.application-body .ingredient-read-shell .detail-utility {
|
||||
grid-column: 1 / -1;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 30;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
/* Left Context: Back Arrow & Breadcrumbs */
|
||||
.application-body .detail-context {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
height: 48px;
|
||||
}
|
||||
|
||||
.application-body .detail-back {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
color: #050841;
|
||||
border-radius: 4px;
|
||||
text-decoration: none;
|
||||
transition: background-color 0.15s ease;
|
||||
}
|
||||
|
||||
.application-body .detail-back:hover {
|
||||
background: #f1f5fe;
|
||||
}
|
||||
|
||||
.application-body .detail-breadcrumbs {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: var(--meez-font-sans);
|
||||
font-size: 13px;
|
||||
color: #8b93a7;
|
||||
}
|
||||
|
||||
.application-body .detail-breadcrumbs a {
|
||||
color: #8b93a7;
|
||||
text-decoration: none;
|
||||
transition: color 0.15s ease;
|
||||
}
|
||||
|
||||
.application-body .detail-breadcrumbs a:hover {
|
||||
color: #050841;
|
||||
}
|
||||
|
||||
.application-body .detail-breadcrumbs li + li::before {
|
||||
content: "/";
|
||||
margin: 0 6px;
|
||||
color: #95969c;
|
||||
}
|
||||
|
||||
/* Right Tools: Search Bar & + New Menu */
|
||||
.application-body .detail-tools {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
height: 48px;
|
||||
}
|
||||
|
||||
.application-body .detail-search-form {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: min(540px, 38vw);
|
||||
height: 36px;
|
||||
padding: 0 10px 0 12px;
|
||||
background: #ffffff;
|
||||
border: 1px solid #dfe3ec;
|
||||
border-radius: 4px;
|
||||
transition: border-color 0.15s ease, box-shadow 0.15s ease;
|
||||
}
|
||||
|
||||
.application-body .detail-search-form:hover {
|
||||
border-color: #3d5df6;
|
||||
}
|
||||
|
||||
.application-body .detail-search-form:focus-within {
|
||||
border-color: #3d5df6;
|
||||
box-shadow: 0 0 0 2.5px rgba(61, 93, 246, 0.15);
|
||||
}
|
||||
|
||||
.application-body .detail-search-form .search-input-icon {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
color: #95969c;
|
||||
flex-shrink: 0;
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
.application-body .detail-search-form .search-input-icon svg {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.application-body .detail-search-form input.search-field {
|
||||
flex: 1;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
min-height: 0 !important;
|
||||
padding: 0 !important;
|
||||
background: transparent !important;
|
||||
border: 0 !important;
|
||||
outline: 0 !important;
|
||||
box-shadow: none !important;
|
||||
font-family: var(--meez-font-sans);
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
color: #050841;
|
||||
}
|
||||
|
||||
.application-body .detail-search-form input.search-field::placeholder {
|
||||
color: #95969c;
|
||||
}
|
||||
|
||||
.application-body .detail-search-form .search-clear-btn {
|
||||
display: none;
|
||||
place-items: center;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
padding: 0;
|
||||
color: #95969c;
|
||||
background: transparent;
|
||||
border: 0;
|
||||
border-radius: 50%;
|
||||
cursor: pointer;
|
||||
flex-shrink: 0;
|
||||
transition: color 0.12s ease, background-color 0.12s ease;
|
||||
}
|
||||
|
||||
.application-body .detail-search-form .search-clear-btn svg {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.application-body .detail-search-form .search-clear-btn:hover {
|
||||
color: #050841;
|
||||
background-color: #f1f3f8;
|
||||
}
|
||||
|
||||
.application-body .detail-search-form.has-value .search-clear-btn {
|
||||
display: grid;
|
||||
}
|
||||
|
||||
/* + New Menu Button */
|
||||
.application-body .detail-new-menu {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.application-body .detail-new-menu > summary {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
height: 36px;
|
||||
padding: 0 16px;
|
||||
color: #ffffff;
|
||||
background: #3d5df6;
|
||||
border-radius: 100px;
|
||||
font-family: var(--meez-font-sans);
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
list-style: none;
|
||||
white-space: nowrap;
|
||||
transition: background-color 0.15s ease, box-shadow 0.15s ease;
|
||||
}
|
||||
|
||||
.application-body .detail-new-menu > summary::-webkit-details-marker {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.application-body .detail-new-menu > summary:hover {
|
||||
background: #304fdf;
|
||||
}
|
||||
|
||||
.application-body .detail-new-menu > div {
|
||||
position: absolute;
|
||||
top: calc(100% + 6px);
|
||||
right: 0;
|
||||
width: 220px;
|
||||
padding: 6px 0;
|
||||
background: #ffffff;
|
||||
border: 1px solid #dfe3ec;
|
||||
border-radius: 6px;
|
||||
box-shadow: 0 8px 24px rgba(5, 8, 65, 0.12);
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.application-body .detail-new-menu > div a {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
padding: 10px 16px;
|
||||
color: #050841;
|
||||
font-family: var(--meez-font-sans);
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
text-decoration: none;
|
||||
transition: background-color 0.12s ease;
|
||||
}
|
||||
|
||||
.application-body .detail-new-menu > div a:hover {
|
||||
background: #f1f5fe;
|
||||
color: #3d5df6;
|
||||
}
|
||||
|
||||
/* Detail Actions 3-Dots Menu */
|
||||
.application-body .detail-actions-menu {
|
||||
position: relative;
|
||||
z-index: 12;
|
||||
}
|
||||
|
||||
.application-body .detail-actions-menu > summary {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
color: #a5a9c1;
|
||||
border-radius: 50%;
|
||||
cursor: pointer;
|
||||
font-size: 22px;
|
||||
line-height: 1;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.application-body .detail-actions-menu > summary::-webkit-details-marker {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.application-body .detail-actions-menu > summary:hover,
|
||||
.application-body .detail-actions-menu[open] > summary {
|
||||
color: #202962;
|
||||
background: #f1f5fe;
|
||||
}
|
||||
|
||||
.application-body .detail-actions-menu > div {
|
||||
position: absolute;
|
||||
top: 42px;
|
||||
right: 0;
|
||||
width: 200px;
|
||||
padding: 6px 0;
|
||||
background: #ffffff;
|
||||
border: 0;
|
||||
border-radius: 4px;
|
||||
box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.application-body .detail-actions-menu form {
|
||||
width: 100% !important;
|
||||
max-width: 100% !important;
|
||||
flex: none !important;
|
||||
min-width: 0 !important;
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.application-body .detail-actions-menu button {
|
||||
display: block;
|
||||
width: 100% !important;
|
||||
max-width: 100% !important;
|
||||
min-height: 44px;
|
||||
padding: 10px 20px;
|
||||
color: #050841;
|
||||
background: transparent;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
cursor: pointer;
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
text-align: left;
|
||||
white-space: nowrap;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.application-body .detail-actions-menu button:hover {
|
||||
background: #f1f5fe;
|
||||
}
|
||||
Reference in New Issue
Block a user