mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-27 12:31:02 +00:00 
			
		
		
		
	I am not sure what "new-menu" means, but I think we need to fix these problems: 1. it shouldn't have "stackable", which makes the items stacked when width is small. the `new-menu` already has `overflow: auto` 2. `justify-content: center` doesn't work with `overflow: auto` (for small width), so use `margin: auto` * https://bhch.github.io/posts/2021/04/centring-flex-items-and-allowing-overflow-scroll/ 3. `runner-new-menu` is dead code (copying & pasting ?)
		
			
				
	
	
		
			92 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| .explore .navbar {
 | |
|   margin-bottom: 15px !important;
 | |
|   background-color: var(--color-navbar) !important;
 | |
|   border-width: 1px !important;
 | |
| }
 | |
| 
 | |
| .explore .navbar .svg {
 | |
|   width: 16px;
 | |
|   text-align: center;
 | |
|   margin-right: 5px;
 | |
| }
 | |
| 
 | |
| .ui.repository.list .item {
 | |
|   padding-bottom: 1.5rem;
 | |
| }
 | |
| 
 | |
| .ui.repository.list .item:not(:first-child) {
 | |
|   border-top: 1px solid var(--color-secondary);
 | |
|   padding-top: 1.5rem;
 | |
| }
 | |
| 
 | |
| .ui.repository.list .item .ui.header {
 | |
|   font-size: 1.5rem;
 | |
|   margin-bottom: 0.5rem;
 | |
| }
 | |
| 
 | |
| .ui.repository.list .item .ui.header .name {
 | |
|   word-break: break-all;
 | |
| }
 | |
| 
 | |
| .ui.repository.list .item .ui.header .metas {
 | |
|   font-size: 14px;
 | |
| }
 | |
| 
 | |
| .ui.repository.list .item .time {
 | |
|   font-size: 12px;
 | |
| }
 | |
| 
 | |
| .ui.repository.list .item .ui.tags {
 | |
|   margin-bottom: 0.5rem;
 | |
| }
 | |
| 
 | |
| .ui.repository.list .repo-title .labels {
 | |
|   word-break: normal;
 | |
|   flex-shrink: 0;
 | |
| }
 | |
| 
 | |
| .ui.repository.branches .info {
 | |
|   font-size: 12px;
 | |
|   color: var(--color-text-light);
 | |
|   display: flex;
 | |
|   white-space: pre;
 | |
| }
 | |
| 
 | |
| .ui.repository.branches .info .commit-message {
 | |
|   max-width: 72em;
 | |
|   overflow: hidden;
 | |
|   text-overflow: ellipsis;
 | |
| }
 | |
| 
 | |
| .ui.repository.branches .overflow-visible {
 | |
|   overflow: visible;
 | |
| }
 | |
| 
 | |
| /* fix alignment of PR popup in branches table */
 | |
| .ui.repository.branches table .ui.popup {
 | |
|   text-align: left;
 | |
| }
 | |
| 
 | |
| .ui.user.list .item {
 | |
|   padding-bottom: 25px;
 | |
|   display: flex;
 | |
| }
 | |
| 
 | |
| .ui.user.list .item:not(:first-child) {
 | |
|   border-top: 1px solid var(--color-secondary);
 | |
|   padding-top: 25px;
 | |
| }
 | |
| 
 | |
| .ui.user.list .item img.ui.avatar {
 | |
|   width: 40px;
 | |
|   height: 40px;
 | |
|   margin-right: 10px;
 | |
| }
 | |
| 
 | |
| .ui.user.list .item .description {
 | |
|   margin-top: 5px;
 | |
| }
 | |
| 
 | |
| .ui.user.list .item .description .svg:not(:first-child) {
 | |
|   margin-left: 5px;
 | |
| }
 |