File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -2058,6 +2058,11 @@ each(range(12), {
2058
2058
#reveal_btn {
2059
2059
display : block ;
2060
2060
order : 4 ;
2061
+ transition : transform 0.3s ;
2062
+ transform-origin : center center ;
2063
+ }
2064
+ .headerbar.expand #reveal_btn {
2065
+ transform : rotate (180deg );
2061
2066
}
2062
2067
#header_buttons {
2063
2068
margin-left : auto ;
Original file line number Diff line number Diff line change 105
105
</ div >
106
106
</ div >
107
107
< div id ="reveal_btn ">
108
- < em class ="fas fa-ellipsis-v "> </ em >
108
+ < em class ="fas fa-chevron-down "> </ em >
109
109
</ div >
110
110
</ div >
111
111
< div id ="log ">
Original file line number Diff line number Diff line change @@ -334,6 +334,10 @@ function startProcess() {
334
334
$ ( "#background" ) . hide ( ) ;
335
335
} ) ;
336
336
337
+ $ ( "#reveal_btn" ) . on ( "click" , function ( ) {
338
+ $ ( ".headerbar" ) . toggleClass ( "expand" ) ;
339
+ } ) ;
340
+
337
341
$ ( window ) . on ( "resize" , function ( ) {
338
342
// 575px is the mobile breakpoint defined in CSS
339
343
if ( window . innerWidth > 575 ) {
You can’t perform that action at this time.
0 commit comments