mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	
		
			
	
	
		
			70 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
		
		
			
		
	
	
			70 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
|   | /* | ||
|  |   Copyright (c) Microsoft Corporation. | ||
|  | 
 | ||
|  |   Licensed under the Apache License, Version 2.0 (the "License"); | ||
|  |   you may not use this file except in compliance with the License. | ||
|  |   You may obtain a copy of the License at | ||
|  | 
 | ||
|  |       http://www.apache.org/licenses/LICENSE-2.0 | ||
|  | 
 | ||
|  |   Unless required by applicable law or agreed to in writing, software | ||
|  |   distributed under the License is distributed on an "AS IS" BASIS, | ||
|  |   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
|  |   See the License for the specific language governing permissions and | ||
|  |   limitations under the License. | ||
|  | */ | ||
|  | 
 | ||
|  | .test-case-column { | ||
|  |   border-radius: 6px; | ||
|  |   margin: 24px 0; | ||
|  | } | ||
|  | 
 | ||
|  | .test-case-column .tab-element.selected { | ||
|  |   font-weight: 600; | ||
|  |   border-bottom-color: var(--color-primer-border-active); | ||
|  | } | ||
|  | 
 | ||
|  | .test-case-column .tab-element { | ||
|  |   border: none; | ||
|  |   color: var(--color-fg-default); | ||
|  |   border-bottom: 2px solid transparent; | ||
|  | } | ||
|  | 
 | ||
|  | .test-case-column .tab-element:hover { | ||
|  |   color: var(--color-fg-default); | ||
|  | } | ||
|  | 
 | ||
|  | .test-case-title { | ||
|  |   flex: none; | ||
|  |   padding: 8px; | ||
|  |   font-weight: 400; | ||
|  |   font-size: 32px !important; | ||
|  |   line-height: 1.25 !important; | ||
|  | } | ||
|  | 
 | ||
|  | .test-case-location { | ||
|  |   flex: none; | ||
|  |   align-items: center; | ||
|  |   padding: 0 8px 24px; | ||
|  | } | ||
|  | 
 | ||
|  | .test-case-path { | ||
|  |   flex: none; | ||
|  |   align-items: center; | ||
|  |   padding: 0 8px; | ||
|  | } | ||
|  | 
 | ||
|  | .test-case-annotation { | ||
|  |   flex: none; | ||
|  |   align-items: center; | ||
|  |   padding: 0 8px; | ||
|  |   line-height: 24px; | ||
|  | } | ||
|  | 
 | ||
|  | @media only screen and (max-width: 600px) { | ||
|  |   .test-case-column { | ||
|  |     border-radius: 0 !important; | ||
|  |     margin: 0 !important; | ||
|  |   } | ||
|  | } |