[Scummvm-git-logs] scummvm-web master -> 28303eb5aae44500e18350e17fc2fe57b225e2e1
lephilousophe
noreply at scummvm.org
Sat Sep 6 08:16:42 UTC 2025
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm-web' repo located at https://api.github.com/repos/scummvm/scummvm-web .
Summary:
218433d735 BUILD: Revert unintended change
28303eb5aa CSS: Don't use private variable names to configure the mixins
Commit: 218433d735a684a9d8701943619761aae735b75f
https://github.com/scummvm/scummvm-web/commit/218433d735a684a9d8701943619761aae735b75f
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2025-09-06T10:15:43+02:00
Commit Message:
BUILD: Revert unintended change
This change was part of my local testing setup.
Changed paths:
composer.json
diff --git a/composer.json b/composer.json
index c00e4a9a..a9b59801 100644
--- a/composer.json
+++ b/composer.json
@@ -58,7 +58,7 @@
],
"start": [
"Composer\\Config::disableProcessTimeout",
- "php -S 10.122.250.179:8000 -t ./public_html ./public_html/index.php"
+ "php -S localhost:8000 -t ./public_html ./public_html/index.php"
],
"develop": [
"@build-dev",
Commit: 28303eb5aae44500e18350e17fc2fe57b225e2e1
https://github.com/scummvm/scummvm-web/commit/28303eb5aae44500e18350e17fc2fe57b225e2e1
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2025-09-06T10:15:43+02:00
Commit Message:
CSS: Don't use private variable names to configure the mixins
This will get forbidden in Scss 2.0
Changed paths:
scss/abstracts/_mixins.scss
scss/base/_base.scss
diff --git a/scss/abstracts/_mixins.scss b/scss/abstracts/_mixins.scss
index b52a7c98..de162b23 100644
--- a/scss/abstracts/_mixins.scss
+++ b/scss/abstracts/_mixins.scss
@@ -4,16 +4,16 @@
@use "sass:string";
// These must be configured
-$-breakpoints: null !default;
-$-default-theme: null !default;
-$-themes: null !default;
+$breakpoints: null !default;
+$default-theme: null !default;
+$themes: null !default;
/// Responsive breakpoint manager
/// @access public
/// @param {String} $breakpoint - Breakpoint
/// @requires $breakpoints
@mixin respond-to($breakpoint) {
- $raw-query: map.get($-breakpoints, $breakpoint);
+ $raw-query: map.get($breakpoints, $breakpoint);
@if $raw-query {
$query: if(meta.type-of($raw-query) == "string", string.unquote($raw-query), meta.inspect($raw-query));
@@ -72,11 +72,11 @@ $-themes: null !default;
* Based on https://medium.com/@dmitriy.borodiy/easy-color-theming-with-scss-bc38fd5734d1
*/
@mixin themify() {
- @each $theme, $map in $-themes {
+ @each $theme, $map in $themes {
.theme-#{$theme} & {
$theme-map: () !global;
@each $key, $submap in $map {
- $value: map.get($-themes, $theme, "#{$key}");
+ $value: map.get($themes, $theme, "#{$key}");
@if $theme-map {
$theme-map: map.merge(
$theme-map,
@@ -95,7 +95,7 @@ $-themes: null !default;
@function themed($key) {
$value: map.get($theme-map, $key);
@if (not $value) {
- @return map.get($-themes, $-default-theme, $key);
+ @return map.get($themes, $default-theme, $key);
}
@return $value;
}
diff --git a/scss/base/_base.scss b/scss/base/_base.scss
index 58ba179a..4b0c4065 100644
--- a/scss/base/_base.scss
+++ b/scss/base/_base.scss
@@ -8,9 +8,9 @@
@use "theme/themes";
@use "abstracts/mixins" with (
- $-breakpoints: variables.$breakpoints,
- $-themes: themes.$themes,
- $-default-theme: "scumm",
+ $breakpoints: variables.$breakpoints,
+ $themes: themes.$themes,
+ $default-theme: "scumm",
);
/* General layout rules */
More information about the Scummvm-git-logs
mailing list