Merge pull request #7376 from LLK/release/2023-02-15

[Master] release/2023-02-15
This commit is contained in:
Benjamin Wheeler 2023-02-16 10:55:01 -05:00 committed by GitHub
commit 436d4c1e32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 13 deletions

14
package-lock.json generated
View file

@ -100,7 +100,7 @@
"sass": "1.49.7",
"sass-loader": "10.2.1",
"scratch-gui": "1.3.10",
"scratch-l10n": "3.15.20230202032115",
"scratch-l10n": "3.15.20230212032126",
"selenium-webdriver": "4.1.0",
"slick-carousel": "1.6.0",
"style-loader": "0.12.3",
@ -23467,9 +23467,9 @@
}
},
"node_modules/scratch-l10n": {
"version": "3.15.20230202032115",
"resolved": "https://registry.npmjs.org/scratch-l10n/-/scratch-l10n-3.15.20230202032115.tgz",
"integrity": "sha512-NyCGmdYSFJAzGW8U03JQa/0dDg8VyvNh3+bNRxt2QG+gxJGK6mXB+8+h3uMMbvedDKMB28G8wEdU9pAFWc/cqA==",
"version": "3.15.20230212032126",
"resolved": "https://registry.npmjs.org/scratch-l10n/-/scratch-l10n-3.15.20230212032126.tgz",
"integrity": "sha512-EOaa47NpTo8C+PnfAGplB09jklEZ6j09ANFdnINEapkKp/qVOlZpw/JchjOPy4omNaJ0RQMYFc7Z3XCDqSyMHg==",
"dev": true,
"dependencies": {
"@babel/cli": "^7.1.2",
@ -51372,9 +51372,9 @@
}
},
"scratch-l10n": {
"version": "3.15.20230202032115",
"resolved": "https://registry.npmjs.org/scratch-l10n/-/scratch-l10n-3.15.20230202032115.tgz",
"integrity": "sha512-NyCGmdYSFJAzGW8U03JQa/0dDg8VyvNh3+bNRxt2QG+gxJGK6mXB+8+h3uMMbvedDKMB28G8wEdU9pAFWc/cqA==",
"version": "3.15.20230212032126",
"resolved": "https://registry.npmjs.org/scratch-l10n/-/scratch-l10n-3.15.20230212032126.tgz",
"integrity": "sha512-EOaa47NpTo8C+PnfAGplB09jklEZ6j09ANFdnINEapkKp/qVOlZpw/JchjOPy4omNaJ0RQMYFc7Z3XCDqSyMHg==",
"dev": true,
"requires": {
"@babel/cli": "^7.1.2",

View file

@ -135,7 +135,7 @@
"sass": "1.49.7",
"sass-loader": "10.2.1",
"scratch-gui": "1.3.10",
"scratch-l10n": "3.15.20230202032115",
"scratch-l10n": "3.15.20230212032126",
"selenium-webdriver": "4.1.0",
"slick-carousel": "1.6.0",
"style-loader": "0.12.3",

View file

@ -27,8 +27,8 @@ $motion-blue-3: hsla(215, 60%, 50%, 1);//#3373CC
/* UI Secondary Colors */
/* 3.0 colors */
/* Using www naming convention for now, should be consistent with gui */
$ui-aqua: hsla(163, 85%, 40%, 1); // #0FBD8C Extension Primary
$ui-aqua-dark: hsla(163, 85%, 30%, 1); // #0B8E69 Extension Aqua 3
$ui-aqua: hsla(144, 45%, 36%, 1);
$ui-aqua-dark: darken($ui-aqua, 10%);
$ui-purple: hsla(260, 100%, 70%, 1); // #9966FF Looks Primary
$ui-purple-dark: hsla(260, 60%, 60%, 1); // #774DCB Looks Secondary
$ui-magenta: hsla(300, 53%, 60%, 1); /* #CF63CF Sounds Primary */
@ -59,6 +59,7 @@ $transparent-light-blue: rgba(229, 240, 254, 0);
/* Typography Colors */
$header-gray: hsla(225, 15%, 40%, 1); //#575E75
$type-gray: hsla(225, 15%, 40%, 1); //#575E75
$type-dark-gray: hsla(0, 0%, 23%, 1);
$type-gray-75percent: hsla(225, 15%, 40%, .75);
$type-gray-60percent: hsla(225, 15%, 40%, .6);
$type-white: hsla(0, 100%, 100%, 1); //#FFF

View file

@ -84,15 +84,14 @@ $base-bg: $ui-white;
justify-content: flex-start;
li {
border: 0;
border: 1px solid $type-dark-gray;
background-color: $active-gray;
color: $ui-white;
color: $header-gray;
&.active {
opacity: 1;
background-color: $ui-aqua;
color: $ui-white;
}
&:active {
@ -101,6 +100,7 @@ $base-bg: $ui-white;
&:hover {
background-color: $active-dark-gray;
color: $type-dark-gray;
}
}
}