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), {
20582058 #reveal_btn {
20592059 display : block ;
20602060 order : 4 ;
2061+ transition : transform 0.3s ;
2062+ transform-origin : center center ;
2063+ }
2064+ .headerbar.expand #reveal_btn {
2065+ transform : rotate (180deg );
20612066 }
20622067 #header_buttons {
20632068 margin-left : auto ;
Original file line number Diff line number Diff line change 105105 </ div >
106106 </ div >
107107 < div id ="reveal_btn ">
108- < em class ="fas fa-ellipsis-v "> </ em >
108+ < em class ="fas fa-chevron-down "> </ em >
109109 </ div >
110110 </ div >
111111 < div id ="log ">
Original file line number Diff line number Diff line change @@ -334,6 +334,10 @@ function startProcess() {
334334 $ ( "#background" ) . hide ( ) ;
335335 } ) ;
336336
337+ $ ( "#reveal_btn" ) . on ( "click" , function ( ) {
338+ $ ( ".headerbar" ) . toggleClass ( "expand" ) ;
339+ } ) ;
340+
337341 $ ( window ) . on ( "resize" , function ( ) {
338342 // 575px is the mobile breakpoint defined in CSS
339343 if ( window . innerWidth > 575 ) {
You can’t perform that action at this time.
0 commit comments