Dashboard sipadu mbip
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

jqpagination.css 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .jqpagination {
  2. display: inline-block;
  3. border: 1px solid #CDCDCD;
  4. border-radius: 3px; }
  5. .jqpagination a {
  6. display: block;
  7. float: left;
  8. width: 20px;
  9. height: 30px;
  10. outline: none;
  11. border-right: 1px solid #CDCDCD;
  12. border-left: 1px solid #CDCDCD;
  13. color: #555555;
  14. vertical-align: middle;
  15. text-align: center;
  16. text-decoration: none;
  17. font-weight: bold;
  18. font-size: 16px;
  19. font-family: Times, 'Times New Roman', Georgia, Palatino;
  20. /* ATTN: need a better font stack */
  21. background-color: #f3f3f3;
  22. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f3f3f3), color-stop(100%, lightgrey));
  23. background-image: -webkit-linear-gradient(#f3f3f3, lightgrey);
  24. background-image: linear-gradient(#f3f3f3, lightgrey); }
  25. .jqpagination a:hover, .jqpagination a:focus, .jqpagination a:active {
  26. background-color: #cecece;
  27. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e4e4e4), color-stop(100%, #cecece));
  28. background-image: -webkit-linear-gradient(#e4e4e4, #cecece);
  29. background-image: linear-gradient(#e4e4e4, #cecece); }
  30. .jqpagination a.disabled, .jqpagination a.disabled:hover, .jqpagination a.disabled:focus, .jqpagination a.disabled:active {
  31. background-color: #f3f3f3;
  32. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f3f3f3), color-stop(100%, lightgrey));
  33. background-image: -webkit-linear-gradient(#f3f3f3, lightgrey);
  34. background-image: linear-gradient(#f3f3f3, lightgrey);
  35. color: #A8A8A8;
  36. cursor: default; }
  37. .jqpagination a:first-child {
  38. border: none;
  39. border-radius: 2px 0 0 2px; }
  40. .jqpagination a:last-child {
  41. border: none;
  42. border-radius: 0 2px 2px 0; }
  43. .jqpagination input {
  44. float: left;
  45. margin:5px 0 ;
  46. padding: 0;
  47. width: 120px;
  48. height: 20px;
  49. outline: none;
  50. border: none;
  51. vertical-align: middle;
  52. text-align: center; }
  53. /* gigantic class for demo purposes */
  54. .gigantic.jqpagination {
  55. margin: 30px 0; }
  56. .gigantic.jqpagination a {
  57. height: 60px;
  58. width: 60px;
  59. font-size: 50px;
  60. line-height: 50px; }
  61. .gigantic.jqpagination input {
  62. width: 300px;
  63. height: 60px;
  64. font-size: 30px; }
  65. /* log element for demo purposes */
  66. .log {
  67. display: none;
  68. background-color: #EDEDED;
  69. border: 1px solid #B4B4B4;
  70. height: 300px;
  71. width: 524px;
  72. overflow: auto;
  73. margin-left: 0;
  74. list-style: none;
  75. padding: 10px; }
  76. .log li {
  77. margin-top: 0;
  78. margin-bottom: 5px; }