Advertisement
Guest User

Untitled

a guest
May 27th, 2015
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.20 KB | None | 0 0
  1. /*
  2. David - 15 April 2015 - ccInvoices 2.0.7
  3. Added override CSS for stripe button
  4. So it looks like Bootstrap btn btn-warning
  5. */
  6. .stripe-button-el span {
  7. background: none !important;
  8. height: unset !important;
  9. min-height: unset !important;
  10. font-weight: normal !important;
  11. padding: 0px !important;
  12. border: 0px !important;
  13. -webkit-box-shadow: inset 0 0 0 !important;
  14. -moz-box-shadow: inset 0 0 0 !important;
  15. -ms-box-shadow: inset 0 0 0 !important;
  16. -o-box-shadow: inset 0 0 0 !important;
  17. box-shadow: inset 0 0 0 !important;
  18. font-size: 13px !important;
  19. line-height: 18px !important;
  20. text-align: center !important;
  21. vertical-align: middle !important;
  22.  
  23. }
  24. .stripe-button-el,.stripe-button-el:hover,.stripe-button-el:focus,.stripe-button-el:active.stripe-button-el:visited{
  25.  
  26. display: inline-block !important;
  27. padding: 4px 12px !important;
  28. margin-bottom: 0 !important;
  29. font-size: 13px !important;
  30. line-height: 18px !important;
  31. text-align: center !important;
  32. vertical-align: middle !important;
  33. cursor: pointer !important;
  34. color: #333 !important;
  35.  
  36. background-color: #f5f5f5 !important;
  37. background-image: -moz-linear-gradient(top,#fff,#e6e6e6) !important;
  38. background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6)) !important;
  39. background-image: -webkit-linear-gradient(top,#fff,#e6e6e6) !important;
  40. background-image: -o-linear-gradient(top,#fff,#e6e6e6) !important;
  41. background-image: linear-gradient(to bottom,#fff,#e6e6e6) !important;
  42. background-repeat: repeat-x !important;
  43.  
  44. -webkit-border-radius: 4px !important;
  45. -moz-border-radius: 4px !important;
  46. border-radius: 4px !important;
  47. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05) !important;
  48. -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05) !important;
  49. /* box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05); */
  50.  
  51. background:-webkit-linear-gradient(top, #fbb450 0%, #f89406 100%) !important;
  52. background:-moz-linear-gradient(top, #fbb450 0%, #f89406 100%) !important;
  53. background:-ms-linear-gradient(top, #fbb450 0%, #f89406 100%) !important;
  54. background:-o-linear-gradient(top, #fbb450 0%, #f89406 100%) !important;
  55. background:linear-gradient(to bottom, #fbb450 0%, #f89406 100%) !important;
  56.  
  57. background-color: #f89406 !important;
  58. -webkit-appearance: button !important;
  59.  
  60. text-shadow: 0 -1px 0 rgba(0,0,0,0.25) !important;
  61. background-image: -moz-linear-gradient(top,#fbb450,#f89406) !important;
  62. background-image: -webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406)) !important;
  63. background-image: -webkit-linear-gradient(top,#fbb450,#f89406) !important;
  64. background-image: -o-linear-gradient(top,#fbb450,#f89406) !important;
  65. background-image: linear-gradient(to bottom,#fbb450,#f89406) !important;
  66. background-repeat: repeat-x !important;
  67. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false), startColorstr='#fffab44f', endColorstr='#fff89406', GradientType=0) !important;
  68. box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05) !important;
  69.  
  70. border: 1px solid !important;
  71. border-color: #f89406 #f89406 #ad6704 !important;
  72.  
  73. }
  74.  
  75. .stripe-button-el span:after {
  76. font-family: 'Icomoon';
  77. content: '\e006';
  78. padding-left: 0px;
  79. position: relative;
  80.  
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement