included glitchtip/sentry

This commit is contained in:
2025-03-21 14:27:08 +01:00
parent 8b2c26774f
commit e8a7c0d190
65 changed files with 10897 additions and 8974 deletions

View File

@@ -9,6 +9,6 @@ $color-blabla:#9458aa;
$color-webshowroom:rgb(255, 159, 80);
$color-focus:#8bc4ff;
$alpha: 0.90;
$color-base-transparent: change-color($color-base, $alpha: $alpha);
$color-showrooms-transparent: change-color($color-showrooms, $alpha: $alpha);
$color-blabla-transparent: change-color($color-blabla, $alpha: $alpha);
$color-base-transparent: color.change($color-base, $alpha: $alpha);
$color-showrooms-transparent: color.change($color-showrooms, $alpha: $alpha);
$color-blabla-transparent: color.change($color-blabla, $alpha: $alpha);

View File

@@ -21,7 +21,7 @@ $large-bp:1900px;
}
}
%col-reset {
@mixin col-reset {
width: 100%;
// display: inline-block;
// white-space:normal;
@@ -31,7 +31,7 @@ $large-bp:1900px;
}
@mixin col($col, $offset: 0, $sum: $default_sum, $gap: $default_gap, $align: top) {
@extend %col-reset;
@include col-reset;
padding-left: $gap*$offset;
@if $col == $default_sum {
padding-right: 0;
@@ -40,10 +40,10 @@ $large-bp:1900px;
}
&:last-child{padding-right: 0;}
margin-left: percentage(($col/$sum)*$offset);
margin-left: math.percentage(math.div($col, $sum)*$offset);
// @media only screen and (min-width: 768px) {
width: percentage($col/$sum);
width: math.percentage(math.div($col, $sum));
// vertical-align: $align;
// }
}

View File

@@ -1,6 +1,10 @@
@use "sass:math";
@use "sass:color";
// @import '~slim-select/scss';
@import 'slim-select/styles';
$mdi-font-path: './mdi/fonts/';
@import './mdi/css/materialdesignicons.css';
@import './mdi/scss/variables';
@@ -765,7 +769,7 @@ aside.messages{
nav.tabs{
ul.tabs.primary{
li{
background-color: change-color($color-base, $alpha: 0.5);
background-color: color.change($color-base, $alpha: 0.5);
color:#fff;
&.is-active{
background-color: $color-base;
@@ -1039,11 +1043,11 @@ article.node--type-frontpage{
justify-content: space-around;
}
li{
padding:0 0 $column_goutiere / 2 0;
padding:0 0 math.div($column_goutiere, 2) 0;
box-sizing: border-box;
// padding-top: 140%;
width: $column_width / 2;
height: $card_height / 2;
width: math.div($column_width, 2);
height: math.div($card_height, 2);
position: relative;
list-style: none;
margin:0;
@@ -1666,6 +1670,8 @@ article.card{
background-color: #fff;
box-sizing: content-box;
padding: 0.3em 0.1em;
opacity: 0;
transition: opacity 0.2s ease-in-out;
>*{
overflow: visible;
position: relative;
@@ -1769,8 +1775,6 @@ article.card{
}
}
}
opacity: 0;
transition: opacity 0.2s ease-in-out;
}
@include hover{
@@ -2177,7 +2181,7 @@ article.card{
display: inline-block;
width:$column_width;
margin:0 $column_goutiere $column_goutiere*0.6 0;
height:$card_height / 2;
height:math.div($card_height, 2);
background-size: cover;
cursor: pointer;
}