Add filter for shared state (#531)

* Add shared filter to bookmark search model

* Add shared filter UI

* Implement shared filter

* Add API test

* Use radio buttons

* Rename shared parameter

* Improve radio button CSS
This commit is contained in:
Sascha Ißbrücker
2023-09-10 23:14:07 +03:00
committed by GitHub
parent b7ddee2d93
commit ffcc40b227
14 changed files with 168 additions and 24 deletions

View File

@@ -58,7 +58,7 @@
border-bottom-right-radius: 0;
}
.dropdown button {
.dropdown-toggle {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
@@ -71,7 +71,7 @@
.dropdown {
.menu {
padding: $unit-4;
min-width: 220px;
min-width: 250px;
}
&:focus-within {
@@ -85,6 +85,23 @@
display: flex;
justify-content: space-between;
}
.radio-group {
.form-label {
padding-bottom: 0;
}
.form-radio.form-inline {
margin: 0 $unit-2 0 0;
padding: 0;
display: inline-flex;
align-items: center;
column-gap: $unit-1;
}
.form-icon {
top: 0;
position: relative;
}
}
}
}