extend-customizer-rtl.css 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .in-sub-panel #customize-theme-controls .customize-pane-child.current-panel-parent,
  2. #customize-theme-controls .customize-pane-child.current-section-parent {
  3. transform: translateX(100%);
  4. }
  5. /* Nested Customizer Section CSS */
  6. #customize-controls .control-section.control-section-ast_section .accordion-section-title {
  7. color: #555d66;
  8. background-color: #fff;
  9. border-bottom: 1px solid #ddd;
  10. border-right: 4px solid #fff;
  11. transition: .15s color ease-in-out, .15s background-color ease-in-out, .15s border-color ease-in-out;
  12. }
  13. #customize-controls .control-section.control-section-ast_section .accordion-section-title:after {
  14. color: #a0a5aa;
  15. }
  16. #customize-controls .control-section.control-section-ast_section .accordion-section-title:hover,
  17. #customize-controls .control-section.control-section-ast_section .accordion-section-title:focus {
  18. color: #0073aa;
  19. background: #f3f3f5;
  20. border-right-color: #0073aa;
  21. }
  22. #customize-controls .control-section.control-section-ast_section .accordion-section-title:hover:after {
  23. color: #0073aa;
  24. }
  25. #customize-controls .control-section-ast_section .accordion-section {
  26. margin-right: -20px;
  27. margin-left: -20px;
  28. }
  29. /**
  30. * Section Description
  31. */
  32. .customize-section-description .astra-section-description ul {
  33. margin: 0;
  34. }
  35. .customize-section-description .astra-section-description ul > li {
  36. list-style-type: none;
  37. }
  38. .customize-section-description .astra-section-description ul > li:last-child {
  39. margin-bottom: 0;
  40. }
  41. .astra-section-description a {
  42. text-decoration: none;
  43. font-style: italic;
  44. border-bottom: 1px dotted transparent;
  45. transition: all ease-in-out .3s;
  46. }
  47. .astra-section-description a:hover {
  48. border-bottom-color: inherit;
  49. }
  50. #customize-controls .control-section-ast_section .customize-info .customize-section-description {
  51. margin-bottom: 0;
  52. }