mirror of https://github.com/itflow-org/itflow
16 lines
383 B
CSS
16 lines
383 B
CSS
/*!
|
|
* AdminLTE 3.2.0 Specific Dropdown Fix
|
|
* Targets .fix-quote-dropdown only
|
|
* Prevents alignment bugs in split button dropdowns going too far left
|
|
* (ChatGPT)
|
|
*/
|
|
|
|
.fix-quote-dropdown .dropdown-menu {
|
|
left: auto !important;
|
|
right: 0 !important;
|
|
top: calc(100% + 0.25rem) !important;
|
|
transform: none !important;
|
|
min-width: max-content;
|
|
z-index: 1050;
|
|
}
|