File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -8,20 +8,24 @@ function startLoading() {
8
8
9
9
const getFormatButton = function ( ) {
10
10
var button = document . createElement ( "button" ) ;
11
- button . innerHTML = "FORMAT " ;
11
+ button . innerHTML = "Format " ;
12
12
button . className = "tool-button" ;
13
13
button . id = "format-button" ;
14
14
button . setAttribute ( "icon" , "information" ) ;
15
15
button . setAttribute ( "data-no-border" , "true" ) ;
16
16
button . setAttribute ( "type" , "ghost" ) ;
17
17
button . style . marginRight = "10px" ;
18
18
button . style . border = "none" ;
19
- button . style . backgroundColor = "green " ;
19
+ button . style . backgroundColor = "#218838 " ;
20
20
button . style . borderImage = "none" ;
21
21
button . style . outline = "none" ;
22
22
button . style . cursor = "pointer" ;
23
23
button . title = "Format" ;
24
+ button . style . padding = "4px 20px" ;
24
25
button . style . color = "white" ;
26
+ button . style . fontWeight = "600" ;
27
+ button . style . borderRadius = "3px" ;
28
+
25
29
button . addEventListener ( "click" , process ) ;
26
30
return button ;
27
31
} ;
You can’t perform that action at this time.
0 commit comments