-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
913 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,3 +33,6 @@ config/environments/*.local.yml | |
|
||
/node_modules | ||
/public/assets | ||
|
||
/app/assets/builds/* | ||
!/app/assets/builds/.keep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
web: env RUBY_DEBUG_OPEN=true bin/rails server | ||
css: yarn watch:css |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
//= link_tree ../images | ||
//= link application.js | ||
//= link application.css | ||
//= link application_parker.css | ||
//= link openseadragon-assets.js | ||
//= link spotlight/manifest.js | ||
//= link_tree ../builds |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@import "bootstrap/scss/bootstrap"; | ||
@import "bootstrap-icons/font/bootstrap-icons"; | ||
@import "base"; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
app/assets/stylesheets/modules/blacklight-range-limit.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
form.range_limit { | ||
/* leave room for buttons not to collide on line wrap */ | ||
line-height: 3; | ||
} | ||
|
||
.range_limit .range-limit-input-group { | ||
max-width: 350px; | ||
width: 100% !important; | ||
} | ||
|
||
.range_limit input.range_begin, | ||
.range_limit input.range_end { | ||
display: inline-block; | ||
width: 4.5em; | ||
} | ||
|
||
.limit_content .subsection { | ||
margin-top: 0.5em; | ||
} | ||
|
||
.hover_legend { | ||
padding: 0.25em; | ||
} | ||
|
||
.slider_js .slider-selection { | ||
/* color from flot selection */ | ||
background: #e8cfac; | ||
} | ||
|
||
.slider_js .slider-horizontal { | ||
margin-left: 5px; | ||
margin-right: 5px; | ||
} | ||
|
||
.chart_js .flot-x-axis { | ||
font-size: 14px; | ||
} | ||
|
||
.modal-body .view_larger { | ||
display: none; | ||
} | ||
|
||
/* Prevent an unstyled flash of content for values we'll replace with a chart */ | ||
.js .distribution .facet-values { | ||
display: none; | ||
} | ||
|
||
.modal-body .range_limit { | ||
justify-content: center; | ||
} | ||
|
||
.view_larger { | ||
display: block; | ||
text-align: center; | ||
} | ||
|
||
.range_limit .chart_js { | ||
min-height: 80px; | ||
margin-left: -12px; | ||
margin-right: -14px; | ||
} |
14 changes: 14 additions & 0 deletions
14
...odules/blacklight_heatmaps_overrides.scss → ...lesheets/modules/blacklight_heatmaps.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.openseadragon-viewer { | ||
display: block; | ||
min-height: 500px; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env sh | ||
|
||
if gem list --no-installed --exact --silent foreman; then | ||
echo "Installing foreman..." | ||
gem install foreman | ||
fi | ||
|
||
# Default to port 3000 if not specified | ||
export PORT="${PORT:-3000}" | ||
|
||
exec foreman start -f Procfile.dev --env /dev/null "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,27 @@ | ||
{ | ||
"dependencies": { | ||
"@popperjs/core": "^2.11.8", | ||
"autoprefixer": "^10.4.20", | ||
"blacklight-frontend": "^8.7.0", | ||
"blacklight-gallery": "^4.6.3", | ||
"bootstrap": "^5.3.3", | ||
"bootstrap-slider": "^11.0.2" | ||
} | ||
"bootstrap-icons": "^1.11.3", | ||
"bootstrap-slider": "^11.0.2", | ||
"leaflet": "^1.9.4", | ||
"leaflet-sidebar": "^0.2.4", | ||
"nodemon": "^3.1.7", | ||
"postcss": "^8.4.49", | ||
"postcss-cli": "^11.0.0", | ||
"sass": "^1.82.0", | ||
"spotlight-frontend": "^4.5.0" | ||
}, | ||
"scripts": { | ||
"build:css:compile": "sass ./app/assets/stylesheets/application.bootstrap.scss:./app/assets/builds/application.css --no-source-map --load-path=node_modules", | ||
"build:css:prefix": "postcss ./app/assets/builds/application.css --use=autoprefixer --output=./app/assets/builds/application.css", | ||
"build:css": "yarn build:css:compile && yarn build:css:prefix", | ||
"watch:css": "nodemon --watch ./app/assets/stylesheets/ --ext scss --exec \"yarn build:css\"" | ||
}, | ||
"browserslist": [ | ||
"defaults" | ||
] | ||
} |
Oops, something went wrong.