diff --git a/CHANGELOG.md b/CHANGELOG.md index 0765c74..f97aca5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## 7.0.26 +### Fixed +- Fixed text color on dropdown for tooltip + ## 7.0.25 ### Changed - Update NavItemHeight to align with office fabric command bar fluent update diff --git a/lib/components/Dropdown/Dropdown.module.scss b/lib/components/Dropdown/Dropdown.module.scss index 48a3e5a..9360731 100644 --- a/lib/components/Dropdown/Dropdown.module.scss +++ b/lib/components/Dropdown/Dropdown.module.scss @@ -167,4 +167,4 @@ $arrow-size: 2*$grid-size; pointer-events: auto; } } -} +} \ No newline at end of file diff --git a/lib/components/Shell/Shell.module.scss b/lib/components/Shell/Shell.module.scss index 8533308..ed0a5cb 100644 --- a/lib/components/Shell/Shell.module.scss +++ b/lib/components/Shell/Shell.module.scss @@ -39,6 +39,10 @@ } } +.popup-container { + color: var(--color-text-rest); +} + .nav-and-workspace { // this should take all the available space in the screen from shell flex-grow: 1; @@ -63,3 +67,4 @@ flex-direction: column; overflow: hidden; } + diff --git a/package-lock.json b/package-lock.json index 8599a1d..240eea7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@microsoft/azure-iot-ux-fluent-controls", - "version": "7.0.25", + "version": "7.0.26", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -418,9 +418,9 @@ "integrity": "sha512-4zAPlpDEh2VwXswwr/t8xGNDGg8RQiPxtxZ3qQEXyQsBV39ptTdESCjuBvGze1nLMVrxmTIKmnO/nAV8Tqjjzg==" }, "@microsoft/azure-iot-ux-fluent-css": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/@microsoft/azure-iot-ux-fluent-css/-/azure-iot-ux-fluent-css-7.1.1.tgz", - "integrity": "sha512-8HZsoBaDRHG20rvBT5PXY9AIp9u+jdgsgOKcdqT0gnrRoysfTrFGWeUWSr8og/w5sQtlZp29FdKMr3IG6ii6Fw==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/@microsoft/azure-iot-ux-fluent-css/-/azure-iot-ux-fluent-css-7.1.2.tgz", + "integrity": "sha512-2WZ2zi7JgJ9WL9HbNBme3tm7yzph4zYFnLQOFXxv/KIKHqw53L+GhBI07v6q1cz+rdd6AIa2nHbAraNy+zw4/A==", "requires": { "normalize.css": "^8.0.1" } diff --git a/package.json b/package.json index d03c262..24060a8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/azure-iot-ux-fluent-controls", - "version": "7.0.25", + "version": "7.0.26", "description": "Azure IoT UX Fluent Controls", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -26,7 +26,7 @@ "node": ">=8" }, "dependencies": { - "@microsoft/azure-iot-ux-fluent-css": "^7.1.1", + "@microsoft/azure-iot-ux-fluent-css": "^7.1.2", "classnames": "^2.2.5", "styled-components": "^4.2.0" },