_form.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .es-cross-site-search-form {
  2. padding: 0 !important;
  3. border-width: 0 !important;
  4. > .fieldset-wrapper {
  5. padding: 0;
  6. }
  7. .form-group {
  8. float: left;
  9. margin-right: 5px;
  10. }
  11. select {
  12. @extend .form-control;
  13. }
  14. }
  15. .form-group {
  16. .form-control + .input-group-btn {
  17. .btn {
  18. border-top-right-radius: $border-radius !important;
  19. border-bottom-right-radius: $border-radius !important;
  20. margin-right: 0 !important;
  21. }
  22. }
  23. }
  24. .btn {
  25. cursor: pointer;
  26. }
  27. .btn-outline-secondary {
  28. border-color: #fff;
  29. color: #fff;
  30. }
  31. .btn-secondary {
  32. background-color: #fff;
  33. color: #888;
  34. border-color: $gray-500;
  35. &:hover {
  36. background-color: $gray-200;
  37. color: #666;
  38. }
  39. }
  40. input[type="radio"],
  41. input[type="checkbox"] {
  42. margin-right: 5px;
  43. + label {
  44. margin-bottom: 0 !important;
  45. font-weight: normal;
  46. }
  47. }
  48. .form-radios,
  49. .form-checkboxes {
  50. .form-group {
  51. margin-bottom: 5px;
  52. }
  53. }
  54. form label {
  55. font-weight: $font-weight-bold;
  56. }
  57. .form-required {
  58. color: theme-color(danger);
  59. }
  60. .container-inline {
  61. .form-group,
  62. .form-item {
  63. display: inline-block;
  64. }
  65. }