mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
697 B
44 lines
697 B
.list-header { |
|
display: flex; |
|
align-items: stretch; |
|
flex-wrap: wrap; |
|
gap: .5rem; |
|
} |
|
|
|
.list-header-search { |
|
display: flex; |
|
flex: 1; |
|
align-items: stretch; |
|
flex-wrap: wrap; |
|
min-width: 200px; /* to enable flexbox wrapping on mobile */ |
|
} |
|
|
|
.list-header-search > .ui.input { |
|
flex: 1; |
|
min-width: 100px !important; |
|
} |
|
|
|
.list-header-search > .ui.input .ui.dropdown { |
|
min-width: auto !important; |
|
} |
|
|
|
.list-header-filters { |
|
display: flex; |
|
align-items: center; |
|
} |
|
|
|
.list-header-filters > .item { |
|
padding: 5px 0 5px 10px; |
|
} |
|
|
|
@media (max-width: 767.98px) { |
|
.list-header-search { |
|
order: 0; |
|
} |
|
.list-header-toggle { |
|
order: 1; |
|
} |
|
.list-header-filters { |
|
order: 2; |
|
} |
|
}
|
|
|