|
@@ -26,28 +26,28 @@
|
|
|
</Button>
|
|
|
</div> -->
|
|
|
<StickyNoteButton />
|
|
|
- <Button :class="{ active: markupActive && markupTool === 'highlight' }" @click.stop="changeMarkupTool('highlight')"><Highlight /></Button>
|
|
|
- <Button :class="{ active: markupActive && markupTool === 'underline' }" @click.stop="changeMarkupTool('underline')"><Underline /></Button>
|
|
|
- <Button :class="{ active: markupActive && markupTool === 'strikeout' }" @click.stop="changeMarkupTool('strikeout')"><Strikeout /></Button>
|
|
|
- <Button :class="{ active: markupActive && markupTool === 'squiggly' }" @click.stop="changeMarkupTool('squiggly')"><Squiggle /></Button>
|
|
|
- <Button :class="{ active: activeTool === 'ink' }" @click="changeActiveTool('ink')">
|
|
|
+ <Button :class="{ active: markupActive && markupTool === 'highlight' }" @click.stop="changeMarkupTool('highlight')" title="Highlight"><Highlight /></Button>
|
|
|
+ <Button :class="{ active: markupActive && markupTool === 'underline' }" @click.stop="changeMarkupTool('underline')" title="Underline"><Underline /></Button>
|
|
|
+ <Button :class="{ active: markupActive && markupTool === 'strikeout' }" @click.stop="changeMarkupTool('strikeout')" title="Strikeout"><Strikeout /></Button>
|
|
|
+ <Button :class="{ active: markupActive && markupTool === 'squiggly' }" @click.stop="changeMarkupTool('squiggly')" title="Squiggly"><Squiggle /></Button>
|
|
|
+ <Button :class="{ active: activeTool === 'ink' }" @click="changeActiveTool('ink')" title="Ink">
|
|
|
<Ink />
|
|
|
</Button>
|
|
|
<div class="shape-container markup-container">
|
|
|
- <Button :class="{ active: shapeActive && shapeTool === 'circle' }" @click.stop="changeShapeTool('circle')">
|
|
|
+ <Button :class="{ active: shapeActive && shapeTool === 'circle' }" @click.stop="changeShapeTool('circle')" title="Circle">
|
|
|
<EllipseTool />
|
|
|
</Button>
|
|
|
- <Button :class="{ active: shapeActive && shapeTool === 'square' }" @click.stop="changeShapeTool('square')">
|
|
|
+ <Button :class="{ active: shapeActive && shapeTool === 'square' }" @click.stop="changeShapeTool('square')" title="Square">
|
|
|
<RectangleTool />
|
|
|
</Button>
|
|
|
- <Button :class="{ active: shapeActive && shapeTool === 'arrow' }" @click.stop="changeShapeTool('arrow')">
|
|
|
+ <Button :class="{ active: shapeActive && shapeTool === 'arrow' }" @click.stop="changeShapeTool('arrow')" title="Arrow">
|
|
|
<ArrowTool />
|
|
|
</Button>
|
|
|
- <Button :class="{ active: shapeActive && shapeTool === 'line' }" @click.stop="changeShapeTool('line')">
|
|
|
+ <Button :class="{ active: shapeActive && shapeTool === 'line' }" @click.stop="changeShapeTool('line')" title="Line">
|
|
|
<LineTool />
|
|
|
</Button>
|
|
|
</div>
|
|
|
- <Button :class="{ active: activeTool === 'freetext' }" @click="changeActiveTool('freetext')">
|
|
|
+ <Button :class="{ active: activeTool === 'freetext' }" @click="changeActiveTool('freetext')" title="Freetext">
|
|
|
<Text />
|
|
|
</Button>
|
|
|
<div class="divider pc"></div>
|