From 683a8f43bd1bc2a2223a9b9e9632e484708eddbd Mon Sep 17 00:00:00 2001 From: Isaac Gluck Date: Tue, 13 Aug 2019 15:39:59 -0400 Subject: [PATCH] #1020 Fixed light tooltip link color and dark tooltip border color --- package-lock.json | 45 +++++++++++++++++++++-------- src/components/ToolTip/ToolTip.less | 6 +++- 2 files changed, 38 insertions(+), 13 deletions(-) diff --git a/package-lock.json b/package-lock.json index 195ad56ca..29ae84be9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4446,6 +4446,7 @@ "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", "dev": true, + "optional": true, "requires": { "hoek": "2.x.x" } @@ -8574,7 +8575,8 @@ "ansi-regex": { "version": "2.1.1", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "aproba": { "version": "1.2.0", @@ -8595,12 +8597,14 @@ "balanced-match": { "version": "1.0.0", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "brace-expansion": { "version": "1.1.11", "bundled": true, "dev": true, + "optional": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -8615,17 +8619,20 @@ "code-point-at": { "version": "1.1.0", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "concat-map": { "version": "0.0.1", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "console-control-strings": { "version": "1.1.0", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "core-util-is": { "version": "1.0.2", @@ -8742,7 +8749,8 @@ "inherits": { "version": "2.0.3", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "ini": { "version": "1.3.5", @@ -8754,6 +8762,7 @@ "version": "1.0.0", "bundled": true, "dev": true, + "optional": true, "requires": { "number-is-nan": "^1.0.0" } @@ -8768,6 +8777,7 @@ "version": "3.0.4", "bundled": true, "dev": true, + "optional": true, "requires": { "brace-expansion": "^1.1.7" } @@ -8775,12 +8785,14 @@ "minimist": { "version": "0.0.8", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "minipass": { "version": "2.3.5", "bundled": true, "dev": true, + "optional": true, "requires": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" @@ -8799,6 +8811,7 @@ "version": "0.5.1", "bundled": true, "dev": true, + "optional": true, "requires": { "minimist": "0.0.8" } @@ -8879,7 +8892,8 @@ "number-is-nan": { "version": "1.0.1", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "object-assign": { "version": "4.1.1", @@ -8891,6 +8905,7 @@ "version": "1.4.0", "bundled": true, "dev": true, + "optional": true, "requires": { "wrappy": "1" } @@ -8976,7 +8991,8 @@ "safe-buffer": { "version": "5.1.2", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "safer-buffer": { "version": "2.1.2", @@ -9012,6 +9028,7 @@ "version": "1.0.2", "bundled": true, "dev": true, + "optional": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", @@ -9031,6 +9048,7 @@ "version": "3.0.1", "bundled": true, "dev": true, + "optional": true, "requires": { "ansi-regex": "^2.0.0" } @@ -9074,12 +9092,14 @@ "wrappy": { "version": "1.0.2", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "yallist": { "version": "3.0.3", "bundled": true, - "dev": true + "dev": true, + "optional": true } } }, @@ -9631,7 +9651,8 @@ "version": "2.16.3", "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=", - "dev": true + "dev": true, + "optional": true }, "hoist-non-react-statics": { "version": "1.2.0", diff --git a/src/components/ToolTip/ToolTip.less b/src/components/ToolTip/ToolTip.less index 7d4d8bae9..18a77ab4f 100644 --- a/src/components/ToolTip/ToolTip.less +++ b/src/components/ToolTip/ToolTip.less @@ -8,6 +8,7 @@ .@{prefix}-ToolTip-FlyOut { background-color: @color-neutral-9; border: @border-standardBorder; + border-color: @color-neutral-9; border-radius: @size-borderRadius; padding: @size-standard; font-size: @fontSize * 0.9; @@ -26,6 +27,10 @@ background-color: @color-white; border: @border-standardBorder; color: @color-darkGray; + + a { + color: @color-darkGray; + } } &-Title { @@ -248,4 +253,3 @@ margin-bottom: 1px; } } -