Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

_template-customizer.html 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <div id="template-customizer" class="card rounded-0">
  2. <a href="javascript:void(0)" class="template-customizer-open-btn" tabindex="-1"></a>
  3. <div class="p-6 m-0 lh-sm border-bottom template-customizer-header position-relative py-4">
  4. <h6 class="template-customizer-t-panel_header mb-1"></h6>
  5. <p class="template-customizer-t-panel_sub_header mb-0 small"></p>
  6. <div class="d-flex align-items-center gap-2 position-absolute end-0 top-0 mt-6 me-5">
  7. <a
  8. href="javascript:void(0)"
  9. class="template-customizer-reset-btn text-heading"
  10. data-bs-toggle="tooltip"
  11. data-bs-placement="bottom"
  12. title="Reset Customizer"
  13. ><i class="icon-base bx bx-refresh icon-24px"></i
  14. ><span class="badge rounded-pill bg-danger badge-dot badge-notifications d-none"></span
  15. ></a>
  16. <a href="javascript:void(0)" class="template-customizer-close-btn fw-light text-heading" tabindex="-1">
  17. <i class="icon-base bx bx-x icon-lg"></i>
  18. </a>
  19. </div>
  20. </div>
  21. <div class="template-customizer-inner pt-6">
  22. <!-- Theming -->
  23. <div class="template-customizer-theming">
  24. <h5 class="m-0 px-6 pb-6">
  25. <span class="template-customizer-t-theming_header bg-label-primary rounded-1 py-1 px-3 small"></span>
  26. </h5>
  27. <!-- Color -->
  28. <div class="m-0 px-6 pb-6 template-customizer-color w-100">
  29. <label for="customizerColor" class="form-label d-block template-customizer-t-color_label mb-2"></label>
  30. <div class="row template-customizer-colors-options"></div>
  31. </div>
  32. <!-- Theme -->
  33. <div class="m-0 px-6 pb-6 template-customizer-theme w-100">
  34. <label for="customizerTheme" class="form-label d-block template-customizer-t-theme_label mb-2"></label>
  35. <div class="row px-1 template-customizer-themes-options"></div>
  36. </div>
  37. <!-- Skins -->
  38. <div class="m-0 px-6 pb-6 template-customizer-skins w-100">
  39. <label for="customizerSkin" class="form-label template-customizer-t-skin_label mb-2"></label>
  40. <div class="row px-1 template-customizer-skins-options"></div>
  41. </div>
  42. <!-- Semi Dark -->
  43. <div class="m-0 px-6 template-customizer-semiDark w-100 d-flex justify-content-between pe-12">
  44. <span class="form-label template-customizer-t-semiDark_label"></span>
  45. <label class="switch template-customizer-t-semiDark_label">
  46. <input type="checkbox" class="template-customizer-semi-dark-switch switch-input" />
  47. <span class="switch-toggle-slider">
  48. <span class="switch-on"></span>
  49. <span class="switch-off"></span>
  50. </span>
  51. </label>
  52. </div>
  53. <hr class="m-0 px-6 my-6" />
  54. </div>
  55. <!--/ Theming -->
  56. <!-- Layout -->
  57. <div class="template-customizer-layout">
  58. <h5 class="m-0 px-6 pb-6">
  59. <span class="template-customizer-t-layout_header bg-label-primary rounded-2 py-1 px-3 small"></span>
  60. </h5>
  61. <!-- Layout(Menu) -->
  62. <div class="m-0 px-6 pb-6 d-block template-customizer-layouts">
  63. <label for="customizerStyle" class="form-label d-block template-customizer-t-layout_label mb-2"></label>
  64. <div class="row px-1 template-customizer-layouts-options"></div>
  65. </div>
  66. <!-- Header Options for Horizontal -->
  67. <div class="m-0 px-6 pb-6 template-customizer-headerOptions w-100">
  68. <label for="customizerHeader" class="form-label template-customizer-t-layout_header_label mb-2"></label>
  69. <div class="row px-1 template-customizer-header-options"></div>
  70. </div>
  71. <!-- Fixed navbar -->
  72. <div class="m-0 px-6 pb-6 template-customizer-layoutNavbarOptions w-100">
  73. <label for="customizerNavbar" class="form-label template-customizer-t-layout_navbar_label mb-2"></label>
  74. <div class="row px-1 template-customizer-navbar-options"></div>
  75. </div>
  76. <!-- Content -->
  77. <div class="m-0 px-6 pb-6 template-customizer-content w-100">
  78. <label for="customizerContent" class="form-label template-customizer-t-content_label mb-2"></label>
  79. <div class="row px-1 template-customizer-content-options"></div>
  80. </div>
  81. <!-- Directions -->
  82. <div class="m-0 px-6 pb-6 template-customizer-directions w-100">
  83. <label for="customizerDirection" class="form-label template-customizer-t-direction_label mb-2"></label>
  84. <div class="row px-1 template-customizer-directions-options"></div>
  85. </div>
  86. </div>
  87. <!--/ Layout -->
  88. </div>
  89. </div>