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

added css to hide host inst field from all but the shared theme #131

Merged
merged 2 commits into from
Aug 17, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion app/assets/stylesheets/atla-overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,27 @@ button.btn.btn-default.btn-block.citations-button.center-block:hover, button.btn
color:white;
}


/* hide custom field host institution */
/* hide the label in works list */
dt[data-solr-field-name="institution_tesim"] {
display: none;
}

/* hide the value in works list */
body.catalog-index div.metadata dl.dl-horizontal dd:last-child {
display: none;
}

/* hide from the facets */
.panel.panel-default.facet_limit.blacklight-institution_sim {
display: none;
}
/* fix remove facet button color* /
.glyphicon-remove:before {
color:#d33a35;
}
/* add space for collection icon in search results view*/
.search-result-wrapper {padding-bottom:.5em;}

@media only screen and (min-width: 768px) {
.hyc-banner .hyc-title h1 {margin-bottom: 0em;}
Expand Down
19 changes: 19 additions & 0 deletions app/assets/stylesheets/themes/shared_repository.scss
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,25 @@
&.hyrax-homepage #search-form-header {margin-top:1em;}
&.hyrax-homepage .text-right p{color:#258FCE;}


/* hide custom field host institution */
/* hide the label in works list */
dt[data-solr-field-name="institution_tesim"] {
display: block;
}

/* hide the value in works list */
&.catalog-index div.metadata dl.dl-horizontal dd:last-child {
display: block;
}

/* hide from the facets */
.panel.panel-default.facet_limit.blacklight-institution_sim {
display: block;
}



@media screen and (min-width:768px){

.dropdown-menu .divider, .twitter-typeahead .tt-menu .divider{
Expand Down
Loading