mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 19:04:52 +00:00
- Ability to manually mark a quote as invoiced (weird css fix for this, we can remove the custom css if we make the parent button just a dropdown, but don't want to introduce extra clicks) - When converting a quote to an invoice, show the new invoice number in the quote history - Quotes can now be sent from the main Send dropdown, instead of having to use the send button in the options menu / main quotes.php page
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;
|
|
}
|