Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stojanovic/fe 95 move form field hints under input make text more subtle less #95

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export const LanguageSelectField = ({
const { setFieldTouched } = useFormikContext();
return (
<SelectField
deburr
onBlur={() => setFieldTouched(fieldPath)}
fieldPath={fieldPath}
optimized
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const SearchAppFacets = ({ aggs, appName }) => {
<h2>{i18next.t("Filters")}</h2>
<div className="ui divider"></div>
</div>
<div className="vertical scroll facet-list">
<div className="facet-list">
{aggs.map((agg) => (
<BucketAggregation key={agg.aggName} title={agg.title} agg={agg} />
))}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ export const SearchAppLayout = ({ config, hasButtonSidebar }) => {
className="search-app rel-mt-2"
>
<Grid.Row
stretched
textAlign="left"
columns={columnsAmount}
className="result-options"
Expand All @@ -130,7 +129,7 @@ export const SearchAppLayout = ({ config, hasButtonSidebar }) => {
aria-label={i18next.t("Filter results")}
/>
</Grid.Column>
<Grid.Column only="computer" width={3}>
<Grid.Column only="computer" width={4}>
<ActiveFilters />
</Grid.Column>
</>
Expand All @@ -145,8 +144,8 @@ export const SearchAppLayout = ({ config, hasButtonSidebar }) => {
mobile={4}
tablet={4}
computer={4}
largeScreen={3}
widescreen={3}
largeScreen={4}
widescreen={4}
open={sidebarVisible}
onHideClick={() => setSidebarVisible(false)}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ export const SearchAppResultOptions = ({ sortOptions, layoutOptions }) => {
return (
<Grid>
<Grid.Row verticalAlign="middle">
<Grid.Column floated="left" textAlign="left" width={4}>
<Grid.Column floated="left" textAlign="left" width={5}>
<ResultCountWithState />
</Grid.Column>
<Grid.Column textAlign="right" floated="right" width={4}>
<Grid.Column textAlign="right" floated="right" width={8}>
{sortOptions && (
<Overridable id={buildUID("SearchApp.sort")} options={sortOptions}>
<SearchAppSort />
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = oarepo-ui
version = 5.0.75
version = 5.0.76
description = UI module for invenio 3.5+
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down