From 234a70b83be79039f710434e1b2cd59da6fc8144 Mon Sep 17 00:00:00 2001 From: Elisabeth Dickinson Date: Wed, 3 Mar 2021 10:33:52 +0100 Subject: [PATCH] [DESIGN] hide search matches X --- extensions/odoo_theme/static/style.scss | 30 +++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/extensions/odoo_theme/static/style.scss b/extensions/odoo_theme/static/style.scss index 2fddd4352..ff05678f4 100644 --- a/extensions/odoo_theme/static/style.scss +++ b/extensions/odoo_theme/static/style.scss @@ -67,6 +67,36 @@ header.o_main_header{ color: $gray; } } + + .highlight-link { + cursor: pointer; + margin-bottom: 0; + display: inline-flex; + align-items: center; + a { + color: transparent; + text-decoration: none; + transition: .3s; + transition-delay: .5s; + + &:before { + content:'\00d7'; + display: inline-block; + font-weight: $fw_bold; + @include font-size($font-size-base); + width: 21px; + border-radius: 30px; + line-height: 21px; + background: $gray-light; + color: $white; + text-align: center; + margin: auto .5rem; + } + } + a:hover { + color: $gray + } + } .o_languages { width: 120px; }