ToolJet/frontend/src/_styles/popover.scss
NishidhJain11 fb7c751a34
Feat/AI modularisation (#13142)
* fix deps

* Modularisation changes for Build with AI feature

* New app loading UI for Build with AI feature & added animation for chat messages

* Fix Error using AI feature

* add missing services and logic

* fix app gen

* update submodules

* EE frontend submodule updated

* update submodules

* EE frontend submodule updated post sync

* Added Artifact Preview component to ee moddules list

* Updated ai slice code

* app gen changes

* Resolved fix with AI bugs

* Resolved AI Copilot bugs

* app gen changes and query fixes

* fix query generation bugs

* update copilot

* Resolved ChatMode dropdown & popover bug fix

* Resolved PR suggestions & PreviewBox component in CE edition

* Synced frontend/ee with main

* Synced server/ee with main branch

* Enhance submodule checkout process to handle branch existence and fallback to main (#13218)

* Enhance submodule checkout process to handle branch existence and fallback to main

* Improve submodule checkout process to handle branch validation and fallback to main

* chore: Comment out Node.js setup, dependency installation, and build steps in cloud frontend workflow

* refactor: Enhance submodule checkout process to include submodule name in logs

* Update submodule checkout process to use the correct submodule name extraction method

* fix: Update submodule checkout script to use correct submodule path variable

* Improve submodule checkout process to correctly handle branch names and fallback to main

* chore: Uncomment Node.js setup, dependency installation, and build steps in cloud frontend workflow

* fix: Update branch checkout logic to use correct syntax and improve fallback handling

* fix: Update git checkout command to use -B flag for branch creation

* fix: Improve submodule checkout process to explicitly fetch branch ref before checkout

* fix: Enhance submodule checkout process with improved branch validation and error handling

* fix: Improve branch checkout logic by enhancing fetch command and validating branch existence

* fix: Enhance manual Git checkout process with improved fetch and error handling

* fix: Restore Node.js setup, dependency installation, and Netlify deployment steps in workflow

* 🔄 chore: update submodules to latest main after auto-merge

* Took sync of fix/appbuilder-02 in frontend/ee

---------

Co-authored-by: Kartik Gupta <gupta.kartik18kg@gmail.com>
Co-authored-by: Adish M <44204658+adishM98@users.noreply.github.com>
Co-authored-by: adishM98 Bot <adish.madhu@gmail.com>
2025-07-07 15:11:58 +05:30

64 lines
No EOL
1.2 KiB
SCSS

.PopoverContent {
outline: none;
border-radius: 4px;
padding: 12px;
width: 350px;
will-change: transform, opacity;
box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
border-radius: 0 8px 8px 0;
overflow: auto;
background-color: var(--base) !important;
border-right: 2px solid var(--slate6, #313538);
&.tooljetai {
width: 440px;
overflow: auto !important;
}
select {
cursor: pointer;
}
}
.PopoverContent.global-settings-popover-content {
will-change: initial;
}
.PopoverArrow {
fill: white;
}
.PopoverClose {
font-family: inherit;
border-radius: 100%;
border: 0;
height: 25px;
width: 25px;
display: inline-flex;
align-items: center;
justify-content: center;
position: absolute;
top: 5px;
right: 5px;
}
.PopoverContent.dark {
&::-webkit-scrollbar {
width: 0;
background: transparent;
}
}
div[data-radix-popper-content-wrapper]:has(.PopoverContent.drawer-height) {
margin-top: 48px;
margin-left: 47px !important;
transform: none !important;
z-index: 2 !important;
}
@-moz-document url-prefix() {
div[data-radix-popper-content-wrapper] {
z-index: 100 !important;
left: 1px !important;
}
}