mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-27 10:35:36 +08:00
40 lines
562 B
SCSS
Vendored
40 lines
562 B
SCSS
Vendored
.title-voting {
|
|
width: 100%;
|
|
float: none;
|
|
max-width: none;
|
|
text-align: inherit;
|
|
|
|
.rtl & {
|
|
float: none;
|
|
}
|
|
}
|
|
|
|
.voting-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.vote-count-wrapper {
|
|
min-width: 70px;
|
|
box-sizing: border-box;
|
|
|
|
// match button height
|
|
min-height: 30px;
|
|
}
|
|
|
|
.vote-button {
|
|
max-width: 10em;
|
|
margin-left: 0.5em;
|
|
margin-top: 0;
|
|
white-space: nowrap;
|
|
|
|
.rtl & {
|
|
margin-left: 0;
|
|
margin-right: 0.5em;
|
|
}
|
|
}
|
|
|
|
.voting-popup-menu {
|
|
// 80px left positioning + 20px .wrap padding
|
|
width: calc(100vw - 100px);
|
|
}
|