@softheon/armature 10.27.2 → 10.29.2

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 (192) hide show
  1. package/assets/styles/_utility.scss +340 -0
  2. package/assets/styles/_variables.scss +22 -0
  3. package/assets/styles/material-overrides.scss +5 -0
  4. package/assets/styles/sof-styles.scss +1484 -0
  5. package/bundles/softheon-armature.umd.js +290 -10
  6. package/bundles/softheon-armature.umd.js.map +1 -1
  7. package/bundles/softheon-armature.umd.min.js +2 -2
  8. package/bundles/softheon-armature.umd.min.js.map +1 -1
  9. package/esm2015/lib/alert-banner/alert-banner-api.js +1 -1
  10. package/esm2015/lib/alert-banner/alert-banner.module.js +1 -1
  11. package/esm2015/lib/alert-banner/components/alert-banner/alert-banner.component.js +3 -1
  12. package/esm2015/lib/alert-banner/models/alert-banner-config.js +1 -1
  13. package/esm2015/lib/alert-banner/models/alert-banner-context.js +1 -1
  14. package/esm2015/lib/alert-banner/models/constants.js +1 -1
  15. package/esm2015/lib/alert-banner/services/alert-banner.service.js +1 -1
  16. package/esm2015/lib/armature.module.js +4 -2
  17. package/esm2015/lib/base-components/base-component-api.js +8 -0
  18. package/esm2015/lib/base-components/base-component.module.js +55 -0
  19. package/esm2015/lib/base-components/sof-alert/sof-alert.component.js +67 -0
  20. package/esm2015/lib/base-components/sof-banner/sof-banner.component.js +44 -0
  21. package/esm2015/lib/base-components/sof-modal/sof-modal.component.js +49 -0
  22. package/esm2015/lib/base-components/sof-progress-bar/sof-progress-bar.component.js +61 -0
  23. package/esm2015/lib/core/client-generated/api/session.service.js +1 -1
  24. package/esm2015/lib/core/client-generated/configuration.js +1 -1
  25. package/esm2015/lib/core/client-generated/encoder.js +1 -1
  26. package/esm2015/lib/core/client-generated/model/applicationUserModel.js +1 -1
  27. package/esm2015/lib/core/client-generated/model/assertedUserModel.js +1 -1
  28. package/esm2015/lib/core/client-generated/model/brandingModel.js +1 -1
  29. package/esm2015/lib/core/client-generated/model/errorModel.js +1 -1
  30. package/esm2015/lib/core/client-generated/model/folderLink.js +1 -1
  31. package/esm2015/lib/core/client-generated/model/identityProfile.js +1 -1
  32. package/esm2015/lib/core/client-generated/model/models.js +1 -1
  33. package/esm2015/lib/core/client-generated/model/oAuthModel.js +1 -1
  34. package/esm2015/lib/core/client-generated/model/preferencesRow.js +1 -1
  35. package/esm2015/lib/core/client-generated/model/rolesRow.js +1 -1
  36. package/esm2015/lib/core/client-generated/model/sessionGetResponseModel.js +1 -1
  37. package/esm2015/lib/core/client-generated/model/sessionPostRequestModel.js +1 -1
  38. package/esm2015/lib/core/client-generated/model/sessionPostResponseModel.js +1 -1
  39. package/esm2015/lib/core/client-generated/model/sessionPutRequestModel.js +1 -1
  40. package/esm2015/lib/core/client-generated/model/sessionPutResponseModel.js +1 -1
  41. package/esm2015/lib/core/client-generated/model/sessionResponseModel.js +1 -1
  42. package/esm2015/lib/core/client-generated/model/settingsProfile.js +1 -1
  43. package/esm2015/lib/core/client-generated/model/themePaletteColorsModel.js +1 -1
  44. package/esm2015/lib/core/client-generated/model/themePaletteModel.js +1 -1
  45. package/esm2015/lib/core/client-generated/model/trackingModel.js +1 -1
  46. package/esm2015/lib/core/client-generated/model/validationRecordsRow.js +1 -1
  47. package/esm2015/lib/core/client-generated/variables.js +1 -1
  48. package/esm2015/lib/core/components/app-template/app-template.component.js +1 -1
  49. package/esm2015/lib/core/functions/guid.js +1 -1
  50. package/esm2015/lib/core/functions/naming-convention.js +1 -1
  51. package/esm2015/lib/core/initializer/abstract-startup-service.js +1 -1
  52. package/esm2015/lib/core/initializer/initializer.service.js +1 -1
  53. package/esm2015/lib/core/interceptors/armature-auth-token-append.interceptor.js +1 -1
  54. package/esm2015/lib/core/models/base-config.js +1 -1
  55. package/esm2015/lib/core/models/constants.js +1 -1
  56. package/esm2015/lib/core/models/data-store-config.js +1 -1
  57. package/esm2015/lib/core/models/header-config.js +1 -1
  58. package/esm2015/lib/core/models/http-verbs.js +1 -1
  59. package/esm2015/lib/core/models/navigation-config.js +1 -1
  60. package/esm2015/lib/core/models/oidc-auth-settings.js +1 -1
  61. package/esm2015/lib/core/models/route-path.js +1 -1
  62. package/esm2015/lib/core/models/session-config.js +1 -1
  63. package/esm2015/lib/core/models/styles.js +1 -1
  64. package/esm2015/lib/core/models/typed-session.js +1 -1
  65. package/esm2015/lib/core/models/user-entity-service-config.js +1 -1
  66. package/esm2015/lib/core/services/authorization.service.js +1 -1
  67. package/esm2015/lib/core/services/banner.service.js +1 -1
  68. package/esm2015/lib/core/services/base-config.service.js +1 -1
  69. package/esm2015/lib/core/services/custom-auth-config.service.js +1 -1
  70. package/esm2015/lib/core/services/default-config.service.js +1 -1
  71. package/esm2015/lib/core/services/session.service.js +1 -1
  72. package/esm2015/lib/core/services/user-entity.service.js +1 -1
  73. package/esm2015/lib/distributed-cache/client-generated/api/api.js +1 -1
  74. package/esm2015/lib/distributed-cache/client-generated/api/cache.service.js +1 -1
  75. package/esm2015/lib/distributed-cache/client-generated/configuration.js +1 -1
  76. package/esm2015/lib/distributed-cache/client-generated/encoder.js +1 -1
  77. package/esm2015/lib/distributed-cache/client-generated/model/cacheExpirationType.js +1 -1
  78. package/esm2015/lib/distributed-cache/client-generated/model/createCacheEntryRequestModel.js +1 -1
  79. package/esm2015/lib/distributed-cache/client-generated/model/models.js +1 -1
  80. package/esm2015/lib/distributed-cache/client-generated/model/retrieveCacheEntryResponseModel.js +1 -1
  81. package/esm2015/lib/distributed-cache/client-generated/model/updateCacheEntryRequestModel.js +1 -1
  82. package/esm2015/lib/distributed-cache/client-generated/variables.js +1 -1
  83. package/esm2015/lib/distributed-cache/distributed-cache-api.js +1 -1
  84. package/esm2015/lib/distributed-cache/distributed-cache.module.js +1 -1
  85. package/esm2015/lib/distributed-cache/models/constants.js +1 -1
  86. package/esm2015/lib/distributed-cache/models/policy-person.js +1 -1
  87. package/esm2015/lib/distributed-cache/services/server-cache.service.js +1 -1
  88. package/esm2015/lib/error/components/error-common/error-common.component.js +1 -1
  89. package/esm2015/lib/error/error-api.js +1 -1
  90. package/esm2015/lib/error/error.module.js +1 -1
  91. package/esm2015/lib/error/models/error-common-config.js +1 -1
  92. package/esm2015/lib/faq/components/faq/faq.component.js +1 -1
  93. package/esm2015/lib/faq/faq-api.js +1 -1
  94. package/esm2015/lib/faq/faq.module.js +1 -1
  95. package/esm2015/lib/faq/models/faq-config.js +1 -1
  96. package/esm2015/lib/faq/models/faq.js +1 -1
  97. package/esm2015/lib/footer/components/footer/footer.component.js +1 -1
  98. package/esm2015/lib/footer/components/site-map/site-map.component.js +1 -1
  99. package/esm2015/lib/footer/footer-api.js +1 -1
  100. package/esm2015/lib/footer/footer.module.js +1 -1
  101. package/esm2015/lib/footer/models/enum/site-map-direction.js +1 -1
  102. package/esm2015/lib/footer/models/footer-config.js +1 -1
  103. package/esm2015/lib/footer/models/site-map-models.js +1 -1
  104. package/esm2015/lib/forms/components/sof-address/sof-address.component.js +1 -1
  105. package/esm2015/lib/forms/directives/alphanumeric/alphanumeric.directive.js +1 -1
  106. package/esm2015/lib/forms/directives/letters-only/letters-only.directive.js +1 -1
  107. package/esm2015/lib/forms/directives/numbers-only/numbers-only.directive.js +1 -1
  108. package/esm2015/lib/forms/forms-api.js +1 -1
  109. package/esm2015/lib/forms/forms.module.js +1 -1
  110. package/esm2015/lib/forms/models/address.js +1 -1
  111. package/esm2015/lib/forms/models/constants.js +1 -1
  112. package/esm2015/lib/forms/models/county.js +1 -1
  113. package/esm2015/lib/forms/models/enums/states.js +1 -1
  114. package/esm2015/lib/forms/pipes/phone-format.pipe.js +1 -1
  115. package/esm2015/lib/forms/services/alert.service.js +1 -1
  116. package/esm2015/lib/header/components/header/header.component.js +1 -1
  117. package/esm2015/lib/header/components/mobile-header-menu/mobile-header-menu.component.js +1 -1
  118. package/esm2015/lib/header/header-api.js +1 -1
  119. package/esm2015/lib/header/header.module.js +1 -1
  120. package/esm2015/lib/header/models/header-auth.settings.js +1 -1
  121. package/esm2015/lib/header/models/header-language.settings.js +1 -1
  122. package/esm2015/lib/header/models/header-theme.settings.js +1 -1
  123. package/esm2015/lib/header/models/header.settings.js +1 -1
  124. package/esm2015/lib/header/models/mobile-header-nav.settings.js +1 -1
  125. package/esm2015/lib/navigation/components/navigation/navigation.component.js +2 -1
  126. package/esm2015/lib/navigation/models/nav-theme.settings.js +1 -1
  127. package/esm2015/lib/navigation/models/nav.settings.js +1 -1
  128. package/esm2015/lib/navigation/models/navigation.js +1 -1
  129. package/esm2015/lib/navigation/navigation-api.js +1 -1
  130. package/esm2015/lib/navigation/navigation.module.js +1 -1
  131. package/esm2015/lib/oauth/models/constants.js +1 -1
  132. package/esm2015/lib/oauth/models/generated/accountManagementAssertionModel.js +1 -1
  133. package/esm2015/lib/oauth/models/generated/accountManagementRefreshRequestModel.js +1 -1
  134. package/esm2015/lib/oauth/models/generated/accountManagementResponseModel.js +1 -1
  135. package/esm2015/lib/oauth/models/generated/coverageDetail.js +1 -1
  136. package/esm2015/lib/oauth/models/generated/finance.js +1 -1
  137. package/esm2015/lib/oauth/models/generated/iSsoResponseModel.js +1 -1
  138. package/esm2015/lib/oauth/models/generated/iSsoResponseModelAccountManagementAssertionModel.js +1 -1
  139. package/esm2015/lib/oauth/models/generated/person.js +1 -1
  140. package/esm2015/lib/oauth/models/generated/policy.js +1 -1
  141. package/esm2015/lib/oauth/models/generated/refreshResponseModel.js +1 -1
  142. package/esm2015/lib/oauth/models/hybrid-saml-oauth-config.js +1 -1
  143. package/esm2015/lib/oauth/oauth-api.js +1 -1
  144. package/esm2015/lib/oauth/oauth.module.js +1 -1
  145. package/esm2015/lib/oauth/services/hybrid-saml-oauth.service.js +1 -1
  146. package/esm2015/lib/rbac/directives/rbac-action.directive.js +1 -1
  147. package/esm2015/lib/rbac/models/access-token-claims.js +1 -1
  148. package/esm2015/lib/rbac/models/constants.js +1 -1
  149. package/esm2015/lib/rbac/models/decoded-access-token.js +1 -1
  150. package/esm2015/lib/rbac/models/rbac-config.js +1 -1
  151. package/esm2015/lib/rbac/models/role-access.js +1 -1
  152. package/esm2015/lib/rbac/rbac-api.js +1 -1
  153. package/esm2015/lib/rbac/rbac.module.js +1 -1
  154. package/esm2015/lib/rbac/services/ar-role-nav.service.js +1 -1
  155. package/esm2015/lib/rbac/services/oauth2-role.service.js +1 -1
  156. package/esm2015/lib/rbac/services/role-nav.service.js +1 -1
  157. package/esm2015/lib/rum/models/arm-error.js +1 -1
  158. package/esm2015/lib/rum/models/rum-config.js +1 -1
  159. package/esm2015/lib/rum/rum-api.js +1 -1
  160. package/esm2015/lib/rum/rum.module.js +1 -1
  161. package/esm2015/lib/rum/services/rum.service.js +1 -1
  162. package/esm2015/lib/rum/services/shared-error.service.js +1 -1
  163. package/esm2015/lib/rum/services/softheon-error-handler.service.js +1 -1
  164. package/esm2015/lib/saml/components/redirect-saml/redirect-saml.component.js +1 -1
  165. package/esm2015/lib/saml/models/i-saml-request.js +1 -1
  166. package/esm2015/lib/saml/models/i-saml-response.js +1 -1
  167. package/esm2015/lib/saml/models/redirect-saml-request.js +1 -1
  168. package/esm2015/lib/saml/models/sso-gateway-model.js +1 -1
  169. package/esm2015/lib/saml/saml-api.js +1 -1
  170. package/esm2015/lib/saml/saml.module.js +1 -1
  171. package/esm2015/lib/saml/services/entry/abstract-saml-entry.service.js +1 -1
  172. package/esm2015/lib/saml/services/entry/sso-gateway-entry.service.js +1 -1
  173. package/esm2015/lib/saml/services/send-off/abstract-saml.service.js +1 -1
  174. package/esm2015/lib/saml/services/send-off/saml.service.js +1 -1
  175. package/esm2015/lib/theming/directives/css-override.directive.js +1 -1
  176. package/esm2015/lib/theming/models/css-override.js +1 -1
  177. package/esm2015/lib/theming/services/theme.service.js +1 -1
  178. package/esm2015/lib/theming/theme-api.js +1 -1
  179. package/esm2015/lib/theming/theme.module.js +1 -1
  180. package/esm2015/public-api.js +2 -1
  181. package/esm2015/softheon-armature.js +1 -1
  182. package/fesm2015/softheon-armature.js +268 -8
  183. package/fesm2015/softheon-armature.js.map +1 -1
  184. package/lib/base-components/base-component-api.d.ts +6 -0
  185. package/lib/base-components/base-component.module.d.ts +3 -0
  186. package/lib/base-components/sof-alert/sof-alert.component.d.ts +37 -0
  187. package/lib/base-components/sof-banner/sof-banner.component.d.ts +31 -0
  188. package/lib/base-components/sof-modal/sof-modal.component.d.ts +46 -0
  189. package/lib/base-components/sof-progress-bar/sof-progress-bar.component.d.ts +31 -0
  190. package/package.json +1 -1
  191. package/public-api.d.ts +1 -0
  192. package/softheon-armature.metadata.json +1 -1
@@ -0,0 +1,1484 @@
1
+ @import "../../../../../node_modules/@angular/material/theming";
2
+ @import "./arm-theme.scss";
3
+ @import "./utility";
4
+ @import "./variables";
5
+
6
+ // Theme pallets
7
+ @include mat-core();
8
+ $main-theme: mat-light-theme($arm-primary, $arm-accent, $arm-error);
9
+ $main-theme-dark: mat-dark-theme($arm-primary, $arm-accent, $arm-error);
10
+
11
+ body {
12
+ letter-spacing: 0px;
13
+ font-family: "Poppins", sans-serif !important;
14
+ font-size: 14px;
15
+ @include angular-material-theme($main-theme);
16
+ margin: 0 !important;
17
+ }
18
+
19
+ h1.merriweather {
20
+ font-family: "Merriweather", serif;
21
+ font-style: normal;
22
+ font-weight: normal;
23
+ font-size: 34px;
24
+ line-height: 48px;
25
+ letter-spacing: normal;
26
+ margin: 0px;
27
+ padding: 0px;
28
+ @media only screen and (max-width: $screen-sm-end) {
29
+ font-size: 28px;
30
+ }
31
+ }
32
+
33
+ h1.poppins {
34
+ font-family: "Poppins", sans-serif;
35
+ font-style: normal;
36
+ font-weight: normal;
37
+ font-size: 34px;
38
+ line-height: 48px;
39
+ letter-spacing: normal;
40
+ margin: 0px;
41
+ padding: 0px;
42
+ @media only screen and (max-width: $screen-sm-end) {
43
+ font-size: 28px;
44
+ }
45
+ }
46
+
47
+ .h2,
48
+ [h2],
49
+ h2 {
50
+ font-family: "Poppins", sans-serif;
51
+ font-style: normal;
52
+ font-weight: normal;
53
+ font-size: 24px;
54
+ line-height: 33px;
55
+ letter-spacing: normal;
56
+ margin: 0px;
57
+ padding: 0px;
58
+ @media only screen and (max-width: $screen-sm-end) {
59
+ font-size: 24px;
60
+ }
61
+ }
62
+
63
+ .h3,
64
+ [h3],
65
+ h3 {
66
+ font-family: "Poppins", sans-serif;
67
+ font-style: normal;
68
+ font-weight: normal;
69
+ font-size: 20px;
70
+ line-height: 28px;
71
+ letter-spacing: normal;
72
+ margin: 0px;
73
+ padding: 0px;
74
+ @media only screen and (max-width: $screen-sm-end) {
75
+ font-size: 20px;
76
+ }
77
+ }
78
+
79
+ .h4,
80
+ [h4],
81
+ h4 {
82
+ font-family: "Poppins", sans-serif;
83
+ font-style: normal;
84
+ font-weight: normal;
85
+ font-size: 18px;
86
+ line-height: 27px;
87
+ letter-spacing: normal;
88
+ margin: 0px;
89
+ padding: 0px;
90
+ @media only screen and (max-width: $screen-sm-end) {
91
+ font-size: 18px;
92
+ }
93
+ }
94
+
95
+ .body1 {
96
+ font-family: "Poppins", sans-serif;
97
+ font-style: normal;
98
+ font-weight: normal;
99
+ font-size: 16px;
100
+ line-height: 24px;
101
+ letter-spacing: normal;
102
+ @media only screen and (max-width: $screen-sm-end) {
103
+ font-size: 16px;
104
+ }
105
+ }
106
+
107
+ .body2 {
108
+ font-family: "Poppins", sans-serif;
109
+ font-style: normal;
110
+ font-weight: normal;
111
+ font-size: 14px;
112
+ line-height: 21px;
113
+ letter-spacing: normal;
114
+ @media only screen and (max-width: $screen-sm-end) {
115
+ font-size: 16px;
116
+ }
117
+ }
118
+
119
+ mat-form-field {
120
+ &.body1 {
121
+ font-family: "Poppins", sans-serif !important;
122
+ font-style: normal !important;
123
+ font-weight: normal !important;
124
+ font-size: 16px !important;
125
+ line-height: 24px !important;
126
+ letter-spacing: normal !important;
127
+ @media only screen and (max-width: $screen-sm-end) {
128
+ font-size: 16px !important;
129
+ }
130
+ }
131
+ &.body2 {
132
+ font-family: "Poppins", sans-serif;
133
+ font-style: normal;
134
+ font-weight: normal;
135
+ font-size: 14px;
136
+ line-height: 21px;
137
+ letter-spacing: normal;
138
+ @media only screen and (max-width: $screen-sm-end) {
139
+ font-size: 16px;
140
+ }
141
+ }
142
+ }
143
+
144
+ .ls-half {
145
+ letter-spacing: 0.5px !important;
146
+ }
147
+
148
+ .ls-quarter {
149
+ letter-spacing: 0.25px !important;
150
+ }
151
+
152
+ .fw-500 {
153
+ font-weight: 500 !important;
154
+ }
155
+
156
+ .fw-600 {
157
+ font-weight: 600 !important;
158
+ }
159
+
160
+ .color-primary {
161
+ color: mat-color($arm-primary, 500);
162
+ }
163
+
164
+ .input-icon {
165
+ font-size: 1.5em !important;
166
+ }
167
+
168
+ .full-width {
169
+ width: 100% !important;
170
+ }
171
+
172
+ .delete-icon {
173
+ cursor: pointer;
174
+ font-size: 1.5em;
175
+ color: mat-color($arm-warn, 500);
176
+ }
177
+
178
+ .tooltip {
179
+ cursor: pointer;
180
+ }
181
+
182
+ .relative {
183
+ position: relative;
184
+ }
185
+
186
+ .left-align {
187
+ text-align: left;
188
+ }
189
+
190
+ .center-align {
191
+ text-align: center;
192
+ }
193
+
194
+ mat-button-toggle-group {
195
+ &.mat-button-toggle-group {
196
+ ::ng-deep &.sof-toggle-group {
197
+ width: 230px !important;
198
+ border: 1px solid mat-color($arm-primary, 500) !important;
199
+ border-radius: 6px !important;
200
+ mat-button-toggle {
201
+ flex: 1 1 100% !important;
202
+ box-sizing: border-box !important;
203
+ align-items: center !important;
204
+ flex-direction: row !important;
205
+ display: flex !important;
206
+ &.mat-button-toggle-checked {
207
+ background-color: mat-color($arm-primary, 100) !important;
208
+ color: mat-contrast($arm-primary, 500) !important;
209
+ }
210
+ button.mat-button-toggle-button {
211
+ .mat-button-toggle-label-content {
212
+ text-transform: uppercase !important;
213
+ font-weight: bold !important;
214
+ color: #000000de !important;
215
+ }
216
+ }
217
+ }
218
+ }
219
+ }
220
+ }
221
+
222
+ /** Material Overrides */
223
+
224
+ button.mat-flat-button {
225
+ &.sof-flat-button {
226
+ padding: 0px 24px !important;
227
+ height: 48px !important;
228
+ border-radius: 6px !important;
229
+ font-family: Poppins !important;
230
+ font-style: normal !important;
231
+ font-weight: 600 !important;
232
+ font-size: 16px !important;
233
+ line-height: 24px !important;
234
+ letter-spacing: 0.05em !important;
235
+ text-transform: uppercase !important;
236
+
237
+ &.fixed-width {
238
+ width: 200px !important; // Use this is to match specific sizing
239
+ }
240
+
241
+ &.full-width {
242
+ width: 100% !important; // Use this is button width will take size of flex percentage
243
+ }
244
+
245
+ &:enabled {
246
+ color: #ffffff !important;
247
+ &.mat-primary {
248
+ background: mat-color($arm-primary, 500);
249
+ &:hover {
250
+ background-color: mat-color($arm-primary, 700);
251
+ }
252
+ &:focus {
253
+ background-color: mat-color($arm-primary, 900);
254
+ }
255
+ }
256
+ &.mat-accent {
257
+ background: mat-color($arm-accent, 500);
258
+ &:hover {
259
+ background-color: mat-color($arm-accent, 700);
260
+ }
261
+ &:focus {
262
+ background-color: mat-color($arm-accent, 900);
263
+ }
264
+ }
265
+ &.mat-warn {
266
+ background: mat-color($arm-warn, 500);
267
+ &:hover {
268
+ background-color: mat-color($arm-warn, 700);
269
+ }
270
+ &:focus {
271
+ background-color: mat-color($arm-warn, 900);
272
+ }
273
+ }
274
+ i {
275
+ color: #ffffff !important;
276
+ }
277
+ }
278
+
279
+ &:disabled {
280
+ background: #f7f7f7 !important;
281
+ color: rgba(0, 0, 0, 0.6) !important;
282
+ opacity: 1 !important;
283
+ }
284
+ }
285
+ &.sof-flat-button-large {
286
+ padding: 0px 24px !important;
287
+ height: 56px !important;
288
+ border-radius: 6px !important;
289
+ font-family: Poppins !important;
290
+ font-style: normal !important;
291
+ font-weight: 600 !important;
292
+ font-size: 16px !important;
293
+ line-height: 24px !important;
294
+ letter-spacing: 0.05em !important;
295
+ text-transform: uppercase !important;
296
+
297
+ &:enabled {
298
+ color: #ffffff !important;
299
+ &.mat-primary {
300
+ background: mat-color($arm-primary, 500);
301
+ &:hover {
302
+ background-color: mat-color($arm-primary, 700);
303
+ }
304
+ &:focus {
305
+ background-color: mat-color($arm-primary, 900);
306
+ }
307
+ }
308
+ &.mat-accent {
309
+ background: mat-color($arm-accent, 500);
310
+ &:hover {
311
+ background-color: mat-color($arm-accent, 700);
312
+ }
313
+ &:focus {
314
+ background-color: mat-color($arm-accent, 900);
315
+ }
316
+ }
317
+ &.mat-warn {
318
+ background: mat-color($arm-warn, 500);
319
+ &:hover {
320
+ background-color: mat-color($arm-warn, 700);
321
+ }
322
+ &:focus {
323
+ background-color: mat-color($arm-warn, 900);
324
+ }
325
+ }
326
+ i {
327
+ color: #ffffff !important;
328
+ }
329
+ }
330
+
331
+ &:disabled {
332
+ background: #f7f7f7 !important;
333
+ color: rgba(0, 0, 0, 0.6) !important;
334
+ opacity: 1 !important;
335
+ }
336
+ }
337
+ &.sof-flat-button-medium {
338
+ padding: 0px 24px !important;
339
+ height: 48px !important;
340
+ border-radius: 6px !important;
341
+ font-family: Poppins !important;
342
+ font-style: normal !important;
343
+ font-weight: 600 !important;
344
+ font-size: 16px !important;
345
+ line-height: 24px !important;
346
+ letter-spacing: 0.05em !important;
347
+ text-transform: uppercase !important;
348
+
349
+ &:enabled {
350
+ color: #ffffff !important;
351
+ &.mat-primary {
352
+ background: mat-color($arm-primary, 500);
353
+ &:hover {
354
+ background-color: mat-color($arm-primary, 700);
355
+ }
356
+ &:focus {
357
+ background-color: mat-color($arm-primary, 900);
358
+ }
359
+ }
360
+ &.mat-accent {
361
+ background: mat-color($arm-accent, 500);
362
+ &:hover {
363
+ background-color: mat-color($arm-accent, 700);
364
+ }
365
+ &:focus {
366
+ background-color: mat-color($arm-accent, 900);
367
+ }
368
+ }
369
+ &.mat-warn {
370
+ background: mat-color($arm-warn, 500);
371
+ &:hover {
372
+ background-color: mat-color($arm-warn, 700);
373
+ }
374
+ &:focus {
375
+ background-color: mat-color($arm-warn, 900);
376
+ }
377
+ }
378
+ i {
379
+ color: #ffffff !important;
380
+ }
381
+ }
382
+
383
+ &:disabled {
384
+ background: #f7f7f7 !important;
385
+ color: rgba(0, 0, 0, 0.6) !important;
386
+ opacity: 1 !important;
387
+ }
388
+ }
389
+ &.sof-flat-button-small {
390
+ padding: 0px 24px !important;
391
+ height: 36px !important;
392
+ border-radius: 6px !important;
393
+ font-family: Poppins !important;
394
+ font-style: normal !important;
395
+ font-weight: 600 !important;
396
+ font-size: 16px !important;
397
+ line-height: 24px !important;
398
+ letter-spacing: 0.05em !important;
399
+ text-transform: uppercase !important;
400
+
401
+ &:enabled {
402
+ color: #ffffff !important;
403
+ &.mat-primary {
404
+ background: mat-color($arm-primary, 500);
405
+ &:hover {
406
+ background-color: mat-color($arm-primary, 700);
407
+ }
408
+ &:focus {
409
+ background-color: mat-color($arm-primary, 900);
410
+ }
411
+ }
412
+ &.mat-accent {
413
+ background: mat-color($arm-accent, 500);
414
+ &:hover {
415
+ background-color: mat-color($arm-accent, 700);
416
+ }
417
+ &:focus {
418
+ background-color: mat-color($arm-accent, 900);
419
+ }
420
+ }
421
+ &.mat-warn {
422
+ background: mat-color($arm-warn, 500);
423
+ &:hover {
424
+ background-color: mat-color($arm-warn, 700);
425
+ }
426
+ &:focus {
427
+ background-color: mat-color($arm-warn, 900);
428
+ }
429
+ }
430
+ i {
431
+ color: #ffffff !important;
432
+ }
433
+ }
434
+
435
+ &:disabled {
436
+ background: #f7f7f7 !important;
437
+ color: rgba(0, 0, 0, 0.6) !important;
438
+ opacity: 1 !important;
439
+ }
440
+ }
441
+ }
442
+
443
+ button.mat-stroked-button {
444
+ &.sof-stroked-button {
445
+ padding: 0px 24px !important;
446
+ height: 48px !important;
447
+ border: none !important;
448
+ border-radius: 6px !important;
449
+ font-family: Poppins !important;
450
+ font-style: normal !important;
451
+ font-weight: 600 !important;
452
+ font-size: 16px !important;
453
+ line-height: 24px !important;
454
+ letter-spacing: 0.05em !important;
455
+ text-transform: uppercase !important;
456
+
457
+ &.fixed-width {
458
+ width: 200px !important; // Use this is to match specific sizing
459
+ }
460
+
461
+ &.full-width {
462
+ width: 100% !important; // Use this is button width will take size of flex percentage
463
+ }
464
+
465
+ &:enabled {
466
+ &.mat-primary {
467
+ background-color: mat-color($arm-primary, 50) !important;
468
+ color: mat-color($arm-primary, 500) !important;
469
+ i {
470
+ color: mat-color($arm-primary, 500) !important;
471
+ }
472
+ &:hover {
473
+ background-color: mat-color($arm-primary, 100) !important;
474
+ color: white !important;
475
+ i {
476
+ color: white !important;
477
+ }
478
+ }
479
+ &:focus {
480
+ background-color: mat-color($arm-primary, 200) !important;
481
+ color: white !important;
482
+ i {
483
+ color: white !important;
484
+ }
485
+ }
486
+ }
487
+ &.mat-accent {
488
+ background-color: mat-color($arm-accent, 50) !important;
489
+ color: mat-color($arm-accent, 500) !important;
490
+ i {
491
+ color: mat-color($arm-accent, 500) !important;
492
+ }
493
+ &:hover {
494
+ background-color: mat-color($arm-accent, 100) !important;
495
+ color: white !important;
496
+ i {
497
+ color: white !important;
498
+ }
499
+ }
500
+ &:focus {
501
+ background-color: mat-color($arm-accent, 200) !important;
502
+ color: white !important;
503
+ i {
504
+ color: white !important;
505
+ }
506
+ }
507
+ }
508
+ &.mat-warn {
509
+ background-color: mat-color($arm-warn, 50) !important;
510
+ color: mat-color($arm-warn, 500) !important;
511
+ i {
512
+ color: mat-color($arm-warn, 500) !important;
513
+ }
514
+ &:hover {
515
+ background-color: mat-color($arm-warn, 100) !important;
516
+ color: white !important;
517
+ i {
518
+ color: white !important;
519
+ }
520
+ }
521
+ &:focus {
522
+ background-color: mat-color($arm-warn, 200) !important;
523
+ color: white !important;
524
+ i {
525
+ color: white !important;
526
+ }
527
+ }
528
+ }
529
+ }
530
+
531
+ &:disabled {
532
+ background: #f7f7f7 !important;
533
+ color: rgba(0, 0, 0, 0.6) !important;
534
+ opacity: 1 !important;
535
+ }
536
+ }
537
+ &.sof-stroked-button-large {
538
+ padding: 0px 24px !important;
539
+ height: 56px !important;
540
+ border: none !important;
541
+ border-radius: 6px !important;
542
+ font-family: Poppins !important;
543
+ font-style: normal !important;
544
+ font-weight: 600 !important;
545
+ font-size: 16px !important;
546
+ line-height: 24px !important;
547
+ letter-spacing: 0.05em !important;
548
+ text-transform: uppercase !important;
549
+
550
+ &:enabled {
551
+ &.mat-primary {
552
+ background-color: mat-color($arm-primary, 50) !important;
553
+ color: mat-color($arm-primary, 500) !important;
554
+ i {
555
+ color: mat-color($arm-primary, 500) !important;
556
+ }
557
+ &:hover {
558
+ background-color: mat-color($arm-primary, 100) !important;
559
+ color: white !important;
560
+ i {
561
+ color: white !important;
562
+ }
563
+ }
564
+ &:focus {
565
+ background-color: mat-color($arm-primary, 200) !important;
566
+ color: white !important;
567
+ i {
568
+ color: white !important;
569
+ }
570
+ }
571
+ }
572
+ &.mat-accent {
573
+ background-color: mat-color($arm-accent, 50) !important;
574
+ color: mat-color($arm-accent, 500) !important;
575
+ i {
576
+ color: mat-color($arm-accent, 500) !important;
577
+ }
578
+ &:hover {
579
+ background-color: mat-color($arm-accent, 100) !important;
580
+ color: white !important;
581
+ i {
582
+ color: white !important;
583
+ }
584
+ }
585
+ &:focus {
586
+ background-color: mat-color($arm-accent, 200) !important;
587
+ color: white !important;
588
+ i {
589
+ color: white !important;
590
+ }
591
+ }
592
+ }
593
+ &.mat-warn {
594
+ background-color: mat-color($arm-warn, 50) !important;
595
+ color: mat-color($arm-warn, 500) !important;
596
+ i {
597
+ color: mat-color($arm-warn, 500) !important;
598
+ }
599
+ &:hover {
600
+ background-color: mat-color($arm-warn, 100) !important;
601
+ color: white !important;
602
+ i {
603
+ color: white !important;
604
+ }
605
+ }
606
+ &:focus {
607
+ background-color: mat-color($arm-warn, 200) !important;
608
+ color: white !important;
609
+ i {
610
+ color: white !important;
611
+ }
612
+ }
613
+ }
614
+ }
615
+
616
+ &:disabled {
617
+ background: #f7f7f7 !important;
618
+ color: rgba(0, 0, 0, 0.6) !important;
619
+ opacity: 1 !important;
620
+ }
621
+ }
622
+ &.sof-stroked-button-medium {
623
+ padding: 0px 24px !important;
624
+ height: 48px !important;
625
+ border: none !important;
626
+ border-radius: 6px !important;
627
+ font-family: Poppins !important;
628
+ font-style: normal !important;
629
+ font-weight: 600 !important;
630
+ font-size: 16px !important;
631
+ line-height: 24px !important;
632
+ letter-spacing: 0.05em !important;
633
+ text-transform: uppercase !important;
634
+
635
+ &:enabled {
636
+ &.mat-primary {
637
+ background-color: mat-color($arm-primary, 50) !important;
638
+ color: mat-color($arm-primary, 500) !important;
639
+ i {
640
+ color: mat-color($arm-primary, 500) !important;
641
+ }
642
+ &:hover {
643
+ background-color: mat-color($arm-primary, 100) !important;
644
+ color: white !important;
645
+ i {
646
+ color: white !important;
647
+ }
648
+ }
649
+ &:focus {
650
+ background-color: mat-color($arm-primary, 200) !important;
651
+ color: white !important;
652
+ i {
653
+ color: white !important;
654
+ }
655
+ }
656
+ }
657
+ &.mat-accent {
658
+ background-color: mat-color($arm-accent, 50) !important;
659
+ color: mat-color($arm-accent, 500) !important;
660
+ i {
661
+ color: mat-color($arm-accent, 500) !important;
662
+ }
663
+ &:hover {
664
+ background-color: mat-color($arm-accent, 100) !important;
665
+ color: white !important;
666
+ i {
667
+ color: white !important;
668
+ }
669
+ }
670
+ &:focus {
671
+ background-color: mat-color($arm-accent, 200) !important;
672
+ color: white !important;
673
+ i {
674
+ color: white !important;
675
+ }
676
+ }
677
+ }
678
+ &.mat-warn {
679
+ background-color: mat-color($arm-warn, 50) !important;
680
+ color: mat-color($arm-warn, 500) !important;
681
+ i {
682
+ color: mat-color($arm-warn, 500) !important;
683
+ }
684
+ &:hover {
685
+ background-color: mat-color($arm-warn, 100) !important;
686
+ color: white !important;
687
+ i {
688
+ color: white !important;
689
+ }
690
+ }
691
+ &:focus {
692
+ background-color: mat-color($arm-warn, 200) !important;
693
+ color: white !important;
694
+ i {
695
+ color: white !important;
696
+ }
697
+ }
698
+ }
699
+ }
700
+
701
+ &:disabled {
702
+ background: #f7f7f7 !important;
703
+ color: rgba(0, 0, 0, 0.6) !important;
704
+ opacity: 1 !important;
705
+ }
706
+ }
707
+ &.sof-stroked-button-small {
708
+ padding: 0px 24px !important;
709
+ height: 36px !important;
710
+ border: none !important;
711
+ border-radius: 6px !important;
712
+ font-family: Poppins !important;
713
+ font-style: normal !important;
714
+ font-weight: 600 !important;
715
+ font-size: 16px !important;
716
+ line-height: 24px !important;
717
+ letter-spacing: 0.05em !important;
718
+ text-transform: uppercase !important;
719
+
720
+ &:enabled {
721
+ &.mat-primary {
722
+ background-color: mat-color($arm-primary, 50) !important;
723
+ color: mat-color($arm-primary, 500) !important;
724
+ i {
725
+ color: mat-color($arm-primary, 500) !important;
726
+ }
727
+ &:hover {
728
+ background-color: mat-color($arm-primary, 100) !important;
729
+ color: white !important;
730
+ i {
731
+ color: white !important;
732
+ }
733
+ }
734
+ &:focus {
735
+ background-color: mat-color($arm-primary, 200) !important;
736
+ color: white !important;
737
+ i {
738
+ color: white !important;
739
+ }
740
+ }
741
+ }
742
+ &.mat-accent {
743
+ background-color: mat-color($arm-accent, 50) !important;
744
+ color: mat-color($arm-accent, 500) !important;
745
+ i {
746
+ color: mat-color($arm-accent, 500) !important;
747
+ }
748
+ &:hover {
749
+ background-color: mat-color($arm-accent, 100) !important;
750
+ color: white !important;
751
+ i {
752
+ color: white !important;
753
+ }
754
+ }
755
+ &:focus {
756
+ background-color: mat-color($arm-accent, 200) !important;
757
+ color: white !important;
758
+ i {
759
+ color: white !important;
760
+ }
761
+ }
762
+ }
763
+ &.mat-warn {
764
+ background-color: mat-color($arm-warn, 50) !important;
765
+ color: mat-color($arm-warn, 500) !important;
766
+ i {
767
+ color: mat-color($arm-warn, 500) !important;
768
+ }
769
+ &:hover {
770
+ background-color: mat-color($arm-warn, 100) !important;
771
+ color: white !important;
772
+ i {
773
+ color: white !important;
774
+ }
775
+ }
776
+ &:focus {
777
+ background-color: mat-color($arm-warn, 200) !important;
778
+ color: white !important;
779
+ i {
780
+ color: white !important;
781
+ }
782
+ }
783
+ }
784
+ }
785
+
786
+ &:disabled {
787
+ background: #f7f7f7 !important;
788
+ color: rgba(0, 0, 0, 0.6) !important;
789
+ opacity: 1 !important;
790
+ }
791
+ }
792
+ &.sof-stroked-button-large-outline {
793
+ padding: 0px 24px !important;
794
+ height: 56px !important;
795
+ background: #ffffff !important;
796
+ border-radius: 6px !important;
797
+ font-family: Poppins !important;
798
+ font-style: normal !important;
799
+ font-weight: 600 !important;
800
+ font-size: 16px !important;
801
+ line-height: 24px !important;
802
+ letter-spacing: 0.05em !important;
803
+ text-transform: uppercase !important;
804
+
805
+ &:enabled {
806
+ &.mat-primary {
807
+ border: 2px solid mat-color($arm-primary, 500) !important;
808
+ color: mat-color($arm-primary, 500) !important;
809
+ i {
810
+ color: mat-color($arm-primary, 500) !important;
811
+ }
812
+ &:hover {
813
+ background-color: mat-color($arm-primary, 100) !important;
814
+ }
815
+ &:focus {
816
+ background-color: mat-color($arm-primary, 200) !important;
817
+ }
818
+ }
819
+ &.mat-accent {
820
+ border: 2px solid mat-color($arm-accent, 500) !important;
821
+ color: mat-color($arm-accent, 500) !important;
822
+ i {
823
+ color: mat-color($arm-accent, 500) !important;
824
+ }
825
+ &:hover {
826
+ background-color: mat-color($arm-accent, 100) !important;
827
+ }
828
+ &:focus {
829
+ background-color: mat-color($arm-accent, 200) !important;
830
+ }
831
+ }
832
+ &.mat-warn {
833
+ border: 2px solid mat-color($arm-warn, 500) !important;
834
+ color: mat-color($arm-warn, 500) !important;
835
+ i {
836
+ color: mat-color($arm-warn, 500) !important;
837
+ }
838
+ &:hover {
839
+ background-color: mat-color($arm-warn, 100) !important;
840
+ }
841
+ &:focus {
842
+ background-color: mat-color($arm-warn, 200) !important;
843
+ }
844
+ }
845
+ }
846
+
847
+ &:disabled {
848
+ background: #f7f7f7 !important;
849
+ color: rgba(0, 0, 0, 0.6) !important;
850
+ opacity: 1 !important;
851
+ }
852
+ }
853
+ &.sof-stroked-button-medium-outline {
854
+ padding: 0px 24px !important;
855
+ height: 48px !important;
856
+ background: #ffffff !important;
857
+ border-radius: 6px !important;
858
+ font-family: Poppins !important;
859
+ font-style: normal !important;
860
+ font-weight: 600 !important;
861
+ font-size: 16px !important;
862
+ line-height: 24px !important;
863
+ letter-spacing: 0.05em !important;
864
+ text-transform: uppercase !important;
865
+
866
+ &:enabled {
867
+ &.mat-primary {
868
+ border: 2px solid mat-color($arm-primary, 500) !important;
869
+ color: mat-color($arm-primary, 500) !important;
870
+ i {
871
+ color: mat-color($arm-primary, 500) !important;
872
+ }
873
+ &:hover {
874
+ background-color: mat-color($arm-primary, 100) !important;
875
+ }
876
+ &:focus {
877
+ background-color: mat-color($arm-primary, 200) !important;
878
+ }
879
+ }
880
+ &.mat-accent {
881
+ border: 2px solid mat-color($arm-accent, 500) !important;
882
+ color: mat-color($arm-accent, 500) !important;
883
+ i {
884
+ color: mat-color($arm-accent, 500) !important;
885
+ }
886
+ &:hover {
887
+ background-color: mat-color($arm-accent, 100) !important;
888
+ }
889
+ &:focus {
890
+ background-color: mat-color($arm-accent, 200) !important;
891
+ }
892
+ }
893
+ &.mat-warn {
894
+ border: 2px solid mat-color($arm-warn, 500) !important;
895
+ color: mat-color($arm-warn, 500) !important;
896
+ i {
897
+ color: mat-color($arm-warn, 500) !important;
898
+ }
899
+ &:hover {
900
+ background-color: mat-color($arm-warn, 100) !important;
901
+ }
902
+ &:focus {
903
+ background-color: mat-color($arm-warn, 200) !important;
904
+ }
905
+ }
906
+ }
907
+
908
+ &:disabled {
909
+ background: #f7f7f7 !important;
910
+ color: rgba(0, 0, 0, 0.6) !important;
911
+ opacity: 1 !important;
912
+ }
913
+ }
914
+ &.sof-stroked-button-small-outline {
915
+ padding: 0px 24px !important;
916
+ height: 36px !important;
917
+ background: #ffffff !important;
918
+ border-radius: 6px !important;
919
+ font-family: Poppins !important;
920
+ font-style: normal !important;
921
+ font-weight: 600 !important;
922
+ font-size: 16px !important;
923
+ line-height: 24px !important;
924
+ letter-spacing: 0.05em !important;
925
+ text-transform: uppercase !important;
926
+
927
+ &:enabled {
928
+ &.mat-primary {
929
+ border: 2px solid mat-color($arm-primary, 500) !important;
930
+ color: mat-color($arm-primary, 500) !important;
931
+ i {
932
+ color: mat-color($arm-primary, 500) !important;
933
+ }
934
+ &:hover {
935
+ background-color: mat-color($arm-primary, 100) !important;
936
+ }
937
+ &:focus {
938
+ background-color: mat-color($arm-primary, 200) !important;
939
+ }
940
+ }
941
+ &.mat-accent {
942
+ border: 2px solid mat-color($arm-accent, 500) !important;
943
+ color: mat-color($arm-accent, 500) !important;
944
+ i {
945
+ color: mat-color($arm-accent, 500) !important;
946
+ }
947
+ &:hover {
948
+ background-color: mat-color($arm-accent, 100) !important;
949
+ }
950
+ &:focus {
951
+ background-color: mat-color($arm-accent, 200) !important;
952
+ }
953
+ }
954
+ &.mat-warn {
955
+ border: 2px solid mat-color($arm-warn, 500) !important;
956
+ color: mat-color($arm-warn, 500) !important;
957
+ i {
958
+ color: mat-color($arm-warn, 500) !important;
959
+ }
960
+ &:hover {
961
+ background-color: mat-color($arm-warn, 100) !important;
962
+ }
963
+ &:focus {
964
+ background-color: mat-color($arm-warn, 200) !important;
965
+ }
966
+ }
967
+ }
968
+
969
+ &:disabled {
970
+ background: #f7f7f7 !important;
971
+ color: rgba(0, 0, 0, 0.6) !important;
972
+ opacity: 1 !important;
973
+ }
974
+ }
975
+ &.action-btn {
976
+ font-family: Poppins !important;
977
+ font-style: normal !important;
978
+ font-weight: 600 !important;
979
+ font-size: 16px !important;
980
+ line-height: 24px !important;
981
+ padding: 0px 24px !important;
982
+ height: 36px !important;
983
+ letter-spacing: 0.05em !important;
984
+ text-transform: uppercase !important;
985
+ background: white !important;
986
+ border: 2px solid black !important;
987
+ box-sizing: border-box !important;
988
+ border-radius: 6px !important;
989
+ color: black !important;
990
+ white-space: normal !important;
991
+ i {
992
+ color: black !important;
993
+ }
994
+ &.mat-primary {
995
+ color: mat-color($arm-primary, 500) !important;
996
+ border: 2px solid mat-color($arm-primary, 500) !important;
997
+ i {
998
+ color: mat-color($arm-primary, 500) !important;
999
+ }
1000
+ }
1001
+ &.mat-accent {
1002
+ color: mat-color($arm-accent, 500) !important;
1003
+ border: 2px solid mat-color($arm-accent, 500) !important;
1004
+ i {
1005
+ color: mat-color($arm-accent, 500) !important;
1006
+ }
1007
+ }
1008
+ &.mat-warn {
1009
+ color: mat-color($arm-warn, 500) !important;
1010
+ border: 2px solid mat-color($arm-warn, 500) !important;
1011
+ i {
1012
+ color: mat-color($arm-warn, 500) !important;
1013
+ }
1014
+ }
1015
+ }
1016
+ }
1017
+
1018
+ mat-card {
1019
+ &.mat-card.item-list {
1020
+ box-shadow: 0px 1px 7px rgb(166 159 159 / 25%) !important;
1021
+ border-radius: 10px !important;
1022
+ overflow: overlay !important;
1023
+ max-height: 322px !important;
1024
+ padding: 0px !important;
1025
+ }
1026
+ }
1027
+
1028
+ .mat-dialog-title {
1029
+ font-family: Poppins !important;
1030
+ font-style: normal !important;
1031
+ font-weight: 500 !important;
1032
+ font-size: 24px !important;
1033
+ line-height: 36px !important;
1034
+ letter-spacing: normal !important;
1035
+ }
1036
+
1037
+ .mat-dialog-content {
1038
+ display: block !important;
1039
+ margin: 0 -24px !important;
1040
+ padding: 0 0px !important ;
1041
+ max-height: 65vh !important;
1042
+ overflow: auto !important;
1043
+ }
1044
+
1045
+ .mat-dialog-container {
1046
+ display: block !important;
1047
+ background: #ffffff !important;
1048
+ border: 1px solid #dfdfdf !important;
1049
+ box-sizing: border-box !important;
1050
+ border-radius: 10px !important;
1051
+ overflow: auto !important;
1052
+ outline: 0 !important;
1053
+ width: 100% !important;
1054
+ height: 100% !important;
1055
+ min-height: inherit !important;
1056
+ max-height: inherit !important;
1057
+ }
1058
+
1059
+ .mat-list-base {
1060
+ padding-top: 0px !important;
1061
+ }
1062
+
1063
+ ::ng-deep .mat-tooltip {
1064
+ cursor: pointer !important;
1065
+ width: 234px !important;
1066
+ height: auto !important;
1067
+ font-family: "Poppins", sans-serif !important;
1068
+ font-size: 12px !important;
1069
+ font-style: normal !important;
1070
+ font-weight: 400 !important;
1071
+ line-height: 18px !important;
1072
+ letter-spacing: 0.4px !important;
1073
+ text-align: left !important;
1074
+ display: flex !important;
1075
+ align-items: center !important;
1076
+ color: #ffffff !important;
1077
+ background-color: #333333 !important;
1078
+ }
1079
+
1080
+ .mat-chip {
1081
+ font-style: normal !important;
1082
+ font-weight: 500 !important;
1083
+ font-size: 12px !important;
1084
+ line-height: 16px !important;
1085
+ height: max-content !important;
1086
+ word-break: break-all !important;
1087
+ }
1088
+
1089
+ // We want to avoid using ng-deep, but until we organize our css cascading and get a set override file,
1090
+ // it may need to be used or at the very least used with the combination of a custom class (to prevent it from bleeding into other components)
1091
+ // in this case we used ng-deep on 'sof-form-field'. Doing it on the mat-form-field level (i.e. ::ng-deep mat-form-field.sof-form-field,
1092
+ // still bleeds into other components
1093
+ mat-form-field {
1094
+ ::ng-deep &.sof-form-field {
1095
+ .mat-form-field-wrapper {
1096
+ padding: 0px !important;
1097
+ }
1098
+ .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-infix {
1099
+ padding-left: 0.5em !important;
1100
+ padding-right: 0.5em !important;
1101
+ }
1102
+ .mat-form-field-wrapper
1103
+ .mat-form-field-flex
1104
+ .mat-form-field-infix
1105
+ .mat-form-field-label-wrapper
1106
+ .mat-form-field-label {
1107
+ padding-left: 0.5em !important;
1108
+ padding-right: 0.5em !important;
1109
+ }
1110
+ .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-prefix {
1111
+ top: 0em !important;
1112
+ }
1113
+ .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-suffix {
1114
+ top: 0em !important;
1115
+ }
1116
+ }
1117
+ }
1118
+
1119
+ .toggle-button-left {
1120
+ border: 1px solid mat-color($arm-primary, 500);
1121
+ border-radius: 3px 0px 0px 3px;
1122
+ width: 120px;
1123
+ }
1124
+
1125
+ .toggle-button-right {
1126
+ border: 1px solid mat-color($arm-primary, 500);
1127
+ border-radius: 0px 3px 3px 0px;
1128
+ width: 120px;
1129
+ }
1130
+
1131
+ ::ng-deep .mat-button-toggle-checked {
1132
+ background-color: mat-color($arm-primary, 100) !important;
1133
+ }
1134
+
1135
+ .mat-drawer-container.sof-ar-nav-sidenav-container {
1136
+ @media only screen and (max-width: $mat-lt-md) {
1137
+ background: rgba(245, 245, 245, 0.5) !important;
1138
+ }
1139
+ }
1140
+
1141
+ .mobile-sr-only {
1142
+ @media only screen and (max-width: $mat-lt-sm) {
1143
+ border: 0;
1144
+ clip: rect(0, 0, 0, 0);
1145
+ height: 1px;
1146
+ margin: -1px;
1147
+ overflow: hidden;
1148
+ padding: 0;
1149
+ position: absolute;
1150
+ width: 1px;
1151
+ }
1152
+ }
1153
+
1154
+ .mobile-no-card {
1155
+ padding: 36px 30px !important;
1156
+ @media only screen and (max-width: $mat-lt-sm) {
1157
+ background: transparent !important;
1158
+ box-shadow: none !important;
1159
+ padding: 0 !important;
1160
+ }
1161
+ }
1162
+
1163
+ .sm-screen-no-card {
1164
+ padding: 36px 30px !important;
1165
+ @media only screen and (max-width: $mat-lt-md) {
1166
+ background: transparent !important;
1167
+ box-shadow: none !important;
1168
+ padding: 0 !important;
1169
+ }
1170
+ }
1171
+
1172
+ .sm-screen-no-white-bg {
1173
+ @media only screen and (max-width: $mat-lt-md) {
1174
+ background: transparent !important;
1175
+ }
1176
+ }
1177
+
1178
+ .sm-screen-card-shadow-z1 {
1179
+ @media only screen and (max-width: $mat-lt-md) {
1180
+ box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14),
1181
+ 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
1182
+ }
1183
+ }
1184
+
1185
+ .sm-screen-op-7 {
1186
+ @media only screen and (max-width: $mat-lt-md) {
1187
+ opacity: 0.7;
1188
+ }
1189
+ }
1190
+
1191
+ .sm-d-inline-flex {
1192
+ @media only screen and (max-width: $mat-lt-md) {
1193
+ display: inline-flex !important;
1194
+ }
1195
+ }
1196
+
1197
+ .mobile-no-h-margin {
1198
+ @media only screen and (max-width: $mat-lt-sm) {
1199
+ margin-left: 0 !important;
1200
+ margin-right: 0 !important;
1201
+ }
1202
+ }
1203
+
1204
+ .mobile-no-h-padding {
1205
+ @media only screen and (max-width: $mat-lt-sm) {
1206
+ padding-left: 0 !important;
1207
+ padding-right: 0 !important;
1208
+ }
1209
+ }
1210
+
1211
+ .mobile-full-width {
1212
+ @media only screen and (max-width: $mat-lt-sm) {
1213
+ width: 100%;
1214
+ }
1215
+ }
1216
+
1217
+ .sm-screen-full-width {
1218
+ @media only screen and (max-width: $mat-lt-md) {
1219
+ width: 100%;
1220
+ }
1221
+ }
1222
+
1223
+ .word-wrap-checkboxes-override .mat-checkbox-label {
1224
+ white-space: initial !important;
1225
+ @media only screen and (max-width: $mat-lt-md) {
1226
+ white-space: initial;
1227
+ }
1228
+ }
1229
+
1230
+ .sm-full-width-datepicker {
1231
+ @media only screen and (max-width: $mat-lt-md) {
1232
+ width: 100%;
1233
+ .mat-form-field-infix,
1234
+ .mat-form-field-infix > input {
1235
+ width: 100% !important;
1236
+ }
1237
+ }
1238
+ }
1239
+ .sof-tokenizer-button-btn-container {
1240
+ @media only screen and (max-width: $mat-lt-md) {
1241
+ flex-direction: column-reverse !important;
1242
+ width: 100% !important;
1243
+
1244
+ button {
1245
+ margin: initial !important;
1246
+ margin-bottom: 10px !important;
1247
+ }
1248
+ }
1249
+ }
1250
+
1251
+ .info-icon.mat-icon,
1252
+ .help-icon.mat-icon {
1253
+ @media only screen and (max-width: $mat-lt-md) {
1254
+ padding-top: 10px !important;
1255
+ }
1256
+ }
1257
+
1258
+ .sof-ar-header--left.sof-ar-mobile-navigation {
1259
+ @media only screen and (max-width: $mat-lt-sm) {
1260
+ margin-left: 35px !important;
1261
+ }
1262
+ }
1263
+
1264
+ @media screen and (max-width: $mat-lt-md) {
1265
+ .hidden-small-screen {
1266
+ display: none !important;
1267
+ }
1268
+ }
1269
+
1270
+ @media screen and (max-width: $mat-lt-lg) {
1271
+ .hidden-md-screen {
1272
+ display: none !important;
1273
+ }
1274
+ }
1275
+
1276
+ @media screen and (min-width: $mat-gt-sm) {
1277
+ .visible-small-screen {
1278
+ display: none !important;
1279
+ }
1280
+ }
1281
+
1282
+ @media screen and (min-width: $mat-gt-md) {
1283
+ .visible-md-screen {
1284
+ display: none !important;
1285
+ }
1286
+ }
1287
+
1288
+ .mat-card-mobile-header-override {
1289
+ background: $light-grey;
1290
+ padding: 16px;
1291
+ margin: 0 -16px;
1292
+ }
1293
+
1294
+ .mat-card-mobile-action-buttons-footer-override {
1295
+ border-top: 1px solid rgba(0, 0, 0, 0.05);
1296
+ padding-top: 16px;
1297
+ margin-top: 36px;
1298
+ }
1299
+
1300
+ .mat-card-mobile-action-buttons-override {
1301
+ button {
1302
+ transform: scale(0.9);
1303
+ }
1304
+ }
1305
+
1306
+ .sm-m-b-16 {
1307
+ @media only screen and (max-width: $mat-lt-md) {
1308
+ margin-bottom: 16px !important;
1309
+ }
1310
+ }
1311
+
1312
+ .sm-m-b-24 {
1313
+ @media only screen and (max-width: $mat-lt-md) {
1314
+ margin-bottom: 24px !important;
1315
+ }
1316
+ }
1317
+
1318
+ .sm-m-v-24 {
1319
+ @media only screen and (max-width: $mat-lt-md) {
1320
+ margin-top: 24px !important;
1321
+ margin-bottom: 24px !important;
1322
+ }
1323
+ }
1324
+
1325
+ .sm-m-b-32 {
1326
+ @media only screen and (max-width: $mat-lt-md) {
1327
+ margin-bottom: 32px !important;
1328
+ }
1329
+ }
1330
+
1331
+ .sm-m-b-64 {
1332
+ @media only screen and (max-width: $mat-lt-md) {
1333
+ margin-bottom: 64px !important;
1334
+ }
1335
+ }
1336
+
1337
+ .sm-screen-m-a-0 {
1338
+ @media screen and (max-width: $mat-lt-md) {
1339
+ margin: 0 !important;
1340
+ }
1341
+ }
1342
+
1343
+ .sm-screen-m-l-0 {
1344
+ @media screen and (max-width: $mat-lt-md) {
1345
+ margin-left: 0 !important;
1346
+ }
1347
+ }
1348
+
1349
+ .sm-screen-m-h-0 {
1350
+ @media screen and (max-width: $mat-lt-md) {
1351
+ margin-left: 0 !important;
1352
+ margin-right: 0 !important;
1353
+ }
1354
+ }
1355
+
1356
+ .sm-screen-p-a-0 {
1357
+ @media screen and (max-width: $mat-lt-md) {
1358
+ padding: 0 !important;
1359
+ }
1360
+ }
1361
+
1362
+ .sm-screen-p-h-0 {
1363
+ @media screen and (max-width: $mat-lt-md) {
1364
+ padding-left: 0 !important;
1365
+ padding-right: 0 !important;
1366
+ }
1367
+ }
1368
+
1369
+ .md-screen-p-a-0 {
1370
+ @media screen and (max-width: $mat-lt-lg) {
1371
+ padding: 0 !important;
1372
+ }
1373
+ }
1374
+
1375
+ .md-m-v-24 {
1376
+ @media only screen and (max-width: $mat-lt-lg) {
1377
+ margin-top: 24px !important;
1378
+ margin-bottom: 24px !important;
1379
+ }
1380
+ }
1381
+
1382
+ /** Mobile Table */
1383
+ @mixin mobile-responsive-table {
1384
+ max-height: none !important;
1385
+ overflow-y: auto !important;
1386
+
1387
+ .mat-table {
1388
+ border: 0;
1389
+ vertical-align: middle;
1390
+
1391
+ .mat-header-row {
1392
+ min-height: 0;
1393
+ height: 0;
1394
+ }
1395
+
1396
+ .mat-header-cell {
1397
+ border: 10px solid;
1398
+ clip: rect(0 0 0 0);
1399
+ height: 1px;
1400
+ min-height: 1px;
1401
+ margin: -1px;
1402
+ padding: 0;
1403
+ position: absolute;
1404
+ width: 1px;
1405
+ }
1406
+
1407
+ .mat-row {
1408
+ padding: 10px 20px 0 20px;
1409
+ border-bottom: 5px solid #ddd;
1410
+ display: block;
1411
+ min-height: 1px;
1412
+ height: auto;
1413
+ }
1414
+
1415
+ td.mat-cell:first-of-type {
1416
+ height: 48px;
1417
+ }
1418
+
1419
+ .mat-cell {
1420
+ display: block;
1421
+ font-size: initial;
1422
+ height: auto;
1423
+ padding: 8px 0;
1424
+ border-bottom-color: transparent;
1425
+ text-align: initial;
1426
+
1427
+ &.action-buttons {
1428
+ border-top: 1px solid $light-grey;
1429
+ margin-top: 24px;
1430
+ display: flex;
1431
+ flex-wrap: wrap;
1432
+ justify-content: flex-start;
1433
+ padding-bottom: 0;
1434
+ margin-bottom: -8px;
1435
+
1436
+ &:before {
1437
+ content: none;
1438
+ }
1439
+ }
1440
+
1441
+ &:before {
1442
+ content: attr(data-label) ": ";
1443
+ float: left;
1444
+ font-weight: 600;
1445
+ padding-right: 5px;
1446
+ }
1447
+
1448
+ &:last-child {
1449
+ border-bottom: 0;
1450
+ }
1451
+
1452
+ &:first-child {
1453
+ margin-top: 4%;
1454
+ }
1455
+
1456
+ &:first-of-type {
1457
+ padding-left: 0;
1458
+ margin: -10px -20px 8px -20px;
1459
+ padding: 16px 20px 16px 20px;
1460
+ background: $light-grey;
1461
+ box-sizing: border-box;
1462
+ height: auto;
1463
+ }
1464
+ }
1465
+
1466
+ td.mat-cell.action-buttons {
1467
+ margin-bottom: 8px;
1468
+ }
1469
+ }
1470
+
1471
+ @content;
1472
+ }
1473
+
1474
+ @media screen and (max-width: $mat-lt-md) {
1475
+ .mat-responsive-table-override-sm {
1476
+ @include mobile-responsive-table;
1477
+ }
1478
+ }
1479
+
1480
+ @media screen and (max-width: $mat-lt-lg) {
1481
+ .mat-responsive-table-override-md {
1482
+ @include mobile-responsive-table;
1483
+ }
1484
+ }