make pending operations the first thing in slice view
[myslice.git] / views / templates / messages-transient.html
1         <!--- container to hold notifications, and default templates --->
2 <div id="notifications" style="display:none">
3                 
4                 <div id="default">
5                         <h1>#{title}</h1>
6                         <p>#{text}</p>
7                 </div>
8                 
9                 <div id="sticky">
10                         <a class="ui-notify-close ui-notify-cross" href="#">x</a>
11                         <h1>#{title}</h1>
12                         <pre>#{text}</pre>
13                 </div>
14                 
15                 <div id="themeroller" class="ui-state-error" style="padding:10px; -moz-box-shadow:0 0 6px #980000; -webkit-box-shadow:0 0 6px #980000; box-shadow:0 0 6px #980000;">
16                         <a class="ui-notify-close" href="#"><span class="ui-icon ui-icon-close" style="float:right"></span></a>
17                         <span style="float:left; margin:2px 5px 0 0;" class="ui-icon ui-icon-alert"></span>
18                         <h1>#{title}</h1>
19                         <p>#{text}</p>
20                         <p style="text-align:center"><a class="ui-notify-close" href="#">Close Me</a></p>
21                 </div>
22                 
23                 <div id="withIcon">
24                         <a class="ui-notify-close ui-notify-cross" href="#">x</a>
25
26                         <div style="float:left;margin:0 10px 0 0"><img src="#{icon}" alt="warning" /></div>
27                         <h1>#{title}</h1>
28                         <p>#{text}</p>
29                 </div>
30                 
31                 <div id="buttons">
32                         <h1>#{title}</h1>
33                         <p>#{text}</p>
34                         <p style="margin-top:10px;text-align:center">
35                                 <input type="button" class="confirm" value="Close Dialog" />
36                         </p>
37                 </div>
38         </div>