.option {
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
width: 100%;
|
height: auto;
|
}
|
|
:global(.information-table) {
|
.hover {
|
display: none;
|
}
|
}
|
:global(.information-table .row--hover) {
|
.hover {
|
display: block;
|
}
|
}
|
|
:global(.information-table) {
|
.hoverStatic {
|
display: block;
|
}
|
}
|
:global(.information-table .row--hover) {
|
.hoverStatic {
|
display: none;
|
}
|
}
|
.icon {
|
// width:
|
color: #a8abb2;
|
margin-right: -2px;
|
margin-top: -1px;
|
}
|
|
.select {
|
display: flex;
|
align-items: center;
|
position: relative;
|
box-sizing: border-box;
|
cursor: pointer;
|
text-align: left;
|
font-size: 14px;
|
padding: 4px 12px;
|
gap: 6px;
|
min-height: 32px;
|
line-height: 24px;
|
border-radius: var(--cs-border-radius-base);
|
background-color: var(--cs-fill-color-blank);
|
transition: var(--cs-transition-duration);
|
box-shadow: 0 0 0 1px var(--cs-border-color) inset;
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
}
|