search_api.admin.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /**
  2. * @file
  3. * Administration styles for the Search API module.
  4. */
  5. /*
  6. * Search API overview page
  7. */
  8. .search-api-entity-list {
  9. margin-bottom: 2em;
  10. }
  11. .search-api-entity-list tr {
  12. border-bottom: none;
  13. }
  14. .search-api-list-server {
  15. border-top: 1px solid #e6e4df;
  16. }
  17. .search-api-list-index:last-of-type {
  18. border-bottom: 1px solid #e6e4df;
  19. }
  20. .search-api-list-server .search-api-type,
  21. .search-api-list-server .search-api-title {
  22. font-weight: bold;
  23. }
  24. .search-api-list-index .search-api-type {
  25. padding-left: 3em;
  26. }
  27. .search-api-list-disabled .search-api-type,
  28. .search-api-list-disabled .search-api-title {
  29. font-style: italic;
  30. }
  31. /*
  32. * Server view page
  33. */
  34. .search-api-server-summary ul.inline {
  35. margin: 0;
  36. }
  37. .search-api-server-summary ul.inline li {
  38. padding-left: 0;
  39. }
  40. details .messages {
  41. margin-left: 20px;
  42. margin-right: 20px;
  43. }
  44. /*
  45. * Index summary page
  46. */
  47. .search-api-index-status {
  48. margin-bottom: 6em;
  49. }
  50. /* Remove animation */
  51. .search-api-index-status .progress__bar {
  52. background-image: none;
  53. }
  54. .search-api-index-summary {
  55. margin-bottom: 2em;
  56. }
  57. /*
  58. * Processors page
  59. */
  60. .search-api-stage-wrapper.form-item {
  61. float: left;
  62. box-sizing: border-box;
  63. width: 32.66%;
  64. min-width: 17em;
  65. margin-right: 1%;
  66. }
  67. .search-api-stage-wrapper.form-item:last-child {
  68. margin-right: 0;
  69. }
  70. /*
  71. * Miscellaneous
  72. */
  73. .search-api-checkboxes-list .form-checkboxes {
  74. max-height: 30em;
  75. overflow: auto;
  76. }