mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Make organization dropdown scrollable when using mouse wheel (#5988)
* Fix #5580
This commit is contained in:
		
				
					committed by
					
						
						techknowlogick
					
				
			
			
				
	
			
			
			
						parent
						
							f066bd2b3f
						
					
				
				
					commit
					4512634604
				
			
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							@@ -396,33 +396,12 @@ pre, code {
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.ui.floating.dropdown {
 | 
			
		||||
    .overflow.menu {
 | 
			
		||||
    .items {
 | 
			
		||||
        max-height: 300px;
 | 
			
		||||
        overflow-y: auto;
 | 
			
		||||
        .item {
 | 
			
		||||
            position: relative;
 | 
			
		||||
            cursor: pointer;
 | 
			
		||||
            display: block;
 | 
			
		||||
            border: none;
 | 
			
		||||
            height: auto;
 | 
			
		||||
            border-top: none;
 | 
			
		||||
            line-height: 1em;
 | 
			
		||||
            color: rgba(0,0,0,.8);
 | 
			
		||||
            padding: .71428571em 1.14285714em !important;
 | 
			
		||||
            font-size: 1rem;
 | 
			
		||||
            text-transform: none;
 | 
			
		||||
            font-weight: 400;
 | 
			
		||||
            box-shadow: none;
 | 
			
		||||
            -webkit-touch-callout: none;
 | 
			
		||||
            &.active {
 | 
			
		||||
                font-weight: 700;
 | 
			
		||||
            }
 | 
			
		||||
            &:hover {
 | 
			
		||||
                background: rgba(0,0,0,.05);
 | 
			
		||||
                color: rgba(0,0,0,.8);
 | 
			
		||||
                z-index: 13;
 | 
			
		||||
            }
 | 
			
		||||
        .scrolling.menu.items {
 | 
			
		||||
            border-radius: 0px !important;
 | 
			
		||||
            box-shadow: none !important;
 | 
			
		||||
            border-bottom: 1px solid rgba(34, 36, 38, 0.15);
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -11,7 +11,7 @@
 | 
			
		||||
					<div class="ui header">
 | 
			
		||||
						{{.i18n.Tr "home.switch_dashboard_context"}}
 | 
			
		||||
					</div>
 | 
			
		||||
					<div class="items">
 | 
			
		||||
					<div class="scrolling menu items">
 | 
			
		||||
						<a class="{{if eq .ContextUser.ID .SignedUser.ID}}active selected{{end}} item" href="{{AppSubUrl}}/{{if .PageIsIssues}}issues{{else if .PageIsPulls}}pulls{{end}}">
 | 
			
		||||
							<img class="ui avatar image" src="{{.SignedUser.RelAvatarLink}}">
 | 
			
		||||
							{{.SignedUser.Name}}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user