52 строки
1001 B
CSS
52 строки
1001 B
CSS
.poll-edit .content label,
|
|
.poll-edit .content .messages-title,
|
|
.poll-edit .content .title {
|
|
color: var(--md-sys-color-on-surface);
|
|
}
|
|
|
|
.poll-edit .content label {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 0;
|
|
}
|
|
|
|
.poll-edit .content .messages-title {
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
.poll-edit .content .title:not(:first-child) {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.poll-edit .content .poll-options {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.poll-edit .content .poll-options > .poll-option {
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.poll-edit .content .poll-options > .poll-option > .option-text {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
}
|
|
|
|
.poll-edit .content .poll-options > .poll-option > .option-action {
|
|
flex-shrink: 0;
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.poll-edit .content .message-settings {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
color: var(--md-sys-color-on-surface);
|
|
}
|
|
|
|
.poll-edit .content .message-settings > * {
|
|
flex-shrink: 0;
|
|
}
|