@ngx-stoui/core 18.0.0 → 19.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/fesm2022/ngx-stoui-core.mjs +66 -66
  2. package/fesm2022/ngx-stoui-core.mjs.map +1 -1
  3. package/lib/sto-directives/menu-overlay.directive.d.ts +2 -4
  4. package/lib/sto-directives/sto-grid.directive.d.ts +0 -1
  5. package/lib/sto-directives/sto-select-text-on-focus.directive.d.ts +1 -2
  6. package/ngx-datatable.css +1 -1
  7. package/ngx-stoui.css +934 -830
  8. package/package.json +4 -6
  9. package/style/datatable/_ngx-datatable-form.scss +1 -2
  10. package/style/datatable/ngx-datatable.scss +1 -1
  11. package/style/form/sto-form.scss +7 -15
  12. package/style/theme/_action-footer.scss +5 -7
  13. package/style/theme/_appheader.scss +13 -12
  14. package/style/theme/_datatable.scss +11 -10
  15. package/style/theme/_daterange.scss +13 -12
  16. package/style/theme/_dialog.scss +6 -7
  17. package/style/theme/_filterpanel.scss +10 -9
  18. package/style/theme/_input-overrides.scss +4 -3
  19. package/style/theme/_message-panel.scss +12 -11
  20. package/style/theme/_number-input.scss +5 -5
  21. package/style/theme/_number-unit-input.scss +7 -7
  22. package/style/theme/_select-filter.scss +5 -4
  23. package/style/theme/_sto-indicators.scss +18 -17
  24. package/style/theme/_theme-variables.scss +12 -11
  25. package/style/theme/_theme.scss +1 -1
  26. package/style/theme/_wysiwyg.scss +3 -2
  27. package/style/theme/preference-manager.scss +7 -11
  28. package/style/theme.scss +4 -0
  29. package/esm2022/index.mjs +0 -15
  30. package/esm2022/lib/abstract-and-interfaces/keyPress.enum.mjs +0 -140
  31. package/esm2022/lib/sto-directives/context-menu.directive.mjs +0 -36
  32. package/esm2022/lib/sto-directives/date-form-field-click.directive.mjs +0 -46
  33. package/esm2022/lib/sto-directives/directives.module.mjs +0 -64
  34. package/esm2022/lib/sto-directives/index.mjs +0 -7
  35. package/esm2022/lib/sto-directives/menu-overlay.directive.mjs +0 -48
  36. package/esm2022/lib/sto-directives/quick-keys.directive.mjs +0 -79
  37. package/esm2022/lib/sto-directives/sto-grid.directive.mjs +0 -113
  38. package/esm2022/lib/sto-directives/sto-select-text-on-focus.directive.mjs +0 -36
  39. package/esm2022/lib/sto-pipes/currency-format.pipe.mjs +0 -36
  40. package/esm2022/lib/sto-pipes/date-format.pipe.mjs +0 -54
  41. package/esm2022/lib/sto-pipes/keys.pipe.mjs +0 -28
  42. package/esm2022/lib/sto-pipes/number-format.pipe.mjs +0 -79
  43. package/esm2022/lib/sto-pipes/sto-pipes.module.mjs +0 -49
  44. package/esm2022/lib/sto-pipes/with-unit.mjs +0 -43
  45. package/esm2022/lib/sto-pipes/yes-no.mjs +0 -21
  46. package/esm2022/ngx-stoui-core.mjs +0 -5
package/ngx-stoui.css CHANGED
@@ -688,320 +688,6 @@ body .sto-dialog .mat-dialog-container .mat-dialog-content.scroll-lines {
688
688
  border-bottom: solid 1px var(--divider);
689
689
  }
690
690
 
691
- .mat-ripple {
692
- overflow: hidden;
693
- position: relative;
694
- }
695
- .mat-ripple:not(:empty) {
696
- transform: translateZ(0);
697
- }
698
-
699
- .mat-ripple.mat-ripple-unbounded {
700
- overflow: visible;
701
- }
702
-
703
- .mat-ripple-element {
704
- position: absolute;
705
- border-radius: 50%;
706
- pointer-events: none;
707
- transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);
708
- transform: scale3d(0, 0, 0);
709
- background-color: var(--mat-ripple-color, rgba(0, 0, 0, 0.1));
710
- }
711
- .cdk-high-contrast-active .mat-ripple-element {
712
- display: none;
713
- }
714
-
715
- .cdk-drag-preview .mat-ripple-element, .cdk-drag-placeholder .mat-ripple-element {
716
- display: none;
717
- }
718
-
719
- .cdk-visually-hidden {
720
- border: 0;
721
- clip: rect(0 0 0 0);
722
- height: 1px;
723
- margin: -1px;
724
- overflow: hidden;
725
- padding: 0;
726
- position: absolute;
727
- width: 1px;
728
- white-space: nowrap;
729
- outline: 0;
730
- -webkit-appearance: none;
731
- -moz-appearance: none;
732
- left: 0;
733
- }
734
- [dir=rtl] .cdk-visually-hidden {
735
- left: auto;
736
- right: 0;
737
- }
738
-
739
- .cdk-overlay-container, .cdk-global-overlay-wrapper {
740
- pointer-events: none;
741
- top: 0;
742
- left: 0;
743
- height: 100%;
744
- width: 100%;
745
- }
746
-
747
- .cdk-overlay-container {
748
- position: fixed;
749
- z-index: 1000;
750
- }
751
- .cdk-overlay-container:empty {
752
- display: none;
753
- }
754
-
755
- .cdk-global-overlay-wrapper {
756
- display: flex;
757
- position: absolute;
758
- z-index: 1000;
759
- }
760
-
761
- .cdk-overlay-pane {
762
- position: absolute;
763
- pointer-events: auto;
764
- box-sizing: border-box;
765
- z-index: 1000;
766
- display: flex;
767
- max-width: 100%;
768
- max-height: 100%;
769
- }
770
-
771
- .cdk-overlay-backdrop {
772
- position: absolute;
773
- top: 0;
774
- bottom: 0;
775
- left: 0;
776
- right: 0;
777
- z-index: 1000;
778
- pointer-events: auto;
779
- -webkit-tap-highlight-color: transparent;
780
- transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
781
- opacity: 0;
782
- }
783
- .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
784
- opacity: 1;
785
- }
786
- .cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
787
- opacity: 0.6;
788
- }
789
-
790
- .cdk-overlay-dark-backdrop {
791
- background: rgba(0, 0, 0, 0.32);
792
- }
793
-
794
- .cdk-overlay-transparent-backdrop {
795
- transition: visibility 1ms linear, opacity 1ms linear;
796
- visibility: hidden;
797
- opacity: 1;
798
- }
799
- .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
800
- opacity: 0;
801
- visibility: visible;
802
- }
803
-
804
- .cdk-overlay-backdrop-noop-animation {
805
- transition: none;
806
- }
807
-
808
- .cdk-overlay-connected-position-bounding-box {
809
- position: absolute;
810
- z-index: 1000;
811
- display: flex;
812
- flex-direction: column;
813
- min-width: 1px;
814
- min-height: 1px;
815
- }
816
-
817
- .cdk-global-scrollblock {
818
- position: fixed;
819
- width: 100%;
820
- overflow-y: scroll;
821
- }
822
-
823
- textarea.cdk-textarea-autosize {
824
- resize: none;
825
- }
826
-
827
- textarea.cdk-textarea-autosize-measuring {
828
- padding: 2px 0 !important;
829
- box-sizing: content-box !important;
830
- height: auto !important;
831
- overflow: hidden !important;
832
- }
833
-
834
- textarea.cdk-textarea-autosize-measuring-firefox {
835
- padding: 2px 0 !important;
836
- box-sizing: content-box !important;
837
- height: 0 !important;
838
- }
839
-
840
- @keyframes cdk-text-field-autofill-start { /*!*/ }
841
- @keyframes cdk-text-field-autofill-end { /*!*/ }
842
- .cdk-text-field-autofill-monitored:-webkit-autofill {
843
- animation: cdk-text-field-autofill-start 0s 1ms;
844
- }
845
-
846
- .cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
847
- animation: cdk-text-field-autofill-end 0s 1ms;
848
- }
849
-
850
- .mat-focus-indicator {
851
- position: relative;
852
- }
853
- .mat-focus-indicator::before {
854
- top: 0;
855
- left: 0;
856
- right: 0;
857
- bottom: 0;
858
- position: absolute;
859
- box-sizing: border-box;
860
- pointer-events: none;
861
- display: var(--mat-focus-indicator-display, none);
862
- border: var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);
863
- border-radius: var(--mat-focus-indicator-border-radius, 4px);
864
- }
865
- .mat-focus-indicator:focus::before {
866
- content: "";
867
- }
868
-
869
- .cdk-high-contrast-active {
870
- --mat-focus-indicator-display: block;
871
- }
872
-
873
- .mat-mdc-focus-indicator {
874
- position: relative;
875
- }
876
- .mat-mdc-focus-indicator::before {
877
- top: 0;
878
- left: 0;
879
- right: 0;
880
- bottom: 0;
881
- position: absolute;
882
- box-sizing: border-box;
883
- pointer-events: none;
884
- display: var(--mat-mdc-focus-indicator-display, none);
885
- border: var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);
886
- border-radius: var(--mat-mdc-focus-indicator-border-radius, 4px);
887
- }
888
- .mat-mdc-focus-indicator:focus::before {
889
- content: "";
890
- }
891
-
892
- .cdk-high-contrast-active {
893
- --mat-mdc-focus-indicator-display: block;
894
- }
895
-
896
- .mat-app-background {
897
- background-color: var(--mat-app-background-color, transparent);
898
- color: var(--mat-app-text-color, inherit);
899
- }
900
-
901
- .mat-elevation-z0, .mat-mdc-elevation-specific.mat-elevation-z0 {
902
- box-shadow: var(--mat-app-elevation-shadow-level-0, none);
903
- }
904
-
905
- .mat-elevation-z1, .mat-mdc-elevation-specific.mat-elevation-z1 {
906
- box-shadow: var(--mat-app-elevation-shadow-level-1, none);
907
- }
908
-
909
- .mat-elevation-z2, .mat-mdc-elevation-specific.mat-elevation-z2 {
910
- box-shadow: var(--mat-app-elevation-shadow-level-2, none);
911
- }
912
-
913
- .mat-elevation-z3, .mat-mdc-elevation-specific.mat-elevation-z3 {
914
- box-shadow: var(--mat-app-elevation-shadow-level-3, none);
915
- }
916
-
917
- .mat-elevation-z4, .mat-mdc-elevation-specific.mat-elevation-z4 {
918
- box-shadow: var(--mat-app-elevation-shadow-level-4, none);
919
- }
920
-
921
- .mat-elevation-z5, .mat-mdc-elevation-specific.mat-elevation-z5 {
922
- box-shadow: var(--mat-app-elevation-shadow-level-5, none);
923
- }
924
-
925
- .mat-elevation-z6, .mat-mdc-elevation-specific.mat-elevation-z6 {
926
- box-shadow: var(--mat-app-elevation-shadow-level-6, none);
927
- }
928
-
929
- .mat-elevation-z7, .mat-mdc-elevation-specific.mat-elevation-z7 {
930
- box-shadow: var(--mat-app-elevation-shadow-level-7, none);
931
- }
932
-
933
- .mat-elevation-z8, .mat-mdc-elevation-specific.mat-elevation-z8 {
934
- box-shadow: var(--mat-app-elevation-shadow-level-8, none);
935
- }
936
-
937
- .mat-elevation-z9, .mat-mdc-elevation-specific.mat-elevation-z9 {
938
- box-shadow: var(--mat-app-elevation-shadow-level-9, none);
939
- }
940
-
941
- .mat-elevation-z10, .mat-mdc-elevation-specific.mat-elevation-z10 {
942
- box-shadow: var(--mat-app-elevation-shadow-level-10, none);
943
- }
944
-
945
- .mat-elevation-z11, .mat-mdc-elevation-specific.mat-elevation-z11 {
946
- box-shadow: var(--mat-app-elevation-shadow-level-11, none);
947
- }
948
-
949
- .mat-elevation-z12, .mat-mdc-elevation-specific.mat-elevation-z12 {
950
- box-shadow: var(--mat-app-elevation-shadow-level-12, none);
951
- }
952
-
953
- .mat-elevation-z13, .mat-mdc-elevation-specific.mat-elevation-z13 {
954
- box-shadow: var(--mat-app-elevation-shadow-level-13, none);
955
- }
956
-
957
- .mat-elevation-z14, .mat-mdc-elevation-specific.mat-elevation-z14 {
958
- box-shadow: var(--mat-app-elevation-shadow-level-14, none);
959
- }
960
-
961
- .mat-elevation-z15, .mat-mdc-elevation-specific.mat-elevation-z15 {
962
- box-shadow: var(--mat-app-elevation-shadow-level-15, none);
963
- }
964
-
965
- .mat-elevation-z16, .mat-mdc-elevation-specific.mat-elevation-z16 {
966
- box-shadow: var(--mat-app-elevation-shadow-level-16, none);
967
- }
968
-
969
- .mat-elevation-z17, .mat-mdc-elevation-specific.mat-elevation-z17 {
970
- box-shadow: var(--mat-app-elevation-shadow-level-17, none);
971
- }
972
-
973
- .mat-elevation-z18, .mat-mdc-elevation-specific.mat-elevation-z18 {
974
- box-shadow: var(--mat-app-elevation-shadow-level-18, none);
975
- }
976
-
977
- .mat-elevation-z19, .mat-mdc-elevation-specific.mat-elevation-z19 {
978
- box-shadow: var(--mat-app-elevation-shadow-level-19, none);
979
- }
980
-
981
- .mat-elevation-z20, .mat-mdc-elevation-specific.mat-elevation-z20 {
982
- box-shadow: var(--mat-app-elevation-shadow-level-20, none);
983
- }
984
-
985
- .mat-elevation-z21, .mat-mdc-elevation-specific.mat-elevation-z21 {
986
- box-shadow: var(--mat-app-elevation-shadow-level-21, none);
987
- }
988
-
989
- .mat-elevation-z22, .mat-mdc-elevation-specific.mat-elevation-z22 {
990
- box-shadow: var(--mat-app-elevation-shadow-level-22, none);
991
- }
992
-
993
- .mat-elevation-z23, .mat-mdc-elevation-specific.mat-elevation-z23 {
994
- box-shadow: var(--mat-app-elevation-shadow-level-23, none);
995
- }
996
-
997
- .mat-elevation-z24, .mat-mdc-elevation-specific.mat-elevation-z24 {
998
- box-shadow: var(--mat-app-elevation-shadow-level-24, none);
999
- }
1000
-
1001
- .mat-theme-loaded-marker {
1002
- display: none;
1003
- }
1004
-
1005
691
  html {
1006
692
  --mat-ripple-color: rgba(0, 0, 0, 0.1);
1007
693
  }
@@ -1034,25 +720,29 @@ html {
1034
720
  --mat-optgroup-label-text-color: rgba(0, 0, 0, 0.87);
1035
721
  }
1036
722
 
1037
- .mat-primary {
1038
- --mat-full-pseudo-checkbox-selected-icon-color: var(--primary-resting);
723
+ html {
724
+ --mat-full-pseudo-checkbox-selected-icon-color: var(--accent-highlight);
1039
725
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
1040
726
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
1041
727
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
1042
728
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
1043
729
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
1044
- --mat-minimal-pseudo-checkbox-selected-checkmark-color: var(--primary-resting);
730
+ }
731
+ html {
732
+ --mat-minimal-pseudo-checkbox-selected-checkmark-color: var(--accent-highlight);
1045
733
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
1046
734
  }
1047
735
 
1048
- html {
1049
- --mat-full-pseudo-checkbox-selected-icon-color: var(--accent-highlight);
736
+ .mat-primary {
737
+ --mat-full-pseudo-checkbox-selected-icon-color: var(--primary-resting);
1050
738
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
1051
739
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
1052
740
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
1053
741
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
1054
742
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
1055
- --mat-minimal-pseudo-checkbox-selected-checkmark-color: var(--accent-highlight);
743
+ }
744
+ .mat-primary {
745
+ --mat-minimal-pseudo-checkbox-selected-checkmark-color: var(--primary-resting);
1056
746
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
1057
747
  }
1058
748
 
@@ -1063,6 +753,8 @@ html {
1063
753
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
1064
754
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
1065
755
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
756
+ }
757
+ .mat-accent {
1066
758
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: var(--accent-highlight);
1067
759
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
1068
760
  }
@@ -1074,6 +766,8 @@ html {
1074
766
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
1075
767
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
1076
768
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
769
+ }
770
+ .mat-warn {
1077
771
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #f44336;
1078
772
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
1079
773
  }
@@ -1140,25 +834,29 @@ html {
1140
834
  --mat-optgroup-label-text-color: rgba(0, 0, 0, 0.87);
1141
835
  }
1142
836
 
1143
- .mat-primary {
1144
- --mat-full-pseudo-checkbox-selected-icon-color: var(--primary-resting);
837
+ html {
838
+ --mat-full-pseudo-checkbox-selected-icon-color: var(--accent-highlight);
1145
839
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
1146
840
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
1147
841
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
1148
842
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
1149
843
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
1150
- --mat-minimal-pseudo-checkbox-selected-checkmark-color: var(--primary-resting);
844
+ }
845
+ html {
846
+ --mat-minimal-pseudo-checkbox-selected-checkmark-color: var(--accent-highlight);
1151
847
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
1152
848
  }
1153
849
 
1154
- html {
1155
- --mat-full-pseudo-checkbox-selected-icon-color: var(--accent-highlight);
850
+ .mat-primary {
851
+ --mat-full-pseudo-checkbox-selected-icon-color: var(--primary-resting);
1156
852
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
1157
853
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
1158
854
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
1159
855
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
1160
856
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
1161
- --mat-minimal-pseudo-checkbox-selected-checkmark-color: var(--accent-highlight);
857
+ }
858
+ .mat-primary {
859
+ --mat-minimal-pseudo-checkbox-selected-checkmark-color: var(--primary-resting);
1162
860
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
1163
861
  }
1164
862
 
@@ -1169,6 +867,8 @@ html {
1169
867
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
1170
868
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
1171
869
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
870
+ }
871
+ .mat-accent {
1172
872
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: var(--accent-highlight);
1173
873
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
1174
874
  }
@@ -1180,6 +880,8 @@ html {
1180
880
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
1181
881
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
1182
882
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
883
+ }
884
+ .mat-warn {
1183
885
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #f44336;
1184
886
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
1185
887
  }
@@ -1216,16 +918,21 @@ html {
1216
918
 
1217
919
  html {
1218
920
  --mdc-elevated-card-container-shape: 4px;
921
+ }
922
+ html {
1219
923
  --mdc-outlined-card-container-shape: 4px;
1220
924
  --mdc-outlined-card-outline-width: 1px;
1221
925
  }
1222
-
1223
926
  html {
1224
927
  --mdc-elevated-card-container-color: white;
1225
928
  --mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
929
+ }
930
+ html {
1226
931
  --mdc-outlined-card-container-color: white;
1227
932
  --mdc-outlined-card-outline-color: rgba(0, 0, 0, 0.12);
1228
933
  --mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
934
+ }
935
+ html {
1229
936
  --mat-card-subtitle-text-color: rgba(0, 0, 0, 0.54);
1230
937
  }
1231
938
 
@@ -1262,11 +969,12 @@ html {
1262
969
  --mdc-filled-text-field-active-indicator-height: 1px;
1263
970
  --mdc-filled-text-field-focus-active-indicator-height: 2px;
1264
971
  --mdc-filled-text-field-container-shape: 4px;
972
+ }
973
+ html {
1265
974
  --mdc-outlined-text-field-outline-width: 1px;
1266
975
  --mdc-outlined-text-field-focus-outline-width: 2px;
1267
976
  --mdc-outlined-text-field-container-shape: 4px;
1268
977
  }
1269
-
1270
978
  html {
1271
979
  --mdc-filled-text-field-caret-color: var(--primary-resting);
1272
980
  --mdc-filled-text-field-focus-active-indicator-color: var(--primary-resting);
@@ -1289,6 +997,8 @@ html {
1289
997
  --mdc-filled-text-field-error-active-indicator-color: #f44336;
1290
998
  --mdc-filled-text-field-error-focus-active-indicator-color: #f44336;
1291
999
  --mdc-filled-text-field-error-hover-active-indicator-color: #f44336;
1000
+ }
1001
+ html {
1292
1002
  --mdc-outlined-text-field-caret-color: var(--primary-resting);
1293
1003
  --mdc-outlined-text-field-focus-outline-color: var(--primary-resting);
1294
1004
  --mdc-outlined-text-field-focus-label-text-color: var(--primary-resting);
@@ -1308,6 +1018,8 @@ html {
1308
1018
  --mdc-outlined-text-field-error-focus-outline-color: #f44336;
1309
1019
  --mdc-outlined-text-field-error-hover-outline-color: #f44336;
1310
1020
  --mdc-outlined-text-field-error-outline-color: #f44336;
1021
+ }
1022
+ html {
1311
1023
  --mat-form-field-focus-select-arrow-color: var(--primary-resting);
1312
1024
  --mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, 0.38);
1313
1025
  --mat-form-field-state-layer-color: rgba(0, 0, 0, 0.87);
@@ -1331,9 +1043,13 @@ html {
1331
1043
  --mdc-filled-text-field-caret-color: var(--accent-highlight);
1332
1044
  --mdc-filled-text-field-focus-active-indicator-color: var(--accent-highlight);
1333
1045
  --mdc-filled-text-field-focus-label-text-color: var(--accent-highlight);
1046
+ }
1047
+ .mat-mdc-form-field.mat-accent {
1334
1048
  --mdc-outlined-text-field-caret-color: var(--accent-highlight);
1335
1049
  --mdc-outlined-text-field-focus-outline-color: var(--accent-highlight);
1336
1050
  --mdc-outlined-text-field-focus-label-text-color: var(--accent-highlight);
1051
+ }
1052
+ .mat-mdc-form-field.mat-accent {
1337
1053
  --mat-form-field-focus-select-arrow-color: var(--accent-highlight);
1338
1054
  }
1339
1055
 
@@ -1341,9 +1057,13 @@ html {
1341
1057
  --mdc-filled-text-field-caret-color: #f44336;
1342
1058
  --mdc-filled-text-field-focus-active-indicator-color: #f44336;
1343
1059
  --mdc-filled-text-field-focus-label-text-color: rgba(244, 67, 54, 0.87);
1060
+ }
1061
+ .mat-mdc-form-field.mat-warn {
1344
1062
  --mdc-outlined-text-field-caret-color: #f44336;
1345
1063
  --mdc-outlined-text-field-focus-outline-color: #f44336;
1346
1064
  --mdc-outlined-text-field-focus-label-text-color: rgba(244, 67, 54, 0.87);
1065
+ }
1066
+ .mat-mdc-form-field.mat-warn {
1347
1067
  --mat-form-field-focus-select-arrow-color: rgba(244, 67, 54, 0.87);
1348
1068
  }
1349
1069
 
@@ -1405,6 +1125,8 @@ html {
1405
1125
 
1406
1126
  html {
1407
1127
  --mdc-dialog-container-shape: 4px;
1128
+ }
1129
+ html {
1408
1130
  --mat-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
1409
1131
  --mat-dialog-container-max-width: 80vw;
1410
1132
  --mat-dialog-container-small-max-width: 80vw;
@@ -1421,7 +1143,6 @@ html {
1421
1143
  --mdc-dialog-subhead-color: rgba(0, 0, 0, 0.87);
1422
1144
  --mdc-dialog-supporting-text-color: rgba(0, 0, 0, 0.6);
1423
1145
  }
1424
-
1425
1146
  .mat-mdc-standard-chip {
1426
1147
  --mdc-chip-container-shape-radius: 16px;
1427
1148
  --mdc-chip-with-avatar-avatar-shape-radius: 14px;
@@ -1437,6 +1158,8 @@ html {
1437
1158
  --mdc-chip-selected-hover-state-layer-opacity: 0.04;
1438
1159
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;
1439
1160
  --mdc-chip-with-icon-disabled-icon-opacity: 1;
1161
+ }
1162
+ .mat-mdc-standard-chip {
1440
1163
  --mat-chip-disabled-container-opacity: 0.4;
1441
1164
  --mat-chip-trailing-action-opacity: 0.54;
1442
1165
  --mat-chip-trailing-action-focus-opacity: 1;
@@ -1465,6 +1188,8 @@ html {
1465
1188
  --mdc-chip-with-icon-selected-icon-color: #212121;
1466
1189
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;
1467
1190
  --mdc-chip-with-trailing-icon-trailing-icon-color: #212121;
1191
+ }
1192
+ .mat-mdc-standard-chip {
1468
1193
  --mat-chip-selected-disabled-trailing-icon-color: #212121;
1469
1194
  --mat-chip-selected-trailing-icon-color: #212121;
1470
1195
  }
@@ -1487,6 +1212,8 @@ html {
1487
1212
  --mdc-chip-with-icon-selected-icon-color: var(--primary-contrast-resting);
1488
1213
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: var(--primary-contrast-resting);
1489
1214
  --mdc-chip-with-trailing-icon-trailing-icon-color: var(--primary-contrast-resting);
1215
+ }
1216
+ .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
1490
1217
  --mat-chip-selected-disabled-trailing-icon-color: var(--primary-contrast-resting);
1491
1218
  --mat-chip-selected-trailing-icon-color: var(--primary-contrast-resting);
1492
1219
  }
@@ -1509,6 +1236,8 @@ html {
1509
1236
  --mdc-chip-with-icon-selected-icon-color: var(--accent-highlight-contrast);
1510
1237
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: var(--accent-highlight-contrast);
1511
1238
  --mdc-chip-with-trailing-icon-trailing-icon-color: var(--accent-highlight-contrast);
1239
+ }
1240
+ .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
1512
1241
  --mat-chip-selected-disabled-trailing-icon-color: var(--accent-highlight-contrast);
1513
1242
  --mat-chip-selected-trailing-icon-color: var(--accent-highlight-contrast);
1514
1243
  }
@@ -1531,6 +1260,8 @@ html {
1531
1260
  --mdc-chip-with-icon-selected-icon-color: white;
1532
1261
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
1533
1262
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
1263
+ }
1264
+ .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
1534
1265
  --mat-chip-selected-disabled-trailing-icon-color: white;
1535
1266
  --mat-chip-selected-trailing-icon-color: white;
1536
1267
  }
@@ -1538,7 +1269,6 @@ html {
1538
1269
  .mat-mdc-chip.mat-mdc-standard-chip {
1539
1270
  --mdc-chip-container-height: 32px;
1540
1271
  }
1541
-
1542
1272
  html {
1543
1273
  --mdc-switch-disabled-selected-icon-opacity: 0.38;
1544
1274
  --mdc-switch-disabled-track-opacity: 0.12;
@@ -1590,10 +1320,7 @@ html {
1590
1320
  --mdc-switch-disabled-unselected-handle-color: #424242;
1591
1321
  --mdc-switch-disabled-unselected-icon-color: #fff;
1592
1322
  --mdc-switch-disabled-unselected-track-color: #424242;
1593
- --mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);
1594
- --mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
1595
- --mdc-switch-handle-shadow-color: black;
1596
- --mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
1323
+ --mdc-switch-handle-surface-color: #fff;
1597
1324
  --mdc-switch-selected-icon-color: #fff;
1598
1325
  --mdc-switch-unselected-focus-handle-color: #212121;
1599
1326
  --mdc-switch-unselected-focus-state-layer-color: #424242;
@@ -1607,6 +1334,10 @@ html {
1607
1334
  --mdc-switch-unselected-pressed-state-layer-color: #424242;
1608
1335
  --mdc-switch-unselected-pressed-track-color: #e0e0e0;
1609
1336
  --mdc-switch-unselected-track-color: #e0e0e0;
1337
+ --mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
1338
+ --mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
1339
+ }
1340
+ html {
1610
1341
  --mdc-switch-disabled-label-text-color: rgba(0, 0, 0, 0.38);
1611
1342
  }
1612
1343
  html .mat-mdc-slide-toggle {
@@ -1634,17 +1365,19 @@ html {
1634
1365
  --mdc-radio-disabled-unselected-icon-opacity: 0.38;
1635
1366
  --mdc-radio-state-layer-size: 40px;
1636
1367
  }
1637
-
1638
1368
  .mat-mdc-radio-button.mat-primary {
1639
1369
  --mdc-radio-disabled-selected-icon-color: black;
1640
1370
  --mdc-radio-disabled-unselected-icon-color: black;
1641
1371
  --mdc-radio-unselected-hover-icon-color: #212121;
1372
+ --mdc-radio-unselected-focus-icon-color: #212121;
1642
1373
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
1643
1374
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
1644
1375
  --mdc-radio-selected-focus-icon-color: var(--primary-resting);
1645
1376
  --mdc-radio-selected-hover-icon-color: var(--primary-resting);
1646
1377
  --mdc-radio-selected-icon-color: var(--primary-resting);
1647
1378
  --mdc-radio-selected-pressed-icon-color: var(--primary-resting);
1379
+ }
1380
+ .mat-mdc-radio-button.mat-primary {
1648
1381
  --mat-radio-ripple-color: black;
1649
1382
  --mat-radio-checked-ripple-color: var(--primary-resting);
1650
1383
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
@@ -1654,12 +1387,15 @@ html {
1654
1387
  --mdc-radio-disabled-selected-icon-color: black;
1655
1388
  --mdc-radio-disabled-unselected-icon-color: black;
1656
1389
  --mdc-radio-unselected-hover-icon-color: #212121;
1390
+ --mdc-radio-unselected-focus-icon-color: #212121;
1657
1391
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
1658
1392
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
1659
1393
  --mdc-radio-selected-focus-icon-color: var(--accent-highlight);
1660
1394
  --mdc-radio-selected-hover-icon-color: var(--accent-highlight);
1661
1395
  --mdc-radio-selected-icon-color: var(--accent-highlight);
1662
1396
  --mdc-radio-selected-pressed-icon-color: var(--accent-highlight);
1397
+ }
1398
+ .mat-mdc-radio-button.mat-accent {
1663
1399
  --mat-radio-ripple-color: black;
1664
1400
  --mat-radio-checked-ripple-color: var(--accent-highlight);
1665
1401
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
@@ -1669,12 +1405,15 @@ html {
1669
1405
  --mdc-radio-disabled-selected-icon-color: black;
1670
1406
  --mdc-radio-disabled-unselected-icon-color: black;
1671
1407
  --mdc-radio-unselected-hover-icon-color: #212121;
1408
+ --mdc-radio-unselected-focus-icon-color: #212121;
1672
1409
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
1673
1410
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
1674
1411
  --mdc-radio-selected-focus-icon-color: #f44336;
1675
1412
  --mdc-radio-selected-hover-icon-color: #f44336;
1676
1413
  --mdc-radio-selected-icon-color: #f44336;
1677
1414
  --mdc-radio-selected-pressed-icon-color: #f44336;
1415
+ }
1416
+ .mat-mdc-radio-button.mat-warn {
1678
1417
  --mat-radio-ripple-color: black;
1679
1418
  --mat-radio-checked-ripple-color: #f44336;
1680
1419
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
@@ -1683,17 +1422,12 @@ html {
1683
1422
 
1684
1423
  html {
1685
1424
  --mdc-radio-state-layer-size: 40px;
1425
+ }
1426
+ html {
1686
1427
  --mat-radio-touch-target-display: block;
1687
1428
  }
1688
1429
 
1689
1430
  html {
1690
- --mat-slider-value-indicator-width: auto;
1691
- --mat-slider-value-indicator-height: 32px;
1692
- --mat-slider-value-indicator-caret-display: block;
1693
- --mat-slider-value-indicator-border-radius: 4px;
1694
- --mat-slider-value-indicator-padding: 0 12px;
1695
- --mat-slider-value-indicator-text-transform: none;
1696
- --mat-slider-value-indicator-container-transform: translateX(-50%);
1697
1431
  --mdc-slider-active-track-height: 6px;
1698
1432
  --mdc-slider-active-track-shape: 9999px;
1699
1433
  --mdc-slider-handle-height: 20px;
@@ -1706,13 +1440,23 @@ html {
1706
1440
  --mdc-slider-with-tick-marks-container-shape: 50%;
1707
1441
  --mdc-slider-with-tick-marks-container-size: 2px;
1708
1442
  --mdc-slider-with-tick-marks-inactive-container-opacity: 0.6;
1443
+ --mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
1709
1444
  }
1710
-
1711
1445
  html {
1712
- --mdc-slider-handle-color: var(--primary-resting);
1713
- --mdc-slider-focus-handle-color: var(--primary-resting);
1714
- --mdc-slider-hover-handle-color: var(--primary-resting);
1715
- --mdc-slider-active-track-color: var(--primary-resting);
1446
+ --mat-slider-value-indicator-width: auto;
1447
+ --mat-slider-value-indicator-height: 32px;
1448
+ --mat-slider-value-indicator-caret-display: block;
1449
+ --mat-slider-value-indicator-border-radius: 4px;
1450
+ --mat-slider-value-indicator-padding: 0 12px;
1451
+ --mat-slider-value-indicator-text-transform: none;
1452
+ --mat-slider-value-indicator-container-transform: translateX(-50%);
1453
+ }
1454
+
1455
+ html {
1456
+ --mdc-slider-handle-color: var(--primary-resting);
1457
+ --mdc-slider-focus-handle-color: var(--primary-resting);
1458
+ --mdc-slider-hover-handle-color: var(--primary-resting);
1459
+ --mdc-slider-active-track-color: var(--primary-resting);
1716
1460
  --mdc-slider-inactive-track-color: var(--primary-resting);
1717
1461
  --mdc-slider-with-tick-marks-inactive-container-color: var(--primary-resting);
1718
1462
  --mdc-slider-with-tick-marks-active-container-color: var(--primary-contrast-resting);
@@ -1723,16 +1467,14 @@ html {
1723
1467
  --mdc-slider-label-label-text-color: #fff;
1724
1468
  --mdc-slider-with-overlap-handle-outline-color: #fff;
1725
1469
  --mdc-slider-with-tick-marks-disabled-container-color: #000;
1726
- --mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
1470
+ }
1471
+ html {
1727
1472
  --mat-slider-ripple-color: var(--primary-resting);
1728
1473
  --mat-slider-hover-state-layer-color: rgba(var(--primary-resting), 0.05);
1729
1474
  --mat-slider-focus-state-layer-color: rgba(var(--primary-resting), 0.2);
1730
1475
  --mat-slider-value-indicator-opacity: 0.6;
1731
1476
  }
1732
1477
  html .mat-accent {
1733
- --mat-slider-ripple-color: var(--accent-highlight);
1734
- --mat-slider-hover-state-layer-color: rgba(var(--accent-highlight), 0.05);
1735
- --mat-slider-focus-state-layer-color: rgba(var(--accent-highlight), 0.2);
1736
1478
  --mdc-slider-handle-color: var(--accent-highlight);
1737
1479
  --mdc-slider-focus-handle-color: var(--accent-highlight);
1738
1480
  --mdc-slider-hover-handle-color: var(--accent-highlight);
@@ -1741,10 +1483,12 @@ html .mat-accent {
1741
1483
  --mdc-slider-with-tick-marks-inactive-container-color: var(--accent-highlight);
1742
1484
  --mdc-slider-with-tick-marks-active-container-color: var(--accent-highlight-contrast);
1743
1485
  }
1486
+ html .mat-accent {
1487
+ --mat-slider-ripple-color: var(--accent-highlight);
1488
+ --mat-slider-hover-state-layer-color: rgba(var(--accent-highlight), 0.05);
1489
+ --mat-slider-focus-state-layer-color: rgba(var(--accent-highlight), 0.2);
1490
+ }
1744
1491
  html .mat-warn {
1745
- --mat-slider-ripple-color: #f44336;
1746
- --mat-slider-hover-state-layer-color: rgba(244, 67, 54, 0.05);
1747
- --mat-slider-focus-state-layer-color: rgba(244, 67, 54, 0.2);
1748
1492
  --mdc-slider-handle-color: #f44336;
1749
1493
  --mdc-slider-focus-handle-color: #f44336;
1750
1494
  --mdc-slider-hover-handle-color: #f44336;
@@ -1753,6 +1497,11 @@ html .mat-warn {
1753
1497
  --mdc-slider-with-tick-marks-inactive-container-color: #f44336;
1754
1498
  --mdc-slider-with-tick-marks-active-container-color: white;
1755
1499
  }
1500
+ html .mat-warn {
1501
+ --mat-slider-ripple-color: #f44336;
1502
+ --mat-slider-hover-state-layer-color: rgba(244, 67, 54, 0.05);
1503
+ --mat-slider-focus-state-layer-color: rgba(244, 67, 54, 0.2);
1504
+ }
1756
1505
 
1757
1506
  html {
1758
1507
  --mat-menu-container-shape: 4px;
@@ -1764,7 +1513,7 @@ html {
1764
1513
  --mat-menu-item-trailing-spacing: 16px;
1765
1514
  --mat-menu-item-with-icon-leading-spacing: 16px;
1766
1515
  --mat-menu-item-with-icon-trailing-spacing: 16px;
1767
- --mat-menu-base-elevation-level: 8;
1516
+ --mat-menu-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
1768
1517
  }
1769
1518
 
1770
1519
  html {
@@ -1790,6 +1539,8 @@ html {
1790
1539
  --mdc-list-list-item-disabled-label-text-opacity: 0.38;
1791
1540
  --mdc-list-list-item-disabled-leading-icon-opacity: 0.38;
1792
1541
  --mdc-list-list-item-disabled-trailing-icon-opacity: 0.38;
1542
+ }
1543
+ html {
1793
1544
  --mat-list-active-indicator-color: transparent;
1794
1545
  --mat-list-active-indicator-shape: 4px;
1795
1546
  }
@@ -1813,12 +1564,12 @@ html {
1813
1564
  --mdc-list-list-item-focus-state-layer-color: black;
1814
1565
  --mdc-list-list-item-focus-state-layer-opacity: 0.12;
1815
1566
  }
1816
-
1817
1567
  .mdc-list-item__start,
1818
1568
  .mdc-list-item__end {
1819
1569
  --mdc-radio-disabled-selected-icon-color: black;
1820
1570
  --mdc-radio-disabled-unselected-icon-color: black;
1821
1571
  --mdc-radio-unselected-hover-icon-color: #212121;
1572
+ --mdc-radio-unselected-focus-icon-color: #212121;
1822
1573
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
1823
1574
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
1824
1575
  --mdc-radio-selected-focus-icon-color: var(--primary-resting);
@@ -1832,6 +1583,7 @@ html {
1832
1583
  --mdc-radio-disabled-selected-icon-color: black;
1833
1584
  --mdc-radio-disabled-unselected-icon-color: black;
1834
1585
  --mdc-radio-unselected-hover-icon-color: #212121;
1586
+ --mdc-radio-unselected-focus-icon-color: #212121;
1835
1587
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
1836
1588
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
1837
1589
  --mdc-radio-selected-focus-icon-color: var(--accent-highlight);
@@ -1845,6 +1597,7 @@ html {
1845
1597
  --mdc-radio-disabled-selected-icon-color: black;
1846
1598
  --mdc-radio-disabled-unselected-icon-color: black;
1847
1599
  --mdc-radio-unselected-hover-icon-color: #212121;
1600
+ --mdc-radio-unselected-focus-icon-color: #212121;
1848
1601
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
1849
1602
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
1850
1603
  --mdc-radio-selected-focus-icon-color: #f44336;
@@ -1860,6 +1613,7 @@ html {
1860
1613
  --mdc-checkbox-selected-focus-icon-color: var(--primary-resting);
1861
1614
  --mdc-checkbox-selected-hover-icon-color: var(--primary-resting);
1862
1615
  --mdc-checkbox-selected-icon-color: var(--primary-resting);
1616
+ --mdc-checkbox-selected-pressed-icon-color: var(--primary-resting);
1863
1617
  --mdc-checkbox-unselected-focus-icon-color: #212121;
1864
1618
  --mdc-checkbox-unselected-hover-icon-color: #212121;
1865
1619
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
@@ -1878,6 +1632,7 @@ html {
1878
1632
  --mdc-checkbox-selected-focus-icon-color: var(--accent-highlight);
1879
1633
  --mdc-checkbox-selected-hover-icon-color: var(--accent-highlight);
1880
1634
  --mdc-checkbox-selected-icon-color: var(--accent-highlight);
1635
+ --mdc-checkbox-selected-pressed-icon-color: var(--accent-highlight);
1881
1636
  --mdc-checkbox-unselected-focus-icon-color: #212121;
1882
1637
  --mdc-checkbox-unselected-hover-icon-color: #212121;
1883
1638
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
@@ -1896,6 +1651,7 @@ html {
1896
1651
  --mdc-checkbox-selected-focus-icon-color: #f44336;
1897
1652
  --mdc-checkbox-selected-hover-icon-color: #f44336;
1898
1653
  --mdc-checkbox-selected-icon-color: #f44336;
1654
+ --mdc-checkbox-selected-pressed-icon-color: #f44336;
1899
1655
  --mdc-checkbox-unselected-focus-icon-color: #212121;
1900
1656
  --mdc-checkbox-unselected-hover-icon-color: #212121;
1901
1657
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
@@ -1908,11 +1664,9 @@ html {
1908
1664
  }
1909
1665
 
1910
1666
  .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
1911
- .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text {
1912
- color: var(--primary-resting);
1913
- }
1914
- .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,
1915
- .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start {
1667
+ .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,
1668
+ .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,
1669
+ .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start {
1916
1670
  color: var(--primary-resting);
1917
1671
  }
1918
1672
 
@@ -1926,6 +1680,8 @@ html {
1926
1680
  --mdc-list-list-item-one-line-container-height: 48px;
1927
1681
  --mdc-list-list-item-two-line-container-height: 64px;
1928
1682
  --mdc-list-list-item-three-line-container-height: 88px;
1683
+ }
1684
+ html {
1929
1685
  --mat-list-list-item-leading-icon-start-space: 16px;
1930
1686
  --mat-list-list-item-leading-icon-end-space: 32px;
1931
1687
  }
@@ -1958,14 +1714,21 @@ html {
1958
1714
 
1959
1715
  html {
1960
1716
  --mdc-secondary-navigation-tab-container-height: 48px;
1717
+ }
1718
+ html {
1961
1719
  --mdc-tab-indicator-active-indicator-height: 2px;
1962
1720
  --mdc-tab-indicator-active-indicator-shape: 0;
1721
+ }
1722
+ html {
1963
1723
  --mat-tab-header-divider-color: transparent;
1964
1724
  --mat-tab-header-divider-height: 0;
1965
1725
  }
1966
-
1967
- .mat-mdc-tab-group, .mat-mdc-tab-nav-bar {
1726
+ .mat-mdc-tab-group,
1727
+ .mat-mdc-tab-nav-bar {
1968
1728
  --mdc-tab-indicator-active-indicator-color: var(--primary-resting);
1729
+ }
1730
+ .mat-mdc-tab-group,
1731
+ .mat-mdc-tab-nav-bar {
1969
1732
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
1970
1733
  --mat-tab-header-pagination-icon-color: black;
1971
1734
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
@@ -1979,8 +1742,12 @@ html {
1979
1742
  --mat-tab-header-active-focus-indicator-color: var(--primary-resting);
1980
1743
  --mat-tab-header-active-hover-indicator-color: var(--primary-resting);
1981
1744
  }
1982
- .mat-mdc-tab-group.mat-accent, .mat-mdc-tab-nav-bar.mat-accent {
1745
+ .mat-mdc-tab-group.mat-accent,
1746
+ .mat-mdc-tab-nav-bar.mat-accent {
1983
1747
  --mdc-tab-indicator-active-indicator-color: var(--accent-highlight);
1748
+ }
1749
+ .mat-mdc-tab-group.mat-accent,
1750
+ .mat-mdc-tab-nav-bar.mat-accent {
1984
1751
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
1985
1752
  --mat-tab-header-pagination-icon-color: black;
1986
1753
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
@@ -1994,8 +1761,12 @@ html {
1994
1761
  --mat-tab-header-active-focus-indicator-color: var(--accent-highlight);
1995
1762
  --mat-tab-header-active-hover-indicator-color: var(--accent-highlight);
1996
1763
  }
1997
- .mat-mdc-tab-group.mat-warn, .mat-mdc-tab-nav-bar.mat-warn {
1764
+ .mat-mdc-tab-group.mat-warn,
1765
+ .mat-mdc-tab-nav-bar.mat-warn {
1998
1766
  --mdc-tab-indicator-active-indicator-color: #f44336;
1767
+ }
1768
+ .mat-mdc-tab-group.mat-warn,
1769
+ .mat-mdc-tab-nav-bar.mat-warn {
1999
1770
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
2000
1771
  --mat-tab-header-pagination-icon-color: black;
2001
1772
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
@@ -2009,15 +1780,18 @@ html {
2009
1780
  --mat-tab-header-active-focus-indicator-color: #f44336;
2010
1781
  --mat-tab-header-active-hover-indicator-color: #f44336;
2011
1782
  }
2012
- .mat-mdc-tab-group.mat-background-primary, .mat-mdc-tab-nav-bar.mat-background-primary {
1783
+ .mat-mdc-tab-group.mat-background-primary,
1784
+ .mat-mdc-tab-nav-bar.mat-background-primary {
2013
1785
  --mat-tab-header-with-background-background-color: var(--primary-resting);
2014
1786
  --mat-tab-header-with-background-foreground-color: var(--primary-contrast-resting);
2015
1787
  }
2016
- .mat-mdc-tab-group.mat-background-accent, .mat-mdc-tab-nav-bar.mat-background-accent {
1788
+ .mat-mdc-tab-group.mat-background-accent,
1789
+ .mat-mdc-tab-nav-bar.mat-background-accent {
2017
1790
  --mat-tab-header-with-background-background-color: var(--accent-highlight);
2018
1791
  --mat-tab-header-with-background-foreground-color: var(--accent-highlight-contrast);
2019
1792
  }
2020
- .mat-mdc-tab-group.mat-background-warn, .mat-mdc-tab-nav-bar.mat-background-warn {
1793
+ .mat-mdc-tab-group.mat-background-warn,
1794
+ .mat-mdc-tab-nav-bar.mat-background-warn {
2021
1795
  --mat-tab-header-with-background-background-color: #f44336;
2022
1796
  --mat-tab-header-with-background-foreground-color: white;
2023
1797
  }
@@ -2025,7 +1799,6 @@ html {
2025
1799
  .mat-mdc-tab-header {
2026
1800
  --mdc-secondary-navigation-tab-container-height: 48px;
2027
1801
  }
2028
-
2029
1802
  html {
2030
1803
  --mdc-checkbox-disabled-selected-checkmark-color: #fff;
2031
1804
  --mdc-checkbox-selected-focus-state-layer-opacity: 0.16;
@@ -2035,7 +1808,6 @@ html {
2035
1808
  --mdc-checkbox-unselected-hover-state-layer-opacity: 0.04;
2036
1809
  --mdc-checkbox-unselected-pressed-state-layer-opacity: 0.16;
2037
1810
  }
2038
-
2039
1811
  html {
2040
1812
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
2041
1813
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
@@ -2043,6 +1815,7 @@ html {
2043
1815
  --mdc-checkbox-selected-focus-icon-color: var(--accent-highlight);
2044
1816
  --mdc-checkbox-selected-hover-icon-color: var(--accent-highlight);
2045
1817
  --mdc-checkbox-selected-icon-color: var(--accent-highlight);
1818
+ --mdc-checkbox-selected-pressed-icon-color: var(--accent-highlight);
2046
1819
  --mdc-checkbox-unselected-focus-icon-color: #212121;
2047
1820
  --mdc-checkbox-unselected-hover-icon-color: #212121;
2048
1821
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
@@ -2052,6 +1825,8 @@ html {
2052
1825
  --mdc-checkbox-unselected-focus-state-layer-color: black;
2053
1826
  --mdc-checkbox-unselected-hover-state-layer-color: black;
2054
1827
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
1828
+ }
1829
+ html {
2055
1830
  --mat-checkbox-disabled-label-color: rgba(0, 0, 0, 0.38);
2056
1831
  --mat-checkbox-label-text-color: rgba(0, 0, 0, 0.87);
2057
1832
  }
@@ -2063,6 +1838,7 @@ html {
2063
1838
  --mdc-checkbox-selected-focus-icon-color: var(--primary-resting);
2064
1839
  --mdc-checkbox-selected-hover-icon-color: var(--primary-resting);
2065
1840
  --mdc-checkbox-selected-icon-color: var(--primary-resting);
1841
+ --mdc-checkbox-selected-pressed-icon-color: var(--primary-resting);
2066
1842
  --mdc-checkbox-unselected-focus-icon-color: #212121;
2067
1843
  --mdc-checkbox-unselected-hover-icon-color: #212121;
2068
1844
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
@@ -2080,6 +1856,7 @@ html {
2080
1856
  --mdc-checkbox-selected-focus-icon-color: #f44336;
2081
1857
  --mdc-checkbox-selected-hover-icon-color: #f44336;
2082
1858
  --mdc-checkbox-selected-icon-color: #f44336;
1859
+ --mdc-checkbox-selected-pressed-icon-color: #f44336;
2083
1860
  --mdc-checkbox-unselected-focus-icon-color: #212121;
2084
1861
  --mdc-checkbox-unselected-hover-icon-color: #212121;
2085
1862
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
@@ -2093,29 +1870,49 @@ html {
2093
1870
 
2094
1871
  html {
2095
1872
  --mdc-checkbox-state-layer-size: 40px;
1873
+ }
1874
+ html {
2096
1875
  --mat-checkbox-touch-target-display: block;
2097
1876
  }
2098
1877
 
2099
1878
  html {
2100
1879
  --mdc-text-button-container-shape: 4px;
2101
1880
  --mdc-text-button-keep-touch-target: false;
1881
+ }
1882
+ html {
2102
1883
  --mdc-filled-button-container-shape: 4px;
2103
1884
  --mdc-filled-button-keep-touch-target: false;
1885
+ }
1886
+ html {
2104
1887
  --mdc-protected-button-container-shape: 4px;
2105
- --mdc-protected-button-keep-touch-target: false;
1888
+ --mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
1889
+ --mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
1890
+ --mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
1891
+ --mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
1892
+ --mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
1893
+ }
1894
+ html {
2106
1895
  --mdc-outlined-button-keep-touch-target: false;
2107
1896
  --mdc-outlined-button-outline-width: 1px;
2108
1897
  --mdc-outlined-button-container-shape: 4px;
1898
+ }
1899
+ html {
2109
1900
  --mat-text-button-horizontal-padding: 8px;
2110
1901
  --mat-text-button-with-icon-horizontal-padding: 8px;
2111
1902
  --mat-text-button-icon-spacing: 8px;
2112
1903
  --mat-text-button-icon-offset: 0;
1904
+ }
1905
+ html {
2113
1906
  --mat-filled-button-horizontal-padding: 16px;
2114
1907
  --mat-filled-button-icon-spacing: 8px;
2115
1908
  --mat-filled-button-icon-offset: -4px;
1909
+ }
1910
+ html {
2116
1911
  --mat-protected-button-horizontal-padding: 16px;
2117
1912
  --mat-protected-button-icon-spacing: 8px;
2118
1913
  --mat-protected-button-icon-offset: -4px;
1914
+ }
1915
+ html {
2119
1916
  --mat-outlined-button-horizontal-padding: 15px;
2120
1917
  --mat-outlined-button-icon-spacing: 8px;
2121
1918
  --mat-outlined-button-icon-offset: -4px;
@@ -2124,42 +1921,50 @@ html {
2124
1921
  html {
2125
1922
  --mdc-text-button-label-text-color: black;
2126
1923
  --mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
1924
+ }
1925
+ html {
2127
1926
  --mat-text-button-state-layer-color: black;
2128
1927
  --mat-text-button-disabled-state-layer-color: black;
2129
1928
  --mat-text-button-ripple-color: rgba(0, 0, 0, 0.1);
2130
1929
  --mat-text-button-hover-state-layer-opacity: 0.04;
2131
1930
  --mat-text-button-focus-state-layer-opacity: 0.12;
2132
1931
  --mat-text-button-pressed-state-layer-opacity: 0.12;
1932
+ }
1933
+ html {
2133
1934
  --mdc-filled-button-container-color: white;
2134
1935
  --mdc-filled-button-label-text-color: black;
2135
1936
  --mdc-filled-button-disabled-container-color: rgba(0, 0, 0, 0.12);
2136
1937
  --mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
1938
+ }
1939
+ html {
2137
1940
  --mat-filled-button-state-layer-color: black;
2138
1941
  --mat-filled-button-disabled-state-layer-color: black;
2139
1942
  --mat-filled-button-ripple-color: rgba(0, 0, 0, 0.1);
2140
1943
  --mat-filled-button-hover-state-layer-opacity: 0.04;
2141
1944
  --mat-filled-button-focus-state-layer-opacity: 0.12;
2142
1945
  --mat-filled-button-pressed-state-layer-opacity: 0.12;
1946
+ }
1947
+ html {
2143
1948
  --mdc-protected-button-container-color: white;
2144
1949
  --mdc-protected-button-label-text-color: black;
2145
1950
  --mdc-protected-button-disabled-container-color: rgba(0, 0, 0, 0.12);
2146
1951
  --mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
2147
- --mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
2148
- --mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
2149
- --mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
2150
- --mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
2151
- --mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
2152
- --mdc-protected-button-container-shadow-color: #000;
1952
+ }
1953
+ html {
2153
1954
  --mat-protected-button-state-layer-color: black;
2154
1955
  --mat-protected-button-disabled-state-layer-color: black;
2155
1956
  --mat-protected-button-ripple-color: rgba(0, 0, 0, 0.1);
2156
1957
  --mat-protected-button-hover-state-layer-opacity: 0.04;
2157
1958
  --mat-protected-button-focus-state-layer-opacity: 0.12;
2158
1959
  --mat-protected-button-pressed-state-layer-opacity: 0.12;
1960
+ }
1961
+ html {
2159
1962
  --mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, 0.12);
2160
1963
  --mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
2161
1964
  --mdc-outlined-button-label-text-color: black;
2162
1965
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
1966
+ }
1967
+ html {
2163
1968
  --mat-outlined-button-state-layer-color: black;
2164
1969
  --mat-outlined-button-disabled-state-layer-color: black;
2165
1970
  --mat-outlined-button-ripple-color: rgba(0, 0, 0, 0.1);
@@ -2170,16 +1975,22 @@ html {
2170
1975
 
2171
1976
  .mat-mdc-button.mat-primary {
2172
1977
  --mdc-text-button-label-text-color: var(--primary-resting);
1978
+ }
1979
+ .mat-mdc-button.mat-primary {
2173
1980
  --mat-text-button-state-layer-color: var(--primary-resting);
2174
1981
  --mat-text-button-ripple-color: rgba(0, 0, 0, 0.1);
2175
1982
  }
2176
1983
  .mat-mdc-button.mat-accent {
2177
1984
  --mdc-text-button-label-text-color: var(--accent-highlight);
1985
+ }
1986
+ .mat-mdc-button.mat-accent {
2178
1987
  --mat-text-button-state-layer-color: var(--accent-highlight);
2179
1988
  --mat-text-button-ripple-color: rgba(0, 0, 0, 0.1);
2180
1989
  }
2181
1990
  .mat-mdc-button.mat-warn {
2182
1991
  --mdc-text-button-label-text-color: #f44336;
1992
+ }
1993
+ .mat-mdc-button.mat-warn {
2183
1994
  --mat-text-button-state-layer-color: #f44336;
2184
1995
  --mat-text-button-ripple-color: rgba(244, 67, 54, 0.1);
2185
1996
  }
@@ -2187,18 +1998,24 @@ html {
2187
1998
  .mat-mdc-unelevated-button.mat-primary {
2188
1999
  --mdc-filled-button-container-color: var(--primary-resting);
2189
2000
  --mdc-filled-button-label-text-color: var(--primary-contrast-resting);
2001
+ }
2002
+ .mat-mdc-unelevated-button.mat-primary {
2190
2003
  --mat-filled-button-state-layer-color: #000;
2191
2004
  --mat-filled-button-ripple-color: rgba(0, 0, 0, 0.1);
2192
2005
  }
2193
2006
  .mat-mdc-unelevated-button.mat-accent {
2194
2007
  --mdc-filled-button-container-color: var(--accent-highlight);
2195
2008
  --mdc-filled-button-label-text-color: var(--accent-highlight-contrast);
2009
+ }
2010
+ .mat-mdc-unelevated-button.mat-accent {
2196
2011
  --mat-filled-button-state-layer-color: #000;
2197
2012
  --mat-filled-button-ripple-color: rgba(0, 0, 0, 0.1);
2198
2013
  }
2199
2014
  .mat-mdc-unelevated-button.mat-warn {
2200
2015
  --mdc-filled-button-container-color: #f44336;
2201
2016
  --mdc-filled-button-label-text-color: white;
2017
+ }
2018
+ .mat-mdc-unelevated-button.mat-warn {
2202
2019
  --mat-filled-button-state-layer-color: white;
2203
2020
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
2204
2021
  }
@@ -2206,18 +2023,24 @@ html {
2206
2023
  .mat-mdc-raised-button.mat-primary {
2207
2024
  --mdc-protected-button-container-color: var(--primary-resting);
2208
2025
  --mdc-protected-button-label-text-color: var(--primary-contrast-resting);
2026
+ }
2027
+ .mat-mdc-raised-button.mat-primary {
2209
2028
  --mat-protected-button-state-layer-color: #000;
2210
2029
  --mat-protected-button-ripple-color: rgba(0, 0, 0, 0.1);
2211
2030
  }
2212
2031
  .mat-mdc-raised-button.mat-accent {
2213
2032
  --mdc-protected-button-container-color: var(--accent-highlight);
2214
2033
  --mdc-protected-button-label-text-color: var(--accent-highlight-contrast);
2034
+ }
2035
+ .mat-mdc-raised-button.mat-accent {
2215
2036
  --mat-protected-button-state-layer-color: #000;
2216
2037
  --mat-protected-button-ripple-color: rgba(0, 0, 0, 0.1);
2217
2038
  }
2218
2039
  .mat-mdc-raised-button.mat-warn {
2219
2040
  --mdc-protected-button-container-color: #f44336;
2220
2041
  --mdc-protected-button-label-text-color: white;
2042
+ }
2043
+ .mat-mdc-raised-button.mat-warn {
2221
2044
  --mat-protected-button-state-layer-color: white;
2222
2045
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
2223
2046
  }
@@ -2225,30 +2048,50 @@ html {
2225
2048
  .mat-mdc-outlined-button.mat-primary {
2226
2049
  --mdc-outlined-button-label-text-color: var(--primary-resting);
2227
2050
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
2051
+ }
2052
+ .mat-mdc-outlined-button.mat-primary {
2228
2053
  --mat-outlined-button-state-layer-color: var(--primary-resting);
2229
2054
  --mat-outlined-button-ripple-color: rgba(0, 0, 0, 0.1);
2230
2055
  }
2231
2056
  .mat-mdc-outlined-button.mat-accent {
2232
2057
  --mdc-outlined-button-label-text-color: var(--accent-highlight);
2233
2058
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
2059
+ }
2060
+ .mat-mdc-outlined-button.mat-accent {
2234
2061
  --mat-outlined-button-state-layer-color: var(--accent-highlight);
2235
2062
  --mat-outlined-button-ripple-color: rgba(0, 0, 0, 0.1);
2236
2063
  }
2237
2064
  .mat-mdc-outlined-button.mat-warn {
2238
2065
  --mdc-outlined-button-label-text-color: #f44336;
2239
2066
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
2067
+ }
2068
+ .mat-mdc-outlined-button.mat-warn {
2240
2069
  --mat-outlined-button-state-layer-color: #f44336;
2241
2070
  --mat-outlined-button-ripple-color: rgba(244, 67, 54, 0.1);
2242
2071
  }
2243
2072
 
2244
2073
  html {
2245
2074
  --mdc-text-button-container-height: 36px;
2075
+ }
2076
+ html {
2246
2077
  --mdc-filled-button-container-height: 36px;
2247
- --mdc-outlined-button-container-height: 36px;
2078
+ }
2079
+ html {
2248
2080
  --mdc-protected-button-container-height: 36px;
2081
+ }
2082
+ html {
2083
+ --mdc-outlined-button-container-height: 36px;
2084
+ }
2085
+ html {
2249
2086
  --mat-text-button-touch-target-display: block;
2087
+ }
2088
+ html {
2250
2089
  --mat-filled-button-touch-target-display: block;
2090
+ }
2091
+ html {
2251
2092
  --mat-protected-button-touch-target-display: block;
2093
+ }
2094
+ html {
2252
2095
  --mat-outlined-button-touch-target-display: block;
2253
2096
  }
2254
2097
 
@@ -2259,6 +2102,8 @@ html {
2259
2102
  html {
2260
2103
  --mdc-icon-button-icon-color: inherit;
2261
2104
  --mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, 0.38);
2105
+ }
2106
+ html {
2262
2107
  --mat-icon-button-state-layer-color: black;
2263
2108
  --mat-icon-button-disabled-state-layer-color: black;
2264
2109
  --mat-icon-button-ripple-color: rgba(0, 0, 0, 0.1);
@@ -2268,16 +2113,22 @@ html {
2268
2113
  }
2269
2114
  html .mat-mdc-icon-button.mat-primary {
2270
2115
  --mdc-icon-button-icon-color: var(--primary-resting);
2116
+ }
2117
+ html .mat-mdc-icon-button.mat-primary {
2271
2118
  --mat-icon-button-state-layer-color: var(--primary-resting);
2272
2119
  --mat-icon-button-ripple-color: rgba(0, 0, 0, 0.1);
2273
2120
  }
2274
2121
  html .mat-mdc-icon-button.mat-accent {
2275
2122
  --mdc-icon-button-icon-color: var(--accent-highlight);
2123
+ }
2124
+ html .mat-mdc-icon-button.mat-accent {
2276
2125
  --mat-icon-button-state-layer-color: var(--accent-highlight);
2277
2126
  --mat-icon-button-ripple-color: rgba(0, 0, 0, 0.1);
2278
2127
  }
2279
2128
  html .mat-mdc-icon-button.mat-warn {
2280
2129
  --mdc-icon-button-icon-color: #f44336;
2130
+ }
2131
+ html .mat-mdc-icon-button.mat-warn {
2281
2132
  --mat-icon-button-state-layer-color: #f44336;
2282
2133
  --mat-icon-button-ripple-color: rgba(244, 67, 54, 0.1);
2283
2134
  }
@@ -2295,17 +2146,31 @@ html {
2295
2146
 
2296
2147
  html {
2297
2148
  --mdc-fab-container-shape: 50%;
2149
+ --mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
2150
+ --mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
2151
+ --mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
2152
+ --mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
2153
+ }
2154
+ html {
2298
2155
  --mdc-fab-small-container-shape: 50%;
2156
+ --mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
2157
+ --mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
2158
+ --mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
2159
+ --mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
2160
+ }
2161
+ html {
2299
2162
  --mdc-extended-fab-container-height: 48px;
2300
2163
  --mdc-extended-fab-container-shape: 24px;
2164
+ --mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
2165
+ --mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
2166
+ --mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
2167
+ --mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
2301
2168
  }
2302
2169
 
2303
2170
  html {
2304
2171
  --mdc-fab-container-color: white;
2305
- --mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
2306
- --mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
2307
- --mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
2308
- --mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
2172
+ }
2173
+ html {
2309
2174
  --mat-fab-foreground-color: black;
2310
2175
  --mat-fab-state-layer-color: black;
2311
2176
  --mat-fab-disabled-state-layer-color: black;
@@ -2315,11 +2180,11 @@ html {
2315
2180
  --mat-fab-pressed-state-layer-opacity: 0.12;
2316
2181
  --mat-fab-disabled-state-container-color: rgba(0, 0, 0, 0.12);
2317
2182
  --mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, 0.38);
2183
+ }
2184
+ html {
2318
2185
  --mdc-fab-small-container-color: white;
2319
- --mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
2320
- --mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
2321
- --mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
2322
- --mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
2186
+ }
2187
+ html {
2323
2188
  --mat-fab-small-foreground-color: black;
2324
2189
  --mat-fab-small-state-layer-color: black;
2325
2190
  --mat-fab-small-disabled-state-layer-color: black;
@@ -2329,43 +2194,51 @@ html {
2329
2194
  --mat-fab-small-pressed-state-layer-opacity: 0.12;
2330
2195
  --mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, 0.12);
2331
2196
  --mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, 0.38);
2332
- --mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
2333
- --mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
2334
- --mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
2335
- --mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
2336
2197
  }
2337
2198
  html .mat-mdc-fab.mat-primary {
2338
2199
  --mdc-fab-container-color: var(--primary-resting);
2200
+ }
2201
+ html .mat-mdc-fab.mat-primary {
2339
2202
  --mat-fab-foreground-color: #000;
2340
2203
  --mat-fab-state-layer-color: #000;
2341
2204
  --mat-fab-ripple-color: rgba(0, 0, 0, 0.1);
2342
2205
  }
2343
2206
  html .mat-mdc-fab.mat-accent {
2344
2207
  --mdc-fab-container-color: var(--accent-highlight);
2208
+ }
2209
+ html .mat-mdc-fab.mat-accent {
2345
2210
  --mat-fab-foreground-color: #000;
2346
2211
  --mat-fab-state-layer-color: #000;
2347
2212
  --mat-fab-ripple-color: rgba(0, 0, 0, 0.1);
2348
2213
  }
2349
2214
  html .mat-mdc-fab.mat-warn {
2350
2215
  --mdc-fab-container-color: #f44336;
2216
+ }
2217
+ html .mat-mdc-fab.mat-warn {
2351
2218
  --mat-fab-foreground-color: white;
2352
2219
  --mat-fab-state-layer-color: white;
2353
2220
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
2354
2221
  }
2355
2222
  html .mat-mdc-mini-fab.mat-primary {
2356
2223
  --mdc-fab-small-container-color: var(--primary-resting);
2224
+ }
2225
+ html .mat-mdc-mini-fab.mat-primary {
2357
2226
  --mat-fab-small-foreground-color: #000;
2358
2227
  --mat-fab-small-state-layer-color: #000;
2359
2228
  --mat-fab-small-ripple-color: rgba(0, 0, 0, 0.1);
2360
2229
  }
2361
2230
  html .mat-mdc-mini-fab.mat-accent {
2362
2231
  --mdc-fab-small-container-color: var(--accent-highlight);
2232
+ }
2233
+ html .mat-mdc-mini-fab.mat-accent {
2363
2234
  --mat-fab-small-foreground-color: #000;
2364
2235
  --mat-fab-small-state-layer-color: #000;
2365
2236
  --mat-fab-small-ripple-color: rgba(0, 0, 0, 0.1);
2366
2237
  }
2367
2238
  html .mat-mdc-mini-fab.mat-warn {
2368
2239
  --mdc-fab-small-container-color: #f44336;
2240
+ }
2241
+ html .mat-mdc-mini-fab.mat-warn {
2369
2242
  --mat-fab-small-foreground-color: white;
2370
2243
  --mat-fab-small-state-layer-color: white;
2371
2244
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
@@ -2373,6 +2246,8 @@ html .mat-mdc-mini-fab.mat-warn {
2373
2246
 
2374
2247
  html {
2375
2248
  --mat-fab-touch-target-display: block;
2249
+ }
2250
+ html {
2376
2251
  --mat-fab-small-touch-target-display: block;
2377
2252
  }
2378
2253
 
@@ -2383,6 +2258,8 @@ html {
2383
2258
  html {
2384
2259
  --mdc-snackbar-container-color: #333333;
2385
2260
  --mdc-snackbar-supporting-text-color: rgba(255, 255, 255, 0.87);
2261
+ }
2262
+ html {
2386
2263
  --mat-snack-bar-button-color: var(--accent-highlight);
2387
2264
  }
2388
2265
 
@@ -2467,6 +2344,8 @@ html {
2467
2344
  --mat-legacy-button-toggle-height: 36px;
2468
2345
  --mat-legacy-button-toggle-shape: 2px;
2469
2346
  --mat-legacy-button-toggle-focus-state-layer-opacity: 1;
2347
+ }
2348
+ html {
2470
2349
  --mat-standard-button-toggle-shape: 4px;
2471
2350
  --mat-standard-button-toggle-hover-state-layer-opacity: 0.04;
2472
2351
  --mat-standard-button-toggle-focus-state-layer-opacity: 0.12;
@@ -2480,6 +2359,8 @@ html {
2480
2359
  --mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.26);
2481
2360
  --mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;
2482
2361
  --mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;
2362
+ }
2363
+ html {
2483
2364
  --mat-standard-button-toggle-text-color: rgba(0, 0, 0, 0.87);
2484
2365
  --mat-standard-button-toggle-background-color: white;
2485
2366
  --mat-standard-button-toggle-state-layer-color: black;
@@ -2716,6 +2597,15 @@ html {
2716
2597
  --mat-tree-node-min-height: 48px;
2717
2598
  }
2718
2599
 
2600
+ html {
2601
+ --mat-timepicker-container-shape: 4px;
2602
+ --mat-timepicker-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
2603
+ }
2604
+
2605
+ html {
2606
+ --mat-timepicker-container-background-color: white;
2607
+ }
2608
+
2719
2609
  body,
2720
2610
  .sto-header,
2721
2611
  .mat-card {
@@ -3070,78 +2960,210 @@ body,
3070
2960
  --mat-option-label-text-size: 13px;
3071
2961
  --mat-option-label-text-tracking: normal;
3072
2962
  --mat-option-label-text-weight: 400;
2963
+ }
2964
+ .mat-typography {
3073
2965
  --mat-optgroup-label-text-font: Equinor, Roboto;
3074
2966
  --mat-optgroup-label-text-line-height: 20px;
3075
2967
  --mat-optgroup-label-text-size: 13px;
3076
2968
  --mat-optgroup-label-text-tracking: normal;
3077
2969
  --mat-optgroup-label-text-weight: 400;
2970
+ }
2971
+ .mat-typography {
3078
2972
  --mat-badge-text-font: Equinor, Roboto;
2973
+ --mat-badge-line-height: 22px;
3079
2974
  --mat-badge-text-size: 12px;
3080
2975
  --mat-badge-text-weight: 600;
3081
2976
  --mat-badge-small-size-text-size: 9px;
2977
+ --mat-badge-small-size-line-height: 16px;
3082
2978
  --mat-badge-large-size-text-size: 24px;
3083
- --mat-bottom-sheet-container-text-font: Equinor, Roboto;
3084
- --mat-bottom-sheet-container-text-line-height: 20px;
3085
- --mat-bottom-sheet-container-text-size: 13px;
3086
- --mat-bottom-sheet-container-text-tracking: normal;
3087
- --mat-bottom-sheet-container-text-weight: 400;
3088
- --mat-legacy-button-toggle-label-text-font: Equinor, Roboto;
3089
- --mat-legacy-button-toggle-label-text-line-height: 20px;
3090
- --mat-legacy-button-toggle-label-text-size: 13px;
3091
- --mat-legacy-button-toggle-label-text-tracking: normal;
3092
- --mat-legacy-button-toggle-label-text-weight: 400;
3093
- --mat-standard-button-toggle-label-text-font: Equinor, Roboto;
3094
- --mat-standard-button-toggle-label-text-line-height: 20px;
3095
- --mat-standard-button-toggle-label-text-size: 13px;
3096
- --mat-standard-button-toggle-label-text-tracking: normal;
3097
- --mat-standard-button-toggle-label-text-weight: 400;
3098
- --mat-datepicker-calendar-text-font: Equinor, Roboto;
3099
- --mat-datepicker-calendar-text-size: 13px;
3100
- --mat-datepicker-calendar-body-label-text-size: 14px;
3101
- --mat-datepicker-calendar-body-label-text-weight: 500;
3102
- --mat-datepicker-calendar-period-button-text-size: 14px;
3103
- --mat-datepicker-calendar-period-button-text-weight: 500;
3104
- --mat-datepicker-calendar-header-text-size: 11px;
3105
- --mat-datepicker-calendar-header-text-weight: 400;
3106
- --mat-expansion-header-text-font: Equinor, Roboto;
3107
- --mat-expansion-header-text-size: 20px;
3108
- --mat-expansion-header-text-weight: 400;
3109
- --mat-expansion-header-text-line-height: inherit;
3110
- --mat-expansion-header-text-tracking: inherit;
3111
- --mat-expansion-container-text-font: Equinor, Roboto;
3112
- --mat-expansion-container-text-line-height: 20px;
3113
- --mat-expansion-container-text-size: 13px;
3114
- --mat-expansion-container-text-tracking: normal;
3115
- --mat-expansion-container-text-weight: 400;
3116
- --mat-grid-list-tile-header-primary-text-size: 13px;
3117
- --mat-grid-list-tile-header-secondary-text-size: 12px;
3118
- --mat-grid-list-tile-footer-primary-text-size: 13px;
3119
- --mat-grid-list-tile-footer-secondary-text-size: 12px;
3120
- --mat-stepper-container-text-font: Equinor, Roboto;
3121
- --mat-stepper-header-label-text-font: Equinor, Roboto;
3122
- --mat-stepper-header-label-text-size: 13px;
3123
- --mat-stepper-header-label-text-weight: 400;
3124
- --mat-stepper-header-error-state-label-text-size: 13px;
3125
- --mat-stepper-header-selected-state-label-text-size: 13px;
3126
- --mat-stepper-header-selected-state-label-text-weight: 400;
3127
- --mat-toolbar-title-text-font: Equinor, Roboto;
3128
- --mat-toolbar-title-text-line-height: 32px;
3129
- --mat-toolbar-title-text-size: 20px;
3130
- --mat-toolbar-title-text-tracking: 0.0125em;
2979
+ --mat-badge-large-size-line-height: 28px;
2980
+ }
2981
+ .mat-typography .mat-h1,
2982
+ .mat-typography .mat-headline-5,
2983
+ .mat-typography .mat-typography .mat-h1,
2984
+ .mat-typography .mat-typography .mat-headline-5,
2985
+ .mat-typography .mat-typography h1 {
2986
+ font: 400 24px / 32px Equinor, Roboto;
2987
+ letter-spacing: normal;
2988
+ margin: 0 0 16px;
2989
+ }
2990
+ .mat-typography .mat-h2,
2991
+ .mat-typography .mat-headline-6,
2992
+ .mat-typography .mat-typography .mat-h2,
2993
+ .mat-typography .mat-typography .mat-headline-6,
2994
+ .mat-typography .mat-typography h2 {
2995
+ font: 500 20px / 32px Equinor, Roboto;
2996
+ letter-spacing: 0.0125em;
2997
+ margin: 0 0 16px;
2998
+ }
2999
+ .mat-typography .mat-h3,
3000
+ .mat-typography .mat-subtitle-1,
3001
+ .mat-typography .mat-typography .mat-h3,
3002
+ .mat-typography .mat-typography .mat-subtitle-1,
3003
+ .mat-typography .mat-typography h3 {
3004
+ font: 400 16px / 24px Equinor, Roboto;
3005
+ letter-spacing: normal;
3006
+ margin: 0 0 16px;
3007
+ }
3008
+ .mat-typography .mat-h4,
3009
+ .mat-typography .mat-body-1,
3010
+ .mat-typography .mat-typography .mat-h4,
3011
+ .mat-typography .mat-typography .mat-body-1,
3012
+ .mat-typography .mat-typography h4 {
3013
+ font: 400 13px / 20px Equinor, Roboto;
3014
+ letter-spacing: normal;
3015
+ margin: 0 0 16px;
3016
+ }
3017
+ .mat-typography .mat-h5,
3018
+ .mat-typography .mat-typography .mat-h5,
3019
+ .mat-typography .mat-typography h5 {
3020
+ font: 400 calc(13px * 0.83) / 20px Equinor, Roboto;
3021
+ margin: 0 0 12px;
3022
+ }
3023
+ .mat-typography .mat-h6,
3024
+ .mat-typography .mat-typography .mat-h6,
3025
+ .mat-typography .mat-typography h6 {
3026
+ font: 400 calc(13px * 0.67) / 20px Equinor, Roboto;
3027
+ margin: 0 0 12px;
3028
+ }
3029
+ .mat-typography .mat-body-strong,
3030
+ .mat-typography .mat-subtitle-2,
3031
+ .mat-typography .mat-typography .mat-body-strong,
3032
+ .mat-typography .mat-typography .mat-subtitle-2 {
3033
+ font: 400 20px / 28px Equinor, Roboto;
3034
+ letter-spacing: normal;
3035
+ }
3036
+ .mat-typography .mat-body,
3037
+ .mat-typography .mat-body-2,
3038
+ .mat-typography .mat-typography .mat-body,
3039
+ .mat-typography .mat-typography .mat-body-2,
3040
+ .mat-typography .mat-typography {
3041
+ font: 400 13px / 20px Equinor, Roboto;
3042
+ letter-spacing: normal;
3043
+ }
3044
+ .mat-typography .mat-body p,
3045
+ .mat-typography .mat-body-2 p,
3046
+ .mat-typography .mat-typography .mat-body p,
3047
+ .mat-typography .mat-typography .mat-body-2 p,
3048
+ .mat-typography .mat-typography p {
3049
+ margin: 0 0 12px;
3050
+ }
3051
+ .mat-typography .mat-small,
3052
+ .mat-typography .mat-caption,
3053
+ .mat-typography .mat-typography .mat-small,
3054
+ .mat-typography .mat-typography .mat-caption {
3055
+ font: 400 12px / 20px Equinor, Roboto;
3056
+ letter-spacing: 0.0333333333em;
3057
+ }
3058
+ .mat-typography .mat-headline-1,
3059
+ .mat-typography .mat-typography .mat-headline-1 {
3060
+ font: 400 28px / 44px Equinor, Roboto;
3061
+ letter-spacing: normal;
3062
+ margin: 0 0 56px;
3063
+ }
3064
+ .mat-typography .mat-headline-2,
3065
+ .mat-typography .mat-typography .mat-headline-2 {
3066
+ font: 400 24px / 32px Equinor, Roboto;
3067
+ letter-spacing: normal;
3068
+ margin: 0 0 64px;
3069
+ }
3070
+ .mat-typography .mat-headline-3,
3071
+ .mat-typography .mat-typography .mat-headline-3 {
3072
+ font: 400 48px / 50px Equinor, Roboto;
3073
+ letter-spacing: normal;
3074
+ margin: 0 0 64px;
3075
+ }
3076
+ .mat-typography .mat-headline-4,
3077
+ .mat-typography .mat-typography .mat-headline-4 {
3078
+ font: 400 34px / 40px Equinor, Roboto;
3079
+ letter-spacing: 0.0073529412em;
3080
+ margin: 0 0 64px;
3081
+ }
3082
+ .mat-typography {
3083
+ --mat-bottom-sheet-container-text-font: Equinor, Roboto;
3084
+ --mat-bottom-sheet-container-text-line-height: 20px;
3085
+ --mat-bottom-sheet-container-text-size: 13px;
3086
+ --mat-bottom-sheet-container-text-tracking: normal;
3087
+ --mat-bottom-sheet-container-text-weight: 400;
3088
+ }
3089
+ .mat-typography {
3090
+ --mat-legacy-button-toggle-label-text-font: Equinor, Roboto;
3091
+ --mat-legacy-button-toggle-label-text-line-height: 20px;
3092
+ --mat-legacy-button-toggle-label-text-size: 13px;
3093
+ --mat-legacy-button-toggle-label-text-tracking: normal;
3094
+ --mat-legacy-button-toggle-label-text-weight: 400;
3095
+ }
3096
+ .mat-typography {
3097
+ --mat-standard-button-toggle-label-text-font: Equinor, Roboto;
3098
+ --mat-standard-button-toggle-label-text-line-height: 20px;
3099
+ --mat-standard-button-toggle-label-text-size: 13px;
3100
+ --mat-standard-button-toggle-label-text-tracking: normal;
3101
+ --mat-standard-button-toggle-label-text-weight: 400;
3102
+ }
3103
+ .mat-typography {
3104
+ --mat-datepicker-calendar-text-font: Equinor, Roboto;
3105
+ --mat-datepicker-calendar-text-size: 13px;
3106
+ --mat-datepicker-calendar-body-label-text-size: 14px;
3107
+ --mat-datepicker-calendar-body-label-text-weight: 500;
3108
+ --mat-datepicker-calendar-period-button-text-size: 14px;
3109
+ --mat-datepicker-calendar-period-button-text-weight: 500;
3110
+ --mat-datepicker-calendar-header-text-size: 11px;
3111
+ --mat-datepicker-calendar-header-text-weight: 400;
3112
+ }
3113
+ .mat-typography {
3114
+ --mat-expansion-header-text-font: Equinor, Roboto;
3115
+ --mat-expansion-header-text-size: 20px;
3116
+ --mat-expansion-header-text-weight: 400;
3117
+ --mat-expansion-header-text-line-height: inherit;
3118
+ --mat-expansion-header-text-tracking: inherit;
3119
+ --mat-expansion-container-text-font: Equinor, Roboto;
3120
+ --mat-expansion-container-text-line-height: 20px;
3121
+ --mat-expansion-container-text-size: 13px;
3122
+ --mat-expansion-container-text-tracking: normal;
3123
+ --mat-expansion-container-text-weight: 400;
3124
+ }
3125
+ .mat-typography {
3126
+ --mat-grid-list-tile-header-primary-text-size: 13px;
3127
+ --mat-grid-list-tile-header-secondary-text-size: 12px;
3128
+ --mat-grid-list-tile-footer-primary-text-size: 13px;
3129
+ --mat-grid-list-tile-footer-secondary-text-size: 12px;
3130
+ }
3131
+ .mat-typography {
3132
+ --mat-stepper-container-text-font: Equinor, Roboto;
3133
+ --mat-stepper-header-label-text-font: Equinor, Roboto;
3134
+ --mat-stepper-header-label-text-size: 13px;
3135
+ --mat-stepper-header-label-text-weight: 400;
3136
+ --mat-stepper-header-error-state-label-text-size: 13px;
3137
+ --mat-stepper-header-selected-state-label-text-size: 13px;
3138
+ --mat-stepper-header-selected-state-label-text-weight: 400;
3139
+ }
3140
+ .mat-typography {
3141
+ --mat-toolbar-title-text-font: Equinor, Roboto;
3142
+ --mat-toolbar-title-text-line-height: 32px;
3143
+ --mat-toolbar-title-text-size: 20px;
3144
+ --mat-toolbar-title-text-tracking: 0.0125em;
3131
3145
  --mat-toolbar-title-text-weight: 500;
3146
+ }
3147
+ .mat-typography {
3132
3148
  --mat-tree-node-text-font: Equinor, Roboto;
3133
3149
  --mat-tree-node-text-size: 13px;
3134
3150
  --mat-tree-node-text-weight: 400;
3151
+ }
3152
+ .mat-typography {
3135
3153
  --mat-option-label-text-font: Equinor, Roboto;
3136
3154
  --mat-option-label-text-line-height: 20px;
3137
3155
  --mat-option-label-text-size: 13px;
3138
3156
  --mat-option-label-text-tracking: normal;
3139
3157
  --mat-option-label-text-weight: 400;
3158
+ }
3159
+ .mat-typography {
3140
3160
  --mat-optgroup-label-text-font: Equinor, Roboto;
3141
3161
  --mat-optgroup-label-text-line-height: 20px;
3142
3162
  --mat-optgroup-label-text-size: 13px;
3143
3163
  --mat-optgroup-label-text-tracking: normal;
3144
3164
  --mat-optgroup-label-text-weight: 400;
3165
+ }
3166
+ .mat-typography {
3145
3167
  --mat-card-title-text-font: Equinor, Roboto;
3146
3168
  --mat-card-title-text-line-height: 32px;
3147
3169
  --mat-card-title-text-size: 20px;
@@ -3152,18 +3174,26 @@ body,
3152
3174
  --mat-card-subtitle-text-size: 20px;
3153
3175
  --mat-card-subtitle-text-tracking: normal;
3154
3176
  --mat-card-subtitle-text-weight: 400;
3177
+ }
3178
+ .mat-typography {
3155
3179
  --mdc-plain-tooltip-supporting-text-font: Equinor, Roboto;
3156
3180
  --mdc-plain-tooltip-supporting-text-size: 12px;
3157
3181
  --mdc-plain-tooltip-supporting-text-weight: 400;
3158
3182
  --mdc-plain-tooltip-supporting-text-tracking: 0.0333333333em;
3183
+ }
3184
+ .mat-typography {
3159
3185
  --mdc-filled-text-field-label-text-font: Equinor, Roboto;
3160
3186
  --mdc-filled-text-field-label-text-size: 13px;
3161
3187
  --mdc-filled-text-field-label-text-tracking: normal;
3162
3188
  --mdc-filled-text-field-label-text-weight: 400;
3189
+ }
3190
+ .mat-typography {
3163
3191
  --mdc-outlined-text-field-label-text-font: Equinor, Roboto;
3164
3192
  --mdc-outlined-text-field-label-text-size: 13px;
3165
3193
  --mdc-outlined-text-field-label-text-tracking: normal;
3166
3194
  --mdc-outlined-text-field-label-text-weight: 400;
3195
+ }
3196
+ .mat-typography {
3167
3197
  --mat-form-field-container-text-font: Equinor, Roboto;
3168
3198
  --mat-form-field-container-text-line-height: 20px;
3169
3199
  --mat-form-field-container-text-size: 13px;
@@ -3175,11 +3205,15 @@ body,
3175
3205
  --mat-form-field-subscript-text-size: 12px;
3176
3206
  --mat-form-field-subscript-text-tracking: 0.0333333333em;
3177
3207
  --mat-form-field-subscript-text-weight: 400;
3208
+ }
3209
+ .mat-typography {
3178
3210
  --mat-select-trigger-text-font: Equinor, Roboto;
3179
3211
  --mat-select-trigger-text-line-height: 20px;
3180
3212
  --mat-select-trigger-text-size: 13px;
3181
3213
  --mat-select-trigger-text-tracking: normal;
3182
3214
  --mat-select-trigger-text-weight: 400;
3215
+ }
3216
+ .mat-typography {
3183
3217
  --mdc-dialog-subhead-font: Equinor, Roboto;
3184
3218
  --mdc-dialog-subhead-line-height: 32px;
3185
3219
  --mdc-dialog-subhead-size: 20px;
@@ -3190,21 +3224,43 @@ body,
3190
3224
  --mdc-dialog-supporting-text-size: 13px;
3191
3225
  --mdc-dialog-supporting-text-weight: 400;
3192
3226
  --mdc-dialog-supporting-text-tracking: normal;
3227
+ }
3228
+ .mat-typography .mat-mdc-standard-chip {
3229
+ --mdc-chip-label-text-font: Equinor, Roboto;
3230
+ --mdc-chip-label-text-line-height: 20px;
3231
+ --mdc-chip-label-text-size: 13px;
3232
+ --mdc-chip-label-text-tracking: normal;
3233
+ --mdc-chip-label-text-weight: 400;
3234
+ }
3235
+ .mat-typography .mat-mdc-slide-toggle {
3236
+ --mat-switch-label-text-font: Equinor, Roboto;
3237
+ --mat-switch-label-text-line-height: 20px;
3238
+ --mat-switch-label-text-size: 13px;
3239
+ --mat-switch-label-text-tracking: normal;
3240
+ --mat-switch-label-text-weight: 400;
3241
+ }
3242
+ .mat-typography {
3193
3243
  --mat-radio-label-text-font: Equinor, Roboto;
3194
3244
  --mat-radio-label-text-line-height: 20px;
3195
3245
  --mat-radio-label-text-size: 13px;
3196
3246
  --mat-radio-label-text-tracking: normal;
3197
3247
  --mat-radio-label-text-weight: 400;
3248
+ }
3249
+ .mat-typography {
3198
3250
  --mdc-slider-label-label-text-font: Equinor, Roboto;
3199
3251
  --mdc-slider-label-label-text-size: 20px;
3200
3252
  --mdc-slider-label-label-text-line-height: 28px;
3201
3253
  --mdc-slider-label-label-text-tracking: normal;
3202
3254
  --mdc-slider-label-label-text-weight: 400;
3255
+ }
3256
+ .mat-typography {
3203
3257
  --mat-menu-item-label-text-font: Equinor, Roboto;
3204
3258
  --mat-menu-item-label-text-size: 13px;
3205
3259
  --mat-menu-item-label-text-tracking: normal;
3206
3260
  --mat-menu-item-label-text-line-height: 20px;
3207
3261
  --mat-menu-item-label-text-weight: 400;
3262
+ }
3263
+ .mat-typography {
3208
3264
  --mdc-list-list-item-label-text-font: Equinor, Roboto;
3209
3265
  --mdc-list-list-item-label-text-line-height: 20px;
3210
3266
  --mdc-list-list-item-label-text-size: 13px;
@@ -3220,45 +3276,74 @@ body,
3220
3276
  --mdc-list-list-item-trailing-supporting-text-size: 12px;
3221
3277
  --mdc-list-list-item-trailing-supporting-text-tracking: 0.0333333333em;
3222
3278
  --mdc-list-list-item-trailing-supporting-text-weight: 400;
3279
+ }
3280
+ .mat-typography .mdc-list-group__subheader {
3281
+ font: 400 16px / 24px Equinor, Roboto;
3282
+ letter-spacing: normal;
3283
+ }
3284
+ .mat-typography {
3223
3285
  --mat-paginator-container-text-font: Equinor, Roboto;
3224
3286
  --mat-paginator-container-text-line-height: 20px;
3225
3287
  --mat-paginator-container-text-size: 12px;
3226
3288
  --mat-paginator-container-text-tracking: 0.0333333333em;
3227
3289
  --mat-paginator-container-text-weight: 400;
3228
3290
  --mat-paginator-select-trigger-text-size: 12px;
3291
+ }
3292
+ .mat-typography .mat-mdc-tab-header {
3293
+ --mat-tab-header-label-text-font: Equinor, Roboto;
3294
+ --mat-tab-header-label-text-size: 14px;
3295
+ --mat-tab-header-label-text-tracking: normal;
3296
+ --mat-tab-header-label-text-line-height: 24px;
3297
+ --mat-tab-header-label-text-weight: 500;
3298
+ }
3299
+ .mat-typography {
3229
3300
  --mat-checkbox-label-text-font: Equinor, Roboto;
3230
3301
  --mat-checkbox-label-text-line-height: 20px;
3231
3302
  --mat-checkbox-label-text-size: 13px;
3232
3303
  --mat-checkbox-label-text-tracking: normal;
3233
3304
  --mat-checkbox-label-text-weight: 400;
3305
+ }
3306
+ .mat-typography {
3234
3307
  --mdc-text-button-label-text-font: Equinor, Roboto;
3235
3308
  --mdc-text-button-label-text-size: 14px;
3236
3309
  --mdc-text-button-label-text-tracking: normal;
3237
3310
  --mdc-text-button-label-text-weight: 500;
3238
3311
  --mdc-text-button-label-text-transform: none;
3312
+ }
3313
+ .mat-typography {
3239
3314
  --mdc-filled-button-label-text-font: Equinor, Roboto;
3240
3315
  --mdc-filled-button-label-text-size: 14px;
3241
3316
  --mdc-filled-button-label-text-tracking: normal;
3242
3317
  --mdc-filled-button-label-text-weight: 500;
3243
3318
  --mdc-filled-button-label-text-transform: none;
3244
- --mdc-outlined-button-label-text-font: Equinor, Roboto;
3245
- --mdc-outlined-button-label-text-size: 14px;
3246
- --mdc-outlined-button-label-text-tracking: normal;
3247
- --mdc-outlined-button-label-text-weight: 500;
3248
- --mdc-outlined-button-label-text-transform: none;
3319
+ }
3320
+ .mat-typography {
3249
3321
  --mdc-protected-button-label-text-font: Equinor, Roboto;
3250
3322
  --mdc-protected-button-label-text-size: 14px;
3251
3323
  --mdc-protected-button-label-text-tracking: normal;
3252
3324
  --mdc-protected-button-label-text-weight: 500;
3253
3325
  --mdc-protected-button-label-text-transform: none;
3326
+ }
3327
+ .mat-typography {
3328
+ --mdc-outlined-button-label-text-font: Equinor, Roboto;
3329
+ --mdc-outlined-button-label-text-size: 14px;
3330
+ --mdc-outlined-button-label-text-tracking: normal;
3331
+ --mdc-outlined-button-label-text-weight: 500;
3332
+ --mdc-outlined-button-label-text-transform: none;
3333
+ }
3334
+ .mat-typography {
3254
3335
  --mdc-extended-fab-label-text-font: Equinor, Roboto;
3255
3336
  --mdc-extended-fab-label-text-size: 14px;
3256
3337
  --mdc-extended-fab-label-text-tracking: normal;
3257
3338
  --mdc-extended-fab-label-text-weight: 500;
3339
+ }
3340
+ .mat-typography {
3258
3341
  --mdc-snackbar-supporting-text-font: Equinor, Roboto;
3259
3342
  --mdc-snackbar-supporting-text-line-height: 20px;
3260
3343
  --mdc-snackbar-supporting-text-size: 13px;
3261
3344
  --mdc-snackbar-supporting-text-weight: 400;
3345
+ }
3346
+ .mat-typography {
3262
3347
  --mat-table-header-headline-font: Equinor, Roboto;
3263
3348
  --mat-table-header-headline-line-height: 28px;
3264
3349
  --mat-table-header-headline-size: 20px;
@@ -3275,164 +3360,153 @@ body,
3275
3360
  --mat-table-footer-supporting-text-weight: 400;
3276
3361
  --mat-table-footer-supporting-text-tracking: normal;
3277
3362
  }
3278
- .mat-typography .mat-h1,
3279
- .mat-typography .mat-headline-5,
3280
- .mat-typography .mat-typography .mat-h1,
3281
- .mat-typography .mat-typography .mat-headline-5,
3282
- .mat-typography .mat-typography h1 {
3363
+ .mat-typography.sto-sm-typography {
3364
+ --mat-option-label-text-font: Equinor, Roboto;
3365
+ --mat-option-label-text-line-height: 16px;
3366
+ --mat-option-label-text-size: 10px;
3367
+ --mat-option-label-text-tracking: normal;
3368
+ --mat-option-label-text-weight: 400;
3369
+ }
3370
+ .mat-typography.sto-sm-typography {
3371
+ --mat-optgroup-label-text-font: Equinor, Roboto;
3372
+ --mat-optgroup-label-text-line-height: 16px;
3373
+ --mat-optgroup-label-text-size: 10px;
3374
+ --mat-optgroup-label-text-tracking: normal;
3375
+ --mat-optgroup-label-text-weight: 400;
3376
+ }
3377
+ .mat-typography.sto-sm-typography {
3378
+ --mat-badge-text-font: Equinor, Roboto;
3379
+ --mat-badge-line-height: 22px;
3380
+ --mat-badge-text-size: 12px;
3381
+ --mat-badge-text-weight: 600;
3382
+ --mat-badge-small-size-text-size: 9px;
3383
+ --mat-badge-small-size-line-height: 16px;
3384
+ --mat-badge-large-size-text-size: 24px;
3385
+ --mat-badge-large-size-line-height: 28px;
3386
+ }
3387
+ .mat-typography.sto-sm-typography .mat-h1,
3388
+ .mat-typography.sto-sm-typography .mat-headline-5,
3389
+ .mat-typography.sto-sm-typography .mat-typography .mat-h1,
3390
+ .mat-typography.sto-sm-typography .mat-typography .mat-headline-5,
3391
+ .mat-typography.sto-sm-typography .mat-typography h1 {
3283
3392
  font: 400 24px / 32px Equinor, Roboto;
3284
3393
  letter-spacing: normal;
3285
3394
  margin: 0 0 16px;
3286
3395
  }
3287
- .mat-typography .mat-h2,
3288
- .mat-typography .mat-headline-6,
3289
- .mat-typography .mat-typography .mat-h2,
3290
- .mat-typography .mat-typography .mat-headline-6,
3291
- .mat-typography .mat-typography h2 {
3396
+ .mat-typography.sto-sm-typography .mat-h2,
3397
+ .mat-typography.sto-sm-typography .mat-headline-6,
3398
+ .mat-typography.sto-sm-typography .mat-typography .mat-h2,
3399
+ .mat-typography.sto-sm-typography .mat-typography .mat-headline-6,
3400
+ .mat-typography.sto-sm-typography .mat-typography h2 {
3292
3401
  font: 500 20px / 32px Equinor, Roboto;
3293
3402
  letter-spacing: 0.0125em;
3294
3403
  margin: 0 0 16px;
3295
3404
  }
3296
- .mat-typography .mat-h3,
3297
- .mat-typography .mat-subtitle-1,
3298
- .mat-typography .mat-typography .mat-h3,
3299
- .mat-typography .mat-typography .mat-subtitle-1,
3300
- .mat-typography .mat-typography h3 {
3301
- font: 400 16px / 24px Equinor, Roboto;
3405
+ .mat-typography.sto-sm-typography .mat-h3,
3406
+ .mat-typography.sto-sm-typography .mat-subtitle-1,
3407
+ .mat-typography.sto-sm-typography .mat-typography .mat-h3,
3408
+ .mat-typography.sto-sm-typography .mat-typography .mat-subtitle-1,
3409
+ .mat-typography.sto-sm-typography .mat-typography h3 {
3410
+ font: 400 12px / 20px Equinor, Roboto;
3302
3411
  letter-spacing: normal;
3303
3412
  margin: 0 0 16px;
3304
3413
  }
3305
- .mat-typography .mat-h4,
3306
- .mat-typography .mat-body-1,
3307
- .mat-typography .mat-typography .mat-h4,
3308
- .mat-typography .mat-typography .mat-body-1,
3309
- .mat-typography .mat-typography h4 {
3310
- font: 400 13px / 20px Equinor, Roboto;
3414
+ .mat-typography.sto-sm-typography .mat-h4,
3415
+ .mat-typography.sto-sm-typography .mat-body-1,
3416
+ .mat-typography.sto-sm-typography .mat-typography .mat-h4,
3417
+ .mat-typography.sto-sm-typography .mat-typography .mat-body-1,
3418
+ .mat-typography.sto-sm-typography .mat-typography h4 {
3419
+ font: 400 10px / 16px Equinor, Roboto;
3311
3420
  letter-spacing: normal;
3312
3421
  margin: 0 0 16px;
3313
3422
  }
3314
- .mat-typography .mat-h5,
3315
- .mat-typography .mat-typography .mat-h5,
3316
- .mat-typography .mat-typography h5 {
3317
- font: 400 calc(13px * 0.83) / 20px Equinor, Roboto;
3423
+ .mat-typography.sto-sm-typography .mat-h5,
3424
+ .mat-typography.sto-sm-typography .mat-typography .mat-h5,
3425
+ .mat-typography.sto-sm-typography .mat-typography h5 {
3426
+ font: 400 calc(10px * 0.83) / 16px Equinor, Roboto;
3318
3427
  margin: 0 0 12px;
3319
3428
  }
3320
- .mat-typography .mat-h6,
3321
- .mat-typography .mat-typography .mat-h6,
3322
- .mat-typography .mat-typography h6 {
3323
- font: 400 calc(13px * 0.67) / 20px Equinor, Roboto;
3429
+ .mat-typography.sto-sm-typography .mat-h6,
3430
+ .mat-typography.sto-sm-typography .mat-typography .mat-h6,
3431
+ .mat-typography.sto-sm-typography .mat-typography h6 {
3432
+ font: 400 calc(10px * 0.67) / 16px Equinor, Roboto;
3324
3433
  margin: 0 0 12px;
3325
3434
  }
3326
- .mat-typography .mat-body-strong,
3327
- .mat-typography .mat-subtitle-2,
3328
- .mat-typography .mat-typography .mat-body-strong,
3329
- .mat-typography .mat-typography .mat-subtitle-2 {
3330
- font: 400 20px / 28px Equinor, Roboto;
3435
+ .mat-typography.sto-sm-typography .mat-body-strong,
3436
+ .mat-typography.sto-sm-typography .mat-subtitle-2,
3437
+ .mat-typography.sto-sm-typography .mat-typography .mat-body-strong,
3438
+ .mat-typography.sto-sm-typography .mat-typography .mat-subtitle-2 {
3439
+ font: 400 16px / 24px Equinor, Roboto;
3331
3440
  letter-spacing: normal;
3332
3441
  }
3333
- .mat-typography .mat-body,
3334
- .mat-typography .mat-body-2,
3335
- .mat-typography .mat-typography .mat-body,
3336
- .mat-typography .mat-typography .mat-body-2,
3337
- .mat-typography .mat-typography {
3338
- font: 400 13px / 20px Equinor, Roboto;
3442
+ .mat-typography.sto-sm-typography .mat-body,
3443
+ .mat-typography.sto-sm-typography .mat-body-2,
3444
+ .mat-typography.sto-sm-typography .mat-typography .mat-body,
3445
+ .mat-typography.sto-sm-typography .mat-typography .mat-body-2,
3446
+ .mat-typography.sto-sm-typography .mat-typography {
3447
+ font: 400 10px / 16px Equinor, Roboto;
3339
3448
  letter-spacing: normal;
3340
3449
  }
3341
- .mat-typography .mat-body p,
3342
- .mat-typography .mat-body-2 p,
3343
- .mat-typography .mat-typography .mat-body p,
3344
- .mat-typography .mat-typography .mat-body-2 p,
3345
- .mat-typography .mat-typography p {
3450
+ .mat-typography.sto-sm-typography .mat-body p,
3451
+ .mat-typography.sto-sm-typography .mat-body-2 p,
3452
+ .mat-typography.sto-sm-typography .mat-typography .mat-body p,
3453
+ .mat-typography.sto-sm-typography .mat-typography .mat-body-2 p,
3454
+ .mat-typography.sto-sm-typography .mat-typography p {
3346
3455
  margin: 0 0 12px;
3347
3456
  }
3348
- .mat-typography .mat-small,
3349
- .mat-typography .mat-caption,
3350
- .mat-typography .mat-typography .mat-small,
3351
- .mat-typography .mat-typography .mat-caption {
3457
+ .mat-typography.sto-sm-typography .mat-small,
3458
+ .mat-typography.sto-sm-typography .mat-caption,
3459
+ .mat-typography.sto-sm-typography .mat-typography .mat-small,
3460
+ .mat-typography.sto-sm-typography .mat-typography .mat-caption {
3352
3461
  font: 400 12px / 20px Equinor, Roboto;
3353
3462
  letter-spacing: 0.0333333333em;
3354
3463
  }
3355
- .mat-typography .mat-headline-1,
3356
- .mat-typography .mat-typography .mat-headline-1 {
3357
- font: 400 28px / 44px Equinor, Roboto;
3464
+ .mat-typography.sto-sm-typography .mat-headline-1,
3465
+ .mat-typography.sto-sm-typography .mat-typography .mat-headline-1 {
3466
+ font: 400 24px / 40px Equinor, Roboto;
3358
3467
  letter-spacing: normal;
3359
3468
  margin: 0 0 56px;
3360
3469
  }
3361
- .mat-typography .mat-headline-2,
3362
- .mat-typography .mat-typography .mat-headline-2 {
3363
- font: 400 24px / 32px Equinor, Roboto;
3470
+ .mat-typography.sto-sm-typography .mat-headline-2,
3471
+ .mat-typography.sto-sm-typography .mat-typography .mat-headline-2 {
3472
+ font: 400 20px / 28px Equinor, Roboto;
3364
3473
  letter-spacing: normal;
3365
3474
  margin: 0 0 64px;
3366
3475
  }
3367
- .mat-typography .mat-headline-3,
3368
- .mat-typography .mat-typography .mat-headline-3 {
3476
+ .mat-typography.sto-sm-typography .mat-headline-3,
3477
+ .mat-typography.sto-sm-typography .mat-typography .mat-headline-3 {
3369
3478
  font: 400 48px / 50px Equinor, Roboto;
3370
3479
  letter-spacing: normal;
3371
3480
  margin: 0 0 64px;
3372
3481
  }
3373
- .mat-typography .mat-headline-4,
3374
- .mat-typography .mat-typography .mat-headline-4 {
3482
+ .mat-typography.sto-sm-typography .mat-headline-4,
3483
+ .mat-typography.sto-sm-typography .mat-typography .mat-headline-4 {
3375
3484
  font: 400 34px / 40px Equinor, Roboto;
3376
3485
  letter-spacing: 0.0073529412em;
3377
3486
  margin: 0 0 64px;
3378
3487
  }
3379
- .mat-typography .mat-mdc-standard-chip {
3380
- --mdc-chip-label-text-font: Equinor, Roboto;
3381
- --mdc-chip-label-text-line-height: 20px;
3382
- --mdc-chip-label-text-size: 13px;
3383
- --mdc-chip-label-text-tracking: normal;
3384
- --mdc-chip-label-text-weight: 400;
3385
- }
3386
- .mat-typography .mat-mdc-slide-toggle {
3387
- --mat-switch-label-text-font: Equinor, Roboto;
3388
- --mat-switch-label-text-line-height: 20px;
3389
- --mat-switch-label-text-size: 13px;
3390
- --mat-switch-label-text-tracking: normal;
3391
- --mat-switch-label-text-weight: 400;
3392
- }
3393
- .mat-typography .mdc-list-group__subheader {
3394
- font: 400 16px / 24px Equinor, Roboto;
3395
- letter-spacing: normal;
3396
- }
3397
- .mat-typography .mat-mdc-tab-header {
3398
- --mat-tab-header-label-text-font: Equinor, Roboto;
3399
- --mat-tab-header-label-text-size: 14px;
3400
- --mat-tab-header-label-text-tracking: normal;
3401
- --mat-tab-header-label-text-line-height: 24px;
3402
- --mat-tab-header-label-text-weight: 500;
3403
- }
3404
-
3405
3488
  .mat-typography.sto-sm-typography {
3406
- --mat-option-label-text-font: Equinor, Roboto;
3407
- --mat-option-label-text-line-height: 16px;
3408
- --mat-option-label-text-size: 10px;
3409
- --mat-option-label-text-tracking: normal;
3410
- --mat-option-label-text-weight: 400;
3411
- --mat-optgroup-label-text-font: Equinor, Roboto;
3412
- --mat-optgroup-label-text-line-height: 16px;
3413
- --mat-optgroup-label-text-size: 10px;
3414
- --mat-optgroup-label-text-tracking: normal;
3415
- --mat-optgroup-label-text-weight: 400;
3416
- --mat-badge-text-font: Equinor, Roboto;
3417
- --mat-badge-text-size: 12px;
3418
- --mat-badge-text-weight: 600;
3419
- --mat-badge-small-size-text-size: 9px;
3420
- --mat-badge-large-size-text-size: 24px;
3421
3489
  --mat-bottom-sheet-container-text-font: Equinor, Roboto;
3422
3490
  --mat-bottom-sheet-container-text-line-height: 16px;
3423
3491
  --mat-bottom-sheet-container-text-size: 10px;
3424
3492
  --mat-bottom-sheet-container-text-tracking: normal;
3425
3493
  --mat-bottom-sheet-container-text-weight: 400;
3494
+ }
3495
+ .mat-typography.sto-sm-typography {
3426
3496
  --mat-legacy-button-toggle-label-text-font: Equinor, Roboto;
3427
3497
  --mat-legacy-button-toggle-label-text-line-height: 16px;
3428
3498
  --mat-legacy-button-toggle-label-text-size: 10px;
3429
3499
  --mat-legacy-button-toggle-label-text-tracking: normal;
3430
3500
  --mat-legacy-button-toggle-label-text-weight: 400;
3501
+ }
3502
+ .mat-typography.sto-sm-typography {
3431
3503
  --mat-standard-button-toggle-label-text-font: Equinor, Roboto;
3432
3504
  --mat-standard-button-toggle-label-text-line-height: 16px;
3433
3505
  --mat-standard-button-toggle-label-text-size: 10px;
3434
3506
  --mat-standard-button-toggle-label-text-tracking: normal;
3435
3507
  --mat-standard-button-toggle-label-text-weight: 400;
3508
+ }
3509
+ .mat-typography.sto-sm-typography {
3436
3510
  --mat-datepicker-calendar-text-font: Equinor, Roboto;
3437
3511
  --mat-datepicker-calendar-text-size: 13px;
3438
3512
  --mat-datepicker-calendar-body-label-text-size: 10px;
@@ -3441,6 +3515,8 @@ body,
3441
3515
  --mat-datepicker-calendar-period-button-text-weight: 500;
3442
3516
  --mat-datepicker-calendar-header-text-size: 11px;
3443
3517
  --mat-datepicker-calendar-header-text-weight: 400;
3518
+ }
3519
+ .mat-typography.sto-sm-typography {
3444
3520
  --mat-expansion-header-text-font: Equinor, Roboto;
3445
3521
  --mat-expansion-header-text-size: 16px;
3446
3522
  --mat-expansion-header-text-weight: 400;
@@ -3451,10 +3527,14 @@ body,
3451
3527
  --mat-expansion-container-text-size: 10px;
3452
3528
  --mat-expansion-container-text-tracking: normal;
3453
3529
  --mat-expansion-container-text-weight: 400;
3530
+ }
3531
+ .mat-typography.sto-sm-typography {
3454
3532
  --mat-grid-list-tile-header-primary-text-size: 10px;
3455
3533
  --mat-grid-list-tile-header-secondary-text-size: 12px;
3456
3534
  --mat-grid-list-tile-footer-primary-text-size: 10px;
3457
3535
  --mat-grid-list-tile-footer-secondary-text-size: 12px;
3536
+ }
3537
+ .mat-typography.sto-sm-typography {
3458
3538
  --mat-stepper-container-text-font: Equinor, Roboto;
3459
3539
  --mat-stepper-header-label-text-font: Equinor, Roboto;
3460
3540
  --mat-stepper-header-label-text-size: 10px;
@@ -3462,24 +3542,34 @@ body,
3462
3542
  --mat-stepper-header-error-state-label-text-size: 10px;
3463
3543
  --mat-stepper-header-selected-state-label-text-size: 10px;
3464
3544
  --mat-stepper-header-selected-state-label-text-weight: 400;
3545
+ }
3546
+ .mat-typography.sto-sm-typography {
3465
3547
  --mat-toolbar-title-text-font: Equinor, Roboto;
3466
3548
  --mat-toolbar-title-text-line-height: 32px;
3467
3549
  --mat-toolbar-title-text-size: 20px;
3468
3550
  --mat-toolbar-title-text-tracking: 0.0125em;
3469
3551
  --mat-toolbar-title-text-weight: 500;
3552
+ }
3553
+ .mat-typography.sto-sm-typography {
3470
3554
  --mat-tree-node-text-font: Equinor, Roboto;
3471
3555
  --mat-tree-node-text-size: 10px;
3472
3556
  --mat-tree-node-text-weight: 400;
3557
+ }
3558
+ .mat-typography.sto-sm-typography {
3473
3559
  --mat-option-label-text-font: Equinor, Roboto;
3474
3560
  --mat-option-label-text-line-height: 16px;
3475
3561
  --mat-option-label-text-size: 10px;
3476
3562
  --mat-option-label-text-tracking: normal;
3477
3563
  --mat-option-label-text-weight: 400;
3564
+ }
3565
+ .mat-typography.sto-sm-typography {
3478
3566
  --mat-optgroup-label-text-font: Equinor, Roboto;
3479
3567
  --mat-optgroup-label-text-line-height: 16px;
3480
3568
  --mat-optgroup-label-text-size: 10px;
3481
3569
  --mat-optgroup-label-text-tracking: normal;
3482
3570
  --mat-optgroup-label-text-weight: 400;
3571
+ }
3572
+ .mat-typography.sto-sm-typography {
3483
3573
  --mat-card-title-text-font: Equinor, Roboto;
3484
3574
  --mat-card-title-text-line-height: 32px;
3485
3575
  --mat-card-title-text-size: 20px;
@@ -3490,18 +3580,26 @@ body,
3490
3580
  --mat-card-subtitle-text-size: 16px;
3491
3581
  --mat-card-subtitle-text-tracking: normal;
3492
3582
  --mat-card-subtitle-text-weight: 400;
3583
+ }
3584
+ .mat-typography.sto-sm-typography {
3493
3585
  --mdc-plain-tooltip-supporting-text-font: Equinor, Roboto;
3494
3586
  --mdc-plain-tooltip-supporting-text-size: 12px;
3495
3587
  --mdc-plain-tooltip-supporting-text-weight: 400;
3496
3588
  --mdc-plain-tooltip-supporting-text-tracking: 0.0333333333em;
3589
+ }
3590
+ .mat-typography.sto-sm-typography {
3497
3591
  --mdc-filled-text-field-label-text-font: Equinor, Roboto;
3498
3592
  --mdc-filled-text-field-label-text-size: 10px;
3499
3593
  --mdc-filled-text-field-label-text-tracking: normal;
3500
3594
  --mdc-filled-text-field-label-text-weight: 400;
3595
+ }
3596
+ .mat-typography.sto-sm-typography {
3501
3597
  --mdc-outlined-text-field-label-text-font: Equinor, Roboto;
3502
3598
  --mdc-outlined-text-field-label-text-size: 10px;
3503
3599
  --mdc-outlined-text-field-label-text-tracking: normal;
3504
3600
  --mdc-outlined-text-field-label-text-weight: 400;
3601
+ }
3602
+ .mat-typography.sto-sm-typography {
3505
3603
  --mat-form-field-container-text-font: Equinor, Roboto;
3506
3604
  --mat-form-field-container-text-line-height: 16px;
3507
3605
  --mat-form-field-container-text-size: 10px;
@@ -3513,11 +3611,15 @@ body,
3513
3611
  --mat-form-field-subscript-text-size: 12px;
3514
3612
  --mat-form-field-subscript-text-tracking: 0.0333333333em;
3515
3613
  --mat-form-field-subscript-text-weight: 400;
3614
+ }
3615
+ .mat-typography.sto-sm-typography {
3516
3616
  --mat-select-trigger-text-font: Equinor, Roboto;
3517
3617
  --mat-select-trigger-text-line-height: 16px;
3518
3618
  --mat-select-trigger-text-size: 10px;
3519
3619
  --mat-select-trigger-text-tracking: normal;
3520
3620
  --mat-select-trigger-text-weight: 400;
3621
+ }
3622
+ .mat-typography.sto-sm-typography {
3521
3623
  --mdc-dialog-subhead-font: Equinor, Roboto;
3522
3624
  --mdc-dialog-subhead-line-height: 32px;
3523
3625
  --mdc-dialog-subhead-size: 20px;
@@ -3528,21 +3630,43 @@ body,
3528
3630
  --mdc-dialog-supporting-text-size: 10px;
3529
3631
  --mdc-dialog-supporting-text-weight: 400;
3530
3632
  --mdc-dialog-supporting-text-tracking: normal;
3633
+ }
3634
+ .mat-typography.sto-sm-typography .mat-mdc-standard-chip {
3635
+ --mdc-chip-label-text-font: Equinor, Roboto;
3636
+ --mdc-chip-label-text-line-height: 16px;
3637
+ --mdc-chip-label-text-size: 10px;
3638
+ --mdc-chip-label-text-tracking: normal;
3639
+ --mdc-chip-label-text-weight: 400;
3640
+ }
3641
+ .mat-typography.sto-sm-typography .mat-mdc-slide-toggle {
3642
+ --mat-switch-label-text-font: Equinor, Roboto;
3643
+ --mat-switch-label-text-line-height: 16px;
3644
+ --mat-switch-label-text-size: 10px;
3645
+ --mat-switch-label-text-tracking: normal;
3646
+ --mat-switch-label-text-weight: 400;
3647
+ }
3648
+ .mat-typography.sto-sm-typography {
3531
3649
  --mat-radio-label-text-font: Equinor, Roboto;
3532
3650
  --mat-radio-label-text-line-height: 16px;
3533
3651
  --mat-radio-label-text-size: 10px;
3534
3652
  --mat-radio-label-text-tracking: normal;
3535
3653
  --mat-radio-label-text-weight: 400;
3654
+ }
3655
+ .mat-typography.sto-sm-typography {
3536
3656
  --mdc-slider-label-label-text-font: Equinor, Roboto;
3537
3657
  --mdc-slider-label-label-text-size: 16px;
3538
3658
  --mdc-slider-label-label-text-line-height: 24px;
3539
3659
  --mdc-slider-label-label-text-tracking: normal;
3540
3660
  --mdc-slider-label-label-text-weight: 400;
3661
+ }
3662
+ .mat-typography.sto-sm-typography {
3541
3663
  --mat-menu-item-label-text-font: Equinor, Roboto;
3542
3664
  --mat-menu-item-label-text-size: 10px;
3543
3665
  --mat-menu-item-label-text-tracking: normal;
3544
3666
  --mat-menu-item-label-text-line-height: 16px;
3545
3667
  --mat-menu-item-label-text-weight: 400;
3668
+ }
3669
+ .mat-typography.sto-sm-typography {
3546
3670
  --mdc-list-list-item-label-text-font: Equinor, Roboto;
3547
3671
  --mdc-list-list-item-label-text-line-height: 16px;
3548
3672
  --mdc-list-list-item-label-text-size: 10px;
@@ -3558,45 +3682,74 @@ body,
3558
3682
  --mdc-list-list-item-trailing-supporting-text-size: 12px;
3559
3683
  --mdc-list-list-item-trailing-supporting-text-tracking: 0.0333333333em;
3560
3684
  --mdc-list-list-item-trailing-supporting-text-weight: 400;
3685
+ }
3686
+ .mat-typography.sto-sm-typography .mdc-list-group__subheader {
3687
+ font: 400 12px / 20px Equinor, Roboto;
3688
+ letter-spacing: normal;
3689
+ }
3690
+ .mat-typography.sto-sm-typography {
3561
3691
  --mat-paginator-container-text-font: Equinor, Roboto;
3562
3692
  --mat-paginator-container-text-line-height: 20px;
3563
3693
  --mat-paginator-container-text-size: 12px;
3564
3694
  --mat-paginator-container-text-tracking: 0.0333333333em;
3565
3695
  --mat-paginator-container-text-weight: 400;
3566
3696
  --mat-paginator-select-trigger-text-size: 12px;
3697
+ }
3698
+ .mat-typography.sto-sm-typography .mat-mdc-tab-header {
3699
+ --mat-tab-header-label-text-font: Equinor, Roboto;
3700
+ --mat-tab-header-label-text-size: 10px;
3701
+ --mat-tab-header-label-text-tracking: normal;
3702
+ --mat-tab-header-label-text-line-height: 16px;
3703
+ --mat-tab-header-label-text-weight: 500;
3704
+ }
3705
+ .mat-typography.sto-sm-typography {
3567
3706
  --mat-checkbox-label-text-font: Equinor, Roboto;
3568
3707
  --mat-checkbox-label-text-line-height: 16px;
3569
3708
  --mat-checkbox-label-text-size: 10px;
3570
3709
  --mat-checkbox-label-text-tracking: normal;
3571
3710
  --mat-checkbox-label-text-weight: 400;
3711
+ }
3712
+ .mat-typography.sto-sm-typography {
3572
3713
  --mdc-text-button-label-text-font: Equinor, Roboto;
3573
3714
  --mdc-text-button-label-text-size: 10px;
3574
3715
  --mdc-text-button-label-text-tracking: normal;
3575
3716
  --mdc-text-button-label-text-weight: 500;
3576
3717
  --mdc-text-button-label-text-transform: none;
3718
+ }
3719
+ .mat-typography.sto-sm-typography {
3577
3720
  --mdc-filled-button-label-text-font: Equinor, Roboto;
3578
3721
  --mdc-filled-button-label-text-size: 10px;
3579
3722
  --mdc-filled-button-label-text-tracking: normal;
3580
3723
  --mdc-filled-button-label-text-weight: 500;
3581
3724
  --mdc-filled-button-label-text-transform: none;
3582
- --mdc-outlined-button-label-text-font: Equinor, Roboto;
3583
- --mdc-outlined-button-label-text-size: 10px;
3584
- --mdc-outlined-button-label-text-tracking: normal;
3585
- --mdc-outlined-button-label-text-weight: 500;
3586
- --mdc-outlined-button-label-text-transform: none;
3725
+ }
3726
+ .mat-typography.sto-sm-typography {
3587
3727
  --mdc-protected-button-label-text-font: Equinor, Roboto;
3588
3728
  --mdc-protected-button-label-text-size: 10px;
3589
3729
  --mdc-protected-button-label-text-tracking: normal;
3590
3730
  --mdc-protected-button-label-text-weight: 500;
3591
3731
  --mdc-protected-button-label-text-transform: none;
3732
+ }
3733
+ .mat-typography.sto-sm-typography {
3734
+ --mdc-outlined-button-label-text-font: Equinor, Roboto;
3735
+ --mdc-outlined-button-label-text-size: 10px;
3736
+ --mdc-outlined-button-label-text-tracking: normal;
3737
+ --mdc-outlined-button-label-text-weight: 500;
3738
+ --mdc-outlined-button-label-text-transform: none;
3739
+ }
3740
+ .mat-typography.sto-sm-typography {
3592
3741
  --mdc-extended-fab-label-text-font: Equinor, Roboto;
3593
3742
  --mdc-extended-fab-label-text-size: 10px;
3594
3743
  --mdc-extended-fab-label-text-tracking: normal;
3595
3744
  --mdc-extended-fab-label-text-weight: 500;
3745
+ }
3746
+ .mat-typography.sto-sm-typography {
3596
3747
  --mdc-snackbar-supporting-text-font: Equinor, Roboto;
3597
3748
  --mdc-snackbar-supporting-text-line-height: 16px;
3598
3749
  --mdc-snackbar-supporting-text-size: 10px;
3599
3750
  --mdc-snackbar-supporting-text-weight: 400;
3751
+ }
3752
+ .mat-typography.sto-sm-typography {
3600
3753
  --mat-table-header-headline-font: Equinor, Roboto;
3601
3754
  --mat-table-header-headline-line-height: 24px;
3602
3755
  --mat-table-header-headline-size: 16px;
@@ -3613,164 +3766,153 @@ body,
3613
3766
  --mat-table-footer-supporting-text-weight: 400;
3614
3767
  --mat-table-footer-supporting-text-tracking: normal;
3615
3768
  }
3616
- .mat-typography.sto-sm-typography .mat-h1,
3617
- .mat-typography.sto-sm-typography .mat-headline-5,
3618
- .mat-typography.sto-sm-typography .mat-typography .mat-h1,
3619
- .mat-typography.sto-sm-typography .mat-typography .mat-headline-5,
3620
- .mat-typography.sto-sm-typography .mat-typography h1 {
3769
+ .mat-typography.sto-l-typography {
3770
+ --mat-option-label-text-font: Equinor, Roboto;
3771
+ --mat-option-label-text-line-height: 24px;
3772
+ --mat-option-label-text-size: 16px;
3773
+ --mat-option-label-text-tracking: normal;
3774
+ --mat-option-label-text-weight: 400;
3775
+ }
3776
+ .mat-typography.sto-l-typography {
3777
+ --mat-optgroup-label-text-font: Equinor, Roboto;
3778
+ --mat-optgroup-label-text-line-height: 24px;
3779
+ --mat-optgroup-label-text-size: 16px;
3780
+ --mat-optgroup-label-text-tracking: normal;
3781
+ --mat-optgroup-label-text-weight: 400;
3782
+ }
3783
+ .mat-typography.sto-l-typography {
3784
+ --mat-badge-text-font: Equinor, Roboto;
3785
+ --mat-badge-line-height: 22px;
3786
+ --mat-badge-text-size: 12px;
3787
+ --mat-badge-text-weight: 600;
3788
+ --mat-badge-small-size-text-size: 9px;
3789
+ --mat-badge-small-size-line-height: 16px;
3790
+ --mat-badge-large-size-text-size: 24px;
3791
+ --mat-badge-large-size-line-height: 28px;
3792
+ }
3793
+ .mat-typography.sto-l-typography .mat-h1,
3794
+ .mat-typography.sto-l-typography .mat-headline-5,
3795
+ .mat-typography.sto-l-typography .mat-typography .mat-h1,
3796
+ .mat-typography.sto-l-typography .mat-typography .mat-headline-5,
3797
+ .mat-typography.sto-l-typography .mat-typography h1 {
3621
3798
  font: 400 24px / 32px Equinor, Roboto;
3622
3799
  letter-spacing: normal;
3623
3800
  margin: 0 0 16px;
3624
3801
  }
3625
- .mat-typography.sto-sm-typography .mat-h2,
3626
- .mat-typography.sto-sm-typography .mat-headline-6,
3627
- .mat-typography.sto-sm-typography .mat-typography .mat-h2,
3628
- .mat-typography.sto-sm-typography .mat-typography .mat-headline-6,
3629
- .mat-typography.sto-sm-typography .mat-typography h2 {
3802
+ .mat-typography.sto-l-typography .mat-h2,
3803
+ .mat-typography.sto-l-typography .mat-headline-6,
3804
+ .mat-typography.sto-l-typography .mat-typography .mat-h2,
3805
+ .mat-typography.sto-l-typography .mat-typography .mat-headline-6,
3806
+ .mat-typography.sto-l-typography .mat-typography h2 {
3630
3807
  font: 500 20px / 32px Equinor, Roboto;
3631
3808
  letter-spacing: 0.0125em;
3632
3809
  margin: 0 0 16px;
3633
3810
  }
3634
- .mat-typography.sto-sm-typography .mat-h3,
3635
- .mat-typography.sto-sm-typography .mat-subtitle-1,
3636
- .mat-typography.sto-sm-typography .mat-typography .mat-h3,
3637
- .mat-typography.sto-sm-typography .mat-typography .mat-subtitle-1,
3638
- .mat-typography.sto-sm-typography .mat-typography h3 {
3639
- font: 400 12px / 20px Equinor, Roboto;
3811
+ .mat-typography.sto-l-typography .mat-h3,
3812
+ .mat-typography.sto-l-typography .mat-subtitle-1,
3813
+ .mat-typography.sto-l-typography .mat-typography .mat-h3,
3814
+ .mat-typography.sto-l-typography .mat-typography .mat-subtitle-1,
3815
+ .mat-typography.sto-l-typography .mat-typography h3 {
3816
+ font: 400 20px / 32px Equinor, Roboto;
3640
3817
  letter-spacing: normal;
3641
3818
  margin: 0 0 16px;
3642
3819
  }
3643
- .mat-typography.sto-sm-typography .mat-h4,
3644
- .mat-typography.sto-sm-typography .mat-body-1,
3645
- .mat-typography.sto-sm-typography .mat-typography .mat-h4,
3646
- .mat-typography.sto-sm-typography .mat-typography .mat-body-1,
3647
- .mat-typography.sto-sm-typography .mat-typography h4 {
3648
- font: 400 10px / 16px Equinor, Roboto;
3820
+ .mat-typography.sto-l-typography .mat-h4,
3821
+ .mat-typography.sto-l-typography .mat-body-1,
3822
+ .mat-typography.sto-l-typography .mat-typography .mat-h4,
3823
+ .mat-typography.sto-l-typography .mat-typography .mat-body-1,
3824
+ .mat-typography.sto-l-typography .mat-typography h4 {
3825
+ font: 400 16px / 24px Equinor, Roboto;
3649
3826
  letter-spacing: normal;
3650
3827
  margin: 0 0 16px;
3651
3828
  }
3652
- .mat-typography.sto-sm-typography .mat-h5,
3653
- .mat-typography.sto-sm-typography .mat-typography .mat-h5,
3654
- .mat-typography.sto-sm-typography .mat-typography h5 {
3655
- font: 400 calc(10px * 0.83) / 16px Equinor, Roboto;
3829
+ .mat-typography.sto-l-typography .mat-h5,
3830
+ .mat-typography.sto-l-typography .mat-typography .mat-h5,
3831
+ .mat-typography.sto-l-typography .mat-typography h5 {
3832
+ font: 400 calc(18px * 0.83) / 24px Equinor, Roboto;
3656
3833
  margin: 0 0 12px;
3657
3834
  }
3658
- .mat-typography.sto-sm-typography .mat-h6,
3659
- .mat-typography.sto-sm-typography .mat-typography .mat-h6,
3660
- .mat-typography.sto-sm-typography .mat-typography h6 {
3661
- font: 400 calc(10px * 0.67) / 16px Equinor, Roboto;
3835
+ .mat-typography.sto-l-typography .mat-h6,
3836
+ .mat-typography.sto-l-typography .mat-typography .mat-h6,
3837
+ .mat-typography.sto-l-typography .mat-typography h6 {
3838
+ font: 400 calc(18px * 0.67) / 24px Equinor, Roboto;
3662
3839
  margin: 0 0 12px;
3663
3840
  }
3664
- .mat-typography.sto-sm-typography .mat-body-strong,
3665
- .mat-typography.sto-sm-typography .mat-subtitle-2,
3666
- .mat-typography.sto-sm-typography .mat-typography .mat-body-strong,
3667
- .mat-typography.sto-sm-typography .mat-typography .mat-subtitle-2 {
3668
- font: 400 16px / 24px Equinor, Roboto;
3841
+ .mat-typography.sto-l-typography .mat-body-strong,
3842
+ .mat-typography.sto-l-typography .mat-subtitle-2,
3843
+ .mat-typography.sto-l-typography .mat-typography .mat-body-strong,
3844
+ .mat-typography.sto-l-typography .mat-typography .mat-subtitle-2 {
3845
+ font: 400 24px / 40px Equinor, Roboto;
3669
3846
  letter-spacing: normal;
3670
3847
  }
3671
- .mat-typography.sto-sm-typography .mat-body,
3672
- .mat-typography.sto-sm-typography .mat-body-2,
3673
- .mat-typography.sto-sm-typography .mat-typography .mat-body,
3674
- .mat-typography.sto-sm-typography .mat-typography .mat-body-2,
3675
- .mat-typography.sto-sm-typography .mat-typography {
3676
- font: 400 10px / 16px Equinor, Roboto;
3848
+ .mat-typography.sto-l-typography .mat-body,
3849
+ .mat-typography.sto-l-typography .mat-body-2,
3850
+ .mat-typography.sto-l-typography .mat-typography .mat-body,
3851
+ .mat-typography.sto-l-typography .mat-typography .mat-body-2,
3852
+ .mat-typography.sto-l-typography .mat-typography {
3853
+ font: 400 18px / 24px Equinor, Roboto;
3677
3854
  letter-spacing: normal;
3678
3855
  }
3679
- .mat-typography.sto-sm-typography .mat-body p,
3680
- .mat-typography.sto-sm-typography .mat-body-2 p,
3681
- .mat-typography.sto-sm-typography .mat-typography .mat-body p,
3682
- .mat-typography.sto-sm-typography .mat-typography .mat-body-2 p,
3683
- .mat-typography.sto-sm-typography .mat-typography p {
3856
+ .mat-typography.sto-l-typography .mat-body p,
3857
+ .mat-typography.sto-l-typography .mat-body-2 p,
3858
+ .mat-typography.sto-l-typography .mat-typography .mat-body p,
3859
+ .mat-typography.sto-l-typography .mat-typography .mat-body-2 p,
3860
+ .mat-typography.sto-l-typography .mat-typography p {
3684
3861
  margin: 0 0 12px;
3685
3862
  }
3686
- .mat-typography.sto-sm-typography .mat-small,
3687
- .mat-typography.sto-sm-typography .mat-caption,
3688
- .mat-typography.sto-sm-typography .mat-typography .mat-small,
3689
- .mat-typography.sto-sm-typography .mat-typography .mat-caption {
3863
+ .mat-typography.sto-l-typography .mat-small,
3864
+ .mat-typography.sto-l-typography .mat-caption,
3865
+ .mat-typography.sto-l-typography .mat-typography .mat-small,
3866
+ .mat-typography.sto-l-typography .mat-typography .mat-caption {
3690
3867
  font: 400 12px / 20px Equinor, Roboto;
3691
3868
  letter-spacing: 0.0333333333em;
3692
3869
  }
3693
- .mat-typography.sto-sm-typography .mat-headline-1,
3694
- .mat-typography.sto-sm-typography .mat-typography .mat-headline-1 {
3695
- font: 400 24px / 40px Equinor, Roboto;
3870
+ .mat-typography.sto-l-typography .mat-headline-1,
3871
+ .mat-typography.sto-l-typography .mat-typography .mat-headline-1 {
3872
+ font: 400 32px / 48px Equinor, Roboto;
3696
3873
  letter-spacing: normal;
3697
3874
  margin: 0 0 56px;
3698
3875
  }
3699
- .mat-typography.sto-sm-typography .mat-headline-2,
3700
- .mat-typography.sto-sm-typography .mat-typography .mat-headline-2 {
3701
- font: 400 20px / 28px Equinor, Roboto;
3876
+ .mat-typography.sto-l-typography .mat-headline-2,
3877
+ .mat-typography.sto-l-typography .mat-typography .mat-headline-2 {
3878
+ font: 400 28px / 40px Equinor, Roboto;
3702
3879
  letter-spacing: normal;
3703
3880
  margin: 0 0 64px;
3704
3881
  }
3705
- .mat-typography.sto-sm-typography .mat-headline-3,
3706
- .mat-typography.sto-sm-typography .mat-typography .mat-headline-3 {
3882
+ .mat-typography.sto-l-typography .mat-headline-3,
3883
+ .mat-typography.sto-l-typography .mat-typography .mat-headline-3 {
3707
3884
  font: 400 48px / 50px Equinor, Roboto;
3708
3885
  letter-spacing: normal;
3709
3886
  margin: 0 0 64px;
3710
3887
  }
3711
- .mat-typography.sto-sm-typography .mat-headline-4,
3712
- .mat-typography.sto-sm-typography .mat-typography .mat-headline-4 {
3888
+ .mat-typography.sto-l-typography .mat-headline-4,
3889
+ .mat-typography.sto-l-typography .mat-typography .mat-headline-4 {
3713
3890
  font: 400 34px / 40px Equinor, Roboto;
3714
3891
  letter-spacing: 0.0073529412em;
3715
3892
  margin: 0 0 64px;
3716
3893
  }
3717
- .mat-typography.sto-sm-typography .mat-mdc-standard-chip {
3718
- --mdc-chip-label-text-font: Equinor, Roboto;
3719
- --mdc-chip-label-text-line-height: 16px;
3720
- --mdc-chip-label-text-size: 10px;
3721
- --mdc-chip-label-text-tracking: normal;
3722
- --mdc-chip-label-text-weight: 400;
3723
- }
3724
- .mat-typography.sto-sm-typography .mat-mdc-slide-toggle {
3725
- --mat-switch-label-text-font: Equinor, Roboto;
3726
- --mat-switch-label-text-line-height: 16px;
3727
- --mat-switch-label-text-size: 10px;
3728
- --mat-switch-label-text-tracking: normal;
3729
- --mat-switch-label-text-weight: 400;
3730
- }
3731
- .mat-typography.sto-sm-typography .mdc-list-group__subheader {
3732
- font: 400 12px / 20px Equinor, Roboto;
3733
- letter-spacing: normal;
3734
- }
3735
- .mat-typography.sto-sm-typography .mat-mdc-tab-header {
3736
- --mat-tab-header-label-text-font: Equinor, Roboto;
3737
- --mat-tab-header-label-text-size: 10px;
3738
- --mat-tab-header-label-text-tracking: normal;
3739
- --mat-tab-header-label-text-line-height: 16px;
3740
- --mat-tab-header-label-text-weight: 500;
3741
- }
3742
-
3743
3894
  .mat-typography.sto-l-typography {
3744
- --mat-option-label-text-font: Equinor, Roboto;
3745
- --mat-option-label-text-line-height: 24px;
3746
- --mat-option-label-text-size: 16px;
3747
- --mat-option-label-text-tracking: normal;
3748
- --mat-option-label-text-weight: 400;
3749
- --mat-optgroup-label-text-font: Equinor, Roboto;
3750
- --mat-optgroup-label-text-line-height: 24px;
3751
- --mat-optgroup-label-text-size: 16px;
3752
- --mat-optgroup-label-text-tracking: normal;
3753
- --mat-optgroup-label-text-weight: 400;
3754
- --mat-badge-text-font: Equinor, Roboto;
3755
- --mat-badge-text-size: 12px;
3756
- --mat-badge-text-weight: 600;
3757
- --mat-badge-small-size-text-size: 9px;
3758
- --mat-badge-large-size-text-size: 24px;
3759
3895
  --mat-bottom-sheet-container-text-font: Equinor, Roboto;
3760
3896
  --mat-bottom-sheet-container-text-line-height: 24px;
3761
3897
  --mat-bottom-sheet-container-text-size: 18px;
3762
3898
  --mat-bottom-sheet-container-text-tracking: normal;
3763
3899
  --mat-bottom-sheet-container-text-weight: 400;
3900
+ }
3901
+ .mat-typography.sto-l-typography {
3764
3902
  --mat-legacy-button-toggle-label-text-font: Equinor, Roboto;
3765
3903
  --mat-legacy-button-toggle-label-text-line-height: 24px;
3766
3904
  --mat-legacy-button-toggle-label-text-size: 16px;
3767
3905
  --mat-legacy-button-toggle-label-text-tracking: normal;
3768
3906
  --mat-legacy-button-toggle-label-text-weight: 400;
3907
+ }
3908
+ .mat-typography.sto-l-typography {
3769
3909
  --mat-standard-button-toggle-label-text-font: Equinor, Roboto;
3770
3910
  --mat-standard-button-toggle-label-text-line-height: 24px;
3771
3911
  --mat-standard-button-toggle-label-text-size: 16px;
3772
3912
  --mat-standard-button-toggle-label-text-tracking: normal;
3773
3913
  --mat-standard-button-toggle-label-text-weight: 400;
3914
+ }
3915
+ .mat-typography.sto-l-typography {
3774
3916
  --mat-datepicker-calendar-text-font: Equinor, Roboto;
3775
3917
  --mat-datepicker-calendar-text-size: 13px;
3776
3918
  --mat-datepicker-calendar-body-label-text-size: 14px;
@@ -3779,6 +3921,8 @@ body,
3779
3921
  --mat-datepicker-calendar-period-button-text-weight: 500;
3780
3922
  --mat-datepicker-calendar-header-text-size: 11px;
3781
3923
  --mat-datepicker-calendar-header-text-weight: 400;
3924
+ }
3925
+ .mat-typography.sto-l-typography {
3782
3926
  --mat-expansion-header-text-font: Equinor, Roboto;
3783
3927
  --mat-expansion-header-text-size: 24px;
3784
3928
  --mat-expansion-header-text-weight: 400;
@@ -3789,10 +3933,14 @@ body,
3789
3933
  --mat-expansion-container-text-size: 18px;
3790
3934
  --mat-expansion-container-text-tracking: normal;
3791
3935
  --mat-expansion-container-text-weight: 400;
3936
+ }
3937
+ .mat-typography.sto-l-typography {
3792
3938
  --mat-grid-list-tile-header-primary-text-size: 18px;
3793
3939
  --mat-grid-list-tile-header-secondary-text-size: 12px;
3794
3940
  --mat-grid-list-tile-footer-primary-text-size: 18px;
3795
3941
  --mat-grid-list-tile-footer-secondary-text-size: 12px;
3942
+ }
3943
+ .mat-typography.sto-l-typography {
3796
3944
  --mat-stepper-container-text-font: Equinor, Roboto;
3797
3945
  --mat-stepper-header-label-text-font: Equinor, Roboto;
3798
3946
  --mat-stepper-header-label-text-size: 18px;
@@ -3800,24 +3948,34 @@ body,
3800
3948
  --mat-stepper-header-error-state-label-text-size: 16px;
3801
3949
  --mat-stepper-header-selected-state-label-text-size: 16px;
3802
3950
  --mat-stepper-header-selected-state-label-text-weight: 400;
3951
+ }
3952
+ .mat-typography.sto-l-typography {
3803
3953
  --mat-toolbar-title-text-font: Equinor, Roboto;
3804
3954
  --mat-toolbar-title-text-line-height: 32px;
3805
3955
  --mat-toolbar-title-text-size: 20px;
3806
3956
  --mat-toolbar-title-text-tracking: 0.0125em;
3807
3957
  --mat-toolbar-title-text-weight: 500;
3958
+ }
3959
+ .mat-typography.sto-l-typography {
3808
3960
  --mat-tree-node-text-font: Equinor, Roboto;
3809
3961
  --mat-tree-node-text-size: 18px;
3810
3962
  --mat-tree-node-text-weight: 400;
3963
+ }
3964
+ .mat-typography.sto-l-typography {
3811
3965
  --mat-option-label-text-font: Equinor, Roboto;
3812
3966
  --mat-option-label-text-line-height: 24px;
3813
3967
  --mat-option-label-text-size: 16px;
3814
3968
  --mat-option-label-text-tracking: normal;
3815
3969
  --mat-option-label-text-weight: 400;
3970
+ }
3971
+ .mat-typography.sto-l-typography {
3816
3972
  --mat-optgroup-label-text-font: Equinor, Roboto;
3817
3973
  --mat-optgroup-label-text-line-height: 24px;
3818
3974
  --mat-optgroup-label-text-size: 16px;
3819
3975
  --mat-optgroup-label-text-tracking: normal;
3820
3976
  --mat-optgroup-label-text-weight: 400;
3977
+ }
3978
+ .mat-typography.sto-l-typography {
3821
3979
  --mat-card-title-text-font: Equinor, Roboto;
3822
3980
  --mat-card-title-text-line-height: 32px;
3823
3981
  --mat-card-title-text-size: 20px;
@@ -3828,18 +3986,26 @@ body,
3828
3986
  --mat-card-subtitle-text-size: 24px;
3829
3987
  --mat-card-subtitle-text-tracking: normal;
3830
3988
  --mat-card-subtitle-text-weight: 400;
3989
+ }
3990
+ .mat-typography.sto-l-typography {
3831
3991
  --mdc-plain-tooltip-supporting-text-font: Equinor, Roboto;
3832
3992
  --mdc-plain-tooltip-supporting-text-size: 12px;
3833
3993
  --mdc-plain-tooltip-supporting-text-weight: 400;
3834
3994
  --mdc-plain-tooltip-supporting-text-tracking: 0.0333333333em;
3995
+ }
3996
+ .mat-typography.sto-l-typography {
3835
3997
  --mdc-filled-text-field-label-text-font: Equinor, Roboto;
3836
3998
  --mdc-filled-text-field-label-text-size: 16px;
3837
3999
  --mdc-filled-text-field-label-text-tracking: normal;
3838
4000
  --mdc-filled-text-field-label-text-weight: 400;
4001
+ }
4002
+ .mat-typography.sto-l-typography {
3839
4003
  --mdc-outlined-text-field-label-text-font: Equinor, Roboto;
3840
4004
  --mdc-outlined-text-field-label-text-size: 16px;
3841
4005
  --mdc-outlined-text-field-label-text-tracking: normal;
3842
4006
  --mdc-outlined-text-field-label-text-weight: 400;
4007
+ }
4008
+ .mat-typography.sto-l-typography {
3843
4009
  --mat-form-field-container-text-font: Equinor, Roboto;
3844
4010
  --mat-form-field-container-text-line-height: 24px;
3845
4011
  --mat-form-field-container-text-size: 16px;
@@ -3851,11 +4017,15 @@ body,
3851
4017
  --mat-form-field-subscript-text-size: 12px;
3852
4018
  --mat-form-field-subscript-text-tracking: 0.0333333333em;
3853
4019
  --mat-form-field-subscript-text-weight: 400;
4020
+ }
4021
+ .mat-typography.sto-l-typography {
3854
4022
  --mat-select-trigger-text-font: Equinor, Roboto;
3855
4023
  --mat-select-trigger-text-line-height: 24px;
3856
4024
  --mat-select-trigger-text-size: 16px;
3857
4025
  --mat-select-trigger-text-tracking: normal;
3858
4026
  --mat-select-trigger-text-weight: 400;
4027
+ }
4028
+ .mat-typography.sto-l-typography {
3859
4029
  --mdc-dialog-subhead-font: Equinor, Roboto;
3860
4030
  --mdc-dialog-subhead-line-height: 32px;
3861
4031
  --mdc-dialog-subhead-size: 20px;
@@ -3866,21 +4036,43 @@ body,
3866
4036
  --mdc-dialog-supporting-text-size: 16px;
3867
4037
  --mdc-dialog-supporting-text-weight: 400;
3868
4038
  --mdc-dialog-supporting-text-tracking: normal;
4039
+ }
4040
+ .mat-typography.sto-l-typography .mat-mdc-standard-chip {
4041
+ --mdc-chip-label-text-font: Equinor, Roboto;
4042
+ --mdc-chip-label-text-line-height: 24px;
4043
+ --mdc-chip-label-text-size: 18px;
4044
+ --mdc-chip-label-text-tracking: normal;
4045
+ --mdc-chip-label-text-weight: 400;
4046
+ }
4047
+ .mat-typography.sto-l-typography .mat-mdc-slide-toggle {
4048
+ --mat-switch-label-text-font: Equinor, Roboto;
4049
+ --mat-switch-label-text-line-height: 24px;
4050
+ --mat-switch-label-text-size: 18px;
4051
+ --mat-switch-label-text-tracking: normal;
4052
+ --mat-switch-label-text-weight: 400;
4053
+ }
4054
+ .mat-typography.sto-l-typography {
3869
4055
  --mat-radio-label-text-font: Equinor, Roboto;
3870
4056
  --mat-radio-label-text-line-height: 24px;
3871
4057
  --mat-radio-label-text-size: 18px;
3872
4058
  --mat-radio-label-text-tracking: normal;
3873
4059
  --mat-radio-label-text-weight: 400;
4060
+ }
4061
+ .mat-typography.sto-l-typography {
3874
4062
  --mdc-slider-label-label-text-font: Equinor, Roboto;
3875
4063
  --mdc-slider-label-label-text-size: 24px;
3876
4064
  --mdc-slider-label-label-text-line-height: 40px;
3877
4065
  --mdc-slider-label-label-text-tracking: normal;
3878
4066
  --mdc-slider-label-label-text-weight: 400;
4067
+ }
4068
+ .mat-typography.sto-l-typography {
3879
4069
  --mat-menu-item-label-text-font: Equinor, Roboto;
3880
4070
  --mat-menu-item-label-text-size: 16px;
3881
4071
  --mat-menu-item-label-text-tracking: normal;
3882
4072
  --mat-menu-item-label-text-line-height: 24px;
3883
4073
  --mat-menu-item-label-text-weight: 400;
4074
+ }
4075
+ .mat-typography.sto-l-typography {
3884
4076
  --mdc-list-list-item-label-text-font: Equinor, Roboto;
3885
4077
  --mdc-list-list-item-label-text-line-height: 24px;
3886
4078
  --mdc-list-list-item-label-text-size: 16px;
@@ -3896,45 +4088,74 @@ body,
3896
4088
  --mdc-list-list-item-trailing-supporting-text-size: 12px;
3897
4089
  --mdc-list-list-item-trailing-supporting-text-tracking: 0.0333333333em;
3898
4090
  --mdc-list-list-item-trailing-supporting-text-weight: 400;
4091
+ }
4092
+ .mat-typography.sto-l-typography .mdc-list-group__subheader {
4093
+ font: 400 20px / 32px Equinor, Roboto;
4094
+ letter-spacing: normal;
4095
+ }
4096
+ .mat-typography.sto-l-typography {
3899
4097
  --mat-paginator-container-text-font: Equinor, Roboto;
3900
4098
  --mat-paginator-container-text-line-height: 20px;
3901
4099
  --mat-paginator-container-text-size: 12px;
3902
4100
  --mat-paginator-container-text-tracking: 0.0333333333em;
3903
4101
  --mat-paginator-container-text-weight: 400;
3904
4102
  --mat-paginator-select-trigger-text-size: 12px;
4103
+ }
4104
+ .mat-typography.sto-l-typography .mat-mdc-tab-header {
4105
+ --mat-tab-header-label-text-font: Equinor, Roboto;
4106
+ --mat-tab-header-label-text-size: 14px;
4107
+ --mat-tab-header-label-text-tracking: normal;
4108
+ --mat-tab-header-label-text-line-height: 24px;
4109
+ --mat-tab-header-label-text-weight: 500;
4110
+ }
4111
+ .mat-typography.sto-l-typography {
3905
4112
  --mat-checkbox-label-text-font: Equinor, Roboto;
3906
4113
  --mat-checkbox-label-text-line-height: 24px;
3907
4114
  --mat-checkbox-label-text-size: 18px;
3908
4115
  --mat-checkbox-label-text-tracking: normal;
3909
4116
  --mat-checkbox-label-text-weight: 400;
4117
+ }
4118
+ .mat-typography.sto-l-typography {
3910
4119
  --mdc-text-button-label-text-font: Equinor, Roboto;
3911
4120
  --mdc-text-button-label-text-size: 14px;
3912
4121
  --mdc-text-button-label-text-tracking: normal;
3913
4122
  --mdc-text-button-label-text-weight: 500;
3914
4123
  --mdc-text-button-label-text-transform: none;
4124
+ }
4125
+ .mat-typography.sto-l-typography {
3915
4126
  --mdc-filled-button-label-text-font: Equinor, Roboto;
3916
4127
  --mdc-filled-button-label-text-size: 14px;
3917
4128
  --mdc-filled-button-label-text-tracking: normal;
3918
4129
  --mdc-filled-button-label-text-weight: 500;
3919
4130
  --mdc-filled-button-label-text-transform: none;
3920
- --mdc-outlined-button-label-text-font: Equinor, Roboto;
3921
- --mdc-outlined-button-label-text-size: 14px;
3922
- --mdc-outlined-button-label-text-tracking: normal;
3923
- --mdc-outlined-button-label-text-weight: 500;
3924
- --mdc-outlined-button-label-text-transform: none;
4131
+ }
4132
+ .mat-typography.sto-l-typography {
3925
4133
  --mdc-protected-button-label-text-font: Equinor, Roboto;
3926
4134
  --mdc-protected-button-label-text-size: 14px;
3927
4135
  --mdc-protected-button-label-text-tracking: normal;
3928
4136
  --mdc-protected-button-label-text-weight: 500;
3929
4137
  --mdc-protected-button-label-text-transform: none;
4138
+ }
4139
+ .mat-typography.sto-l-typography {
4140
+ --mdc-outlined-button-label-text-font: Equinor, Roboto;
4141
+ --mdc-outlined-button-label-text-size: 14px;
4142
+ --mdc-outlined-button-label-text-tracking: normal;
4143
+ --mdc-outlined-button-label-text-weight: 500;
4144
+ --mdc-outlined-button-label-text-transform: none;
4145
+ }
4146
+ .mat-typography.sto-l-typography {
3930
4147
  --mdc-extended-fab-label-text-font: Equinor, Roboto;
3931
4148
  --mdc-extended-fab-label-text-size: 14px;
3932
4149
  --mdc-extended-fab-label-text-tracking: normal;
3933
4150
  --mdc-extended-fab-label-text-weight: 500;
4151
+ }
4152
+ .mat-typography.sto-l-typography {
3934
4153
  --mdc-snackbar-supporting-text-font: Equinor, Roboto;
3935
4154
  --mdc-snackbar-supporting-text-line-height: 24px;
3936
4155
  --mdc-snackbar-supporting-text-size: 18px;
3937
4156
  --mdc-snackbar-supporting-text-weight: 400;
4157
+ }
4158
+ .mat-typography.sto-l-typography {
3938
4159
  --mat-table-header-headline-font: Equinor, Roboto;
3939
4160
  --mat-table-header-headline-line-height: 40px;
3940
4161
  --mat-table-header-headline-size: 24px;
@@ -3951,131 +4172,8 @@ body,
3951
4172
  --mat-table-footer-supporting-text-weight: 400;
3952
4173
  --mat-table-footer-supporting-text-tracking: normal;
3953
4174
  }
3954
- .mat-typography.sto-l-typography .mat-h1,
3955
- .mat-typography.sto-l-typography .mat-headline-5,
3956
- .mat-typography.sto-l-typography .mat-typography .mat-h1,
3957
- .mat-typography.sto-l-typography .mat-typography .mat-headline-5,
3958
- .mat-typography.sto-l-typography .mat-typography h1 {
3959
- font: 400 24px / 32px Equinor, Roboto;
3960
- letter-spacing: normal;
3961
- margin: 0 0 16px;
3962
- }
3963
- .mat-typography.sto-l-typography .mat-h2,
3964
- .mat-typography.sto-l-typography .mat-headline-6,
3965
- .mat-typography.sto-l-typography .mat-typography .mat-h2,
3966
- .mat-typography.sto-l-typography .mat-typography .mat-headline-6,
3967
- .mat-typography.sto-l-typography .mat-typography h2 {
3968
- font: 500 20px / 32px Equinor, Roboto;
3969
- letter-spacing: 0.0125em;
3970
- margin: 0 0 16px;
3971
- }
3972
- .mat-typography.sto-l-typography .mat-h3,
3973
- .mat-typography.sto-l-typography .mat-subtitle-1,
3974
- .mat-typography.sto-l-typography .mat-typography .mat-h3,
3975
- .mat-typography.sto-l-typography .mat-typography .mat-subtitle-1,
3976
- .mat-typography.sto-l-typography .mat-typography h3 {
3977
- font: 400 20px / 32px Equinor, Roboto;
3978
- letter-spacing: normal;
3979
- margin: 0 0 16px;
3980
- }
3981
- .mat-typography.sto-l-typography .mat-h4,
3982
- .mat-typography.sto-l-typography .mat-body-1,
3983
- .mat-typography.sto-l-typography .mat-typography .mat-h4,
3984
- .mat-typography.sto-l-typography .mat-typography .mat-body-1,
3985
- .mat-typography.sto-l-typography .mat-typography h4 {
3986
- font: 400 16px / 24px Equinor, Roboto;
3987
- letter-spacing: normal;
3988
- margin: 0 0 16px;
3989
- }
3990
- .mat-typography.sto-l-typography .mat-h5,
3991
- .mat-typography.sto-l-typography .mat-typography .mat-h5,
3992
- .mat-typography.sto-l-typography .mat-typography h5 {
3993
- font: 400 calc(18px * 0.83) / 24px Equinor, Roboto;
3994
- margin: 0 0 12px;
3995
- }
3996
- .mat-typography.sto-l-typography .mat-h6,
3997
- .mat-typography.sto-l-typography .mat-typography .mat-h6,
3998
- .mat-typography.sto-l-typography .mat-typography h6 {
3999
- font: 400 calc(18px * 0.67) / 24px Equinor, Roboto;
4000
- margin: 0 0 12px;
4001
- }
4002
- .mat-typography.sto-l-typography .mat-body-strong,
4003
- .mat-typography.sto-l-typography .mat-subtitle-2,
4004
- .mat-typography.sto-l-typography .mat-typography .mat-body-strong,
4005
- .mat-typography.sto-l-typography .mat-typography .mat-subtitle-2 {
4006
- font: 400 24px / 40px Equinor, Roboto;
4007
- letter-spacing: normal;
4008
- }
4009
- .mat-typography.sto-l-typography .mat-body,
4010
- .mat-typography.sto-l-typography .mat-body-2,
4011
- .mat-typography.sto-l-typography .mat-typography .mat-body,
4012
- .mat-typography.sto-l-typography .mat-typography .mat-body-2,
4013
- .mat-typography.sto-l-typography .mat-typography {
4014
- font: 400 18px / 24px Equinor, Roboto;
4015
- letter-spacing: normal;
4016
- }
4017
- .mat-typography.sto-l-typography .mat-body p,
4018
- .mat-typography.sto-l-typography .mat-body-2 p,
4019
- .mat-typography.sto-l-typography .mat-typography .mat-body p,
4020
- .mat-typography.sto-l-typography .mat-typography .mat-body-2 p,
4021
- .mat-typography.sto-l-typography .mat-typography p {
4022
- margin: 0 0 12px;
4023
- }
4024
- .mat-typography.sto-l-typography .mat-small,
4025
- .mat-typography.sto-l-typography .mat-caption,
4026
- .mat-typography.sto-l-typography .mat-typography .mat-small,
4027
- .mat-typography.sto-l-typography .mat-typography .mat-caption {
4028
- font: 400 12px / 20px Equinor, Roboto;
4029
- letter-spacing: 0.0333333333em;
4030
- }
4031
- .mat-typography.sto-l-typography .mat-headline-1,
4032
- .mat-typography.sto-l-typography .mat-typography .mat-headline-1 {
4033
- font: 400 32px / 48px Equinor, Roboto;
4034
- letter-spacing: normal;
4035
- margin: 0 0 56px;
4036
- }
4037
- .mat-typography.sto-l-typography .mat-headline-2,
4038
- .mat-typography.sto-l-typography .mat-typography .mat-headline-2 {
4039
- font: 400 28px / 40px Equinor, Roboto;
4040
- letter-spacing: normal;
4041
- margin: 0 0 64px;
4042
- }
4043
- .mat-typography.sto-l-typography .mat-headline-3,
4044
- .mat-typography.sto-l-typography .mat-typography .mat-headline-3 {
4045
- font: 400 48px / 50px Equinor, Roboto;
4046
- letter-spacing: normal;
4047
- margin: 0 0 64px;
4048
- }
4049
- .mat-typography.sto-l-typography .mat-headline-4,
4050
- .mat-typography.sto-l-typography .mat-typography .mat-headline-4 {
4051
- font: 400 34px / 40px Equinor, Roboto;
4052
- letter-spacing: 0.0073529412em;
4053
- margin: 0 0 64px;
4054
- }
4055
- .mat-typography.sto-l-typography .mat-mdc-standard-chip {
4056
- --mdc-chip-label-text-font: Equinor, Roboto;
4057
- --mdc-chip-label-text-line-height: 24px;
4058
- --mdc-chip-label-text-size: 18px;
4059
- --mdc-chip-label-text-tracking: normal;
4060
- --mdc-chip-label-text-weight: 400;
4061
- }
4062
- .mat-typography.sto-l-typography .mat-mdc-slide-toggle {
4063
- --mat-switch-label-text-font: Equinor, Roboto;
4064
- --mat-switch-label-text-line-height: 24px;
4065
- --mat-switch-label-text-size: 18px;
4066
- --mat-switch-label-text-tracking: normal;
4067
- --mat-switch-label-text-weight: 400;
4068
- }
4069
- .mat-typography.sto-l-typography .mdc-list-group__subheader {
4070
- font: 400 20px / 32px Equinor, Roboto;
4071
- letter-spacing: normal;
4072
- }
4073
- .mat-typography.sto-l-typography .mat-mdc-tab-header {
4074
- --mat-tab-header-label-text-font: Equinor, Roboto;
4075
- --mat-tab-header-label-text-size: 14px;
4076
- --mat-tab-header-label-text-tracking: normal;
4077
- --mat-tab-header-label-text-line-height: 24px;
4078
- --mat-tab-header-label-text-weight: 500;
4175
+ body {
4176
+ --mat-sys-primary: var(--primary-resting);
4079
4177
  }
4080
4178
 
4081
4179
  /**
@@ -4192,92 +4290,107 @@ input::-webkit-inner-spin-button {
4192
4290
  margin: 0;
4193
4291
  }
4194
4292
 
4195
- .mat-app-background {
4293
+ html body.mat-app-background {
4196
4294
  background-color: var(--bg-app);
4197
4295
  color: var(--text);
4198
4296
  --mdc-theme-surface: var(--primary-resting);
4199
4297
  }
4200
-
4201
- .mat-expansion-panel {
4298
+ html body .mat-expansion-panel {
4202
4299
  --mat-expansion-container-background-color: var(--bg-card);
4203
4300
  --mat-expansion-header-hover-state-layer-color: var(--bg-hover);
4204
4301
  --mat-expansion-header-text-color: var(--text);
4205
4302
  --mat-expansion-header-indicator-color: var(--text);
4206
4303
  --mat-expansion-container-text-color: var(--text);
4207
4304
  }
4208
-
4209
- .mat-mdc-button-base {
4305
+ html body .mat-mdc-button-base {
4210
4306
  --mdc-text-button-container-height: 46px;
4211
4307
  --mdc-protected-button-label-text-color: var(--primary-hover-alt);
4212
4308
  height: var(--mdc-text-button-container-height);
4213
4309
  }
4214
- .mat-mdc-button-base.mat-unthemed {
4310
+ html body .mat-mdc-button-base.mat-unthemed {
4215
4311
  --mdc-text-button-label-text-color: var(--text);
4216
4312
  }
4217
- .mat-mdc-button-base.mat-mdc-raised-button {
4313
+ html body .mat-mdc-button-base.mat-mdc-raised-button {
4218
4314
  --mdc-protected-button-label-text-color: var(--primary-hover-alt);
4219
4315
  }
4220
- .mat-mdc-button-base.mat-mdc-icon-button {
4316
+ html body .mat-mdc-button-base.mat-mdc-icon-button {
4221
4317
  --mdc-icon-button-padding: max(
4222
4318
  0px,
4223
4319
  calc(
4224
4320
  calc(
4225
- var(--mdc-icon-button-state-layer-size, 48px) -
4226
- var(--mdc-icon-button-icon-size, 24px)
4227
- ) / 2
4321
+ var(--mdc-icon-button-state-layer-size, 48px) - var(
4322
+ --mdc-icon-button-icon-size,
4323
+ 24px
4324
+ )
4325
+ ) /
4326
+ 2
4228
4327
  )
4229
4328
  );
4230
4329
  padding: var(--mdc-icon-button-padding);
4231
4330
  line-height: calc(var(--mdc-icon-button-state-layer-size, 48px) - var(--mdc-icon-button-padding));
4232
4331
  }
4233
- .mat-mdc-button-base.mat-mdc-icon-button .mat-icon {
4332
+ html body .mat-mdc-button-base.mat-mdc-icon-button .mat-icon {
4234
4333
  height: calc(var(--mdc-icon-button-state-layer-size, 48px) - var(--mdc-icon-button-padding) * 2);
4235
4334
  width: calc(var(--mdc-icon-button-state-layer-size, 48px) - var(--mdc-icon-button-padding) * 2);
4236
4335
  }
4237
- .mat-mdc-button-base.mat-mdc-icon-button .mat-mdc-focus-indicator,
4238
- .mat-mdc-button-base.mat-mdc-icon-button .mat-mdc-button-touch-target {
4336
+ html body .mat-mdc-button-base.mat-mdc-icon-button .mat-mdc-focus-indicator,
4337
+ html body .mat-mdc-button-base.mat-mdc-icon-button .mat-mdc-button-touch-target {
4239
4338
  width: var(--mdc-icon-button-state-layer-size, 48px);
4240
4339
  height: var(--mdc-icon-button-state-layer-size, 48px);
4241
4340
  margin: 2px;
4242
4341
  }
4243
-
4244
- .mat-mdc-progress-bar {
4342
+ html body .mat-button-toggle {
4343
+ --mat-standard-button-toggle-text-color: var(--text);
4344
+ }
4345
+ html body .mat-mdc-progress-bar {
4245
4346
  --mdc-linear-progress-active-indicator-color: var(--primary-highlight);
4246
4347
  }
4247
-
4248
- .mat-mdc-tab-group,
4249
- .mat-mdc-tab-nav-bar {
4348
+ html body .mat-mdc-tab-group,
4349
+ html body .mat-mdc-tab-nav-bar {
4250
4350
  --mat-tab-header-inactive-label-text-color: var(--text-disabled);
4251
4351
  --mat-tab-header-active-label-text-color: var(--text);
4252
4352
  --mat-tab-header-inactive-focus-label-text-color: var(--text-disabled);
4253
4353
  --mat-tab-header-inactive-hover-label-text-color: var(--text-disabled);
4254
4354
  }
4255
-
4256
- .mat-mdc-menu-panel {
4355
+ html body .mdc-menu-surface {
4356
+ --mat-select-panel-background-color: var(--bg-card);
4257
4357
  --mat-menu-item-label-text-color: var(--text);
4258
4358
  --mat-menu-container-color: var(--bg-card);
4259
4359
  --mat-menu-item-icon-color: var(--text);
4360
+ --mat-option-label-text-color: var(--text);
4361
+ --mat-full-pseudo-checkbox-unselected-icon-color: var(--text);
4260
4362
  }
4261
-
4262
- .mat-mdc-card {
4363
+ html body .mat-mdc-card {
4263
4364
  --mdc-elevated-card-container-color: var(--bg-card);
4264
- --mdc-outlined-card-container-color: hsla(from var(--bg-card), h s l 50%);
4365
+ --mdc-outlined-card-container-color: hsla(from var(--bg-card) h s l / 50%);
4265
4366
  --mdc-outlined-card-container-color: var(--bg-card);
4266
4367
  }
4267
-
4268
- .mat-mdc-form-field {
4368
+ html body .mat-mdc-form-field {
4369
+ --mdc-filled-text-field-active-indicator-color: var(--divider);
4370
+ --mdc-filled-text-field-hover-active-indicator-color: var(
4371
+ --primary-resting
4372
+ );
4373
+ --mdc-filled-text-field-focus-active-indicator-color: var(
4374
+ --primary-resting
4375
+ );
4376
+ --mdc-filled-text-field-focus-label-text-color: hsla(
4377
+ from var(--text) h s l / 70%
4378
+ );
4269
4379
  --mdc-filled-text-field-input-text-color: var(--text);
4380
+ --mdc-filled-text-field-label-text-color: hsla(
4381
+ from var(--text) h s l / 70%
4382
+ );
4383
+ --mdc-filled-text-field-hover-label-text-color: var(--text);
4270
4384
  --mdc-filled-text-field-caret-color: var(--text);
4271
4385
  --mat-form-field-container-height: 36px;
4272
4386
  --mat-form-field-filled-with-label-container-padding-bottom: 0px;
4273
4387
  }
4274
- .mat-mdc-form-field .mdc-text-field {
4388
+ html body .mat-mdc-form-field .mdc-text-field {
4275
4389
  overflow: visible;
4276
4390
  padding: 0;
4277
4391
  }
4278
-
4279
- .mat-mdc-checkbox,
4280
- .mat-mdc-checkbox.mat-primary {
4392
+ html body .mat-mdc-checkbox,
4393
+ html body .mat-mdc-checkbox.mat-primary {
4281
4394
  --mdc-theme-text-primary-on-background: var(--text);
4282
4395
  --mdc-checkbox-selected-checkmark-color: var(--accent-hover-contrast);
4283
4396
  --mdc-checkbox-unselected-icon-color: var(--text);
@@ -4286,28 +4399,30 @@ input::-webkit-inner-spin-button {
4286
4399
  --mdc-checkbox-unselected-hover-icon-color: var(--text-disabled);
4287
4400
  --mdc-checkbox-selected-hover-icon-color: var(--primary-hover);
4288
4401
  }
4289
-
4290
- .mat-mdc-select {
4402
+ html body .mat-mdc-radio-button {
4403
+ --mdc-radio-selected-icon-color: var(--primary-resting);
4404
+ }
4405
+ html body .mat-mdc-select {
4291
4406
  --mat-select-enabled-trigger-text-color: var(--text);
4292
4407
  --mat-select-enabled-arrow-color: var(--text);
4293
4408
  }
4294
-
4295
- .mdc-switch {
4409
+ html body .mdc-switch {
4296
4410
  --mdc-theme-text-primary-on-background: var(--text);
4297
4411
  --mdc-switch-handle-surface-color: var(--primary-resting);
4298
4412
  --mdc-switch-selected-track-color: var(--primary-selected-hover);
4299
4413
  --mdc-switch-selected-hover-track-color: var(--primary-selected-hover);
4300
4414
  --mdc-switch-selected-focus-track-color: var(--primary-selected-focus);
4301
4415
  }
4302
-
4303
- .mat-calendar {
4416
+ html body .mat-mdc-slide-toggle {
4417
+ --mat-switch-label-text-color: var(--text);
4418
+ }
4419
+ html body .mat-calendar {
4304
4420
  --mat-datepicker-calendar-body-label-text-color: var(--text);
4305
4421
  --mat-datepicker-calendar-date-text-color: hsla(
4306
- from var(--accent-text),
4307
- h s l 50%
4422
+ from var(--text) h s l / 80%
4308
4423
  );
4309
4424
  --mat-datepicker-calendar-date-selected-state-text-color: var(
4310
- --accent-highlight
4425
+ --accent-hover-contrast
4311
4426
  );
4312
4427
  --mat-datepicker-calendar-date-selected-state-background-color: var(
4313
4428
  --primary-resting
@@ -4436,17 +4551,6 @@ mat-form-field {
4436
4551
  background: inherit;
4437
4552
  }
4438
4553
 
4439
- body .sto-form__field {
4440
- --mdc-filled-text-field-active-indicator-color: var(--divider);
4441
- --mdc-filled-text-field-hover-active-indicator-color: var(
4442
- --primary-resting
4443
- );
4444
- --mdc-filled-text-field-focus-active-indicator-color: var(
4445
- --primary-resting
4446
- );
4447
- --mdc-filled-text-field-label-text-color: var(--text);
4448
- --mdc-filled-text-field-focus-label-text-color: var(--text);
4449
- }
4450
4554
  body .sto-form__field input {
4451
4555
  color: var(--mdc-filled-text-field-label-text-color);
4452
4556
  }