Skip to content
Snippets Groups Projects
Commit 8c11d211 authored by vishal padhiyar's avatar vishal padhiyar
Browse files

[FIX] mass_mailing: issue with social media icons


Before this commit:

When we load some themes without installing website the social media icons look
weired and margin between those icons is also weired.

After this commit:

Now when we load mass_mailing themes without installing website the social media
icons same as before and margin between those icon is also same.

Task-3347902

closes odoo/odoo#125527

Signed-off-by: default avatarDavid Monjoie (dmo) <dmo@odoo.com>
parent c924434d
No related branches found
No related tags found
No related merge requests found
......@@ -103,6 +103,30 @@ div.col:not([align]) {
width: $width;
height: $height;
}
$size: 3rem;
&.rounded-circle,
&.rounded,
&.rounded-0,
&.rounded-leaf,
&.img-thumbnail,
&.shadow {
display: inline-block;
vertical-align: middle;
text-align: center;
// fa-1x is not ouput
width: $size;
height: $size;
line-height: $size;
@for $i from 2 through 5 {
&.fa-#{$i}x {
width: $size + $i;
height: $size + $i;
line-height: $size + $i;
}
}
}
}
// Background Images
.oe_img_bg {
......
......@@ -854,7 +854,7 @@
<a style="margin-left:10px" aria-label="Twitter" title="Twitter" href="https://twitter.com/Odoo">
<span class="fa fa-twitter rounded bg-black" style="color: rgb(255, 187, 0) !important;"/>
</a>&amp;nbsp;&amp;nbsp;
<a aria-label="Instagram" title="Instagram" href="https://www.instagram.com/explore/tags/odoo/">
<a style="margin-left:10px" aria-label="Instagram" title="Instagram" href="https://www.instagram.com/explore/tags/odoo/">
<span class="fa fa-instagram rounded bg-black" style="color: rgb(255, 187, 0) !important;"/>
</a>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment