Commit Graph
504 Commits
Author SHA1 Message Date
Mark Eaton 3acf5814f9 Merge pull request 'Update dependency vue to v3.5.39' (#19) from renovate/vue-3.x into main
Reviewed-on: https://tildegit.org/MarkEEaton/Kingsborough-LibGuide/pulls/19
2026-07-05 04:31:05 +00:00
Renovate Bot bc863fbd3c Update dependency vue to v3.5.39 2026-06-28 18:41:37 -04:00
Mark Eaton de09ff6c73 Merge pull request 'Update dependency prettier to v3.9.1' (#18) from renovate/prettier-3.x into main
Reviewed-on: https://tildegit.org/MarkEEaton/Kingsborough-LibGuide/pulls/18
2026-06-28 05:49:45 +00:00
Renovate Bot 0f0db332d2 Update dependency prettier to v3.9.1 2026-06-28 00:00:11 -04:00
Mark Eaton 70c5bfc823 Merge pull request 'Update dependency prettier to v3.9.0' (#17) from renovate/prettier-3.x into main
Reviewed-on: https://tildegit.org/MarkEEaton/Kingsborough-LibGuide/pulls/17
2026-06-27 22:05:41 +00:00
Renovate Bot 33afa575b2 Update dependency prettier to v3.9.0 2026-06-27 16:37:18 -04:00
Mark Eaton 30c6cee227 Merge pull request 'Update dependency prettier to v3.8.5' (#16) from renovate/prettier-3.x into main
Reviewed-on: https://tildegit.org/MarkEEaton/Kingsborough-LibGuide/pulls/16
2026-06-27 01:54:21 +00:00
Renovate Bot 68d669166a Update dependency prettier to v3.8.5 2026-06-26 21:09:32 -04:00
Mark Eaton 6105e7551c Use https for ezproxy and nytimes links 2026-06-14 00:15:49 -04:00
Mark Eaton 8d8351f5a1 Add rel=noopener noreferrer to target=_blank links 2026-06-14 00:09:10 -04:00
Mark Eaton a3512decac Add SRI hash and crossorigin to cdnjs Vue script 2026-06-13 23:51:18 -04:00
Mark Eaton a54a6fe2de Wrap CMS content box in v-pre to block Vue template injection 2026-06-13 23:50:24 -04:00
Mark Eaton c3fd4874bc switch source for Vue scripts so that they can be checked by renovate 2026-06-10 16:56:18 +00:00
Mark Eaton 4511d861de Merge pull request 'Update dependency prettier to v3.8.4' (#15) from renovate/prettier-3.x into main
Reviewed-on: https://tildegit.org/MarkEEaton/Kingsborough-LibGuide/pulls/15
2026-06-10 13:28:52 +00:00
Renovate Bot 1eb2bdf73e Update dependency prettier to v3.8.4 2026-06-09 17:43:34 -04:00
Mark Eaton 5afdcb4c91 update system-wide.css with patches to undo recent Springshare CSS changes 2026-05-21 17:23:30 +00:00
Mark Eaton 0ab4559ce6 add orange focus color to #main-content 2026-04-21 16:24:18 +00:00
Mark Eaton 894b592dec update main-content tag 2026-04-21 01:04:57 +00:00
Mark Eaton 9725fdee33 Merge pull request 'Update dependency prettier to v3.8.3' (#14) from renovate/prettier-3.x into main
Reviewed-on: https://tildegit.org/MarkEEaton/Kingsborough-LibGuide/pulls/14
2026-04-15 13:39:41 +00:00
Renovate Bot fbb6da6fcd Update dependency prettier to v3.8.3 2026-04-14 21:38:04 -04:00
Mark Eaton a426ce34e6 Merge branch 'main' of tildegit.org:MarkEEaton/Kingsborough-LibGuide 2026-04-13 11:55:33 -04:00
Mark Eaton dfbe8875f5 move theme toggle to own Vue app for better tab order
Relocate the light/dark toggle button out of #app1 and into a new
#app3 mount just before the back-to-top element so keyboard focus
reaches it near the end of the page instead of right after the main
nav. Replace the library logo's reactive :src binding with a plain
src plus data-light-src/data-dark-src so app1 no longer needs any
theme state; app3 now owns toggleTheme, overlay updates, logo swap,
and the OS preference listener.
2026-04-13 11:53:20 -04:00
Mark Eaton f1bad4a75b Merge pull request 'Update dependency prettier to v3.8.2' (#13) from renovate/prettier-3.x into main
Reviewed-on: https://tildegit.org/MarkEEaton/Kingsborough-LibGuide/pulls/13
2026-04-10 18:29:36 +00:00
Renovate Bot 42379211ac Update dependency prettier to v3.8.2 2026-04-10 09:26:11 -04:00
Mark Eaton afbe55096e fix the problem with vertical nav list items not displaying at 100% width 2026-04-02 12:40:49 +00:00
Mark Eaton 38dccc30a9 fix problem with banner not being centered on keyboard navigation 2026-04-02 12:19:17 +00:00
Mark Eaton d55082e081 remove js, rename to .css 2026-04-01 20:29:09 +00:00
Mark Eaton 7ec70eabff update system wide CSS 2026-04-01 20:28:13 +00:00
Mark Eaton 8feb832dfa move #main-content reference 2026-04-01 13:28:49 +00:00
Mark Eaton 91235939ee more updates to Library Links 2026-03-06 14:33:52 +00:00
Mark Eaton 043a73ed71 work on Library Links 2026-03-06 14:22:15 +00:00
Mark Eaton ac12d21cac use white text for hours container in dark mode 2026-02-28 16:44:57 -05:00
Mark EatonandClaude Opus 4.6 149004f267 fix dropdown fade by moving transition to higher-specificity selector
The .fade transition (one class) was being overridden by a later
.dropdown-menu rule (also one class) that set transition to only
background-color. Moving the opacity transition into .dropdown-menu.fade
(two classes) ensures it wins regardless of cascade order.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 11:30:59 -05:00
Mark EatonandClaude Opus 4.6 b066d5cd12 fix dropdown fade animation by specifying transition property
The .fade rule only set transition-duration without specifying
transition-property, so opacity changes were instant. Also fixes
a typo where the webkit duration was 5s instead of 0.5s.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 11:19:10 -05:00
Mark EatonandClaude Opus 4.6 a272b054ad fix TypeError on obsolete_browser_alert innerHTML access
Add null check before accessing innerHTML, since the element may not
exist in the DOM when the CMS renders the page.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 10:26:38 -05:00
Mark Eaton 9afd7790a1 use full paths for image 2026-02-23 10:20:50 -05:00
Mark EatonandClaude Opus 4.6 898e623b2b swap onesearch logo based on dark/light mode
Use onesearch_logo2.png (black text) in light mode and
onesearch_logo3.png (white text) in dark mode via MutationObserver.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 10:12:42 -05:00
Mark Eaton 3fd860a065 switch text to white in onesearch_logo 2026-02-23 10:00:40 -05:00
Mark Eaton 7ec70c8274 use new onesearch logo on bootstrap5 site 2026-02-23 09:50:28 -05:00
Mark Eaton f37152a16e Merge branch 'main' of tildegit.org:MarkEEaton/Kingsborough-LibGuide 2026-02-23 09:46:07 -05:00
Mark Eaton 462a40b48a darken text in onesearch_logo image 2026-02-23 09:45:40 -05:00
Mark EatonandClaude Opus 4.6 6a02ce8fe7 improve focus indicators: orange in dark mode, broader coverage, fix width
- Change dark-mode --focus-outline from #6ea8fe to #ff4e00 (kbccorange)
- Replace enumerated focus selectors with broad rule covering all a, button,
  input, select, and [tabindex] elements with !important
- Add display:block to a.ga-by-jumbotron to prevent width shrinking on focus

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-22 22:22:23 -05:00
Mark EatonandClaude Opus 4.6 6c817c1948 fix hamburger menu icon color and background in dark mode
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-22 17:18:53 -05:00
Mark EatonandClaude Opus 4.6 11942fab83 shorten dark mode transition from 0.3s to 0.2s
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-22 15:53:28 -05:00
Mark Eaton e2a06eedff swap background colors of hours bar and main nav 2026-02-22 15:33:39 -05:00
Mark Eaton b37a759a8d improve footer in dark mode; border on search button 2026-02-22 02:44:22 -05:00
Mark Eaton 7eb3c580ec fix blue border on search button 2026-02-22 02:14:02 -05:00
Mark Eaton 0c719786f0 sync main nav margin between light- and dark-modes 2026-02-22 01:54:50 -05:00
Mark EatonandClaude Opus 4.6 b429175477 remove underline from Book A Study Room button
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-22 01:49:24 -05:00
Mark EatonandClaude Opus 4.6 91559e3660 style dark mode nav bar to match background image width and radius
Adds border-radius: 5px and horizontal margins to align the dark
mode nav bar with the background image below it. Uses margin-left
and margin-right to preserve the existing margin-top: -20px.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-22 01:04:12 -05:00