carriera-intern-components 1.1.159 → 1.1.161

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": "carriera-intern-components",
3
- "version": "1.1.159",
3
+ "version": "1.1.161",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.14",
6
6
  "@angular/core": "^19.2.14"
@@ -0,0 +1,33 @@
1
+ @import "variables";
2
+
3
+ .logoVar {
4
+ .img-cropper .ngx-ic-cropper {
5
+ width: 100% !important;
6
+ height: 100% !important;
7
+ left: 0 !important;
8
+ margin-left: 0 !important;
9
+ pointer-events: none !important;
10
+ }
11
+ }
12
+
13
+ .img-cropper {
14
+ .ngx-ic-source-image {
15
+ object-fit: contain !important;
16
+ }
17
+ .ngx-ic-overlay {
18
+ margin-left: 0 !important;
19
+ width: 100% !important;
20
+ }
21
+ .ngx-ic-cropper{
22
+ pointer-events: none !important;
23
+
24
+ .ngx-ic-move{
25
+ border: none !important;
26
+ outline: none !important;
27
+ }
28
+ }
29
+ .ngx-ic-cropper::after{
30
+ border: 5px dashed #ffffff !important;
31
+ opacity: 1 !important;
32
+ }
33
+ }
@@ -0,0 +1,18 @@
1
+ @import "variables";
2
+
3
+ .tagPopover {
4
+ font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system,
5
+ BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
6
+ "Apple Color Emoji", "Segoe UI Emoji" !important;
7
+ --bs-body-bg: #2f2f2f !important;
8
+ border: none !important;
9
+
10
+ .popover-arrow {
11
+ display: none !important;
12
+ }
13
+
14
+ .popover-body {
15
+ border-radius: 3px;
16
+ padding: 0px !important;
17
+ }
18
+ }
@@ -0,0 +1,34 @@
1
+ @import "variables";
2
+
3
+ .tooltip {
4
+ font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system,
5
+ BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
6
+ "Apple Color Emoji", "Segoe UI Emoji" !important;
7
+ margin-bottom: 8px !important;
8
+ &.input-tooltip {
9
+ margin-bottom: 0 !important;
10
+ }
11
+ .tooltip-arrow {
12
+ display: none !important;
13
+ }
14
+ .tooltip-inner {
15
+ border-radius: 3px !important;
16
+ background-color: #424242 !important;
17
+ padding: 2px 6px !important;
18
+ line-height: 14px !important;
19
+ font-size: 11px !important;
20
+ font-weight: 600 !important;
21
+ color: #ffffff !important;
22
+ }
23
+ }
24
+
25
+ .tooltip.show {
26
+ opacity: 1;
27
+ }
28
+
29
+ .tooltip-delete,
30
+ .error-tooltip {
31
+ .tooltip-inner {
32
+ background-color: #df3c3c !important;
33
+ }
34
+ }
package/src/styles.scss CHANGED
@@ -1,6 +1,9 @@
1
1
  /* You can add global styles to this file, and also import other style files */
2
2
  @use "styles/variables";
3
3
  @use "styles/custompickers";
4
+ @use "styles/popover";
5
+ @use "styles/cropper";
6
+ @use "styles/tooltip";
4
7
  /* Importing Bootstrap SCSS file. */
5
8
  @use "bootstrap/scss/bootstrap";
6
9
  @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");