source: trunk/workflow/templates/default/editor_messages.html @ 795

Revision 795, 493 bytes checked in by viani, 15 years ago (diff)

Ticket #488 - Inclusão do módulo workflow no ramo trunk do repositório Expresso.

  • Property svn:executable set to *
Line 
1<html>
2<script language="javascript1.2">
3
4function addText(txt) {
5        divMsg = document.getElementById('editor_messages');
6        divMsg.innerHTML = txt;
7}
8
9function scrollwin(px)
10{
11        window.scrollBy(0,px);
12}
13
14</script>
15
16<style type="text/css">
17 body,table {   
18                font-family: courier, lucidatypewriter;
19        font-size: 11px;
20                color : red;
21                font-weight : bold;
22                background-color : #E8E8E8;
23          }
24</style>
25<body>
26        <div id='editor_messages' style="position:absolute;top:0px;">
27        </div>
28</body>
29</html>
Note: See TracBrowser for help on using the repository browser.