2020-01-07 06:32:14 +08:00
|
|
|
.core_ResultPopup {
|
2020-01-07 04:09:44 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
outline: none;
|
|
|
|
position: fixed;
|
|
|
|
background-color: var(--bg-color);
|
|
|
|
border: var(--border);
|
|
|
|
padding: 10px;
|
|
|
|
box-shadow: black 0 0 10px -2px;
|
|
|
|
}
|
|
|
|
|
2020-01-07 06:32:14 +08:00
|
|
|
.core_ResultPopup:focus-within {
|
2020-01-07 04:09:44 +08:00
|
|
|
border: var(--border-focus);
|
|
|
|
}
|
|
|
|
|
2020-01-07 06:32:14 +08:00
|
|
|
.core_ResultPopup h1 {
|
2020-01-07 04:09:44 +08:00
|
|
|
font-size: 20px;
|
|
|
|
margin: 0 0 10px 0;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
border-bottom: var(--border);
|
|
|
|
}
|
|
|
|
|
2020-01-07 06:32:14 +08:00
|
|
|
.core_ResultPopup_description {
|
2020-01-07 04:09:44 +08:00
|
|
|
user-select: text;
|
|
|
|
cursor: text;
|
|
|
|
}
|
|
|
|
|
2020-01-07 06:32:14 +08:00
|
|
|
.core_ResultPopup_body {
|
2020-01-07 04:09:44 +08:00
|
|
|
user-select: text;
|
|
|
|
overflow: auto;
|
|
|
|
margin: 4px 0;
|
|
|
|
}
|
|
|
|
|
2020-01-07 06:32:14 +08:00
|
|
|
.core_ResultPopup_body ul {
|
2020-01-07 04:09:44 +08:00
|
|
|
cursor: text;
|
|
|
|
}
|
|
|
|
|
2020-01-07 06:32:14 +08:00
|
|
|
.core_ResultPopup_footer {
|
2020-01-07 04:09:44 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|