Stirling-PDF/frontend/src/styles/cookieconsent.css
ConnorYoh eecc410b77
Basic footer structure and Cookie Consent (#4320)
* 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 <connor@stirlingpdf.com>
Co-authored-by: James Brunton <jbrunton96@gmail.com>
2025-08-29 13:01:46 +00:00

59 lines
1.2 KiB
CSS

/* Cookie Consent Modal Styling - Ensure proper z-index */
/* Ensure cookie consent appears above everything */
#cc-main {
z-index: 999999 !important;
}
/* Additional styling if needed */
.cm-wrapper,
.pm-wrapper {
z-index: 999999 !important;
}
/* Dark mode styling */
.cc--darkmode .cm {
background: #2d2d2d !important;
color: #ffffff !important;
border-top: 1px solid #444 !important;
}
.cc--darkmode .pm {
background: #2d2d2d !important;
color: #ffffff !important;
}
.cc--darkmode .pm-overlay {
background: rgba(0, 0, 0, 0.7) !important;
}
/* Button styling */
.cc--darkmode .cm__btn {
background: #444 !important;
color: #ffffff !important;
border: 1px solid #666 !important;
}
.cc--darkmode .cm__btn:hover {
background: #555 !important;
}
.cc--darkmode .pm__btn {
background: #444 !important;
color: #ffffff !important;
border: 1px solid #666 !important;
}
.cc--darkmode .pm__btn:hover {
background: #555 !important;
}
/* Ensure ScrollArea doesn't interfere */
.mantine-ScrollArea-root {
position: relative !important;
}
/* Override any potential conflicts */
[data-mantine-color-scheme="dark"] #cc-main {
color: #ffffff !important;
}