Skip to content
Snippets Groups Projects
Commit ce4ab411 authored by Martin Hanzel's avatar Martin Hanzel Committed by Phil Hughes
Browse files

Display boards filter bar on mobile

parent 39544c73
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -9,14 +9,14 @@
float: right;
margin-right: 0;
 
@include media-breakpoint-down(xs) {
@include media-breakpoint-down(sm) {
float: none;
}
}
}
 
.filters-section {
@include media-breakpoint-down(xs) {
@include media-breakpoint-down(sm) {
display: inline-block;
}
}
Loading
Loading
@@ -37,7 +37,7 @@
}
}
 
@include media-breakpoint-down(xs) {
@include media-breakpoint-down(sm) {
.filter-item {
display: block;
margin: 0 0 10px;
Loading
Loading
@@ -50,12 +50,6 @@
}
 
.filtered-search-wrapper {
display: flex;
@include media-breakpoint-down(xs) {
flex-direction: column;
}
.tokens-container {
display: flex;
flex: 1;
Loading
Loading
@@ -186,7 +180,7 @@
border: 1px solid $border-color;
background-color: $white-light;
 
@include media-breakpoint-down(xs) {
@include media-breakpoint-down(sm) {
flex: 1 1 auto;
margin-bottom: 10px;
}
Loading
Loading
@@ -259,7 +253,7 @@
max-width: 280px;
overflow: auto;
 
@include media-breakpoint-down(xs) {
@include media-breakpoint-down(sm) {
width: auto;
left: 0;
right: 0;
Loading
Loading
@@ -311,7 +305,7 @@
.filtered-search-history-dropdown {
width: 40%;
 
@include media-breakpoint-down(xs) {
@include media-breakpoint-down(sm) {
left: 0;
right: 0;
max-width: none;
Loading
Loading
@@ -341,35 +335,46 @@
}
 
.filter-dropdown-container {
display: flex;
.dropdown-toggle {
line-height: 22px;
}
}
 
@include media-breakpoint-down(xs) {
@include media-breakpoint-down(sm) {
.issues-details-filters {
padding: 0 0 10px;
padding-top: 0;
padding-bottom: 0;
background-color: $white-light;
border-top: 0;
}
 
.filter-dropdown-container {
.boards-switcher {
margin: 0 0 10px;
.boards-selector-wrapper,
.dropdown {
margin-left: 0;
display: block;
}
}
}
 
@include media-breakpoint-down(sm) {
.filter-dropdown-container {
.dropdown-toggle,
.dropdown,
.dropdown-menu {
.filter-dropdown-container > div {
margin: 0;
> .btn {
margin: 0 0 10px;
width: 100%;
}
}
.boards-add-list > .btn {
text-align: left;
> svg {
position: absolute;
top: 11px;
right: 6px;
}
}
}
 
.droplab-dropdown .dropdown-menu .filter-dropdown-item {
Loading
Loading
Loading
Loading
@@ -14,8 +14,7 @@
%script#js-board-promotion{ type: "text/x-template" }= render_if_exists "shared/promotions/promote_issue_board"
 
#board-app.boards-app.position-relative{ "v-cloak" => "true", data: board_data, ":class" => "{ 'is-compact': detailIssueVisible }" }
.d-none.d-sm-none.d-md-block
= render 'shared/issuable/search_bar', type: :boards, board: board
= render 'shared/issuable/search_bar', type: :boards, board: board
 
.boards-list.w-100.py-3.px-2.text-nowrap
.boards-app-loading.w-100.text-center{ "v-if" => "loading" }
Loading
Loading
Loading
Loading
@@ -4,7 +4,7 @@
- user_can_admin_list = board && can?(current_user, :admin_list, board.parent)
 
.issues-filters{ class: ("w-100" if type == :boards_modal) }
.issues-details-filters.filtered-search-block.d-flex{ class: block_css_class, "v-pre" => type == :boards_modal }
.issues-details-filters.filtered-search-block.d-flex.flex-column.flex-md-row{ class: block_css_class, "v-pre" => type == :boards_modal }
- if type == :boards
= render_if_exists "shared/boards/switcher", board: board
= form_tag page_filter_path, method: :get, class: 'filter-form js-filter-form w-100' do
Loading
Loading
@@ -13,7 +13,7 @@
- if @can_bulk_update
.check-all-holder.d-none.d-sm-block.hidden
= check_box_tag "check-all-issues", nil, false, class: "check-all-issues left"
.issues-other-filters.filtered-search-wrapper
.issues-other-filters.filtered-search-wrapper.d-flex.flex-column.flex-md-row
.filtered-search-box
- if type != :boards_modal && type != :boards
= dropdown_tag(custom_icon('icon_history'),
Loading
Loading
@@ -147,7 +147,7 @@
 
%button.clear-search.hidden{ type: 'button' }
= icon('times')
.filter-dropdown-container
.filter-dropdown-container.d-flex.flex-column.flex-md-row
- if type == :boards
.js-board-config{ data: { can_admin_list: user_can_admin_list, has_scope: board.scoped? } }
- if user_can_admin_list
Loading
Loading
---
title: Display boards filter bar on mobile
merge_request: 30120
author:
type: fixed
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment