Guest User

Untitled

a guest
Sep 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.61 KB | None | 0 0
  1. <button class="btn btn-primary" v-on:click="search()"
  2. type="button">{{$lang.ticketsSearch}}</button>
  3.  
  4. .btn {
  5. display: inline-block;
  6. padding: 6px 12px;
  7. margin-bottom: 0;
  8. font-size: 14px;
  9. font-weight: normal;
  10. line-height: 1.42857143;
  11. text-align: center;
  12. white-space: nowrap;
  13. vertical-align: middle;
  14. -ms-touch-action: manipulation;
  15. touch-action: manipulation;
  16. cursor: pointer;
  17. -webkit-user-select: none;
  18. -moz-user-select: none;
  19. -ms-user-select: none;
  20. user-select: none;
  21. background-image: none;
  22. border: 1px solid transparent;
  23. border-radius: 4px;
  24. }
  25. .btn:focus,
  26. .btn:active:focus,
  27. .btn.active:focus,
  28. .btn.focus,
  29. .btn:active.focus,
  30. .btn.active.focus {
  31. outline: 5px auto -webkit-focus-ring-color;
  32. outline-offset: -2px;
  33. }
  34. .btn:hover,
  35. .btn:focus,
  36. .btn.focus {
  37. color: #333;
  38. text-decoration: none;
  39. }
  40. .btn:active,
  41. .btn.active {
  42. background-image: none;
  43. outline: 0;
  44. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  45. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  46. }
  47. .btn.disabled,
  48. .btn[disabled],
  49. fieldset[disabled] .btn {
  50. cursor: not-allowed;
  51. filter: alpha(opacity=65);
  52. -webkit-box-shadow: none;
  53. box-shadow: none;
  54. opacity: .65;
  55. }
  56. a.btn.disabled,
  57. fieldset[disabled] a.btn {
  58. pointer-events: none;
  59. }
  60. .btn-primary {
  61. color: #fff;
  62. background-color: #337ab7;
  63. border-color: #2e6da4;
  64. }
  65. .btn-primary:focus,
  66. .btn-primary.focus {
  67. color: #fff;
  68. background-color: #286090;
  69. border-color: #122b40;
  70. }
  71. .btn-primary:hover {
  72. color: #fff;
  73. background-color: #286090;
  74. border-color: #204d74;
  75. }
  76. .btn-primary:active,
  77. .btn-primary.active,
  78. .open > .dropdown-toggle.btn-primary {
  79. color: #fff;
  80. background-color: #286090;
  81. border-color: #204d74;
  82. }
  83. .btn-primary:active:hover,
  84. .btn-primary.active:hover,
  85. .open > .dropdown-toggle.btn-primary:hover,
  86. .btn-primary:active:focus,
  87. .btn-primary.active:focus,
  88. .open > .dropdown-toggle.btn-primary:focus,
  89. .btn-primary:active.focus,
  90. .btn-primary.active.focus,
  91. .open > .dropdown-toggle.btn-primary.focus {
  92. color: #fff;
  93. background-color: #204d74;
  94. border-color: #122b40;
  95. }
  96. .btn-primary:active,
  97. .btn-primary.active,
  98. .open > .dropdown-toggle.btn-primary {
  99. background-image: none;
  100. }
  101. .btn-primary.disabled:hover,
  102. .btn-primary[disabled]:hover,
  103. fieldset[disabled] .btn-primary:hover,
  104. .btn-primary.disabled:focus,
  105. .btn-primary[disabled]:focus,
  106. fieldset[disabled] .btn-primary:focus,
  107. .btn-primary.disabled.focus,
  108. .btn-primary[disabled].focus,
  109. fieldset[disabled] .btn-primary.focus {
  110. background-color: #337ab7;
  111. border-color: #2e6da4;
  112. }
  113. .btn-primary .badge {
  114. color: #337ab7;
  115. background-color: #fff;
  116. }
Add Comment
Please, Sign In to add comment