mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-06 15:49:01 +02:00
2c8946bb24
[web] New CMS element: `Element | Icon Bullet List` GitOrigin-RevId: eda8a9a4217cd264cbd9621f817399fd60f23d84
34 lines
619 B
Plaintext
34 lines
619 B
Plaintext
.list-like-table {
|
|
border: 1px solid @hr-border;
|
|
border-radius: @border-radius-base;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0 @padding-sm;
|
|
li {
|
|
border-top: 1px solid @hr-border;
|
|
div {
|
|
display: table-cell;
|
|
float: none;
|
|
vertical-align: middle;
|
|
}
|
|
.row {
|
|
display: table;
|
|
margin: 0;
|
|
width: 100%;
|
|
}
|
|
&:first-child {
|
|
border-top: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.list-style-check-green {
|
|
list-style-image: url('../../../public/img/fa-check-green.svg');
|
|
}
|
|
|
|
.icon-bullet-list {
|
|
&.checked {
|
|
list-style-image: url('../../../public/img/fa-check-green.svg');
|
|
}
|
|
}
|