@@ -310,6 +310,11 @@ html.dark .header__icon--theme-moon {
310310 width : 16px ;
311311 height : 16px ;
312312 flex-shrink : 0 ;
313+ transition : transform 0.2s ease;
314+ }
315+
316+ .header__version-toggle : checked ~ .header__version-trigger .header__icon--chevron {
317+ transform : rotate (180deg );
313318}
314319
315320.header__version-dropdown {
@@ -322,14 +327,20 @@ html.dark .header__icon--theme-moon {
322327 flex-direction : column;
323328 width : max-content;
324329 min-width : 100% ;
325- max-height : calc (var (--dropdown-item-height ) * 7 ); /* Show up to 7 items, then scroll */
326- overflow-y : auto;
327330 border-radius : var (--header-radius );
328331 border : 1px solid var (--color-stroke-weak );
329332 background : var (--color-surface-weak );
333+ overflow : hidden;
334+ z-index : 1000 ;
335+ }
336+
337+ .header__version-dropdown-scroll {
338+ display : flex;
339+ flex-direction : column;
340+ max-height : calc (var (--dropdown-item-height ) * 7 ); /* Show up to 7 items, then scroll */
341+ overflow-y : auto;
330342 scrollbar-width : thin;
331343 scrollbar-color : var (--color-icon-primary ) var (--color-surface-strong );
332- z-index : 1000 ;
333344}
334345
335346.header__version-dropdown .header__version-option {
@@ -339,7 +350,7 @@ html.dark .header__icon--theme-moon {
339350 width : 100% ;
340351 height : var (--dropdown-item-height );
341352 padding : 0 var (--space-large );
342- border : none ;
353+ border-bottom : 1 px solid var ( --color-stroke-mid ) ;
343354 border-radius : 0 ;
344355 background : transparent;
345356 font-family : var (--font-sans );
@@ -353,6 +364,10 @@ html.dark .header__icon--theme-moon {
353364 transition : background-color 0.1s ease, color 0.1s ease;
354365}
355366
367+ .header__version-dropdown .header__version-option : last-child {
368+ border-bottom : none;
369+ }
370+
356371.header__version-dropdown .header__version-option + .header__version-option {
357372 border-top : 1px solid var (--color-stroke-subtle );
358373}
0 commit comments