@@ -259,20 +259,20 @@ class ShareModal extends React.PureComponent<Props, State> {
259259          </ label > 
260260        </ div > 
261261        < div  className = "sharing-buttons" > 
262-           < button  className = "editor-button"   onClick = { ( )  =>  this . previewURL ( ) } > 
262+           < button  onClick = { ( )  =>  this . previewURL ( ) } > 
263263            < Link  /> 
264264            < span > Open Link</ span > 
265265          </ button > 
266266          < Clipboard 
267-             className = "editor-button  copy-icon" 
267+             className = "copy-icon" 
268268            data-clipboard-text = { this . state . generatedURL } 
269269            onSuccess = { this . onCopy . bind ( this ) } 
270270          > 
271271            < Copy  /> 
272272            < span > Copy Link to Clipboard</ span > 
273273          </ Clipboard > 
274274          < Clipboard 
275-             className = "editor-button  copy-icon" 
275+             className = "copy-icon" 
276276            data-clipboard-text = { `[Open the Chart in the Vega Editor](${ this . state . generatedURL }  )` } 
277277            onSuccess = { this . onCopy . bind ( this ) } 
278278          > 
@@ -330,15 +330,14 @@ class ShareModal extends React.PureComponent<Props, State> {
330330              ) } 
331331              < div  className = "sharing-buttons" > 
332332                < button 
333-                   className = "editor-button" 
334333                  onClick = { this . updateGist . bind ( this ) } 
335334                  disabled = { ! this . state . gistFileNameSelected  ||  this . state . updating } 
336335                > 
337336                  < Save  /> 
338337                  { this . state . updating  ? 'Updating...'  : 'Update' } 
339338                </ button > 
340339                { this . state . gistEditorURL  &&  this . state . updating  !==  undefined  &&  ( 
341-                   < Clipboard  className = "editor-button  copy-icon"  data-clipboard-text = { this . state . gistEditorURL } > 
340+                   < Clipboard  className = "copy-icon"  data-clipboard-text = { this . state . gistEditorURL } > 
342341                    < Copy  /> 
343342                    < span > Copy Link to Clipboard</ span > 
344343                  </ Clipboard > 
@@ -389,12 +388,12 @@ class ShareModal extends React.PureComponent<Props, State> {
389388                </ label > 
390389              </ div > 
391390              < div  className = "sharing-buttons" > 
392-                 < button  className = "editor-button"   onClick = { this . createGist . bind ( this ) }  disabled = { this . state . creating } > 
391+                 < button  onClick = { this . createGist . bind ( this ) }  disabled = { this . state . creating } > 
393392                  < Save  /> 
394393                  { this . state . creating  ? 'Creating...'  : 'Create' } 
395394                </ button > 
396395                { this . state . gistEditorURL  &&  this . state . creating  !==  undefined  &&  ( 
397-                   < Clipboard  className = "editor-button  copy-icon"  data-clipboard-text = { this . state . gistEditorURL } > 
396+                   < Clipboard  className = "copy-icon"  data-clipboard-text = { this . state . gistEditorURL } > 
398397                    < Copy  /> 
399398                    < span > Copy Link to Clipboard</ span > 
400399                  </ Clipboard > 
0 commit comments