diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/web/static/src/scss/model_field_selector.scss | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/web/static/src/scss/model_field_selector.scss')
| -rw-r--r-- | addons/web/static/src/scss/model_field_selector.scss | 134 |
1 files changed, 134 insertions, 0 deletions
diff --git a/addons/web/static/src/scss/model_field_selector.scss b/addons/web/static/src/scss/model_field_selector.scss new file mode 100644 index 00000000..46d7d0b2 --- /dev/null +++ b/addons/web/static/src/scss/model_field_selector.scss @@ -0,0 +1,134 @@ + +.o_field_selector { + position: relative; + + > .o_field_selector_value { + display: flex; + flex-flow: row wrap; + align-items: center; + height: 100%; + min-height: 20px; // needed when there is no value in it and used standalone + &:active, &:focus, &:active:focus { + outline: none; + } + + > .o_field_selector_chain_part { + padding: 0px 1px; + border: 1px solid darken($o-brand-lightsecondary, 10%); + background: $o-brand-lightsecondary; + margin-bottom: 1px; + } + > i { + align-self: center; + margin: 0 2px; + font-size: 10px; + } + } + > .o_field_selector_controls { + @include o-position-absolute(0, 0, 1px); + display: flex; + align-items: center; + cursor: pointer; + } + + &.o_edit_mode { + > .o_field_selector_controls::after { + @include o-caret-down; + } + + > .o_field_selector_popover { + $o-field-selector-arrow-height: 7px; + @include o-position-absolute($top: 100%, $left: 0); + z-index: 1051; + width: 265px; + margin-top: $o-field-selector-arrow-height; + background: white; + box-shadow: 0 3px 10px rgba(0,0,0,.4); + + &:focus { + outline: none; + } + + .o_field_selector_popover_header { + color: white; + background: theme-color('primary'); + font-weight: bold; + padding: 5px 0 5px 0.4em; + + .o_field_selector_title { + width: 100%; + @include o-text-overflow; + padding: 0px 35px; + text-align: center; + } + .o_field_selector_search { + padding-right: 0.4rem; + > .o_input { + padding: 5px 0.4rem; + } + } + .o_field_selector_popover_option { + @include o-position-absolute($top: 0); + padding: 8px; + + &.o_field_selector_prev_page { + left: 0; + } + &.o_field_selector_close { + right: 0; + } + &:hover { + background: darken(theme-color('primary'), 10%); + } + } + &:before { + @include o-position-absolute($top: -$o-field-selector-arrow-height, $left: $o-field-selector-arrow-height); + content: ""; + border-left: $o-field-selector-arrow-height solid rgba(0, 0, 0, 0); + border-right: $o-field-selector-arrow-height solid rgba(0, 0, 0, 0); + border-bottom: $o-field-selector-arrow-height solid theme-color('primary'); + } + } + .o_field_selector_popover_body { + .o_field_selector_page { + position: relative; + max-height: 320px; + overflow: auto; + margin: 0; + padding: 0; + + > .o_field_selector_item { + list-style: none; + position: relative; + padding: 5px 0 5px 0.4em; + cursor: pointer; + font-family: Arial; + font-size: 13px; + color: #444; + border-bottom: 1px solid #eee; + &.active { + background: #f5f5f5; + } + .o_field_selector_item_title { + font-size: 12px; + } + .o_field_selector_relation_icon { + @include o-position-absolute($top: 0, $right: 0, $bottom: 0); + display: flex; + align-items: center; + padding: 10px; + } + } + } + } + .o_field_selector_popover_footer { + background: theme-color('primary'); + padding: 5px 0.4em; + + > input { + width: 100%; + } + } + } + } +} |
