module_filter.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .modules-tabs {
  2. border: none;
  3. border-radius: 0;
  4. }
  5. .modules-tabs__pane {
  6. margin: 0 0 0 300px;
  7. border-left: 1px solid #0678be;
  8. background: white;
  9. }
  10. .modules-tabs__menu-item a:hover,
  11. .modules-tabs__menu-item a:focus {
  12. background-color: #f7fcff;
  13. }
  14. ul.modules-tabs__menu {
  15. border-bottom: 4px solid #0678be;
  16. width: 300px;
  17. }
  18. li.modules-tabs__menu-item a {
  19. padding: 1.4rem 1rem;
  20. line-height: 2;
  21. }
  22. li.modules-tabs__menu-item a strong {
  23. text-transform: uppercase;
  24. }
  25. li.modules-tabs__menu-item {
  26. background: #fff;
  27. border-top: 1px solid rgba(6, 120, 190, 0.17);
  28. }
  29. .modules-tabs__menu-item.disabled {
  30. background: #efefef;
  31. border-top-color: #e0e0e0;
  32. margin-bottom: 0;
  33. border-bottom: 0;
  34. }
  35. .modules-tabs__menu-item.is-selected a,
  36. .modules-tabs__menu-item.is-selected a:hover,
  37. .modules-tabs__menu-item.is-selected a:focus,
  38. .modules-tabs__menu-item.is-selected a:active {
  39. background-color: #0678be;
  40. color: #fff;
  41. }
  42. .modules-tabs__menu-item.is-selected a .summary {
  43. color: #08447a;
  44. font-style: italic;
  45. }
  46. .modules-tabs {
  47. background: #f7fcff;
  48. }
  49. .system-modules tr:hover {
  50. background: #f7fcff;
  51. }
  52. .modules-tabs__menu-item ul.enabling {
  53. margin-top: 1.4em;
  54. color: #7cbc48;
  55. display: flex;
  56. flex-wrap: wrap;
  57. }
  58. .modules-tabs__menu-item ul.enabling li {
  59. background-color: #eaffda;
  60. padding: 0.3em 0.5em;
  61. border-radius: 2px;
  62. margin-right: 0.5em;
  63. margin-bottom: 0.5em;
  64. font-style: initial;
  65. font-weight: 500;
  66. }
  67. .modules-tabs__menu-item ul.enabling li:after,
  68. .modules-tabs__menu-item ul.enabling:before {
  69. content: none;
  70. }