diff options
Diffstat (limited to 'addons/web/static/src/scss/data_export.scss')
| -rw-r--r-- | addons/web/static/src/scss/data_export.scss | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/addons/web/static/src/scss/data_export.scss b/addons/web/static/src/scss/data_export.scss new file mode 100644 index 00000000..f52bcf10 --- /dev/null +++ b/addons/web/static/src/scss/data_export.scss @@ -0,0 +1,53 @@ +.o_web_client .o_export { + padding: 20px; + .o-export-panel { + height: 100%; + } + .o_left_panel { + padding-right: 10px; + flex-flow: column nowrap; + height: 100%; + .o_left_field_panel { + flex: 1; + overflow: auto; + } + .o_export_tree_item { + cursor: pointer; + position: relative; + padding-left: 20px; + &.o_selected > .o_tree_column { + background-color: $o-brand-odoo; + color: white; + } + .o_expand_parent { + @include o-position-absolute($top: 4px, $left: 5px); + font-size: 10px; + } + .o_required { + border-bottom: 2px solid $o-main-text-color; + } + } + } + + .o_right_panel { + padding-left: 10px; + flex-flow: column nowrap; + height: 100%; + .o_save_list { + display: none; + } + .o_right_field_panel { + flex: 1; + overflow: auto; + .o_short_field { + cursor: ns-resize; + } + .o-field-placeholder { + border: 1px dashed $o-brand-primary; + } + .o_remove_field { + cursor: pointer; + } + } + } +} |
