Prevent action buttons from wrapping in Safari

This commit is contained in:
Lim Chee Aun 2023-02-25 14:34:08 +08:00
parent 7b66b832d5
commit 2b25fc67cf
2 changed files with 4 additions and 1 deletions

View file

@ -26,6 +26,9 @@
#shortcuts-settings-container .shortcuts-list li .shortcut-text { #shortcuts-settings-container .shortcuts-list li .shortcut-text {
flex-grow: 1; flex-grow: 1;
} }
#shortcuts-settings-container .shortcuts-list li .shortcut-actions {
flex-shrink: 0;
}
#shortcuts-settings-container summary { #shortcuts-settings-container summary {
cursor: pointer; cursor: pointer;

View file

@ -236,7 +236,7 @@ function ShortcutsSettings() {
<span class="shortcut-text"> <span class="shortcut-text">
<AsyncText>{title}</AsyncText> <AsyncText>{title}</AsyncText>
</span> </span>
<span> <span class="shortcut-actions">
<button <button
type="button" type="button"
class="plain small" class="plain small"