mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-14 10:34:06 +02:00
* Added footer with blank links to be filled
* Cookie consent to match V1
* Made scrolling work on tool search results
* Made scrolling the same on tool search, tool picker and workbench
* Cleaned up height variables, view height only used at workbench level
<img width="1525" height="1270"
alt="{F3C1B15F-A4BE-4DF0-A5A8-92D2A3B14443}"
src="https://github.com/user-attachments/assets/0c23fe35-9973-45c0-85af-0002c5ff58d2"
/>
<img width="1511" height="1262"
alt="{4DDD51C0-4BC5-4E9F-A4F2-E5F49AF5F5FD}"
src="https://github.com/user-attachments/assets/2596d980-0312-4cd7-ad34-9fd3a8d1869e"
/>
---------
Co-authored-by: Connor Yoh <[email protected]>
Co-authored-by: James Brunton <[email protected]>
78 lines
1.6 KiB
CSS
78 lines
1.6 KiB
CSS
.tool-picker-scrollable {
|
|
overflow-y: auto !important;
|
|
overflow-x: hidden !important;
|
|
}
|
|
|
|
.tool-picker-scrollable::-webkit-scrollbar {
|
|
width: 0.375rem;
|
|
}
|
|
|
|
.tool-picker-scrollable::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
.tool-picker-scrollable::-webkit-scrollbar-thumb {
|
|
background-color: var(--mantine-color-gray-4);
|
|
border-radius: 0.1875rem;
|
|
}
|
|
|
|
.tool-picker-scrollable::-webkit-scrollbar-thumb:hover {
|
|
background-color: var(--mantine-color-gray-5);
|
|
}
|
|
|
|
.search-input {
|
|
margin: 1rem;
|
|
}
|
|
|
|
.tool-subcategory-title {
|
|
text-transform: uppercase;
|
|
padding-bottom: 0.5rem;
|
|
font-size: 0.75rem;
|
|
color: var(--tool-subcategory-text-color);
|
|
/* Align the text with tool labels to account for icon gutter */
|
|
padding-left: 1rem;
|
|
}
|
|
|
|
/* New row-style subcategory header with rule */
|
|
.tool-subcategory-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.tool-subcategory-row-title {
|
|
text-transform: uppercase;
|
|
font-weight: 600;
|
|
font-size: 0.75rem;
|
|
color: var(--tool-subcategory-text-color);
|
|
white-space: nowrap;
|
|
overflow: visible;
|
|
}
|
|
|
|
.tool-subcategory-row-rule {
|
|
height: 1px;
|
|
background-color: var(--tool-subcategory-rule-color);
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
/* Compact tool buttons */
|
|
.tool-button {
|
|
font-size: 0.875rem; /* default 1rem - 0.125rem? We'll apply exact -0.25rem via calc below */
|
|
padding-top: 0.375rem;
|
|
padding-bottom: 0.375rem;
|
|
}
|
|
|
|
.tool-button .mantine-Button-label {
|
|
font-size: .85rem;
|
|
}
|
|
|
|
.tool-button-icon {
|
|
font-size: 1rem;
|
|
line-height: 1;
|
|
}
|
|
|
|
.search-input-container {
|
|
margin-top: 0.5rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|