h5.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .tui-search-result-h5 {
  2. background-color: #f4f4f4;
  3. .tui-search-result-main {
  4. background-color: #f4f4f4;
  5. .tui-search-result-list {
  6. .tui-search-result-list-item {
  7. background-color: #fff;
  8. padding: 0 10px 10px;
  9. border-radius: 5px;
  10. margin-bottom: 10px;
  11. }
  12. }
  13. }
  14. .tui-search-result-detail {
  15. background-color: #f4f4f4;
  16. border: none;
  17. .list-item {
  18. margin: 0 10px;
  19. width: calc(100% - 20px);
  20. }
  21. .list-group-date {
  22. padding: 10px;
  23. }
  24. .list-group-image {
  25. .list-group-item {
  26. .search-result-list-item-h5 {
  27. padding: 0;
  28. }
  29. }
  30. }
  31. .list-group-file {
  32. .list-group-item {
  33. background-color: #fff;
  34. padding: 0 10px;
  35. border-bottom: 1px solid #f4f4f4;
  36. .search-result-list-item-h5 {
  37. padding: 0 0 10px;
  38. }
  39. &:last-child {
  40. border-bottom: none;
  41. }
  42. }
  43. }
  44. }
  45. }
  46. .search-result-loading,
  47. .search-result-default {
  48. width: 100%;
  49. flex: 1;
  50. display: flex;
  51. justify-content: center;
  52. align-items: center;
  53. &-h5 {
  54. background-color: #f4f4f4;
  55. }
  56. }