2019-04-23 14:19:52 +00:00
|
|
|
.list-like-table {
|
2019-12-05 19:09:31 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-14 08:32:16 +00:00
|
|
|
|
|
|
|
.list-style-check-green {
|
|
|
|
list-style-image: url('../../../public/img/fa-check-green.svg');
|
|
|
|
}
|
2022-11-17 15:29:50 +00:00
|
|
|
|
|
|
|
.icon-bullet-list {
|
2022-11-17 15:31:00 +00:00
|
|
|
@icon-bullet-list-icon-size: 30px;
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
2022-12-05 15:32:08 +00:00
|
|
|
margin-top: 30px;
|
2022-11-17 15:31:00 +00:00
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
|
2022-11-17 15:29:50 +00:00
|
|
|
&.checked {
|
2022-11-17 15:31:00 +00:00
|
|
|
li {
|
2022-12-05 15:31:29 +00:00
|
|
|
background: url('../../../public/img/material-icons/circle-green-24.svg')
|
2022-11-17 15:31:00 +00:00
|
|
|
no-repeat left top;
|
|
|
|
background-size: @icon-bullet-list-icon-size @icon-bullet-list-icon-size;
|
|
|
|
min-height: @icon-bullet-list-icon-size;
|
|
|
|
margin-bottom: 18px;
|
|
|
|
padding-left: 42px;
|
|
|
|
&:first-line {
|
|
|
|
line-height: @icon-bullet-list-icon-size;
|
|
|
|
}
|
|
|
|
}
|
2022-11-17 15:29:50 +00:00
|
|
|
}
|
|
|
|
}
|
2023-02-21 15:24:28 +00:00
|
|
|
|
|
|
|
.list-item-with-margin-bottom {
|
|
|
|
margin-bottom: @line-height-computed;
|
|
|
|
}
|