Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: omeka/theme-berlin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.5
Choose a base ref
...
head repository: omeka/theme-berlin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 5,095 additions and 430 deletions.
  1. +2 −1 .gitignore
  2. +674 −0 LICENSE
  3. +12 −0 README.md
  4. +1 −1 collections/browse.php
  5. +12 −11 common/header.php
  6. +6 −0 config.ini
  7. +0 −25 css/config.rb
  8. +9 −9 css/print.css
  9. +33 −14 css/sass/_768max.scss
  10. +3 −2 css/sass/_base.scss
  11. +135 −108 css/sass/_screen.scss
  12. +332 −251 css/style.css
  13. +20 −0 gulpfile.js
  14. +1 −1 items/browse.php
  15. +1 −1 items/show.php
  16. +3,809 −0 package-lock.json
  17. +39 −0 package.json
  18. +6 −6 theme.ini
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.DS_Store
.sass-cache/
.sass-cache/
node_modules/
Loading