Replace round markers with svg image

This commit is contained in:
Svetlana Maleeva 2022-07-11 10:31:28 +03:00
parent 2751d38a19
commit ab46b03485
2 changed files with 22 additions and 5 deletions

View File

@ -4132,23 +4132,35 @@ table.table_portslist {
}
span.yes, span.no {
width: 10px;
/*width: 10px;
height: 10px;
display: inline-block;
margin: 0 auto;
.borderRadius(10px);
vertical-align: middle;
vertical-align: middle;*/
background-image: url(/images/faq_check_icons.svg);
background-repeat: no-repeat;
content: '';
display: inline-block;
height: 24px;
margin-top: -4px;
position: relative;
width: 24px;
vertical-align: middle;
&.yes {
background-color: @lightGrayTextColor;
/*background-color: @lightGrayTextColor;*/
background-position: 100% 0;
}
&.no {
background-color: #dedede;
/*background-color: #dedede;*/
background-position: -48px 0;
}
&.new_language:after, &.comsoon:after {
margin: -11px 0 0 17px;
/*margin: -11px 0 0 17px;*/
margin: 0 0 0 23px;
line-height: 1.3em;
font-size: 9px;
}

View File

@ -0,0 +1,5 @@
<svg width="120" height="25" viewBox="0 0 120 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M66 12C66 12.5523 65.5523 13 65 13H55C54.4477 13 54 12.5523 54 12V12C54 11.4477 54.4477 11 55 11H65C65.5523 11 66 11.4477 66 12V12Z" fill="#444444"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 17.002C13 17.5543 12.5523 18.002 12 18.002C11.4477 18.002 11 17.5543 11 17.002V13.0014H7C6.44772 13.0014 6 12.5536 6 12.0013C6 11.449 6.44772 11.0012 7 11.0012H11V7.00067C11 6.44839 11.4477 6.00067 12 6.00067C12.5523 6.00067 13 6.44839 13 7.00067V11.0012H17C17.5523 11.0012 18 11.449 18 12.0013C18 12.5536 17.5523 13.0014 17 13.0014H13V17.002Z" fill="#444444"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M112.455 7.45493C112.665 7.24684 112.948 7.12973 113.244 7.12891C113.54 7.1281 113.824 7.24364 114.035 7.45057C114.246 7.6575 114.367 7.93919 114.372 8.23473C114.377 8.53028 114.265 8.81593 114.062 9.02993L108.074 16.5149C107.971 16.6258 107.846 16.7147 107.708 16.7765C107.57 16.8382 107.421 16.8715 107.27 16.8743C107.119 16.8771 106.968 16.8494 106.828 16.7928C106.688 16.7362 106.561 16.6519 106.454 16.5449L102.486 12.5759C102.376 12.4729 102.287 12.3487 102.225 12.2107C102.164 12.0727 102.131 11.9238 102.128 11.7727C102.126 11.6217 102.153 11.4716 102.21 11.3315C102.266 11.1915 102.351 11.0642 102.457 10.9574C102.564 10.8505 102.692 10.7663 102.832 10.7097C102.972 10.6532 103.122 10.6254 103.273 10.628C103.424 10.6307 103.573 10.6638 103.711 10.7253C103.849 10.7867 103.973 10.8754 104.076 10.9859L107.217 14.1254L112.427 7.48793C112.436 7.47631 112.446 7.46529 112.457 7.45493H112.455Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB