You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					42 lines
				
				760 B
			
		
		
			
		
	
	
					42 lines
				
				760 B
			| 
											3 years ago
										 | .ProseMirror .tableWrapper { | ||
|  |   overflow-x: auto; | ||
|  | } | ||
|  | .ProseMirror table { | ||
|  |   border-collapse: collapse; | ||
|  |   table-layout: fixed; | ||
|  |   width: 100%; | ||
|  |   overflow: hidden; | ||
|  | } | ||
|  | .ProseMirror td, | ||
|  | .ProseMirror th { | ||
|  |   vertical-align: top; | ||
|  |   box-sizing: border-box; | ||
|  |   position: relative; | ||
|  | } | ||
|  | .ProseMirror .column-resize-handle { | ||
|  |   position: absolute; | ||
|  |   right: -2px; | ||
|  |   top: 0; | ||
|  |   bottom: 0; | ||
|  |   width: 4px; | ||
|  |   z-index: 20; | ||
|  |   background-color: #adf; | ||
|  |   pointer-events: none; | ||
|  | } | ||
|  | .ProseMirror.resize-cursor { | ||
|  |   cursor: ew-resize; | ||
|  |   cursor: col-resize; | ||
|  | } | ||
|  | /* Give selected cells a blue overlay */ | ||
|  | .ProseMirror .selectedCell:after { | ||
|  |   z-index: 2; | ||
|  |   position: absolute; | ||
|  |   content: ''; | ||
|  |   left: 0; | ||
|  |   right: 0; | ||
|  |   top: 0; | ||
|  |   bottom: 0; | ||
|  |   background: rgba(200, 200, 255, 0.4); | ||
|  |   pointer-events: none; | ||
|  | } |