fix: improve style of report dialog (#1345)
This commit is contained in:
parent
95a68e1fe2
commit
fa57608056
1 changed files with 21 additions and 1 deletions
|
@ -61,17 +61,31 @@
|
||||||
}
|
}
|
||||||
.loading-spinner-container {
|
.loading-spinner-container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
ul {
|
ul {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
max-height: 30vh;
|
max-height: 30vh;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
|
border: 1px solid var(--main-border);
|
||||||
}
|
}
|
||||||
li {
|
li {
|
||||||
padding: 10px 0;
|
padding: 10px 5px;
|
||||||
|
border-top: 1px solid var(--main-border);
|
||||||
|
}
|
||||||
|
li:first-child {
|
||||||
|
border-top: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.recent-statuses label {
|
||||||
|
padding: 10px 5px;
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-line-clamp: 5;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
}
|
}
|
||||||
textarea {
|
textarea {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -87,6 +101,10 @@
|
||||||
.recent-statuses li {
|
.recent-statuses li {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.recent-statuses input {
|
||||||
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
.recent-statuses label {
|
.recent-statuses label {
|
||||||
width: 0;
|
width: 0;
|
||||||
|
@ -95,6 +113,8 @@
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
border-left: 1px solid var(--main-border);
|
||||||
|
padding-left: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.report-flex {
|
.report-flex {
|
||||||
|
|
Loading…
Add table
Reference in a new issue