Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .quarkus/cli/plugins/quarkus-cli-catalog.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"version" : "v1",
"lastUpdate" : "16/10/2025 14:52:06",
"plugins" : {
"tls" : {
"name" : "tls",
"type" : "extension",
"location" : "io.quarkus:quarkus-tls-registry-cli:3.28.3",
"description" : null,
"inProjectCatalog" : false
},
"kill" : {
"name" : "kill",
"type" : "jbang",
"location" : "quarkus-kill@quarkusio",
"description" : null,
"inProjectCatalog" : false
}
}
}
2 changes: 1 addition & 1 deletion mise.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tools]
java = "21.0.2"
maven = "3.9.11"
quarkus = "3.26.2"
quarkus = "3.33.1"
jbang = "0.129.0"
node = "lts"
watchexec = "2.3.2"
Expand Down
23 changes: 8 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<groupId>dev.jbang</groupId>
<artifactId>jbang-dev-site</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>quarkus</packaging>

<properties>
<maven.compiler.release>21</maven.compiler.release>
Expand All @@ -14,10 +15,10 @@
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<skipITs>true</skipITs>

<version.compiler-plugin>3.14.0</version.compiler-plugin>
<version.quarkus-roq>1.10.1</version.quarkus-roq>
<version.quarkus.platform>3.24.5</version.quarkus.platform>
<version.surefire-plugin>3.5.3</version.surefire-plugin>
<version.compiler-plugin>3.15.0</version.compiler-plugin>
<version.quarkus-roq>2.1.0</version.quarkus-roq>
<version.quarkus.platform>3.33.1</version.quarkus.platform>
<version.surefire-plugin>3.5.4</version.surefire-plugin>
<antora.output-dir>public/documentation</antora.output-dir>
</properties>

Expand Down Expand Up @@ -80,7 +81,7 @@

<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<artifactId>quarkus-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -118,16 +119,6 @@
<artifactId>quarkus-maven-plugin</artifactId>
<version>${version.quarkus.platform}</version>
<extensions>true</extensions>
<executions>
<execution>
<goals>
<goal>build</goal>
<goal>generate-code</goal>
<goal>generate-code-tests</goal>
<goal>native-image-agent</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down Expand Up @@ -155,6 +146,7 @@
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<maven.home>${maven.home}</maven.home>
</systemPropertyVariables>
<argLine>@{argLine}</argLine>
</configuration>
</plugin>
<plugin>
Expand All @@ -174,6 +166,7 @@
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<maven.home>${maven.home}</maven.home>
</systemPropertyVariables>
<argLine>@{argLine}</argLine>
</configuration>
</plugin>
<plugin>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/web/app/minimal-mistakes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
@import "minimal-mistakes/vendor/breakpoint/breakpoint";
@include breakpoint-set("to ems", true);
@import "minimal-mistakes/vendor/magnific-popup/magnific-popup"; // Magnific Popup
@import "minimal-mistakes/vendor/susy/susy";
@import "minimal-mistakes/span";
@import "minimal-mistakes/mixins";

/* Core CSS */
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/web/app/minimal-mistakes/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ form {
}

p {
margin-bottom: (5px / 2);
margin-bottom: (5px * 0.5);
}

ul {
Expand Down
18 changes: 11 additions & 7 deletions src/main/resources/web/app/minimal-mistakes/_mixins.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
@use "sass:color";

/* ==========================================================================
MIXINS
========================================================================== */

@use "sass:math";

%tab-focus {
/* Default*/
outline: thin dotted $focus-color;
Expand All @@ -15,7 +19,7 @@
========================================================================== */

@function em($target, $context: $doc-font-size) {
@return ($target / $context) * 1em;
@return math.div($target, $context) * 1em;
}


Expand Down Expand Up @@ -61,15 +65,15 @@
$color,
$threshold: $yiq-contrasted-threshold
) {
$red: red($color);
$green: green($color);
$blue: blue($color);
$red: color.channel($color, 'red', $space: rgb);
$green: color.channel($color, 'green', $space: rgb);
$blue: color.channel($color, 'blue', $space: rgb);

$yiq: (($red*299)+($green*587)+($blue*114))/1000;
$yiq: (($red*299)+($green*587)+($blue*114))*0.001;

@if $yiq-debug { @debug $yiq, $threshold; }

@return if($yiq >= $threshold, true, false);
@return if(sass($yiq >= $threshold): true; else: false);
}

@function yiq-contrast-color(
Expand All @@ -78,7 +82,7 @@
$light: $yiq-contrasted-light-default,
$threshold: $yiq-contrasted-threshold
) {
@return if(yiq-is-light($color, $threshold), $yiq-contrasted-dark-default, $yiq-contrasted-light-default);
@return if(sass(yiq-is-light($color, $threshold)): $yiq-contrasted-dark-default; else: $yiq-contrasted-light-default);
}

@mixin yiq-contrasted(
Expand Down
9 changes: 9 additions & 0 deletions src/main/resources/web/app/minimal-mistakes/_span.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Lightweight replacement for the Susy span() function.
// Usage: span($n of $total) returns a percentage width.
@use "sass:math";

@function span($span) {
$n: nth($span, 1);
$total: nth($span, 3);
@return math.percentage(math.div($n, $total));
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
//////////////////////////////
// Converts the input value to Base EMs
//////////////////////////////
@use "sass:math";

@function breakpoint-to-base-em($value) {
$value-unit: unit($value);

Expand All @@ -9,7 +11,7 @@
$base-unit: unit(breakpoint-get('base font size'));

@if $base-unit == 'px' or $base-unit == '%' or $base-unit == 'em' or $base-unit == 'pt' {
@return base-conversion($value) / base-conversion(breakpoint-get('base font size')) * 1em;
@return math.div(base-conversion($value), base-conversion(breakpoint-get('base font size'))) * 1em;
}
@else {
@warn '#{breakpoint-get(\'base font size\')} is not set in valid units for font size!';
Expand All @@ -25,16 +27,16 @@
$unit: unit($value);

@if $unit == 'px' {
@return $value / 16px * 1em;
@return math.div($value, 16px) * 1em;
}
@else if $unit == '%' {
@return $value / 100% * 1em;
@return math.div($value, 100%) * 1em;
}
@else if $unit == 'em' {
@return $value;
}
@else if $unit == 'pt' {
@return $value / 12pt * 1em;
@return math.div($value, 12pt) * 1em;
}
@else {
@return $value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ $Memo-Exists: function-exists(memo-get) and function-exists(memo-set);


// Test to see if it's a comma-separated list
$or-list: if(list-separator($query) == 'comma', true, false);
$or-list: if(sass(list-separator($query) == 'comma'): true; else: false);


@if ($or-list == false and breakpoint-get('legacy syntax') == false) {
Expand Down Expand Up @@ -69,7 +69,7 @@ $Memo-Exists: function-exists(memo-get) and function-exists(memo-set);
@else {
$query-string: '';
@for $i from 1 through $length {
$query-string: $query-string + if($i == 1, '', ', ') + breakpoint-parse(nth($query, $i));
$query-string: $query-string + if(sass($i == 1): ''; else: ', ') + breakpoint-parse(nth($query, $i));
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@use "sass:math";

@function breakpoint-make-resolutions($resolution) {
$length: length($resolution);

Expand Down Expand Up @@ -34,8 +36,8 @@
// Write out feature tests
$webkit: '';
$moz: '';
$webkit: '(-webkit-#{$feature}device-pixel-ratio: #{$value / $base})';
$moz: '(#{$feature}-moz-device-pixel-ratio: #{$value / $base})';
$webkit: '(-webkit-#{$feature}device-pixel-ratio: #{math.div($value, $base)})';
$moz: '(#{$feature}-moz-device-pixel-ratio: #{math.div($value, $base)})';
// Append to output
$output: append($output, $standard, space);
$output: append($output, $webkit, space);
Expand All @@ -44,9 +46,9 @@
@else {
$webkit: '';
$moz: '';
$webkit: '(-webkit-#{$feature}device-pixel-ratio: #{$value / 1dppx})';
$moz: '(#{$feature}-moz-device-pixel-ratio: #{$value / 1dppx})';
$fallback: '(#{$feature}resolution: #{$value / 1dppx * 96dpi})';
$webkit: '(-webkit-#{$feature}device-pixel-ratio: #{math.div($value, 1dppx)})';
$moz: '(#{$feature}-moz-device-pixel-ratio: #{math.div($value, 1dppx)})';
$fallback: '(#{$feature}resolution: #{math.div($value, 1dppx) * 96dpi})';
// Append to output
$output: append($output, $standard, space);
$output: append($output, $webkit, space);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/* Magnific Popup CSS */

@use "sass:math";

@import "settings";

////////////////////////
Expand Down Expand Up @@ -52,7 +54,7 @@ $mfp-include-iframe-type: true !default;
$mfp-iframe-padding-top: 40px !default;
$mfp-iframe-background: #000 !default;
$mfp-iframe-max-width: 900px !default;
$mfp-iframe-ratio: 9/16 !default;
$mfp-iframe-ratio: math.div(9, 16) !default;

// Image-type options
$mfp-include-image-type: true !default;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
////////////////////////

// overlay
@use "sass:math";

$mfp-overlay-color: #000; // Color of overlay screen
$mfp-overlay-opacity: 0.8; // Opacity of overlay screen
$mfp-shadow: 0 0 8px rgba(0, 0, 0, 0.6); // Shadow on image or iframe
Expand All @@ -28,7 +30,7 @@ $mfp-include-iframe-type: true; // Enable Ifra
$mfp-iframe-padding-top: 40px; // Iframe padding top
$mfp-iframe-background: #000; // Background color of iframes
$mfp-iframe-max-width: 900px; // Maximum width of iframes
$mfp-iframe-ratio: 9/16; // Ratio of iframe (9/16 = widescreen, 3/4 = standard, etc.)
$mfp-iframe-ratio: math.div(9, 16); // Ratio of iframe (9/16 = widescreen, 3/4 = standard, etc.)

// Image-type options
$mfp-include-image-type: true; // Enable Image-type popups
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading