Skip to content

Commit

Permalink
Merge pull request #279 from yalesites-org/develop
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
dblanken-yale authored Nov 5, 2024
2 parents 28a4e44 + fdfed94 commit c5e5c6e
Show file tree
Hide file tree
Showing 6 changed files with 6,069 additions and 21,373 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.13
20.14.0
11 changes: 9 additions & 2 deletions atomic.libraries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ global:
css:
theme:
"https://yale-webfonts.yalespace.org/fonts.min.css": {type: external}
node_modules/@yalesites-org/component-library-twig/dist/style.css: {}
node_modules/@yalesites-org/component-library-twig/dist/css/style.css: {}
components/_settings/_config.css: {}
css/admin-theme.css: {}
css/localist.css: {}
node_modules/@yalesites-org/component-library-twig/dist/css/link-treatment.css: {}
js:
node_modules/@yalesites-org/component-library-twig/dist/js/02-molecules/menu/menu-toggle/yds-menu-toggle.js: {}
node_modules/@yalesites-org/component-library-twig/dist/js/00-tokens/layout/yds-layout.js: {}
node_modules/@yalesites-org/component-library-twig/dist/js/ys-link.js: {}
node_modules/@yalesites-org/component-library-twig/dist/js/link-treatment.js: {}
dependencies:
- core/drupal
accordion:
Expand All @@ -21,6 +22,12 @@ alert:
primary-nav:
js:
node_modules/@yalesites-org/component-library-twig/dist/js/03-organisms/menu/primary-nav/yds-primary-nav.js: {}
reference-card:
js:
node_modules/@yalesites-org/component-library-twig/dist/js/02-molecules/cards/reference-card/yds-reference-card.js: {}
custom-card:
js:
node_modules/@yalesites-org/component-library-twig/dist/js/02-molecules/cards/custom-card/yds-custom-card.js: {}
breadcrumbs:
js:
node_modules/@yalesites-org/component-library-twig/dist/js/03-organisms/menu/breadcrumbs/yds-breadcrumbs.js: {}
Expand Down
41 changes: 41 additions & 0 deletions css/admin-theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -274,3 +274,44 @@ html:not(.gin--dark-mode)
.ajax-progress-throbber::before {
right: 0;
}

/*
* Media text after 10.3 update was displaying messages that violated
* A11y guidelines. This is a fix to ensure that the text is readable.
*/
.field--name-field-media .fieldset__prefix {
color: var(--gin-color-text-light);
}

/*
* Claro was adding a pull quote in the blockquote's before. We are
* handling that.
*/
blockquote.quote-callout__quote::before,
blockquote.pull-quote__quote::before {
content: "";
}

/*
* Claro is modifying jquery-ui's handling of menu items.
* We need gin to take over.
*/
.ui-menu-item {
color: var(--gin-color-text);
}

/*
* Move table contrast fix for dark mode.
*/
html.gin--dark-mode .layout-builder-components-table .tabledrag-toggle-weight,
html.gin--dark-mode .layout-builder-components-table tr:hover,
html.gin--dark-mode .layout-builder-components-table tr:nth-child(even) {
color: var(--color-white);
}

/*
* Fix cancel button color in gin
*/
html.gin--dark-mode .button.dialog-cancel {
color: var(--gin-color-button-text);
}
Loading

0 comments on commit c5e5c6e

Please sign in to comment.