mirror of
https://github.com/discourse/discourse.git
synced 2025-01-16 13:52:46 +08:00
07e5f8907e
This removes some longstanding Safari iOS positioning hacks and refactors the mobile positioning strategy across Safari, Chrome and Firefox. See PR descriptions for more details. Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com>
33 lines
527 B
SCSS
33 lines
527 B
SCSS
html:not(.anon) #topic-footer-buttons {
|
|
.topic-footer-main-buttons {
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
gap: 0.75rem;
|
|
|
|
.btn,
|
|
.topic-notifications-button .btn,
|
|
.pinned-button .btn {
|
|
font-size: var(--font-up-1-rem);
|
|
}
|
|
|
|
&__actions {
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.d-button-label {
|
|
display: none;
|
|
}
|
|
|
|
.pinned-button,
|
|
.topic-notifications-button {
|
|
.selected-name .name {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.d-icon {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
}
|