Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
Customized Bootstrap Pagination
3
***/
4
 
5
.pagination {
6
	margin: 10px 0;
7
 
8
	&.pagination-circle {
9
	    > li {
10
 
11
	        &:first-child {
12
	            > a {
13
	            	border-radius: 25px 0 0 25px !important;
14
	        	}
15
	        }
16
 
17
	        &:last-child {
18
	            > a {
19
	            	border-radius: 0 25px 25px 0 !important;
20
	        	}
21
	        }
22
	    }
23
	}
24
 
25
 	.active > a,
26
	.active > a:hover {
27
  		background: #eee;
28
 	 	border-color: #dddddd;
29
 	 	color: #333;
30
	}
31
}