From eadb83779e8f02dde4010e5d24ef7c5236fe982e Mon Sep 17 00:00:00 2001 From: git_admin Date: Mon, 27 Apr 2026 08:44:30 +0000 Subject: [PATCH] Tower: upload cetmix_tower_server 16.0.2.2.9 (via marketplace) --- .../ace_variables/ace_variables.scss | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 addons/cetmix_tower_server/static/src/components/ace_variables/ace_variables.scss diff --git a/addons/cetmix_tower_server/static/src/components/ace_variables/ace_variables.scss b/addons/cetmix_tower_server/static/src/components/ace_variables/ace_variables.scss new file mode 100644 index 0000000..068e05d --- /dev/null +++ b/addons/cetmix_tower_server/static/src/components/ace_variables/ace_variables.scss @@ -0,0 +1,44 @@ +// Custom styles ONLY for AceCommandField - more specific selectors +.o_field_widget.o_field_ace_tower { + display: block !important; +} + +.o_field_widget[data-field-name] .o_field_ace.ace-command-field { + min-height: 200px !important; + height: auto !important; + width: 100% !important; + display: block !important; + + .ace_editor { + min-height: 200px !important; + height: auto !important; + width: 100% !important; + border: 1px solid #ced4da; + border-radius: 4px; + display: block !important; + } + + .ace_content { + min-height: 200px !important; + width: 100% !important; + } + + .ace_scroller { + width: 100% !important; + // Remove any scroll restrictions that might affect standard ACE + overflow: auto !important; + } +} + +// Custom autocomplete popup styles +.ace-autocomplete-popup { + .ace-autocomplete-item { + &:hover { + background-color: #e6f3ff !important; + } + + &:last-child { + border-bottom: none !important; + } + } +}