pagination.css 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. @charset "UTF-8";
  2. /**
  3. * @version: v1.7
  4. * @author: xgc-whj
  5. * @date: 2018-05-25 21:40:00
  6. * @license: MIT license release
  7. * @jq22 address: http://www.jq22.com/jquery-info17548
  8. * @GitHub: https://github.com/w0624/jquery-pagination
  9. * @description: jQuery分页插件,可自定义样式,默认有五套样式,可自定义插件选项,简单方便,兼容IE8
  10. */
  11. /*ccs-1*/
  12. .whj_jqueryPaginationCss-1 {
  13. display: inline-block;
  14. user-select: none;
  15. -webkit-user-select: none;
  16. -moz-user-select: none;
  17. -ms-user-select: none;
  18. }
  19. .whj_jqueryPaginationCss-1 div {
  20. display: inline-block;
  21. vertical-align: bottom;
  22. height: 24px;
  23. line-height: 24px;
  24. }
  25. .whj_jqueryPaginationCss-1 .whj_padding {
  26. padding: 1px 9px;
  27. }
  28. .whj_jqueryPaginationCss-1 .whj_bgc {
  29. background-color: #fff;
  30. color: #698ca9;
  31. }
  32. .whj_jqueryPaginationCss-1 .whj_border {
  33. border: 1px solid #5b9fd6;
  34. }
  35. .whj_jqueryPaginationCss-1 .whj_color {
  36. color: #698ca9;
  37. }
  38. .whj_jqueryPaginationCss-1 .whj_hover:hover {
  39. background-color: #d4f1ff;
  40. color: #698ca9;
  41. cursor: pointer;
  42. }
  43. .whj_jqueryPaginationCss-1 .whj_checked {
  44. background-color: #d4f1ff;
  45. color: #698ca9;
  46. }
  47. .whj_jqueryPaginationCss-1 .whj_hoverDisable {
  48. opacity: 0.5;
  49. filter: alpha(opacity=50);
  50. }
  51. .whj_jqueryPaginationCss-1 select {
  52. height: 28px;
  53. vertical-align: bottom;
  54. padding: 0px;
  55. outline: none;
  56. }
  57. .whj_jqueryPaginationCss-1 input {
  58. padding: 0px;
  59. height: 26px;
  60. outline: none;
  61. text-align: center;
  62. width: 60px;
  63. vertical-align: bottom;
  64. }
  65. .whj_jqueryPaginationCss-1 div, .whj_jqueryPaginationCss-1 input, .whj_jqueryPaginationCss-1 select {
  66. margin: 2px;
  67. }
  68. /*只有设置显示总页数时,该样式才生效*/
  69. .whj_jqueryPaginationCss-1 .whj_totalSizeSingle {
  70. margin-left: -8px;
  71. }
  72. /*ccs-2*/
  73. .whj_jqueryPaginationCss-2 {
  74. display: inline-block;
  75. user-select: none;
  76. -webkit-user-select: none;
  77. -moz-user-select: none;
  78. -ms-user-select: none;
  79. }
  80. .whj_jqueryPaginationCss-2 div {
  81. display: inline-block;
  82. vertical-align: bottom;
  83. height: 24px;
  84. line-height: 24px;
  85. }
  86. .whj_jqueryPaginationCss-2 .whj_padding {
  87. padding: 1px 9px;
  88. }
  89. .whj_jqueryPaginationCss-2 .whj_bgc {
  90. background-color: #5194ca;
  91. color: #fff;
  92. }
  93. .whj_jqueryPaginationCss-2 .whj_border {
  94. border: 1px solid #5194ca;
  95. }
  96. .whj_jqueryPaginationCss-2 .whj_color {
  97. color: #5194ca;
  98. }
  99. .whj_jqueryPaginationCss-2 .whj_hover:hover {
  100. background-color: #d4f1ff;
  101. color: #5194ca;
  102. cursor: pointer;
  103. }
  104. .whj_jqueryPaginationCss-2 .whj_checked {
  105. background-color: #d4f1ff;
  106. color: #5194ca;
  107. }
  108. .whj_jqueryPaginationCss-2 .whj_hoverDisable {
  109. opacity: 0.7;
  110. filter: alpha(opacity=70);
  111. }
  112. .whj_jqueryPaginationCss-2 select {
  113. height: 28px;
  114. vertical-align: bottom;
  115. padding: 0px;
  116. outline: none;
  117. }
  118. .whj_jqueryPaginationCss-2 input {
  119. padding: 0px;
  120. height: 26px;
  121. outline: none;
  122. text-align: center;
  123. width: 60px;
  124. vertical-align: bottom;
  125. }
  126. .whj_jqueryPaginationCss-2 div, .whj_jqueryPaginationCss-2 input, .whj_jqueryPaginationCss-2 select {
  127. margin: 2px;
  128. }
  129. /*只有设置显示总页数时,该样式才生效*/
  130. .whj_jqueryPaginationCss-2 .whj_totalSizeSingle {
  131. margin-left: -8px;
  132. }
  133. /*ccs-3*/
  134. .whj_jqueryPaginationCss-3 {
  135. display: inline-block;
  136. user-select: none;
  137. -webkit-user-select: none;
  138. -moz-user-select: none;
  139. -ms-user-select: none;
  140. }
  141. .whj_jqueryPaginationCss-3 div {
  142. display: inline-block;
  143. vertical-align: bottom;
  144. height: 24px;
  145. line-height: 24px;
  146. }
  147. .whj_jqueryPaginationCss-3 .whj_padding {
  148. padding: 1px 9px;
  149. }
  150. .whj_jqueryPaginationCss-3 .whj_bgc {
  151. background-color: #7a7b7b;
  152. color: #fff;
  153. }
  154. .whj_jqueryPaginationCss-3 .whj_border {
  155. border: 1px solid #929292;
  156. }
  157. .whj_jqueryPaginationCss-3 .whj_color {
  158. color: #929292;
  159. }
  160. .whj_jqueryPaginationCss-3 .whj_hover:hover {
  161. background-color: #e0dddd;
  162. color: #7a7b7b;
  163. cursor: pointer;
  164. }
  165. .whj_jqueryPaginationCss-3 .whj_checked {
  166. background-color: #e0dddd;
  167. color: #7a7b7b;
  168. }
  169. .whj_jqueryPaginationCss-3 .whj_hoverDisable {
  170. opacity: 0.5;
  171. filter: alpha(opacity=50);
  172. }
  173. .whj_jqueryPaginationCss-3 select {
  174. height: 28px;
  175. vertical-align: bottom;
  176. padding: 0px;
  177. outline: none;
  178. }
  179. .whj_jqueryPaginationCss-3 input {
  180. padding: 0px;
  181. height: 26px;
  182. outline: none;
  183. text-align: center;
  184. width: 60px;
  185. vertical-align: bottom;
  186. }
  187. .whj_jqueryPaginationCss-3 div, .whj_jqueryPaginationCss-3 input, .whj_jqueryPaginationCss-3 select {
  188. margin: 2px;
  189. }
  190. /*只有设置显示总页数时,该样式才生效*/
  191. .whj_jqueryPaginationCss-3 .whj_totalSizeSingle {
  192. margin-left: -8px;
  193. }
  194. /*ccs-4*/
  195. .whj_jqueryPaginationCss-4 {
  196. display: inline-block;
  197. user-select: none;
  198. -webkit-user-select: none;
  199. -moz-user-select: none;
  200. -ms-user-select: none;
  201. }
  202. .whj_jqueryPaginationCss-4 div {
  203. display: inline-block;
  204. vertical-align: bottom;
  205. height: 24px;
  206. line-height: 24px;
  207. }
  208. .whj_jqueryPaginationCss-4 .whj_padding {
  209. padding: 1px 9px;
  210. }
  211. .whj_jqueryPaginationCss-4 .whj_bgc {
  212. background-color: #f5f5f5;
  213. color: #907272;
  214. }
  215. .whj_jqueryPaginationCss-4 .whj_border {
  216. border: 1px solid #907272;
  217. }
  218. .whj_jqueryPaginationCss-4 .whj_color {
  219. color: #907272;
  220. }
  221. .whj_jqueryPaginationCss-4 .whj_hover:hover {
  222. background-color: #afacac;
  223. color: #fff;
  224. cursor: pointer;
  225. }
  226. .whj_jqueryPaginationCss-4 .whj_checked {
  227. background-color: #afacac;
  228. color: #fff;
  229. }
  230. .whj_jqueryPaginationCss-4 .whj_hoverDisable {
  231. opacity: 0.5;
  232. filter: alpha(opacity=50);
  233. }
  234. .whj_jqueryPaginationCss-4 select {
  235. height: 28px;
  236. vertical-align: bottom;
  237. padding: 0px;
  238. outline: none;
  239. }
  240. .whj_jqueryPaginationCss-4 input {
  241. padding: 0px;
  242. height: 26px;
  243. outline: none;
  244. text-align: center;
  245. width: 60px;
  246. vertical-align: bottom;
  247. }
  248. .whj_jqueryPaginationCss-4 div, .whj_jqueryPaginationCss-4 input, .whj_jqueryPaginationCss-4 select {
  249. margin: 2px;
  250. }
  251. /*只有设置显示总页数时,该样式才生效*/
  252. .whj_jqueryPaginationCss-4 .whj_totalSizeSingle {
  253. margin-left: -8px;
  254. }
  255. /*ccs-5*/
  256. .whj_jqueryPaginationCss-5 {
  257. display: inline-block;
  258. user-select: none;
  259. -webkit-user-select: none;
  260. -moz-user-select: none;
  261. -ms-user-select: none;
  262. }
  263. .whj_jqueryPaginationCss-5 div {
  264. display: inline-block;
  265. vertical-align: bottom;
  266. height: 24px;
  267. line-height: 24px;
  268. }
  269. .whj_jqueryPaginationCss-5 .whj_padding {
  270. padding: 1px 9px;
  271. }
  272. .whj_jqueryPaginationCss-5 .whj_bgc {
  273. background-color: #199eaf;
  274. color: #fff;
  275. }
  276. .whj_jqueryPaginationCss-5 .whj_border {
  277. border: 1px solid #199eaf;
  278. }
  279. .whj_jqueryPaginationCss-5 .whj_color {
  280. color: #199eaf;
  281. }
  282. .whj_jqueryPaginationCss-5 .whj_hover:hover {
  283. background-color: #d4f1ff;
  284. color: #199eaf;
  285. cursor: pointer;
  286. }
  287. .whj_jqueryPaginationCss-5 .whj_checked {
  288. background-color: #d4f1ff;
  289. color: #199eaf;
  290. }
  291. .whj_jqueryPaginationCss-5 .whj_hoverDisable {
  292. opacity: 0.5;
  293. filter: alpha(opacity=50);
  294. }
  295. .whj_jqueryPaginationCss-5 select {
  296. height: 28px;
  297. vertical-align: bottom;
  298. padding: 0px;
  299. outline: none;
  300. }
  301. .whj_jqueryPaginationCss-5 input {
  302. padding: 0px;
  303. height: 26px;
  304. outline: none;
  305. text-align: center;
  306. width: 60px;
  307. vertical-align: bottom;
  308. }
  309. .whj_jqueryPaginationCss-5 div, .whj_jqueryPaginationCss-5 input, .whj_jqueryPaginationCss-5 select {
  310. margin: 2px;
  311. }
  312. /*只有设置显示总页数时,该样式才生效*/
  313. .whj_jqueryPaginationCss-5 .whj_totalSizeSingle {
  314. margin-left: -8px;
  315. }