multipage.css 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. .multipage-controls-list #edit-actions {
  2. float: left; /* LTR */
  3. }
  4. .multipage-button {
  5. margin-bottom: 1em;
  6. margin-top: 0;
  7. float: left; /* LTR */
  8. line-height: 36px;
  9. }
  10. .multipage-button a {
  11. padding-top: 10px;
  12. }
  13. .multipage-counter {
  14. float: right; /* LTR */
  15. margin-right: 5px; /* LTR */
  16. height: 0;
  17. position: relative;
  18. top: 1.8em;
  19. line-height: 30px;
  20. font: 12px arial,sans-serif;
  21. font-weight: bold;
  22. color:#666;
  23. }
  24. a.multipage-link-previous {
  25. font: 12px arial,sans-serif;
  26. font-weight: bold;
  27. color:#666;
  28. -webkit-transition: color 218ms;
  29. -moz-transition: color 218ms;
  30. -o-transition: color 218ms;
  31. transition: color 218ms;
  32. }
  33. a.multipage-link-previous:hover {
  34. text-decoration:none;
  35. color: #333;
  36. }
  37. .multipage-controls-list input.form-submit {
  38. background:none;
  39. border: none;
  40. border-radius: 2px;
  41. -moz-border-radius: 2px;
  42. -webkit-border-radius: 2px;
  43. border: 1px solid rgba(0, 0, 0, 0.1);
  44. font: 12px arial,sans-serif;
  45. font-weight: bold;
  46. color: #666;
  47. text-shadow: 0 1px 0 white;
  48. padding: 7px 12px;
  49. background: -webkit-gradient(linear,0% 40%,0% 70%,from(whiteSmoke),to(#F1F1F1));
  50. -o-transition: border-top-color 0.218s,border-right-color 0.218s,border-bottom-color 0.218s,border-left-color .218s;
  51. -webkit-transition: border-color .218s;
  52. }
  53. .multipage-controls-list input.form-submit:hover {
  54. color:#333;
  55. box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  56. -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  57. border-color: #939393;
  58. }
  59. .multipage-controls-list input.form-submit:active {
  60. background: -webkit-gradient(linear,0% 40%,0% 70%,from(#F1F1F1),to(whiteSmoke));
  61. }
  62. .multipage-controls-list input#edit-submit {
  63. background: #4D90FE; /* for non-css3 browsers */
  64. background-image: #4D90FE; /* for non-css3 browsers */
  65. background-image: -o-linear-gradient(top,#4d90fe,#4787ed);
  66. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4D90FE', endColorstr='#4787ED'); /* for IE */
  67. background: -webkit-gradient(linear, center top, center bottom, from(#4D90FE), to(#4787ED)); /* for webkit browsers */
  68. background: -moz-linear-gradient(center top, #4D90FE, #4787ED); /* for firefox 3.6+ */
  69. color: white;
  70. text-shadow: none;
  71. text-transform: uppercase;
  72. min-width: 79px;
  73. }
  74. .multipage-controls-list input#edit-submit:hover {
  75. background-image: -moz-linear-gradient(top,#4d90fe,#357ae8);
  76. background-image: -o-linear-gradient(top,#4d90fe,#357ae8);
  77. background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#357ae8));
  78. color: white;
  79. text-shadow: none;
  80. box-shadow: 0 1px 1px rgba(0,0,0,0.2);
  81. -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
  82. }
  83. .multipage-controls-list input#edit-submit:active {
  84. background: #4D90FE;
  85. border-color: #2F5BB7;
  86. }
  87. .multipage-controls-list input#edit-delete {
  88. background-image: -moz-linear-gradient(top,#dd4b39,#d14836);
  89. background-image: -o-linear-gradient(top,#dd4b39,#d14836);
  90. background-image: -webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#d14836));
  91. text-shadow: 0 1px rgba(0, 0, 0, 0.1);
  92. border: 1px solid transparent;
  93. color: white;
  94. text-shadow: none;
  95. }
  96. .multipage-controls-list input#edit-delete:hover {
  97. background-image: -moz-linear-gradient(top,#dd4b39,#c53727);
  98. background-image: -o-linear-gradient(top,#dd4b39,#c53727);
  99. background-image: -webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#c53727));
  100. border: 1px solid #B0281A!important;
  101. border-bottom: 1px solid #AF301F!important;
  102. box-shadow: 0 1px 1px rgba(0,0,0,0.2);
  103. -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
  104. color: white;
  105. }
  106. .multipage-controls-list input#edit-delete:active {
  107. background-image: -moz-linear-gradient(top,#dd4b39,#b0281a);
  108. background-image: -o-linear-gradient(top,#dd4b39,#b0281a);
  109. background-image: -webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#b0281a));
  110. border: 1px solid #992A1b!important;
  111. box-shadow: 0 1px 2px rgba(0,0,0,0.3);
  112. -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.3);
  113. }