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/website_sale_comparison/static/src/scss | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/website_sale_comparison/static/src/scss')
| -rw-r--r-- | addons/website_sale_comparison/static/src/scss/website_sale_comparison.scss | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/addons/website_sale_comparison/static/src/scss/website_sale_comparison.scss b/addons/website_sale_comparison/static/src/scss/website_sale_comparison.scss new file mode 100644 index 00000000..204d9d1b --- /dev/null +++ b/addons/website_sale_comparison/static/src/scss/website_sale_comparison.scss @@ -0,0 +1,65 @@ +.o_product_feature_panel { + position: fixed; + bottom: 0; + left: 50%; + transform: translateX(-50%); + z-index:10; + border-top-left-radius: 10px; + border-top-right-radius: 10px; + border-bottom: 0px; + padding: 10px 20px; + text-align: center; + border: 2px solid theme-color('primary'); + border-bottom: 0px; + background-color: white; + opacity: 0.95; + + .o_product_panel { + position: relative; + .o_product_panel_header { + margin: 0 10px 0 10px; + cursor: pointer; + .o_product_icon { + margin-right: 5px; + } + .o_product_text { + text-transform: uppercase; + vertical-align: middle; + font-size: 16px; + } + .o_product_circle { + vertical-align: 6px; + padding: 0 3px; + line-height: 14px; + } + } + .o_product_panel_content { + display: none !important; + } + } +} + +.oe_website_sale { + .product_summary > *{ + display: block; + margin: 15px 0 15px 0; + } + .table-comparator { + .o_product_comparison_collpase { + margin-right: 8px; + } + } + + div.css_not_available .o_add_compare_dyn { + display: none; + } + + .o_comparelist_remove { + @include o-position-absolute($top: 0, $right: 0.5rem); + } + + .o_ws_compare_image { + vertical-align: middle; + } +} + |
