aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/components/controls/ActionsDropdown.tsx
diff options
context:
space:
mode:
authorStas Vilchik <stas.vilchik@sonarsource.com>2018-05-23 15:29:06 +0200
committerSonarTech <sonartech@sonarsource.com>2018-05-23 20:20:48 +0200
commitfbe1259e4abbbbe7416489819b79113ab953d864 (patch)
treec85a0bc88b97ef3d0949630fc4ea86903c14278c /server/sonar-web/src/main/js/components/controls/ActionsDropdown.tsx
parent11c567859c646bc3202e6ca15f2c8f53e928d633 (diff)
downloadsonarqube-fbe1259e4abbbbe7416489819b79113ab953d864.tar.gz
sonarqube-fbe1259e4abbbbe7416489819b79113ab953d864.zip
SONAR-10673 Stop using font for icons (#252)
Diffstat (limited to 'server/sonar-web/src/main/js/components/controls/ActionsDropdown.tsx')
-rw-r--r--server/sonar-web/src/main/js/components/controls/ActionsDropdown.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/components/controls/ActionsDropdown.tsx b/server/sonar-web/src/main/js/components/controls/ActionsDropdown.tsx
index 252d26ef618..3245311d458 100644
--- a/server/sonar-web/src/main/js/components/controls/ActionsDropdown.tsx
+++ b/server/sonar-web/src/main/js/components/controls/ActionsDropdown.tsx
@@ -22,6 +22,7 @@ import * as classNames from 'classnames';
import { Link } from 'react-router';
import { LocationDescriptor } from 'history';
import Dropdown from './Dropdown';
+import DropdownIcon from '../icons-components/DropdownIcon';
import SettingsIcon from '../icons-components/SettingsIcon';
import { Button } from '../ui/buttons';
@@ -43,8 +44,8 @@ export default function ActionsDropdown(props: Props) {
className={classNames('dropdown-toggle', props.toggleClassName, {
'button-small': props.small
})}>
- <SettingsIcon className="text-text-bottom" />
- <i className="icon-dropdown little-spacer-left" />
+ <SettingsIcon size={props.small ? 12 : 14} />
+ <DropdownIcon className="little-spacer-left" />
</Button>
</Dropdown>
);