Compare commits

...

2 commits

Author SHA1 Message Date
050ebba03b Nepoužívaná css 2025-01-21 10:06:11 +01:00
443a226943 box -> oprava 2025-01-21 10:05:27 +01:00
3 changed files with 9 additions and 21 deletions

View file

@ -74,11 +74,11 @@ img{background:white;}
.box:hover{
.oprava:hover{
border-width:3px;
margin: 0px;
}
.box {
.oprava {
margin: 1px;
background-color: white;
width:300px;
@ -121,27 +121,15 @@ form {
}
.box button,
.box img,
.box-done button,
.box-done img,
.box-ready button,
.box-ready img,
.box-wontfix button,
.box-wontfix img{
.oprava button,
.oprava img {
border: 1px solid white;
background-color:transparent;
margin:0;
padding: 1px;
}
.box button:hover,
.box img:hover,
.box-done img:hover,
.box-done button:hover,
.box-ready img:hover,
.box-ready button:hover,
.box-wontfix img:hover,
.box-wontfix button:hover{
.oprava button:hover,
.oprava img:hover {
border: 1px solid black;
}

View file

@ -109,10 +109,10 @@ function comment(op)
// show comment form when 'update-comment' button pressed
function update_comment(oid,ktid)
{
var divbox = document.getElementById(oid);
var op = document.getElementById(oid);
var text = document.getElementById(ktid).textContent;
return show_form(divbox.img_id, divbox.x, divbox.y, ktid.substring(2), text, 'update-comment');
return show_form(op.img_id, op.x, op.y, ktid.substring(2), text, 'update-comment');
}
function oprava_onmouseover(op)

View file

@ -7,7 +7,7 @@
>
</div>
<div name='op{{o.id}}' id='op{{o.id}}'
class='box'
class='oprava'
data-opravastatus="{{o.status}}"
data-opravazobrazit="true"
data-opid="{{o.id}}"