74 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| #ace-editor {
 | |
| 	position: relative;        
 | |
| 	width: 100%;
 | |
| 	height: 500px;
 | |
| 	border: 1px solid #ccc;
 | |
| 	border-top: 0px;
 | |
| }
 | |
| 
 | |
| #editor {
 | |
| 	width: 100%;
 | |
| 	height: 500px;
 | |
| 	border: 1px solid #ccc;
 | |
| 	border-top: 0px;
 | |
| 	display: inherit;
 | |
| }
 | |
| 
 | |
| #id_commitMsg_wrapper {
 | |
| 	margin-top: 3px;
 | |
| }
 | |
| 
 | |
| .fade.in {
 | |
| 	-webkit-transition: opacity 0.5s 0.5s ease;
 | |
| 	-moz-transition: opacity 0.5s 0.5s ease;
 | |
| 	-o-transition: opacity 0.5s 0.5s ease;
 | |
| 	transition: opacity 0.5s 0.5s ease;
 | |
| }
 | |
| 
 | |
| #new-wiki-form-wrapper {
 | |
| 	display: none;
 | |
| }
 | |
| 
 | |
| #wikis-index {
 | |
| 	width: 100%;
 | |
| }
 | |
| 
 | |
| td > i {
 | |
| 	padding: 7px 5px;
 | |
| 	cursor: pointer;
 | |
| }
 | |
| 
 | |
| #wikis-index th:nth-child(1),
 | |
| #wikis-index td:nth-child(1){
 | |
| 	padding: 7px 3px 7px 10px;
 | |
| }
 | |
| 
 | |
| #wikis-index th:nth-last-child(1),
 | |
| #wikis-index td:nth-last-child(1){
 | |
| 	padding-right: 10px;
 | |
| }
 | |
| 
 | |
| pre code {
 | |
| 	background: #F5F5F5;
 | |
| 	font-family: Courier, monospace;
 | |
| 	font-size: 1em;
 | |
| 	padding: 1em 1.5em;
 | |
| 	display: block;
 | |
| 	white-space: pre-wrap;
 | |
| 	word-break: break-all;
 | |
| }
 | |
| 
 | |
| code {
 | |
| 	background: #F5F5F5;
 | |
| 	font-family: Courier, monospace;
 | |
| 	font-size: 1em;
 | |
| 	display: inline;
 | |
| 	padding: 0.2em 0.2em;
 | |
| 	white-space: pre-wrap;
 | |
| 	word-break: break-all;
 | |
| }
 | |
| 
 | |
| #wiki-content-container code {
 | |
| 	background: #F5F5F5;
 | |
| }
 |