_elasticsearch.scss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. #edit-search-submit {
  2. height: auto !important;
  3. width: 100%;
  4. @extend .btn;
  5. margin: 0 !important;
  6. }
  7. #edit-search-box {
  8. @extend .form-control;
  9. &,
  10. &:hover {
  11. border-right: 0;
  12. }
  13. }
  14. .contextual-links-wrapper {
  15. top: -20px;
  16. }
  17. #edit-search {
  18. border: none !important;
  19. width: 100% !important;
  20. margin: 0 !important;
  21. }
  22. #block-tripal-elasticsearch-main-search-box {
  23. margin: 0 !important;
  24. width: 100% !important;
  25. }
  26. #block-tripal-elasticsearch-website-search-category {
  27. a {
  28. display: block;
  29. }
  30. .content > a:first-of-type {
  31. font-size: 18px;
  32. margin-bottom: 10px;
  33. }
  34. ul {
  35. list-style: none;
  36. margin-left: 0;
  37. padding-left: 0;
  38. li {
  39. a {
  40. margin-bottom: 5px;
  41. color: #777;
  42. &.active,
  43. &:hover {
  44. color: $link-color;
  45. text-decoration: none;
  46. }
  47. &.active {
  48. font-weight: bold;
  49. margin: 10px 0;
  50. }
  51. }
  52. }
  53. }
  54. }
  55. .elasticsearch-search-input {
  56. margin-bottom: 1rem;
  57. position: relative;
  58. .form-control {
  59. height: 48px;
  60. border-radius: 10px !important;
  61. border: 0;
  62. box-shadow: 0 0 1px rgba(#000, 0.5), 0 2px 2px rgba(#000, .125);
  63. &:focus,
  64. &:hover {
  65. box-shadow: 0 0 1px rgba(#000, 0.2), 0 3px 6px rgba(#000, .125);
  66. + .input-group-btn .btn {
  67. background-color: theme-color(primary);
  68. border-color: theme-color(primary);
  69. color: #fff;
  70. &:hover {
  71. background-color: darken(theme-color(primary), 10%);
  72. }
  73. }
  74. }
  75. &:focus {
  76. border: 1px solid lighten(theme-color(primary), 10%);
  77. }
  78. }
  79. .input-group-btn {
  80. position: absolute;
  81. right: -1px;
  82. top: 4px;
  83. z-index: 200;
  84. .btn {
  85. border-radius: 10px;
  86. width: 40px;
  87. height: 40px;
  88. line-height: 40px;
  89. text-align: center;
  90. padding: 0;
  91. cursor: pointer;
  92. color: theme-color(primary);
  93. background-color: #fff;
  94. border-color: #fff;
  95. }
  96. }
  97. }
  98. .es-search-form-in-home,
  99. .es-search-form-in-title {
  100. .elasticsearch-search-input {
  101. margin: 0 !important;
  102. }
  103. .form-control {
  104. box-shadow: 0 2px 5px rgba(#000, .125);
  105. &:focus,
  106. &:hover {
  107. box-shadow: 0 4px 10px rgba(#000, .2);
  108. border: 0;
  109. }
  110. }
  111. }
  112. .es-search-form-in-title {
  113. @include media-breakpoint-down(md) {
  114. .elasticsearch-search-input {
  115. margin-top: 1rem !important;
  116. .form-control {
  117. max-width: 100%;
  118. }
  119. }
  120. }
  121. .form-control {
  122. transition: max-width 250ms linear;
  123. max-width: 300px;
  124. margin-left: auto;
  125. height: 38px;
  126. &:focus {
  127. max-width: 100%;
  128. }
  129. }
  130. .input-group-btn {
  131. .btn {
  132. top: -2px;
  133. right: -2px;
  134. height: 33px;
  135. width: 33px;
  136. line-height: 33px;
  137. }
  138. }
  139. }
  140. .es-search-form-in-home {
  141. @extend .margin-top-1;
  142. .form-control {
  143. height: 51px;
  144. }
  145. .input-group-btn {
  146. right: -3px;
  147. top: 1px;
  148. .btn {
  149. width: 45px;
  150. height: 45px;
  151. line-height: 45px;
  152. }
  153. }
  154. }
  155. .card-block {
  156. @extend .card-body;
  157. }
  158. #es-search-results-table {
  159. table-layout: fixed !important;
  160. tbody > tr > td {
  161. word-break: break-all;
  162. padding: .5rem 0 0 0;
  163. h3 {
  164. font-size: 1rem !important;
  165. font-weight: bold !important;
  166. }
  167. p {
  168. font-size: 0.9rem;
  169. color: $gray-700;
  170. }
  171. }
  172. tbody > tr:first-of-type > td {
  173. border-top: 0;
  174. }
  175. }
  176. .es-search-form-in-title{
  177. .elasticsearch-search-input {
  178. .input-group-btn {
  179. right: -2px!important;
  180. top: 2px!important;
  181. }
  182. }
  183. }