From cd0efca0fda61166162ca4ab13280813a5db0e63 Mon Sep 17 00:00:00 2001 From: Andrew Engelbrecht Date: Fri, 28 Jun 2019 16:28:19 -0400 Subject: [PATCH] show dropdown menu labels above dropdown menus ... on medium and larger screens this allows us to fit more dropdown menus in a narrow page. --- css/style.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/css/style.css b/css/style.css index 17acd75..2da5322 100644 --- a/css/style.css +++ b/css/style.css @@ -78,6 +78,17 @@ a { transition: 0.3s; } float: right; } +/* Selectors */ + +@media screen and (min-width: 768px) { + .form-inline .form-item .select-wrapper { + display: block; + } + .form-inline .form-actions { + margin-top: 21px; + } +} + /* RYF List */ .ryf-list { -- 2.25.1