diff options
author | Stas Vilchik <stas.vilchik@sonarsource.com> | 2017-09-04 16:36:24 +0200 |
---|---|---|
committer | Janos Gyerik <janos.gyerik@sonarsource.com> | 2017-09-12 11:34:58 +0200 |
commit | 38ef0887b448e1c96b84b1631c293d553da39cb1 (patch) | |
tree | c534fe295262f5f66dff1a9d16373110639f849f /server/sonar-web | |
parent | 8490da5816150abf2258e2e5671c7ffa4f0fd72b (diff) | |
download | sonarqube-38ef0887b448e1c96b84b1631c293d553da39cb1.tar.gz sonarqube-38ef0887b448e1c96b84b1631c293d553da39cb1.zip |
SONAR-9736 change color of help icon
Diffstat (limited to 'server/sonar-web')
-rw-r--r-- | server/sonar-web/src/main/js/app/components/nav/component/ComponentNavBranch.tsx | 6 | ||||
-rw-r--r-- | server/sonar-web/src/main/js/app/components/nav/component/__tests__/__snapshots__/ComponentNavBranch-test.tsx.snap | 5 | ||||
-rw-r--r-- | server/sonar-web/src/main/js/components/icons-components/HelpIcon.tsx (renamed from server/sonar-web/src/main/js/components/icons-components/HelpIcon.js) | 14 |
3 files changed, 11 insertions, 14 deletions
diff --git a/server/sonar-web/src/main/js/app/components/nav/component/ComponentNavBranch.tsx b/server/sonar-web/src/main/js/app/components/nav/component/ComponentNavBranch.tsx index cad8419bc56..93961a70548 100644 --- a/server/sonar-web/src/main/js/app/components/nav/component/ComponentNavBranch.tsx +++ b/server/sonar-web/src/main/js/app/components/nav/component/ComponentNavBranch.tsx @@ -146,7 +146,7 @@ export default class ComponentNavBranch extends React.PureComponent<Props, State renderSingleBranchPopup = () => <div className="display-inline-block spacer-left"> <a className="link-no-underline" href="#" onClick={this.handleSingleBranchClick}> - <HelpIcon className="" fill="#cdcdcd" /> + <HelpIcon fill="#4b9fd5" /> </a> <BubblePopupHelper isOpen={this.state.singleBranchPopupOpen} @@ -159,7 +159,7 @@ export default class ComponentNavBranch extends React.PureComponent<Props, State renderNoBranchSupportPopup = () => <div className="display-inline-block spacer-left"> <a className="link-no-underline" href="#" onClick={this.handleNoBranchSupportClick}> - <HelpIcon className="" fill="#cdcdcd" /> + <HelpIcon fill="#cdcdcd" /> </a> <BubblePopupHelper isOpen={this.state.noBranchSupportPopupOpen} @@ -187,7 +187,7 @@ export default class ComponentNavBranch extends React.PureComponent<Props, State if (branches.length < 2) { return ( <div className="navbar-context-branches"> - <BranchIcon branch={currentBranch} className="little-spacer-right" color="#cdcdcd" /> + <BranchIcon branch={currentBranch} className="little-spacer-right" /> <span className="note"> {currentBranch.name} </span> diff --git a/server/sonar-web/src/main/js/app/components/nav/component/__tests__/__snapshots__/ComponentNavBranch-test.tsx.snap b/server/sonar-web/src/main/js/app/components/nav/component/__tests__/__snapshots__/ComponentNavBranch-test.tsx.snap index 85f4f20a64d..96442ba36f1 100644 --- a/server/sonar-web/src/main/js/app/components/nav/component/__tests__/__snapshots__/ComponentNavBranch-test.tsx.snap +++ b/server/sonar-web/src/main/js/app/components/nav/component/__tests__/__snapshots__/ComponentNavBranch-test.tsx.snap @@ -54,7 +54,6 @@ exports[`renders no branch support popup 1`] = ` onClick={[Function]} > <HelpIcon - className="" fill="#cdcdcd" /> </a> @@ -122,7 +121,6 @@ exports[`renders single branch popup 1`] = ` } } className="little-spacer-right" - color="#cdcdcd" /> <span className="note" @@ -138,8 +136,7 @@ exports[`renders single branch popup 1`] = ` onClick={[Function]} > <HelpIcon - className="" - fill="#cdcdcd" + fill="#4b9fd5" /> </a> <BubblePopupHelper diff --git a/server/sonar-web/src/main/js/components/icons-components/HelpIcon.js b/server/sonar-web/src/main/js/components/icons-components/HelpIcon.tsx index a0aed559a65..5097fde124e 100644 --- a/server/sonar-web/src/main/js/components/icons-components/HelpIcon.js +++ b/server/sonar-web/src/main/js/components/icons-components/HelpIcon.tsx @@ -17,15 +17,15 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -// @flow -import React from 'react'; +import * as React from 'react'; -/*:: -type Props = { className?: string, fill?: string, size?: number }; -*/ +interface Props { + className?: string; + fill?: string; + size?: number; +} -export default function HelpIcon({ className, fill = 'currentColor', size = 16 } /*: Props */) { - /* eslint-disable max-len */ +export default function HelpIcon({ className, fill = 'currentColor', size = 16 }: Props) { return ( <svg className={className} viewBox="0 0 16 16" width={size} height={size}> <g transform="matrix(0.0364583,0,0,0.0364583,1,-0.166667)"> |