@carefirst/library 1.2.10 → 1.2.11

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carefirst/library",
3
- "version": "1.2.10",
3
+ "version": "1.2.11",
4
4
  "author": "Jacques Francois Coetzee",
5
5
  "private": false,
6
6
  "peerDependencies": {
@@ -15,5 +15,4 @@ $desktop-breakpoint: 768px; //--- Same as ionic md breakpoint
15
15
  @import './app.scss';
16
16
  @import './colors.scss';
17
17
  @import './font.scss';
18
- @import './forms.scss';
19
18
  @import './scrollbar.scss';
@@ -1,61 +0,0 @@
1
- /*===============================================
2
- ================== Form Items ===================
3
- ===============================================*/
4
- ion-input,
5
- ion-textarea,
6
- ion-select,
7
- ion-radio {
8
- font-family: 'Roboto', sans-serif;
9
- font-weight: 400;
10
- font-style: normal;
11
- font-size: 1.6rem;
12
- color: var(--cf-app-color-primary);
13
- text-align: start;
14
- --border-radius: 8px !important; //--- important overrides the fill option
15
- --highlight-color-focused: var(--cf-app-color-primary);
16
- --highlight-color-invalid: var(--cf-app-system-color-error);
17
- --highlight-color-valid: var(--cf-app-color-primary);
18
-
19
- label {
20
- font-family: 'Roboto', sans-serif;
21
- font-weight: 400;
22
- font-style: normal;
23
- font-size: 1.6rem;
24
- color: var(--cf-app-color-primary);
25
- text-align: start;
26
- }
27
- }
28
-
29
- ion-input.text-center,
30
- ion-textarea.text-center,
31
- ion-select.text-center,
32
- ion-radio.text-center {
33
- text-align: center;
34
- label {
35
- text-align: center;
36
- }
37
- }
38
-
39
- ion-input.grey-background {
40
- --background: var(--cf-app-system-color-outline);
41
- }
42
-
43
- /*===============================================
44
- ================ Select Popovers ================
45
- ===============================================*/
46
-
47
- ion-popover {
48
- ion-select-popover {
49
- ion-list[class*='popover'] {
50
- background: var(--cf-app-background-light);
51
- ion-item[class*='popover'] {
52
- --background: transparent;
53
- --border-radius: 8px;
54
- --background-focused: var(--cf-app-color-accent);
55
- --background-focused-opacity: 0.5;
56
- --background-hover: var(--cf-app-color-primary);
57
- --background-hover-opacity: 0.1;
58
- }
59
- }
60
- }
61
- }