We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40edd42 commit d534db2Copy full SHA for d534db2
apps/client/src/widgets/icon_list.ts
@@ -147,6 +147,12 @@ const categories: Category[] = [
147
];
148
149
const icons: Icon[] = [
150
+ {
151
+ name: "empty",
152
+ slug: "empty",
153
+ category_id: 113,
154
+ type_of_icon: "REGULAR"
155
+ },
156
{
157
name: "child",
158
slug: "child-regular",
apps/client/src/widgets/note_icon.css
@@ -56,4 +56,16 @@
56
57
.note-icon-widget .icon-list span:hover {
58
border: 1px solid var(--main-border-color);
59
+}
60
+
61
+.note-icon-widget .icon-list span.bx-empty {
62
+ width: unset;
63
64
65
+.note-icon-widget .icon-list span.bx-empty::before {
66
+ display: inline-block;
67
+ content: "";
68
+ border: 1px dashed var(--muted-text-color);
69
+ width: 1em;
70
+ height: 1em;
71
}
0 commit comments