1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-06-08 00:42:28 +02:00
TableFilter/static/style/paging.styl

74 lines
2 KiB
Stylus
Raw Normal View History

2015-08-04 10:38:40 +02:00
/**
* Paging default style
*/
2015-08-09 07:18:09 +02:00
@import 'config'
2015-08-04 10:38:40 +02:00
2015-08-07 16:23:32 +02:00
filter()
height $filter-height
margin 0
border 1px solid $filter-border-color
background-color $filter-bg-color
&:focus
border-color #66AFE9
outline 0 none
box-shadow 0 1px 1px rgba(0, 0, 0, 0.075) inset,
0 0 8px rgba(102, 175, 233, 0.6)
2015-08-04 10:38:40 +02:00
// paging drop-down list
select.pgSlc
2015-08-07 16:23:32 +02:00
filter()
vertical-align middle
2015-08-04 10:38:40 +02:00
// paging text-box
input.pgNbInp
2015-08-07 16:23:32 +02:00
filter()
width $min-width
2015-08-04 10:38:40 +02:00
// paging buttons (Next/Previous)
input.pgInp
2015-08-07 16:23:32 +02:00
filter()
vertical-align middle
width $min-width
border 0
font-weight bold
2015-08-04 10:38:40 +02:00
.nextPage
@extends input.pgInp
background transparent url(themes/btn_next_page.gif) center center no-repeat !important
2015-08-06 07:27:09 +02:00
&:hover
2015-08-04 10:38:40 +02:00
background-color $paging-nav-button-bg-color-hover !important
.previousPage
@extends input.pgInp
background transparent url(themes/btn_previous_page.gif) center center no-repeat !important
2015-08-06 07:27:09 +02:00
&:hover
2015-08-04 10:38:40 +02:00
background-color $paging-nav-button-bg-color-hover !important
.firstPage
@extends input.pgInp
background transparent url(themes/btn_first_page.gif) center center no-repeat !important
2015-08-06 07:27:09 +02:00
&:hover
2015-08-04 10:38:40 +02:00
background-color $paging-nav-button-bg-color-hover !important
.lastPage
@extends input.pgInp
background transparent url(themes/btn_last_page.gif) center center no-repeat !important
2015-08-06 07:27:09 +02:00
&:hover
2015-08-04 10:38:40 +02:00
background-color $paging-nav-button-bg-color-hover !important
// paging nb pages
span.nbpg
2015-08-07 16:23:32 +02:00
padding 0 5px
2015-08-04 10:38:40 +02:00
// results per page select
select.rspg
2015-08-07 16:23:32 +02:00
filter()
margin 0 0 0 5px
vertical-align middle
2015-08-04 10:38:40 +02:00
// results per page select label
span.rspgSpan
2015-08-07 16:23:32 +02:00
font-size inherit