42 lines
899 B
CSS
42 lines
899 B
CSS
@charset "UTF-8";
|
|
.list-group-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 40px;
|
|
width: 350px;
|
|
padding: 8px 16px;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid #EEEDED;
|
|
border-radius: 1px 1px 0px 0px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 1rem;
|
|
line-height: 1.5rem;
|
|
font-family: var(--ifx-font-family);
|
|
}
|
|
.list-group-item.flush {
|
|
border: none;
|
|
border-bottom: 1px solid #EEEDED;
|
|
}
|
|
.list-group-item.flush.bulletpoint {
|
|
padding: 8px;
|
|
}
|
|
.list-group-item.bulletpoint .list-group-item-content::before {
|
|
content: "•";
|
|
display: inline-block;
|
|
font-size: 1.125rem;
|
|
padding-right: 10px;
|
|
}
|
|
.list-group-item:hover:not(.show) {
|
|
background-color: #EEEDED;
|
|
}
|
|
.list-group-item:active:not(.show) {
|
|
background-color: #0A8276;
|
|
color: #FFFFFF;
|
|
}
|
|
.list-group-item.show {
|
|
display: block;
|
|
height: 88px;
|
|
padding: 16px;
|
|
} |