|
|
@ -1,10 +1,11 @@ |
|
|
@use '@angular/material' as mat; |
|
|
@use '@angular/material' as mat; |
|
|
|
|
|
@use 'sass:color'; |
|
|
|
|
|
|
|
|
@import './styles/bootstrap'; |
|
|
@use './styles/bootstrap'; |
|
|
@import './styles/table'; |
|
|
@use './styles/table' as table; |
|
|
@import './styles/variables'; |
|
|
@use './styles/variables' as variables; |
|
|
|
|
|
|
|
|
@import 'svgmap/style.min'; |
|
|
@use 'svgmap/style.min'; |
|
|
|
|
|
|
|
|
:root { |
|
|
:root { |
|
|
--dark-background: rgb(25, 25, 25); |
|
|
--dark-background: rgb(25, 25, 25); |
|
|
@ -12,8 +13,10 @@ |
|
|
--light-background: rgb(255, 255, 255); |
|
|
--light-background: rgb(255, 255, 255); |
|
|
|
|
|
|
|
|
--dark-primary-text: |
|
|
--dark-primary-text: |
|
|
#{red($dark-primary-text)}, #{green($dark-primary-text)}, |
|
|
#{color.channel(variables.$dark-primary-text, 'red')}, |
|
|
#{blue($dark-primary-text)}, #{alpha($dark-primary-text)}; |
|
|
#{color.channel(variables.$dark-primary-text, 'green')}, |
|
|
|
|
|
#{color.channel(variables.$dark-primary-text, 'blue')}, |
|
|
|
|
|
#{color.channel(variables.$dark-primary-text, 'alpha')}; |
|
|
--dark-secondary-text: 0, 0, 0, 0.54; |
|
|
--dark-secondary-text: 0, 0, 0, 0.54; |
|
|
--dark-accent-text: 0, 0, 0, 0.87; |
|
|
--dark-accent-text: 0, 0, 0, 0.87; |
|
|
--dark-warn-text: 0, 0, 0, 0.87; |
|
|
--dark-warn-text: 0, 0, 0, 0.87; |
|
|
@ -21,8 +24,10 @@ |
|
|
--dark-dividers: 0, 0, 0, 0.12; |
|
|
--dark-dividers: 0, 0, 0, 0.12; |
|
|
--dark-focused: 0, 0, 0, 0.12; |
|
|
--dark-focused: 0, 0, 0, 0.12; |
|
|
--light-primary-text: |
|
|
--light-primary-text: |
|
|
#{red($light-primary-text)}, #{green($light-primary-text)}, |
|
|
#{color.channel(variables.$light-primary-text, 'red')}, |
|
|
#{blue($light-primary-text)}, #{alpha($light-primary-text)}; |
|
|
#{color.channel(variables.$light-primary-text, 'green')}, |
|
|
|
|
|
#{color.channel(variables.$light-primary-text, 'blue')}, |
|
|
|
|
|
#{color.channel(variables.$light-primary-text, 'alpha')}; |
|
|
--light-secondary-text: 255, 255, 255, 0.7; |
|
|
--light-secondary-text: 255, 255, 255, 0.7; |
|
|
--light-accent-text: 255, 255, 255, 1; |
|
|
--light-accent-text: 255, 255, 255, 1; |
|
|
--light-warn-text: 255, 255, 255, 1; |
|
|
--light-warn-text: 255, 255, 255, 1; |
|
|
@ -240,7 +245,7 @@ body { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.gf-table { |
|
|
.gf-table { |
|
|
@include gf-table(true); |
|
|
@include table.gf-table(true); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.mat-mdc-dialog-container { |
|
|
.mat-mdc-dialog-container { |
|
|
@ -353,7 +358,7 @@ ngx-skeleton-loader { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.gf-table { |
|
|
.gf-table { |
|
|
@include gf-table; |
|
|
@include table.gf-table; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.gf-text-wrap-balance { |
|
|
.gf-text-wrap-balance { |
|
|
|