mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			129 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			CSS
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			129 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			CSS
		
	
	
	
		
			Vendored
		
	
	
	
| /*
 | |
|  * firefly.css
 | |
|  * Copyright (c) 2017 thegrumpydictator@gmail.com
 | |
|  *
 | |
|  * This file is part of Firefly III.
 | |
|  *
 | |
|  * Firefly III is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU General Public License as published by
 | |
|  * the Free Software Foundation, either version 3 of the License, or
 | |
|  * (at your option) any later version.
 | |
|  *
 | |
|  * Firefly III is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU General Public License
 | |
|  * along with Firefly III.  If not, see <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| #daterange {
 | |
|     cursor: pointer;
 | |
| }
 | |
| 
 | |
| .general-chart-error {
 | |
|     height: 30px;
 | |
|     background: url('/images/error.png') no-repeat center center;
 | |
| }
 | |
| 
 | |
| p.tagcloud .label {
 | |
|     line-height: 2;
 | |
| }
 | |
| 
 | |
| .handle {
 | |
|     cursor: move;
 | |
| }
 | |
| 
 | |
| body.waiting * {
 | |
|     cursor: progress;
 | |
| }
 | |
| 
 | |
| .preferences-box {
 | |
|     border: 1px #ddd solid;
 | |
|     border-radius: 4px 4px 0 0;
 | |
|     padding: 15px;
 | |
|     margin: 15px;
 | |
| }
 | |
| 
 | |
| #map-canvas {
 | |
|     height: 100%;
 | |
|     margin: 0;
 | |
|     padding: 0;
 | |
| }
 | |
| 
 | |
| .ff-error-page {
 | |
|     width: 1000px;
 | |
|     margin: 20px auto 0 auto;
 | |
| }
 | |
| 
 | |
| .ff-error-page > .error-content {
 | |
|     margin-left: 190px;
 | |
|     display: block;
 | |
| }
 | |
| 
 | |
| .ff-error-page > .error-content > h3 {
 | |
|     font-weight: 300;
 | |
|     font-size: 25px;
 | |
| }
 | |
| 
 | |
| .ff-error-box {
 | |
|     width: 460px;
 | |
|     margin: 7% auto;
 | |
| }
 | |
| 
 | |
| /* cursors */
 | |
| .rule-triggers {
 | |
|     cursor: move;
 | |
| }
 | |
| 
 | |
| .rule-actions {
 | |
|     cursor: move;
 | |
| }
 | |
| 
 | |
| .firefly-info-button {
 | |
|     cursor: pointer;
 | |
| }
 | |
| 
 | |
| #testTriggerModal .modal-body {
 | |
|     max-height: 500px;
 | |
|     overflow-y: scroll;
 | |
| }
 | |
| 
 | |
| .bootstrap-tagsinput {
 | |
|     margin-bottom: 10px;
 | |
|     width: 100%;
 | |
| }
 | |
| 
 | |
| .loading {
 | |
|     background: url('/images/loading-small.gif') no-repeat center center;
 | |
|     min-height: 30px;
 | |
| }
 | |
| 
 | |
| @media print {
 | |
|     a[href]:after {
 | |
|         content: none !important;
 | |
|     }
 | |
| }
 | |
| 
 | |
| .edit_tr_buttons {
 | |
|     white-space: nowrap;
 | |
| }
 | |
| 
 | |
| .edit_tr_buttons .btn {
 | |
|     float: none;
 | |
|     display: inline-block;
 | |
| }
 | |
| 
 | |
| span.info-box-text a, span.info-box-number a {
 | |
|     color: #000;
 | |
| }
 | |
| 
 | |
| span.info-box-icon a {
 | |
|     color: #fff;
 | |
| }
 | |
| 
 | |
| span.info-box-text a:hover, span.info-box-number a:hover {
 | |
|     color: #000;
 | |
|     text-decoration: underline;
 | |
| } |