first commit

This commit is contained in:
2025-07-18 16:20:14 +07:00
commit 98af45c018
16382 changed files with 3148096 additions and 0 deletions

View File

@@ -0,0 +1,236 @@
.image-annotate-canvas {
border: solid 1px #ccc;
background-position: left top;
background-repeat: no-repeat;
display: block;
margin: 0;
position: relative;
overflow:hidden;
background-size: contain;
}
.image-annotate-view {
display: none;
position: relative;
}
.image-annotate-area {
border: 2px solid #000000;
position: absolute;
}
.image-annotate-area div {
border: 1px solid #FFFFFF;
display: block;
}
.image-annotate-area-hover div {
border-color: yellow !important;
width:auto;
}
.image-annotate-area-editable {
cursor: pointer;
}
.image-annotate-area-editable-hover div {
border-color: #00AD00 !important;
}
.image-annotate-note {
background: #E7FFE7 none repeat scroll 0 0;
border: solid 1px #397F39;
color: #000;
display: none;
font-family: Verdana, Sans-Serif;
font-size: 10px;
min-width:50px;max-width: 200px;
padding: 3px 7px;
position: absolute;opacity:0.95;
filter:alpha(opacity=95);
overflow:hidden;
border-radius:5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-webkit-box-shadow: 4px 5px 5px rgba(0, 0, 0, .5);
-moz-box-shadow: 4px 5px 5px rgba(0, 0, 0, .5);
box-shadow: 4px 5px 5px rgba(0, 0, 0, .5);
}
.image-annotate-note .actions {
display: block;
font-size: 80%;
}
.image-annotate-edit {
display: none;
}
#image-annotate-edit-form {
height: 82px;
padding: 7px;
position: absolute;
width: 252px;
border-radius:5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-webkit-box-shadow: 4px 5px 5px rgba(0, 0, 0, .5);
-moz-box-shadow: 4px 5px 5px rgba(0, 0, 0, .5);
box-shadow: 4px 5px 5px rgba(0, 0, 0, .5);
}
#image-annotate-edit-form form {
clear: right;
margin: 0 !important;
padding: 0;
z-index: 999;
}
#image-annotate-edit-form .box {
margin: 0;
}
#image-annotate-edit-form input.form-text, #image-annotate-edit-form #edit-comment-wrapper textarea {
width: 90%;
}
#image-annotate-edit-form textarea {
height: 50px;
font-family: Verdana, Sans-Serif;
font-size: 10px;
width: 248px;
}
#image-annotate-edit-form fieldset {
background: transparent none repeat scroll 0 0;
}
#image-annotate-edit-form .form-item {
margin: 0 0 5px;
}
#image-annotate-edit-form .form-button, #image-annotate-edit-form .form-submit {
margin: 0;
}
#image-annotate-edit-form a{
background-color: #fff;
background-repeat: no-repeat;
background-position: 3px 3px;
border: solid 1px #ccc;
color: #333;
cursor: pointer;
display: block;
float: left;
font-family: Verdana, Sans-Serif;
font-size: 10px;
height: 16px;
line-height: 16px;
padding: 2px 2px 2px 24px;
margin: 3px 6px 3px 0;
width: 50px;
}
#image-annotate-edit-form textarea {
margin: 3px 6px 3px 0;
resize:none;border-radius:5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
#image-annotate-edit-form a:hover {
background-color: #eee;
}
.image-annotate-edit-area {
border: 2px solid yellow;
cursor: move;
display: block;
height: 20px;
left: 10px;
margin: 0;
padding: 0;
position: absolute;
top: 10px;
width: 60px;
}
.image-annotate-edit-area .ui-resizable-handle {
opacity: 0.8;
}
.image-annotate-edit-ok {
background-image: url(../images/accept.png); border-radius:5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-webkit-box-shadow: .5px 1px 1px rgba(0, 0, 0, .5);
-moz-box-shadow: .5px 1px 1px rgba(0, 0, 0, .5);
box-shadow: .5px 1px 1px rgba(0, 0, 0, .5);
}
.image-annotate-edit-delete {
background-image: url(../images/delete.png); border-radius:5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-webkit-box-shadow: .5px 1px 1px rgba(0, 0, 0, .5);
-moz-box-shadow: .5px 1px 1px rgba(0, 0, 0, .5);
box-shadow: .5px 1px 1px rgba(0, 0, 0, .5);
}
.image-annotate-edit-close {
background-image: url(../images/cross.png); border-radius:5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-webkit-box-shadow: .5px 1px 1px rgba(0, 0, 0, .5);
-moz-box-shadow: .5px 1px 1px rgba(0, 0, 0, .5);
box-shadow: .5px 1px 1px rgba(0, 0, 0, .5);
}
.ui-resizable {
position: relative;
}
.ui-resizable-handle {
position: absolute;
font-size: 0.1px;
z-index: 99999;
display: block;
}
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable- autohide .ui-resizable-handle {
display: block;
}
.ui-resizable-n {
cursor: n-resize;
height: 7px;
width: 100%;
top: -5px;
left: 0px;
}
.ui-resizable-s {
cursor: s-resize;
height: 7px;
width: 100%;
bottom: -5px;
left: 0px;
}
.ui-resizable-e {
cursor: e-resize;
width: 7px;
right: -5px;
top: 0px;
height: 100%;
}
.ui-resizable-w {
cursor: w-resize;
width: 7px;
left: -5px;
top: 0px;
height: 100%;
}
.ui-resizable-se {
cursor: se-resize;
width: 12px;
height: 12px;
right: 1px;
bottom: 1px;
}
.ui-resizable-sw {
cursor: sw-resize;
width: 9px;
height: 9px;
left: -5px;
bottom: -5px;
}
.ui-resizable-nw {
cursor: nw-resize;
width: 9px;
height: 9px;
left: -5px;
top: -5px;
}
.ui-resizable-ne {
cursor: ne-resize;
width: 9px;
height: 9px;
right: -5px;
top: -5px;
}
.image-annotate-text{ resize:none;}