File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import * as ToastActions from '../../actions/toast';
11
11
import dates from '../../../../utils/formatDate' ;
12
12
13
13
import DownFilledTriangleIcon from '../../../../images/down-filled-triangle.svg' ;
14
+ import MoreIconSvg from '../../../../images/more.svg' ;
14
15
15
16
const formatDateCell = ( date , mobile = false ) =>
16
17
dates . format ( date , { showTime : ! mobile } ) ;
@@ -149,7 +150,11 @@ class CollectionListRowBase extends React.Component {
149
150
'CollectionListRow.ToggleCollectionOptionsARIA'
150
151
) }
151
152
>
152
- < DownFilledTriangleIcon title = "Menu" />
153
+ { this . props . mobile ? (
154
+ < MoreIconSvg focusable = "false" aria-hidden = "true" />
155
+ ) : (
156
+ < DownFilledTriangleIcon focusable = "false" aria-hidden = "true" />
157
+ ) }
153
158
</ button >
154
159
{ optionsOpen && (
155
160
< ul className = "sketch-list__action-dialogue" >
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import getConfig from '../../../utils/getConfig';
23
23
import ArrowUpIcon from '../../../images/sort-arrow-up.svg' ;
24
24
import ArrowDownIcon from '../../../images/sort-arrow-down.svg' ;
25
25
import DownFilledTriangleIcon from '../../../images/down-filled-triangle.svg' ;
26
+ import MoreIconSvg from '../../../images/more.svg' ;
26
27
27
28
const ROOT_URL = getConfig ( 'API_URL' ) ;
28
29
@@ -198,7 +199,11 @@ class SketchListRowBase extends React.Component {
198
199
onFocus = { this . onFocusComponent }
199
200
aria-label = { this . props . t ( 'SketchList.ToggleLabelARIA' ) }
200
201
>
201
- < DownFilledTriangleIcon focusable = "false" aria-hidden = "true" />
202
+ { this . props . mobile ? (
203
+ < MoreIconSvg focusable = "false" aria-hidden = "true" />
204
+ ) : (
205
+ < DownFilledTriangleIcon focusable = "false" aria-hidden = "true" />
206
+ ) }
202
207
</ button >
203
208
{ optionsOpen && (
204
209
< ul className = "sketch-list__action-dialogue" >
Original file line number Diff line number Diff line change 56
56
right : 0 ;
57
57
width : auto ;
58
58
margin : #{8 / $base-font-size } rem;
59
+
60
+ .sketch-list__dropdown-button {
61
+ transform : rotateZ (90deg ) translateX (-30% );
62
+ transform-origin : center ;
63
+ }
59
64
}
60
65
}
61
66
}
You can’t perform that action at this time.
0 commit comments