bullet refinement
This commit is contained in:
parent
2f4c46aed0
commit
3e686c606a
|
@ -36,19 +36,20 @@ a.badge-wrapper {
|
|||
align-items: center;
|
||||
}
|
||||
|
||||
.badge-wrapper .badge-category {
|
||||
.badge-wrapper:not(.box) .badge-category {
|
||||
.category-badge-icon {
|
||||
margin-right: 5px;
|
||||
margin-left: 0px;
|
||||
.d-icon {
|
||||
margin-right: 0;
|
||||
color: var(--category-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.badge-wrapper.bullet span.category-badge-icon .d-icon,
|
||||
.categories-list .category .category-icon .d-icon {
|
||||
color: inherit;
|
||||
color: var(--category-color);
|
||||
}
|
||||
|
||||
.categories-list .category-box-heading h3 div {
|
||||
|
@ -58,3 +59,11 @@ a.badge-wrapper {
|
|||
.subcategory .category-icon-widget {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.badge-wrapper.bullet,
|
||||
.badge-wrapper.bar {
|
||||
.badge-category-parent-bg,
|
||||
.badge-category-bg {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -83,6 +83,7 @@ export default {
|
|||
let parentCat = null;
|
||||
let categoryDir = "";
|
||||
let categoryLogo = get(category, "uploaded_logo");
|
||||
let categoryColor = get(category, "color");
|
||||
|
||||
if (!opts.hideParent) {
|
||||
parentCat = Category.findById(get(category, "parent_category_id"));
|
||||
|
@ -123,9 +124,9 @@ export default {
|
|||
/// Add custom category icon from theme settings
|
||||
let iconItem = getIconItem(category.slug);
|
||||
if (iconItem) {
|
||||
let itemColor = iconItem[2]
|
||||
? `style="color: ${iconItem[2]}"`
|
||||
: `style="color: #${color}"`;
|
||||
// let itemColor = iconItem[2]
|
||||
// ? `style="color: ${iconItem[2]}"`
|
||||
// : `style="color: #${color}"`;
|
||||
// check if native emoji
|
||||
const emojiSet = helperContext().siteSettings.emoji_set;
|
||||
let itemIcon = /\p{Extended_Pictographic}/u.test(iconItem[1])
|
||||
|
@ -143,7 +144,7 @@ export default {
|
|||
/\p{Extended_Pictographic}/u.test(iconItem[1]) === false
|
||||
? iconHTML(iconItem[1])
|
||||
: "";
|
||||
html += `<span ${itemColor} class="category-badge-icon">${itemIcon}</span>`;
|
||||
html += `<span style="--category-color: #${categoryColor}" class="category-badge-icon">${itemIcon}</span>`;
|
||||
/// End custom category icon
|
||||
}
|
||||
} else if (categoryLogo) {
|
||||
|
|
Loading…
Reference in New Issue