@@ -146,7 +146,7 @@ qx.Class.define("osparc.dashboard.NewPlusMenu", {
146146 case "new-folder" :
147147 this . addSeparator ( ) ;
148148 control = this . self ( ) . createMenuButton (
149- osparc . dashboard . CardBase . NEW_ICON + " 16",
149+ "@FontAwesome5Solid/folder/ 16",
150150 this . tr ( "New Folder" ) ,
151151 ) ;
152152 osparc . utils . Utils . setIdToWidget ( control , "newFolderButton" ) ;
@@ -187,19 +187,19 @@ qx.Class.define("osparc.dashboard.NewPlusMenu", {
187187 } ,
188188
189189 __addMoreMenu : function ( ) {
190- const moreMenuButton = this . self ( ) . createMenuButton ( "@FontAwesome5Solid/star/14 " , this . tr ( "More" ) ) ;
190+ const moreMenuButton = this . self ( ) . createMenuButton ( "@FontAwesome5Solid/star/16 " , this . tr ( "More" ) ) ;
191191 this . addAt ( moreMenuButton , this . __itemIdx ) ;
192192 this . __itemIdx ++ ;
193193
194194 const moreMenu = new qx . ui . menu . Menu ( ) . set ( {
195195 appearance : "menu-wider" ,
196196 } ) ;
197197
198- const templatesButton = new qx . ui . menu . Button ( this . tr ( "Tutorials..." ) , "@FontAwesome5Solid/copy/14" ) ;
198+ const templatesButton = this . self ( ) . createMenuButton ( "@FontAwesome5Solid/copy/16" , this . tr ( "Tutorials..." ) ) ;
199199 templatesButton . addListener ( "execute" , ( ) => this . fireDataEvent ( "moveFolderToRequested" , this . getFolderId ( ) ) , this ) ;
200200 moreMenu . add ( templatesButton ) ;
201201
202- const servicesButton = new qx . ui . menu . Button ( this . tr ( "Services..." ) , "@FontAwesome5Solid/cog/14" ) ;
202+ const servicesButton = this . self ( ) . createMenuButton ( "@FontAwesome5Solid/cog/16" , this . tr ( "Services..." ) ) ;
203203 servicesButton . addListener ( "execute" , ( ) => this . fireDataEvent ( "moveFolderToRequested" , this . getFolderId ( ) ) , this ) ;
204204 moreMenu . add ( servicesButton ) ;
205205
0 commit comments