mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 03:25:11 +01:00 
			
		
		
		
	Ran most of the Less files through the Less compiler and Prettier and then followed up with a round of manual fixes. The Less compiler had unfortunately stripped all `//` style comments that I had to restore (It did preserve `/* */` comments). Other fixes include duplicate selector removal which were revealed after the transpilation and which weren't caught by stylelint before but now are. Fixes: https://github.com/go-gitea/gitea/issues/15565
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| .runner-container {
 | |
|   padding-bottom: 30px;
 | |
| }
 | |
| 
 | |
| .runner-container .runner-ops > a {
 | |
|   margin-left: 0.5em;
 | |
| }
 | |
| 
 | |
| .runner-container .runner-ops-delete {
 | |
|   color: var(--color-red-light);
 | |
| }
 | |
| 
 | |
| .runner-container .runner-basic-info .gt-dib {
 | |
|   margin-right: 1em;
 | |
| }
 | |
| 
 | |
| .runner-container .runner-status-online {
 | |
|   padding: 0.3em 0.5em;
 | |
|   background-color: var(--color-green);
 | |
|   color: var(--color-white);
 | |
| }
 | |
| 
 | |
| .runner-container .runner-new-text {
 | |
|   color: var(--color-white);
 | |
| }
 | |
| 
 | |
| .runner-container #runner-new:hover .runner-new-text {
 | |
|   color: var(--color-white) !important;
 | |
| }
 | |
| 
 | |
| .runner-container .runner-new-menu {
 | |
|   width: 300px;
 | |
| }
 | |
| 
 | |
| .runner-container .task-status-success {
 | |
|   background-color: var(--color-green);
 | |
|   color: var(--color-white);
 | |
| }
 | |
| 
 | |
| .runner-container .task-status-failure {
 | |
|   background-color: var(--color-red-light);
 | |
|   color: var(--color-white);
 | |
| }
 | |
| 
 | |
| .runner-container .task-status-running {
 | |
|   background-color: var(--color-blue);
 | |
|   color: var(--color-white);
 | |
| }
 | |
| 
 | |
| .runner-container .task-status-cancelled,
 | |
| .runner-container .task-status-blocked {
 | |
|   background-color: var(--color-yellow);
 | |
|   color: var(--color-white);
 | |
| }
 |