@testgorilla/tgo-ui 1.11.4 → 1.11.5
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 +1 -1
- package/src/theme/_tooltip.scss +11 -10
- package/src/theme/theme.scss +16 -1
package/package.json
CHANGED
package/src/theme/_tooltip.scss
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
@use "./variables" as *;
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
background-color:
|
|
5
|
-
font-weight: 600;
|
|
6
|
-
font-size: 12px;
|
|
7
|
-
border-radius: 4px;
|
|
8
|
-
overflow: visible;
|
|
9
|
-
max-width: 248px;
|
|
10
|
-
padding: 6px 2px;
|
|
11
|
-
color:
|
|
12
|
-
|
|
3
|
+
//.mat-mdc-tooltip {
|
|
4
|
+
// background-color: $tgo-petrol-60w;
|
|
5
|
+
// font-weight: 600;
|
|
6
|
+
// font-size: 12px;
|
|
7
|
+
// border-radius: 4px;
|
|
8
|
+
// overflow: visible;
|
|
9
|
+
// max-width: 248px;
|
|
10
|
+
// padding: 6px 2px;
|
|
11
|
+
// --mdc-plain-tooltip-container-color: none;
|
|
12
|
+
// --mdc-plain-tooltip-supporting-text-color: $tgo-black;
|
|
13
|
+
//}
|
package/src/theme/theme.scss
CHANGED
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
|
|
8
8
|
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
|
|
9
9
|
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
|
|
10
|
-
@import "tooltip";
|
|
11
10
|
|
|
12
11
|
//TODO: MOVE TO THE CORRESPONDING COMPONENTS OR PARTIAL
|
|
13
12
|
.hidden {
|
|
@@ -37,3 +36,19 @@ mat-password-strength-info {
|
|
|
37
36
|
}
|
|
38
37
|
}
|
|
39
38
|
}
|
|
39
|
+
|
|
40
|
+
.mat-mdc-tooltip {
|
|
41
|
+
background-color: $tgo-petrol-60w;
|
|
42
|
+
font-weight: 600;
|
|
43
|
+
font-size: 12px;
|
|
44
|
+
border-radius: 4px;
|
|
45
|
+
overflow: visible;
|
|
46
|
+
max-width: 248px;
|
|
47
|
+
padding: 6px 2px;
|
|
48
|
+
--mdc-plain-tooltip-container-color: none;
|
|
49
|
+
--mdc-plain-tooltip-supporting-text-color: $tgo-black;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.mdc-button {
|
|
53
|
+
background-color: red !important;
|
|
54
|
+
}
|