mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #19594 from overleaf/jel-light-touch-table-checkmark
[web] Add new green checkmark to plans light touch redesign GitOrigin-RevId: f6c38e819fdd784ccf39ab09109a33fcd58f23d8
This commit is contained in:
parent
d3ee849415
commit
606f9eaec7
2 changed files with 11 additions and 1 deletions
|
@ -315,7 +315,7 @@ mixin table_cell(feature, plan)
|
||||||
| !{translate(planValue, {}, ['strong'])}
|
| !{translate(planValue, {}, ['strong'])}
|
||||||
else if (feature.value === 'bool')
|
else if (feature.value === 'bool')
|
||||||
if (planValue)
|
if (planValue)
|
||||||
i.fa.fa-check(aria-hidden="true")
|
i.material-symbols.material-symbols-outlined.icon-green-round-background.icon-sm(aria-hidden="true") check
|
||||||
span.sr-only #{translate("feature_included")}
|
span.sr-only #{translate("feature_included")}
|
||||||
else
|
else
|
||||||
span(aria-hidden="true") -
|
span(aria-hidden="true") -
|
||||||
|
|
|
@ -26,3 +26,13 @@
|
||||||
width: 16px !important;
|
width: 16px !important;
|
||||||
height: 16px !important;
|
height: 16px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.icon-round-background {
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-green-round-background {
|
||||||
|
.icon-round-background;
|
||||||
|
background: var(--green-30);
|
||||||
|
color: var(--dark-jungle-green);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue