Skip to content

Commit

Permalink
11.1.1
Browse files Browse the repository at this point in the history
11.1.1
  • Loading branch information
joegl authored Jun 27, 2024
2 parents 964078a + 68e8125 commit 5a5097b
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,6 @@ workflows:
filters:
branches:
only:
- /10\..*-release/
- /11\..*-release/
jobs:
- run-updates
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'Stanford HumSci'
type: profile
description: 'Installation profile for HumSci Drupal'
version: 11.1.0
version: 11.1.1
core_version_requirement: '^9.4 || ^10'
themes:
- material_admin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
// the dependencies and the files we need. See _main.scss and
// _base.scss for reference.
@charset 'UTF-8';
@use "sass:map";

// Here we add the path to Font Awesome. This is copied from _main.scss
// and necessary for icons in CKEditor styles.
Expand Down Expand Up @@ -30,7 +31,7 @@ $px-only: true;
"../tools/mixins.buttons", "../tools/mixins.menu-icons",
"../tools/mixins.icons", "../tools/mixins.lists", "../tools/mixins.tables",
"../tools/mixins.heros", "../tools/mixins.slick", "../tools/keyframes.text",
"../utilities/color-pairings", "../utilities/fonts", "../utilities/font-awesome", "../utilities/general",
"../utilities/color-pairings", "../utilities/fonts", "../utilities/font-awesome", "../utilities/general",
"../utilities/lists", "../utilities/raised-cards",
"../utilities/tables", "../utilities/display-more-link-text",
"../utilities/dark-pattern", "../utilities/caption-credit", "../utilities/media-embeds",
Expand All @@ -40,6 +41,26 @@ $px-only: true;

// See _base.scss in basic theme. We only need the below for CKEditor.
// Otherwise styles affect the entire admin UI.
:root {
@include hb-themes(("colorful", "airy")) {
@each $color, $value in map.get($hc-colorful-pairings, $hb-colorful-default) {
--palette--#{$color}: #{$value};
}
@each $color, $value in $hc-colorful-globals {
--palette--#{$color}: #{$value};
}
}

@include hb-traditional {
@each $color, $value in map.get($ht-traditional-pairings, $hb-traditional-default) {
--palette--#{$color}: #{$value};
}
@each $color, $value in $ht-traditional-globals {
--palette--#{$color}: #{$value};
}
}
}

.ck-editor__main {
@include font-smoothing;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// COLORFUL

$hb-colorful-default: 'cardinal';

// Each color pairing has a palette of color swatches
$hc-colorful-pairings: (
'ocean': (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// TRADITIONAL

$hb-traditional-default: 'cardinal';

// Each color pairing has a palette of color swatches
$ht-traditional-pairings: (
'cardinal': (
Expand Down

0 comments on commit 5a5097b

Please sign in to comment.