diff options
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r-- | app/assets/stylesheets/framework/filters.scss | 16 | ||||
-rw-r--r-- | app/assets/stylesheets/framework/mobile.scss | 8 | ||||
-rw-r--r-- | app/assets/stylesheets/pages/boards.scss | 6 |
3 files changed, 13 insertions, 17 deletions
diff --git a/app/assets/stylesheets/framework/filters.scss b/app/assets/stylesheets/framework/filters.scss index e5bca81bb46..d94e7766b82 100644 --- a/app/assets/stylesheets/framework/filters.scss +++ b/app/assets/stylesheets/framework/filters.scss @@ -44,6 +44,14 @@ } } +@media (max-width: $screen-md-max) { + .issues-details-filters { + .dropdown-menu-toggle { + width: 110px; + } + } +} + @media (max-width: $screen-xs-max) { .filter-item { display: block; @@ -228,14 +236,6 @@ overflow: auto; } -@media (min-width: $screen-sm-min) and (max-width: 1046px) { - .issues-details-filters { - .dropdown-menu-toggle { - width: 100px; - } - } -} - @media (max-width: $screen-xs-max) { .issues-details-filters { padding: 0 0 10px; diff --git a/app/assets/stylesheets/framework/mobile.scss b/app/assets/stylesheets/framework/mobile.scss index fce5c15d565..eb73f7cc794 100644 --- a/app/assets/stylesheets/framework/mobile.scss +++ b/app/assets/stylesheets/framework/mobile.scss @@ -98,14 +98,6 @@ } } -@media (max-width: 809px) { - .issues-filters { - .labels-filter { - display: none; - } - } -} - @media (max-width: $screen-sm-max) { .issues-filters { .milestone-filter { diff --git a/app/assets/stylesheets/pages/boards.scss b/app/assets/stylesheets/pages/boards.scss index df1c64e526b..4efe32261b7 100644 --- a/app/assets/stylesheets/pages/boards.scss +++ b/app/assets/stylesheets/pages/boards.scss @@ -302,11 +302,15 @@ } .issue-boards-search { - width: 435px; .form-control { display: inline-block; width: 210px; + margin-right: 10px; + + @media (max-width: $screen-md-max) { + width: 155px; + } } } |