@sequent-org/moodboard 1.0.21 → 1.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/ui/Toolbar.js +2 -2
- package/src/ui/styles/workspace.css +4 -3
package/package.json
CHANGED
package/src/ui/Toolbar.js
CHANGED
|
@@ -53,14 +53,14 @@ export class Toolbar {
|
|
|
53
53
|
{ id: 'image', iconName: 'image', title: 'Добавить картинку', type: 'image-add' },
|
|
54
54
|
{ id: 'shapes', iconName: 'shapes', title: 'Фигуры', type: 'custom-shapes' },
|
|
55
55
|
{ id: 'pencil', iconName: 'pencil', title: 'Рисование', type: 'custom-draw' },
|
|
56
|
-
{ id: 'comments', iconName: 'comments', title: 'Комментарии', type: 'custom-comments' },
|
|
56
|
+
// { id: 'comments', iconName: 'comments', title: 'Комментарии', type: 'custom-comments' }, // Временно скрыто
|
|
57
57
|
{ id: 'attachments', iconName: 'attachments', title: 'Файлы', type: 'custom-attachments' },
|
|
58
58
|
{ id: 'emoji', iconName: 'emoji', title: 'Эмоджи', type: 'custom-emoji' }
|
|
59
59
|
];
|
|
60
60
|
|
|
61
61
|
// Существующие элементы ниже новых
|
|
62
62
|
const existingTools = [
|
|
63
|
-
|
|
63
|
+
// { id: 'frame', iconName: 'frame', title: 'Добавить фрейм', type: 'frame' }, // Временно скрыто
|
|
64
64
|
{ id: 'divider', type: 'divider' },
|
|
65
65
|
{ id: 'clear', iconName: 'clear', title: 'Очистить холст', type: 'clear' },
|
|
66
66
|
{ id: 'divider', type: 'divider' },
|
|
@@ -201,19 +201,20 @@
|
|
|
201
201
|
display: inline-flex;
|
|
202
202
|
align-items: center;
|
|
203
203
|
justify-content: center;
|
|
204
|
-
width:
|
|
205
|
-
height:
|
|
204
|
+
width: 30px;
|
|
205
|
+
height: 30px;
|
|
206
206
|
border: none;
|
|
207
207
|
border-radius: 8px;
|
|
208
208
|
/* background: #E1F5FE; */
|
|
209
209
|
/* color: #212121; */
|
|
210
|
+
background: none;
|
|
210
211
|
font-size: 18px;
|
|
211
212
|
font-weight: 500;
|
|
212
213
|
cursor: pointer;
|
|
213
214
|
transition: all 0.2s ease;
|
|
214
215
|
text-align: center;
|
|
215
216
|
position: relative;
|
|
216
|
-
margin:
|
|
217
|
+
margin: 0px;
|
|
217
218
|
}
|
|
218
219
|
|
|
219
220
|
.moodboard-toolbar__button:hover {
|