2021-03-30 08:48:14 +00:00
|
|
|
import { createGlobalStyle } from "styled-components";
|
|
|
|
|
import { Classes } from "@blueprintjs/core";
|
2021-05-20 12:03:08 +00:00
|
|
|
import { Classes as PopoverClasses } from "@blueprintjs/popover2";
|
2021-07-05 07:12:02 +00:00
|
|
|
import { Layers } from "constants/Layers";
|
2022-03-03 10:56:53 +00:00
|
|
|
import { Colors } from "constants/Colors";
|
2021-03-30 08:48:14 +00:00
|
|
|
|
|
|
|
|
export const PopoverStyles = createGlobalStyle`
|
2021-05-20 12:03:08 +00:00
|
|
|
.${Classes.POPOVER}, .${PopoverClasses.POPOVER2} {
|
2021-03-30 08:48:14 +00:00
|
|
|
box-shadow: 0px 0px 2px rgb(0 0 0 / 20%), 0px 2px 10px rgb(0 0 0 / 10%);
|
|
|
|
|
}
|
2021-05-20 12:03:08 +00:00
|
|
|
.${Classes.POPOVER},
|
|
|
|
|
.${PopoverClasses.POPOVER2},
|
|
|
|
|
.${PopoverClasses.POPOVER2} .${PopoverClasses.POPOVER2_CONTENT},
|
|
|
|
|
.${Classes.POPOVER} .${Classes.POPOVER_CONTENT} {
|
|
|
|
|
border-radius: 0px;
|
|
|
|
|
}
|
2021-05-10 07:44:29 +00:00
|
|
|
.bp3-datepicker {
|
|
|
|
|
.DayPicker {
|
|
|
|
|
min-height: 251px !important ;
|
|
|
|
|
min-width: 233px !important ;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-01-13 13:21:57 +00:00
|
|
|
.onboarding-carousel .${Classes.OVERLAY_CONTENT} {
|
2021-06-11 15:01:32 +00:00
|
|
|
filter: drop-shadow(0px 6px 20px rgba(0, 0, 0, 0.15));
|
|
|
|
|
}
|
2022-03-03 10:56:53 +00:00
|
|
|
.templates-notification .bp3-popover2-arrow-fill {
|
|
|
|
|
fill: ${Colors.SEA_SHELL};
|
|
|
|
|
}
|
2022-01-13 13:21:57 +00:00
|
|
|
.bp3-modal-widget.onboarding-carousel-portal {
|
2021-07-05 07:12:02 +00:00
|
|
|
z-index: ${Layers.help} !important;
|
|
|
|
|
}
|
2021-08-18 11:48:24 +00:00
|
|
|
|
|
|
|
|
.auth-type-dropdown .ads-dropdown-options-wrapper {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2022-03-25 10:43:26 +00:00
|
|
|
.manual-upgrades {
|
|
|
|
|
z-index: 10 !important;
|
|
|
|
|
.manual-upgrades-overlay {
|
|
|
|
|
.bp3-overlay-backdrop {
|
|
|
|
|
opacity: 0.3;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-03-30 08:48:14 +00:00
|
|
|
`;
|