32 lines
553 B
CSS
32 lines
553 B
CSS
/* add sorting icons to pagination sort links */
|
|
a.asc:after, a.desc:after {
|
|
position: relative;
|
|
top: 1px;
|
|
display: inline-block;
|
|
font-family: 'Glyphicons Halflings';
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
line-height: 1;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
a.asc:after {
|
|
content: /*"\e113"*/ /*"\e155"*/ "\e151";
|
|
}
|
|
|
|
a.desc:after {
|
|
content: /*"\e114"*/ /*"\e156"*/ "\e152";
|
|
}
|
|
|
|
|
|
.btn-primary-custom{
|
|
border: 0px;
|
|
padding: 13px 16px
|
|
}
|
|
.btn-primary-custom:hover{
|
|
border: 0px;
|
|
}
|
|
|
|
.btn-primary-custom:active{
|
|
border: 0px;
|
|
} |