File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 9999
100100 const updateCinemaToggle = (enabled ) => {
101101 cinemaToggle .innerHTML = ` <i class =" bi bi-camera-reels" ></i > ${ enabled ? ' Cinema Off' : ' Cinema On' } ` ;
102- cinemaToggle .classList .toggle (' btn-warning ' , enabled);
102+ cinemaToggle .classList .toggle (' bg-info ' , enabled);
103103 cinemaToggle .classList .toggle (' text-dark' , enabled);
104- cinemaToggle .classList .toggle (' btn-outline-warning ' , ! enabled);
104+ cinemaToggle .classList .toggle (' bg-info-subtle ' , ! enabled);
105105 seriesLayout .classList .toggle (' cinema-mode' , enabled);
106106 };
107107
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ if (episodeNum >= maxEpisodes) {
3131< div id= " series-buttons" class = " px-1 w-100" >
3232 < div class = " btn-group mb-2 w-100" >
3333 < a href= " <%= prevLink %>" class = " btn bg-primary border border-primary-subtle btn-sm p-2 <%= prevDisabled ? 'disabled' : '' %>" >< i class = " bi bi-caret-left-square" >< / i> Previous< / a>
34- < button type= " button" id= " cinema-toggle" class = " btn btn-outline-warning btn- sm p-2" >
34+ < button type= " button" id= " cinema-toggle" class = " btn btn-sm p-2 bg-info-subtle border border-gray-subtle " >
3535 < i class = " bi bi-camera-reels" >< / i> Cinema On
3636 < / button>
3737 < % if (server2Src && server2Src .trim () !== ' ' ) { -% >
You can’t perform that action at this time.
0 commit comments