carriera-intern-components 1.1.160 → 1.1.162
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/app/components/avatar/avatar.component.d.ts +1 -1
- package/app/components/document-preview/document-preview.component.d.ts +8 -1
- package/app/components/input/input.component.d.ts +3 -2
- package/app/components/input/models/input.model.d.ts +2 -1
- package/fesm2022/carriera-intern-components.mjs +62 -15
- package/fesm2022/carriera-intern-components.mjs.map +1 -1
- package/package.json +1 -1
- package/public/pdfjs/pdf.worker.min.mjs +29 -0
- package/src/styles/popover.scss +3 -0
- package/src/styles/tooltip.scss +34 -0
- package/src/styles.scss +1 -0
package/src/styles/popover.scss
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
@import "variables";
|
|
2
2
|
|
|
3
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;
|
|
4
7
|
--bs-body-bg: #2f2f2f !important;
|
|
5
8
|
border: none !important;
|
|
6
9
|
|
|
@@ -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
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
@use "styles/custompickers";
|
|
4
4
|
@use "styles/popover";
|
|
5
5
|
@use "styles/cropper";
|
|
6
|
+
@use "styles/tooltip";
|
|
6
7
|
/* Importing Bootstrap SCSS file. */
|
|
7
8
|
@use "bootstrap/scss/bootstrap";
|
|
8
9
|
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
|