Revision 217fb7e1
Von Sven Schöling vor etwa 2 Jahren hinzugefügt
SL/Template/Plugin/L.pm | ||
---|---|---|
228 | 228 |
|
229 | 229 |
return $self->textarea_tag($name, $value, %attributes, rows => $rows, cols => $cols) if $rows > 1; |
230 | 230 |
|
231 |
return '<span>' |
|
231 |
return '<span class="area-input">'
|
|
232 | 232 |
. $self->input_tag($name, $value, %attributes, size => $cols) |
233 |
. "<img src=\"image/edit-entry.png\" onclick=\"kivi.switch_areainput_to_textarea('${id}')\" style=\"margin-left: 2px;\">"
|
|
233 |
. "<span class=\"switch-to-textarea\" onclick=\"kivi.switch_areainput_to_textarea('${id}')\"></span>"
|
|
234 | 234 |
. '</span>'; |
235 | 235 |
} |
236 | 236 |
|
css/kivitendo/main.css | ||
---|---|---|
663 | 663 |
img.icon-map { |
664 | 664 |
content:url("../../image/map.png"); |
665 | 665 |
} |
666 |
|
|
667 |
|
|
668 |
|
|
669 |
/* styling for input to textarea switch */ |
|
670 |
span.area-input span.switch-to-textarea { |
|
671 |
content: url("../../image/edit-entry.png"); |
|
672 |
margin-left: 2px; |
|
673 |
} |
css/lx-office-erp/main.css | ||
---|---|---|
662 | 662 |
img.icon-map { |
663 | 663 |
content:url("../../image/map.png"); |
664 | 664 |
} |
665 |
|
|
666 |
|
|
667 |
|
|
668 |
/* styling for input to textarea switch */ |
|
669 |
span.area-input span.switch-to-textarea { |
|
670 |
content: url("../../image/edit-entry.png"); |
|
671 |
margin-left: 2px; |
|
672 |
} |
Auch abrufbar als: Unified diff
L: area-input switch-to-textarea button styling ins css verschoben