~ubuntu-branches/ubuntu/precise/gwibber/precise-proposed

« back to all changes in this revision

Viewing changes to ui/themes/flat/template.mako

  • Committer: Bazaar Package Importer
  • Author(s): Ken VanDine
  • Date: 2011-07-15 17:14:14 UTC
  • mto: This revision was merged to the branch mainline in revision 80.
  • Revision ID: james.westby@ubuntu.com-20110715171414-80ca971vzd56gtmh
Tags: upstream-3.1.2
ImportĀ upstreamĀ versionĀ 3.1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<%namespace name="base" file="base.mako">
2
 
  <%def name="msgstyle(data)">
3
 
    background: rgba(${data["color"].rgb}, 0.15);
4
 
  </%def>
5
 
</%namespace>
6
 
 
7
 
<html>
8
 
  <head>
9
 
    <script src="jquery.js"></script>
10
 
    <script>
11
 
      $(document).ready(function() {
12
 
        $(".message").hover(
13
 
          function() {$(this).find(".hidden").css("visibility", "visible")},
14
 
          function() {$(this).find(".hidden").css("visibility", "hidden")});
15
 
 
16
 
        $(".toggledupe").show(0).unbind().toggle(
17
 
          function() {$(this).closest(".basemsg").find(".dupes").show(100)},
18
 
          function() {$(this).closest(".basemsg").find(".dupes").hide(100)});
19
 
      });
20
 
    </script>
21
 
    <style>
22
 
      <%include file="theme.css" /> 
23
 
    </style>
24
 
  </head>
25
 
  <body>
26
 
    ${base.messages(message_store)}
27
 
  </body>
28
 
</html>