Commit 0b276ebfc48877c43cc1b2a7556639b84f223e14
1 parent
868ce8d7
Commit changes for Issue Ref: 11545 : Annotation Toolbar > "Brush Size" identity is missing.
Showing
1 changed file
with
8 additions
and
8 deletions
400-SOURCECODE/AIAHTML5.Web/index.html
... | ... | @@ -519,11 +519,11 @@ |
519 | 519 | </div> |
520 | 520 | </div> |
521 | 521 | </div> |
522 | - <div class="well-popup well blankshapediv"> | |
522 | + <div class="well-popup well blankshapediv" ng-mouseover="mouseMoveToolTip(200, 170, 120, 'Edit Style')" ng-mouseleave="mouseOutToolTip()"> | |
523 | 523 | <!--#7931--> |
524 | 524 | |
525 | 525 | <div id="edit-block" style="display: none; font-size: 13px;">Edit Shape Style</div> |
526 | - <div class="outlinediv"> | |
526 | + <div class="outlinediv" ng-mouseover="mouseMoveToolTip(170, 170, 120, 'Edit Style')" ng-mouseleave="mouseOutToolTip()"> | |
527 | 527 | <div id="shapeStyleDiv" class="fullcolordiv" ng-click="disableAnnotationtoolOnListManager||enableAnnotationToolBar()"> |
528 | 528 | |
529 | 529 | </div> |
... | ... | @@ -533,21 +533,21 @@ |
533 | 533 | <div class="well well-popup"> |
534 | 534 | <div class="" role="group" aria-label="..."> |
535 | 535 | <div> |
536 | - <a href="#canvasPaint" data-size="1" data-color="#fff" id="annotationpaintbrushsize" class="btn btn-primary btn-xs pull-left btn-annotation" role="button" data-toggle="tooltip" data-placement="top" title="Paint" style="margin-right:1%;" ng-click="paintBrush()"><i class="fa fa-paint-brush"></i></a> | |
537 | - <button type="button" class="btn btn-primary btn-xs pull-left btn-annotation" data-toggle="tooltip" data-placement="top" title="Erase" ng-click="EraseDrawing()"><i class="fa fa-eraser"></i></button> | |
536 | + <a href="#canvasPaint" data-size="1" data-color="#fff" id="annotationpaintbrushsize" ng-mouseover="mouseMoveToolTip(270, 50, 120, 'Paint')" ng-mouseleave="mouseOutToolTip()" class="btn btn-primary btn-xs pull-left btn-annotation" role="button" data-placement="top" style="margin-right:1%;" ng-click="paintBrush()"><i class="fa fa-paint-brush"></i></a> | |
537 | + <button type="button" class="btn btn-primary btn-xs pull-left btn-annotation" data-placement="top" ng-click="EraseDrawing()" ng-mouseover="mouseMoveToolTip(270, 70, 120, 'Erase')" ng-mouseleave="mouseOutToolTip()"><i class="fa fa-eraser"></i></button> | |
538 | 538 | <div style="width: 80px; margin: 0px 0px 0px 4px; display: inline-block;float:left;"> |
539 | - <div style="width: 58px; float: left;"> | |
539 | + <div style="width: 58px; float: left;" ng-mouseover="mouseMoveToolTip(270, 100, 120, 'Brush Size')" ng-mouseleave="mouseOutToolTip()"> | |
540 | 540 | <input type="text" id="btnBrushSize" class="form-control" value="1" style="height:32px;border-radius:0;" oninput="Brushsize(this)"> |
541 | 541 | </div> |
542 | 542 | <div style="width: 22px; float: left;"> |
543 | 543 | <div style="width: 100%; float: left; height: 16px;"> |
544 | - <button type="button" id="btnBrushSizeIncrement" class="btn btn-default" style="padding:0 5px;border-radius:0;font-size: 10px;vertical-align:top;"> | |
544 | + <button type="button" id="btnBrushSizeIncrement" ng-mouseover="mouseMoveToolTip(270, 100, 120, 'Brush Size')" ng-mouseleave="mouseOutToolTip()" class="btn btn-default" style="padding:0 5px;border-radius:0;font-size: 10px;vertical-align:top;"> | |
545 | 545 | |
546 | 546 | <img style="width:10px;height:10px;" src="~/../content/images/DA/angle-up.png"> |
547 | 547 | </button> |
548 | 548 | </div> |
549 | 549 | <div style="width: 100%; float: left; height: 16px;"> |
550 | - <button type="button" id="btnBrushSizeDecrease" class="btn btn-default" style="padding:0 5px;border-radius:0;font-size: 10px;vertical-align:top;"> | |
550 | + <button type="button" id="btnBrushSizeDecrease" ng-mouseover="mouseMoveToolTip(270, 100, 120, 'Brush Size')" ng-mouseleave="mouseOutToolTip()" class="btn btn-default" style="padding:0 5px;border-radius:0;font-size: 10px;vertical-align:top;"> | |
551 | 551 | <img style="width:10px;height:10px;" src="~/../content/images/DA/angle-down.png"> |
552 | 552 | </button> |
553 | 553 | </div> |
... | ... | @@ -556,7 +556,7 @@ |
556 | 556 | </div> |
557 | 557 | |
558 | 558 | <div class="pull-left" style="width:45%; margin-left:2%;margin-top:5px;"> |
559 | - <div id="slider-range-min-2"></div> | |
559 | + <div id="slider-range-min-2" ng-mouseover="mouseMoveToolTip(270, 170, 120, 'Brush Size')" ng-mouseleave="mouseOutToolTip()"></div> | |
560 | 560 | </div> |
561 | 561 | <div class="clearfix"></div> |
562 | 562 | </div> | ... | ... |