@leapdev/gui 0.2.228 → 0.2.233

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 (35) hide show
  1. package/dist/css/4d-bylawyers.css +1 -1
  2. package/dist/css/4d-lawconnect.css +1 -1
  3. package/dist/css/4d-leap-web.css +1 -1
  4. package/dist/css/4d-leap.css +1 -1
  5. package/dist/css/xsf-crx-lawconnect.css +1 -1
  6. package/dist/css/xsf-crx-leap.css +1 -1
  7. package/dist/index.html +2 -2
  8. package/dist/scss/4d/_base.scss +2 -0
  9. package/dist/scss/4d/_content-app.scss +4 -4
  10. package/dist/scss/4d/_variables-bylawyers.scss +37 -123
  11. package/dist/scss/4d/_variables-web.scss +37 -21
  12. package/dist/scss/4d/_variables.scss +35 -18
  13. package/dist/scss/4d/components/datepicker.scss +3 -0
  14. package/dist/scss/4d/components/page.scss +5 -1
  15. package/dist/scss/4d/components/responsive-table.scss +50 -0
  16. package/dist/scss/4d/components/section.scss +4 -0
  17. package/dist/scss/4d/mixins/_all.scss +2 -1
  18. package/dist/scss/4d/mixins/_mobile-device.scss +8 -0
  19. package/dist/scss/4d/overrides/buttons/buttons.scss +20 -0
  20. package/dist/scss/4d/overrides/forms/form-group.scss +13 -0
  21. package/dist/scss/4d/overrides/forms/forms.scss +0 -1
  22. package/dist/scss/4d/overrides/forms/input-group.scss +14 -0
  23. package/dist/scss/4d/overrides/forms/input-options.scss +46 -12
  24. package/dist/scss/4d/overrides/forms/input-select.scss +73 -5
  25. package/dist/scss/4d/overrides/forms/input-text.scss +6 -0
  26. package/dist/scss/4d/overrides/grid/_grid.scss +13 -0
  27. package/dist/scss/4d/overrides/nav/navbar.scss +82 -3
  28. package/dist/scss/4d/overrides/product/_bylawyers.scss +17 -10
  29. package/dist/scss/4d/overrides/product/_leapweb.scss +13 -56
  30. package/dist/scss/4d/overrides/typography/page-header.scss +31 -0
  31. package/dist/scss/xsf-crx/components/_custom-tabs.scss +5 -2
  32. package/dist/scss/xsf-crx/sites/sf-lawconnect/_variables.scss +1 -0
  33. package/dist/scss/xsf-crx/sites/sf-leap/_variables.scss +1 -0
  34. package/package.json +1 -1
  35. package/dist/scss/4d/overrides/forms/input-range.scss +0 -0
@@ -68,22 +68,29 @@ h3 {
68
68
  letter-spacing: 0.2px;
69
69
  }
70
70
 
71
+ // .form-check, .form-check-inline {
72
+ // .form-check-label {
73
+ // margin-left: 0.5rem;
74
+ // }
75
+ // > input[type="radio"]:not(.form-check-inline) {
76
+ // top: 0.2rem !important;
77
+ // }
78
+ // > input[type="checkbox"] {
79
+ // top: 0.2rem !important;
80
+ // &:before {
81
+ // top: 0.09rem !important;
82
+ // left: 0 !important;
83
+ // }
84
+ // }
85
+ // }
86
+
71
87
  .form-check, .form-check-inline {
72
- .form-check-label {
73
- margin-left: 0.5rem;
74
- }
75
88
  > input[type="radio"]:not(.form-check-inline) {
76
89
  top: 0.2rem !important;
77
90
  }
78
- > input[type="checkbox"] {
79
- top: 0.2rem !important;
80
- &:before {
81
- top: 0.09rem !important;
82
- left: 0 !important;
83
- }
84
- }
85
91
  }
86
92
 
93
+
87
94
  .card {
88
95
  border-radius: $border-radius-sm;
89
96
  }
@@ -1,15 +1,22 @@
1
-
2
-
3
1
  .ng-dropdown-panel.ng-select-bottom {
4
2
  border-color: $border-color !important;
5
3
  }
6
4
 
5
+ .ng-select-container {
6
+ min-height: $input-height !important;
7
+ border-radius: $border-radius-sm !important;
8
+
9
+ .ng-value-container {
10
+ line-height: $line-height-base !important;
11
+ padding: $input-padding-y $input-padding-x !important;
12
+ }
13
+ }
14
+
7
15
  .btn {
8
16
  border-radius: $border-radius !important;
9
17
  padding: $input-padding-y $input-padding-x !important;
10
18
  }
11
19
 
12
-
13
20
  .alert {
14
21
  border-radius: $border-radius-sm !important;
15
22
  font-size: $font-size-base;
@@ -21,54 +28,20 @@
21
28
  }
22
29
  }
23
30
 
24
-
25
31
  .form-group {
26
32
  margin-bottom: 0.35rem !important;
27
33
  }
28
34
 
29
-
30
- .ng-select-container {
31
- min-height: $input-height !important;
32
- border-radius: $border-radius-sm !important;
33
-
34
-
35
- .ng-value-container {
36
- line-height: $line-height-base !important;
37
- padding: $input-padding-y $input-padding-x !important;
38
- }
39
- }
40
-
41
-
42
35
  .form-check, .form-check-inline {
43
- .form-check-label {
44
- margin-left: 0.5rem;
45
- }
46
36
  > input[type="radio"]:not(.form-check-inline) {
47
37
  top: 0.2rem !important;
48
38
  }
49
- > input[type="checkbox"] {
50
- top: 0.2rem !important;
51
- &:before {
52
- top: 0.09rem !important;
53
- left: 0 !important;
54
- }
55
- }
56
39
  }
57
-
58
-
59
-
60
- .ng-dropdown-panel.ng-select-bottom {
61
- border-color: $border-color !important;
62
- }
63
-
64
- .alert {
65
- border-radius: $border-radius-sm !important;
66
- .close {
67
- font-size: $font-size-lg;
40
+ .form-group {
41
+ @include mobile-device-only {
42
+ margin-bottom: 1rem !important;
68
43
  }
69
44
  }
70
-
71
-
72
45
  .card {
73
46
  border-radius: $border-radius-sm;
74
47
  }
@@ -107,22 +80,6 @@ h3 {
107
80
  letter-spacing: -0.5px;
108
81
  }
109
82
 
110
- .form-check, .form-check-inline {
111
- .form-check-label {
112
- margin-left: 0.5rem;
113
- }
114
- > input[type="radio"]:not(.form-check-inline) {
115
- top: 0.2rem !important;
116
- }
117
- > input[type="checkbox"] {
118
- top: 0.2rem !important;
119
- &:before {
120
- top: 0.09rem !important;
121
- left: 0 !important;
122
- }
123
- }
124
- }
125
-
126
83
  .card {
127
84
  border-radius: $border-radius-sm;
128
85
  }
@@ -16,6 +16,37 @@
16
16
  font-weight: $font-weight-bold;
17
17
  }
18
18
 
19
+ @if not $is-sirius {
20
+ .section_title {
21
+ width: 100%;
22
+ }
23
+ .section_title .h5:first-child,
24
+ .section_title h5:first-child { font-size: 0.75rem; }
25
+
26
+ .section_title .h6:first-child,
27
+ .section_title h6:first-child { font-size: 0.6875rem; }
28
+
29
+ .section_title .h5:first-child,
30
+ .section_title h5:first-child,
31
+ .section_title .h6:first-child,
32
+ .section_title h6:first-child {
33
+ font-weight: 600;
34
+ text-transform: uppercase;
35
+ position: relative;
36
+ white-space: nowrap;
37
+ overflow: hidden;
38
+
39
+ &::after {
40
+ border-top: 1px solid $gray-var-6;
41
+ content: "";
42
+ position: absolute;
43
+ top: 0.5rem;
44
+ width: 100%;
45
+ margin-left: 2%;
46
+ }
47
+ }
48
+ }
49
+
19
50
  .section-subtitle {
20
51
  font-size: $font-size-base;
21
52
  color: var(--primary, theme-color("default"));
@@ -46,7 +46,6 @@
46
46
  ul.#{$prefix}tab-nav {
47
47
  display: flex;
48
48
  align-content: flex-start;
49
- gap: 2rem;
50
49
  position: relative;
51
50
  margin: 0;
52
51
  margin-left: 0 !important;
@@ -54,7 +53,7 @@ ul.#{$prefix}tab-nav {
54
53
  > .#{$prefix}tab-item {
55
54
  display: block;
56
55
  position: relative;
57
- margin: 0;
56
+ margin: $comp_tab-link-margin;
58
57
  margin-left: 0 !important;
59
58
 
60
59
  &:first-child {
@@ -62,6 +61,10 @@ ul.#{$prefix}tab-nav {
62
61
  margin-left: 0 !important;
63
62
  }
64
63
 
64
+ &:last-child {
65
+ margin: 0;
66
+ }
67
+
65
68
  > .#{$prefix}tab-item-link {
66
69
  display: block;
67
70
  text-align: center;
@@ -72,6 +72,7 @@ $comp_tab-link-active-border-thickness: .1875rem;
72
72
  $comp_tab-nav-border-thickness: .1875rem;
73
73
  $comp_tab-content-padding: 1rem;
74
74
  $comp_tab-link-padding: .5rem 0rem;
75
+ $comp_tab-link-margin: 0 2rem 0 0;
75
76
 
76
77
  //============================================================
77
78
  // SF Accordion
@@ -69,6 +69,7 @@ $comp_tab-link-active-border-thickness: 0.125rem;
69
69
  $comp_tab-nav-border-thickness: 0.0625rem;
70
70
  $comp_tab-content-padding: 1rem 0;
71
71
  $comp_tab-link-padding: .5rem 1.5rem;
72
+ $comp_tab-link-margin: 0;
72
73
 
73
74
  //============================================================
74
75
  // SF Accordion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leapdev/gui",
3
- "version": "0.2.228",
3
+ "version": "0.2.233",
4
4
  "description": "LEAP GUI",
5
5
  "author": "LEAP Dev",
6
6
  "license": "ISC",
File without changes