/* --human-name-css: 'Папка иконкасы'; */
/* --human-author-css: 'Нұржау Самғат'; */
/* --human-author-image-css: "https://nurzhausamgat.kz/wp-content/uploads/2025/04/Аватарка.png"; */
/* --human-description-css: 'Барлық папкаларға 📁 иконка орнатады: ішінде сабақ болсын, ішкі папка болсын бәріне бірдей'; */

/* Font Awesome шрифті міндетті түрде қосулы болуы керек:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> */

/* Стиль барлық иконкалар үшін */
.folders-row .col-xs-12 > a > .folder-content .title:before,
.row-key-categories .col-xs-12 > a > .folder-content .title:before,
.folders-row .col-xs-12 > a > .label:before,
.row-key-categories .folders-row .col-xs-12 > a > .label:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    vertical-align: bottom;
    margin-right: 5px;
}

/* Барлық папкаларға 📁 иконка: сабақты да, ішкі папканы да */
.folders-row .col-xs-12 > .folder-with-subfolders .folder-content .title:before,
.row-key-categories .col-xs-12 > .folder-with-subfolders .folder-content .title:before,
.folders-row .col-xs-12 > .folder-with-files .folder-content .title:before,
.row-key-categories .col-xs-12 > .folder-with-files .folder-content .title:before {
    content: "\f07c"; /* 📁 иконка */
}
<script>
  const style = document.createElement("style");
  style.innerHTML = `
    .folders-row .col-xs-12 > .folder-with-subfolders .folder-content .title:before,
    .row-key-categories .col-xs-12 > .folder-with-subfolders .folder-content .title:before,
    .folders-row .col-xs-12 > .folder-with-files .folder-content .title:before,
    .row-key-categories .col-xs-12 > .folder-with-files .folder-content .title:before {
      content: "📁";
      font-size: 16px;
      margin-right: 6px;
    }
  `;
  document.head.appendChild(style);
</script>
