diff --git a/core/themes/bartik/css/components/dropbutton.component.css b/core/themes/bartik/css/components/dropbutton.component.css index b5113f506f1d09bee6f906de884abecc16b4e5c9..c730c91ef2cd8b3618edf4855926a09146397c1b 100644 --- a/core/themes/bartik/css/components/dropbutton.component.css +++ b/core/themes/bartik/css/components/dropbutton.component.css @@ -25,6 +25,18 @@ padding: 0.32em 1em; background: transparent none; } +.js .dropbutton-multiple .dropbutton-widget, +.js[dir="rtl"] .dropbutton-multiple .dropbutton-widget { + padding: 0; +} +.js .dropbutton-multiple .dropbutton-widget .dropbutton { + padding-right: 2em; /* LTR */ + position: relative; +} +.js[dir="rtl"] .dropbutton-multiple .dropbutton-widget .dropbutton { + padding-right: 0; + padding-left: 2em; +} .js .dropbutton-multiple .dropbutton-widget .dropbutton-action a { margin-right: 0; /* LTR */ } diff --git a/core/themes/bartik/css/components/form.css b/core/themes/bartik/css/components/form.css index f8bcfcc501fbecb5be9dbacccaea7bc59d71053d..3e46920757a476b1ff90f95590793c4bb19ddde8 100644 --- a/core/themes/bartik/css/components/form.css +++ b/core/themes/bartik/css/components/form.css @@ -300,3 +300,24 @@ input.form-submit:focus { .form-item--error-message { color: #e32700; } + +/** + * Improve form element usability on narrow devices. + */ +@media all and (max-width: 600px) { + .form-actions .button { + float: none; + margin: 10px 0 0; + padding-bottom: 6px; + width: 100%; + display: block; + box-sizing: border-box; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + } + + .js .dropbutton .dropbutton-action > input, .js .dropbutton .dropbutton-action > a, .js .dropbutton .dropbutton-action > button { + text-align: center; + padding-left: 3em; + } +}