Skip to content

Commit

Permalink
update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hakimel committed Oct 18, 2024
1 parent a378049 commit b85910f
Show file tree
Hide file tree
Showing 24 changed files with 5,190 additions and 3,957 deletions.
19 changes: 9 additions & 10 deletions css/reveal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@
* Copyright (C) Hakim El Hattab, https://hakim.se
*/

@import 'layout';
@use 'layout';

/*********************************************
* PRINT STYLES
*********************************************/

@use 'print/pdf.scss';
@use 'print/paper.scss';

/*********************************************
* GLOBAL STYLES
Expand Down Expand Up @@ -320,7 +327,7 @@ $controlsArrowAngleActive: 36deg;
background-color: currentColor;

transition: all 0.15s ease, background-color 0.8s ease;
transform-origin: math.div(floor(($controlArrowThickness*0.5)*10), 10) 50%;
transform-origin: math.div(math.floor(($controlArrowThickness*0.5)*10), 10) 50%;
will-change: transform;
}

Expand Down Expand Up @@ -2104,11 +2111,3 @@ $notesWidthPercent: 25%;
}
}


/*********************************************
* PRINT STYLES
*********************************************/

@import 'print/pdf.scss';
@import 'print/paper.scss';

4 changes: 3 additions & 1 deletion css/theme/template/exposer.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// Exposes theme's variables for easy re-use in CSS for plugin authors

@use 'sass:color';

:root {
--r-background-color: #{$backgroundColor};
--r-main-font: #{$mainFont};
Expand All @@ -21,7 +23,7 @@
--r-heading4-size: #{$heading4Size};
--r-code-font: #{$codeFont};
--r-link-color: #{$linkColor};
--r-link-color-dark: #{darken($linkColor , 15% )};
--r-link-color-dark: #{color.scale($linkColor, $lightness: -15%)};
--r-link-color-hover: #{$linkColorHover};
--r-selection-background-color: #{$selectionBackgroundColor};
--r-selection-color: #{$selectionColor};
Expand Down
4 changes: 3 additions & 1 deletion css/theme/template/settings.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Base settings for all themes that can optionally be
// overridden by the super-theme

@use 'sass:color';

// Background of the presentation
$backgroundColor: #2b2b2b;

Expand Down Expand Up @@ -32,7 +34,7 @@ $codeFont: monospace;

// Links and actions
$linkColor: #13DAEC;
$linkColorHover: lighten( $linkColor, 20% );
$linkColorHover: color.scale( $linkColor, $lightness: 20% );

// Text selection
$selectionBackgroundColor: #FF5E99;
Expand Down
30 changes: 15 additions & 15 deletions dist/plugin/highlight.js

Large diffs are not rendered by default.

Loading

0 comments on commit b85910f

Please sign in to comment.