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

Autocomplete object property form fixes #408

Merged
merged 2 commits into from
Jun 21, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Also multiple types parameter set to true only if more than one type returned-->
acSelectOnly: 'true',
sparqlForAcFilter: '${sparqlForAcFilter?js_string}',
sparqlQueryUrl: '${sparqlQueryUrl?js_string}',
acFilterForIndividuals: ${acFilterForIndividuals?js_string},
acFilterForIndividuals: ${acFilterForIndividuals},
defaultTypeName: '${propertyNameForDisplay?js_string}', // used in repair mode to generate button text
baseHref: '${urls.base}/individual?uri='
};
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/* $This file is distributed under the terms of the license in LICENSE$ */

/* Styles for autocomplete and autocomplete selections using jQuery UI. This is separated out so that forms
that don't load customFormWithAutocomplete.css still have access to these styles. */

.acSelection {
display: none;
margin-top: 1em;
}
.acSelectionInfo {
background-color: #d9d9d9;
padding: .2em .35em;
}
ul.ui-autocomplete {
font-size: .95em;
}
li.ui-menu-item a.ui-corner-all {
text-align: left;
padding-left: .25em;
}
.acSelectorWithHelpText{
font-style: italic;
color: #555;
}