File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1338,26 +1338,6 @@ summary:focus {
13381338 visibility : hidden;
13391339}
13401340
1341- /* Highlight effect for jumped-to rounds */
1342- .highlight-round {
1343- animation : roundHighlight 2s ease-in-out;
1344- }
1345-
1346- @keyframes roundHighlight {
1347- 0% {
1348- background-color : var (--accent-color );
1349- opacity : 0.1 ;
1350- }
1351- 50% {
1352- background-color : var (--accent-color );
1353- opacity : 0.2 ;
1354- }
1355- 100% {
1356- background-color : transparent;
1357- opacity : 1 ;
1358- }
1359- }
1360-
13611341/* Bootstrap table hover styles are used instead of custom ones */
13621342
13631343/* Ensure text visibility in all table states */
Original file line number Diff line number Diff line change @@ -202,15 +202,6 @@ function scrollToRound(roundNum) {
202202 block : "start" ,
203203 } ) ;
204204
205- // Add a brief highlight effect
206- const roundSection = roundAnchor . nextElementSibling ;
207- if ( roundSection ) {
208- roundSection . classList . add ( "highlight-round" ) ;
209- setTimeout ( ( ) => {
210- roundSection . classList . remove ( "highlight-round" ) ;
211- } , 2000 ) ;
212- }
213-
214205 // Close TOC menu after navigation (optional - user can keep it open)
215206 // closeTocMenu();
216207 } else {
You can’t perform that action at this time.
0 commit comments