@salesforcedevs/docs-components 1.3.228-version-picker2 → 1.3.228-version-picker3
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
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
/* NOTE: doc-version-picker-width width variable is used by both dx-button and dx-dropdown to maintain a consistent width. */
|
|
4
4
|
:host {
|
|
5
|
+
--dx-c-dropdown-option-font-weight: normal;
|
|
6
|
+
--dx-c-dropdown-option-label-color: var(--dx-g-gray-10);
|
|
5
7
|
--popover-container-open-transform: translateY(4px);
|
|
6
8
|
}
|
|
7
9
|
|
|
@@ -12,11 +14,18 @@
|
|
|
12
14
|
border-bottom: 1px solid var(--dx-g-gray-90);
|
|
13
15
|
}
|
|
14
16
|
|
|
15
|
-
|
|
17
|
+
.version-picker-button {
|
|
16
18
|
display: flex;
|
|
17
19
|
width: var(--doc-version-picker-width, 296px);
|
|
18
20
|
}
|
|
19
21
|
|
|
22
|
+
.version-picker-button:hover,
|
|
23
|
+
.version-picker-button:active,
|
|
24
|
+
.version-picker-button:focus {
|
|
25
|
+
--dx-c-button-secondary-color-hover: var(--dx-g-cloud-blue-vibrant-95);
|
|
26
|
+
--dx-c-button-primary-color: var(--dx-g-blue-vibrant-40);
|
|
27
|
+
}
|
|
28
|
+
|
|
20
29
|
/**
|
|
21
30
|
* NOTE: This CSS ensures the span inside the button stays within the parent's width, avoiding overflow.
|
|
22
31
|
* Not keeping this in common component to ensure that existing functionality works as it is.
|