[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

abarth at webkit.org abarth at webkit.org
Thu Apr 8 00:43:43 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 4b2e786af41ec63e4afef4fada26cd6103345f8a
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Dec 20 02:40:53 2009 +0000

    2009-12-19  Adam Barth  <abarth at webkit.org>
    
            Unreviewed.  Tweak the CSS to make the dashboard prettier.
    
            * QueueStatusServer/stylesheets/dashboard.css:
            * QueueStatusServer/templates/dashboard.html:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52398 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index af5920c..420ca9d 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,5 +1,12 @@
 2009-12-19  Adam Barth  <abarth at webkit.org>
 
+        Unreviewed.  Tweak the CSS to make the dashboard prettier.
+
+        * QueueStatusServer/stylesheets/dashboard.css:
+        * QueueStatusServer/templates/dashboard.html:
+
+2009-12-19  Adam Barth  <abarth at webkit.org>
+
         Reviewed by Eric Seidel.
 
         QueueStatusServer needs a human readable dashboard
diff --git a/WebKitTools/QueueStatusServer/stylesheets/dashboard.css b/WebKitTools/QueueStatusServer/stylesheets/dashboard.css
index d1b2d5e..7215552 100644
--- a/WebKitTools/QueueStatusServer/stylesheets/dashboard.css
+++ b/WebKitTools/QueueStatusServer/stylesheets/dashboard.css
@@ -1,40 +1,46 @@
 body {
   font-family: Verdana, Helvetica, sans-serif;
 }
+h1 {
+  color: #444;
+  font-size: 14pt;
+  font-style: italic;
+}
 table {
   color: #444;
+  border-spacing: 0px;
 }
 th {
-  font-weight: normal;
   background-color: #AAA;
   color: white;
   padding: 5px;
   width: 100px;
-  border-radius: 5px;
+  font-size: 11px;
 }
 td {
   text-align: center;
 }
+tr:hover {
+  background-color: #EEE;
+}
 .status {
   margin: 1px;
   padding: 1px 2px;
-  border-radius: 5px;
-  border: 1px solid #AAA;
   font-size: 11px;
+  border: 1px solid transparent;
 }
 .status:hover {
-  border: 1px solid #000;
-  -webkit-transition: border 0.5s linear;
+  border: 1px solid black;
 }
 .pass {
   background-color: #8FDF5F;
-  border: 1px solid #4F8530;
+  /* border: 1px solid #4F8530; */
 }
 .fail {
   background-color: #E98080;
-  border: 1px solid #A77272;
+  /* border: 1px solid #A77272; */
 }
 .pending {
   background-color: #FFFC6C;
-  border: 1px solid #C5C56D;
+  /* border: 1px solid #C5C56D; */
 }
diff --git a/WebKitTools/QueueStatusServer/templates/dashboard.html b/WebKitTools/QueueStatusServer/templates/dashboard.html
index 9a128f6..aa52053 100644
--- a/WebKitTools/QueueStatusServer/templates/dashboard.html
+++ b/WebKitTools/QueueStatusServer/templates/dashboard.html
@@ -4,12 +4,12 @@
 <link type="text/css" rel="stylesheet" href="/stylesheets/dashboard.css" />
 </head>
 <body>
-<h1>Review Queue Status</h1>
+<h1>WebKit Bot Status</h1>
 <table>
   <theader>
     <tr>
-      <th>Attachment</th>
       <th>Bug</th>
+      <th>Attachment</th>
       <th>Style</th>
       <th>Chromium</th>
       <th>Qt</th>
@@ -18,12 +18,12 @@
   </thead>{% for summary in summaries %}
   <tbody>
     <tr>
-      <td>
-        {{ summary.attachment_id|force_escape|webkit_attachment_id|safe }}
-      </td>
-      <td>
+      <td class="status">
         {{ summary.bug_id|force_escape|webkit_bug_id|safe }}
       </td>
+      <td class="status">
+        {{ summary.attachment_id|force_escape|webkit_attachment_id|safe }}
+      </td>
       <td class="status {{ summary.style_queue.state|safe }}"
           title="{{ summary.style_queue.status.date|timesince }} ago">
         {{ summary.style_queue.status.message|safe }}

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list