browser/components/aiwindow/ui/content/ai-window-overrides.css
Propagation: No Props Found
Back to Home/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
:root {
--smartwindow-brand-accent: light-dark(var(--color-violet-90), var(--color-violet-40));
--box-shadow-color-lighter-layer-1: color-mix(in srgb, var(--color-violet-50) 15%, transparent);
--box-shadow-color-lighter-layer-2: color-mix(in srgb, var(--color-violet-50) 25%, transparent);
--smartwindow-shadow: var(--box-shadow-level-2);
}
body {
display: flex;
flex-direction: column;
flex: 1;
width: 100%;
}
/* Override the 500px min-width from browser-shared.css when in narrow
* viewports (e.g., the AI sidebar). Without this, content gets clipped.
* See Bug 2008938.
*/
@media (max-width: 500px) {
:root {
--window-min-width: 0;
}
}
Back to Home