File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -198,23 +198,6 @@ code {
198198 font-style : italic;
199199}
200200
201- .video-transcript-button .video-transcript-button-pointer ::before {
202- content : "▼" ;
203- }
204-
205- .video-transcript-button .active .video-transcript-button-pointer ::before {
206- content : "▶" ;
207- }
208-
209- .video-transcript {
210- max-width : 640px ;
211- width : 100% ;
212- display : block;
213- overflow : auto;
214- background-color : # f1f1f1 ;
215- padding : 1rem ;
216- }
217-
218201.calendar-list .calendar {
219202 padding-bottom : 1rem ;
220203}
Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ for (i = 0; i < buttons.length; i++) {
55 buttons [ i ] . addEventListener ( "click" , function ( ) {
66 this . classList . toggle ( "active" ) ;
77 var content = this . nextElementSibling ;
8- if ( content . style . display === "none" ) {
9- content . style . display = "block" ;
10- } else {
8+ if ( content . style . display === "block" ) {
119 content . style . display = "none" ;
10+ } else {
11+ content . style . display = "block" ;
1212 }
1313 } ) ;
1414}
You can’t perform that action at this time.
0 commit comments