[Rt-commit] rt branch, 4.2/rudder, updated. rt-4.1.19-13-gbd82e50

Alex Vandiver alexmv at bestpractical.com
Tue Aug 27 18:39:18 EDT 2013


The branch, 4.2/rudder has been updated
       via  bd82e509f65291dba8d1b8f6fa15c95795c97989 (commit)
       via  54c91851cc2936ae8314df6fcb525dcdf1f76bfc (commit)
       via  77344c4b82650f53ca0cc3938cd57ec5dcbb91a6 (commit)
      from  1286e6cdcae15972dcb7c6c130bf5914f820ea52 (commit)

Summary of changes:
 lib/RT/Approval.pm => devel/tools/css_tidy |  25 +--
 share/static/css/base/print.css            | 341 +++++++++++++++--------------
 share/static/css/rudder/admin.css          |   2 +-
 share/static/css/rudder/base.css           |  16 +-
 share/static/css/rudder/boxes.css          | 123 +++++------
 share/static/css/rudder/dashboards.css     |   6 +-
 share/static/css/rudder/forms.css          |  63 ++++--
 share/static/css/rudder/history.css        |  78 -------
 share/static/css/rudder/layout.css         | 101 +++++----
 share/static/css/rudder/login.css          |   9 +-
 share/static/css/rudder/misc.css           |  15 +-
 share/static/css/rudder/msie.css           |  60 +++--
 share/static/css/rudder/nav.css            | 174 ++++++++-------
 share/static/css/rudder/ticket-forms.css   |   3 +-
 share/static/css/rudder/ticket-lists.css   | 154 +++++++------
 share/static/css/rudder/ticket-search.css  | 143 ++++++------
 share/static/css/rudder/ticket.css         |  70 ++++--
 17 files changed, 669 insertions(+), 714 deletions(-)
 copy lib/RT/Approval.pm => devel/tools/css_tidy (83%)
 mode change 100644 => 100755

- Log -----------------------------------------------------------------
commit 77344c4b82650f53ca0cc3938cd57ec5dcbb91a6
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Tue Aug 27 17:57:34 2013 -0400

    Simple CSS tidy tool, based on procssor.com

diff --git a/devel/tools/css_tidy b/devel/tools/css_tidy
new file mode 100755
index 0000000..0d130bd
--- /dev/null
+++ b/devel/tools/css_tidy
@@ -0,0 +1,60 @@
+#!/bin/bash
+# BEGIN BPS TAGGED BLOCK {{{
+#
+# COPYRIGHT:
+#
+# This software is Copyright (c) 1996-2013 Best Practical Solutions, LLC
+#                                          <sales at bestpractical.com>
+#
+# (Except where explicitly superseded by other copyright notices)
+#
+#
+# LICENSE:
+#
+# This work is made available to you under the terms of Version 2 of
+# the GNU General Public License. A copy of that license should have
+# been provided with this software, but in any event can be snarfed
+# from www.gnu.org.
+#
+# This work is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+# 02110-1301 or visit their web page on the internet at
+# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
+#
+#
+# CONTRIBUTION SUBMISSION POLICY:
+#
+# (The following paragraph is not intended to limit the rights granted
+# to you to modify and distribute this software under the terms of
+# the GNU General Public License and is only of importance to you if
+# you choose to contribute your changes and enhancements to the
+# community by submitting them to Best Practical Solutions, LLC.)
+#
+# By intentionally submitting any modifications, corrections or
+# derivatives to this work, or any other work intended for use with
+# Request Tracker, to Best Practical Solutions, LLC, you confirm that
+# you are the copyright holder for those contributions and you grant
+# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
+# royalty-free, perpetual, license to use, copy, create derivative
+# works based on those contributions, and sublicense and distribute
+# those contributions and any derivatives thereof.
+#
+# END BPS TAGGED BLOCK }}}
+
+set -e
+
+tmpfile=$(mktemp)
+
+curl -F css=@$1 -F source=file \
+     -F property_formatting=newline -F braces=default -F indent_size=4 \
+     -F blank_line_rules_chk=1 -F blank_line_rules=1 \
+     -F safe_chk=1             -F safe=1 \
+     http://procssor.com/process > $tmpfile
+
+xml_grep --text_only '*/textarea[@id="download_me"]' --html $tmpfile | expand -t4 | tail -n +2 > $1

commit 54c91851cc2936ae8314df6fcb525dcdf1f76bfc
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Tue Aug 27 18:08:14 2013 -0400

    Run new rudder styles through css_tidy

diff --git a/share/static/css/base/print.css b/share/static/css/base/print.css
index ba9b848..965092f 100644
--- a/share/static/css/base/print.css
+++ b/share/static/css/base/print.css
@@ -1,184 +1,189 @@
- at media print {
-	    
-	* {
-	    position: static;
-	    overflow: visible !important;
-	}
-	
-	body {
-	    margin: 0;
-	    padding: 0;
-	    font-size: 10pt;
-	    background: white !important;
-	}
-	
-	div#body {
+ at media print { 
+    * {
+        position: static;
+        overflow: visible !important;
+    }
+
+    body {
+        margin: 0;
+        padding: 0;
+        font-size: 10pt;
+        background: white !important;
+    }
+
+    div#body {
         background: transparent;
         margin-top: 3em !important;
-	    margin: 0 !important;
-	    padding: 0 !important;
-	    border-style: none !important;
+        margin: 0 !important;
+        padding: 0 !important;
+        border-style: none !important;
         border: none !important;
         -webkit-border-radius: none !important;
         -moz-border-radius: none !important;
         border-radius: none !important;
-	}
-	
-	div#header h1 {
-	    margin-bottom: 1em !important;
+    }
+
+    div#header h1 {
+        margin-bottom: 1em !important;
         padding-left: 1em !important;
-	    position: static !important;
-	    height: auto;
-	    width: auto;
-	    overflow: visible;
-	    color: black !important;
-	    padding: 0 !important;
-	}
-	
-	#header {
-	    padding: 0 !important;
+        position: static !important;
+        height: auto;
+        width: auto;
+        overflow: visible;
+        color: black !important;
+        padding: 0 !important;
+    }
+
+    #header {
+        padding: 0 !important;
         background: transparent !important;
-	}
-	
-	#quickbar,
-	#app-nav,
-	#page-menu,
-	#main-navigation,
-	#page-navigation,
-	.titlebox-title .widget,
-	.titlebox-title .right,
-	.ticket-info-links .titlebox-content .create,
-	div.transaction div.metadata span.actions,
-	div.transaction div.content div.downloadattachment,
-	#comp-Search-Results #body .refresh,
-	.search-result-actions,
-	#comp-Search-Chart .chart-meta,
-	#footer,
-	#topactions,
-	#logo,
-	div.summary + br
-	{
-	    display: none;
-	}
-	
-	/* Hide "Click to load" and "Loading" message. Loaded history is #id > .history */
-	#deferred_ticket_history > .titlebox, #delayed_ticket_history > .titlebox {
-	    display: none;
-	}
-	
-	a:link, a:visited {
-	    font-weight: bold !important;
-	}
-	
-	div.transaction .metadata .type {
-	    display: none;
-	}
-	
-	div.titlebox-title .left {
-	    border: 0 !important;
-	    color: black !important;
-	    margin: 0 !important;
-	    padding-left: 0 !important;
+    }
+
+    #quickbar,
+    #app-nav,
+    #page-menu,
+    #main-navigation,
+    #page-navigation,
+    .titlebox-title .widget,
+    .titlebox-title .right,
+    .ticket-info-links .titlebox-content .create,
+    div.transaction div.metadata span.actions,
+    div.transaction div.content div.downloadattachment,
+    #comp-Search-Results #body .refresh,
+    .search-result-actions,
+    #comp-Search-Chart .chart-meta,
+    #footer,
+    #topactions,
+    #logo,
+    div.summary + br {
+        display: none
+    }
+
+    /* Hide "Click to load" and "Loading" message. Loaded history is #id > .history */
+
+    #deferred_ticket_history > .titlebox,
+    #delayed_ticket_history > .titlebox {
+        display: none
+    }
+
+    a:link,
+    a:visited {
+        font-weight: bold !important
+    }
+
+    div.transaction .metadata .type {
+        display: none
+    }
+
+    div.titlebox-title .left {
+        border: 0 !important;
+        color: black !important;
+        margin: 0 !important;
+        padding-left: 0 !important;
         background-color: transparent !important;
-	}
-	
-	.titlebox.rolled-up .titlebox-title .left:after {
-	    content: " [-]";
-	    font-weight: normal;
-	}
-	
-	
-	/* outer Ticket Metadata titlebox gets no padding, but inside ones do below */
-	.summary .titlebox-content {
-        background: transparent !important;
-	}
-	
-	div.summary .ticket-summary div.titlebox-content {
-	    padding: 0.5em 1em 1em 1em !important;
-	}
-	
-	div.titlebox-title .left * {
-	    color: black !important;
+    }
+
+    .titlebox.rolled-up .titlebox-title .left:after {
+        content: " [-]";
+        font-weight: normal;
+    }
+
+    /* outer Ticket Metadata titlebox gets no padding, but inside ones do below */
+
+    .summary .titlebox-content {
+        background: transparent !important
+    }
+
+    div.summary .ticket-summary div.titlebox-content {
+        padding: 0.5em 1em 1em 1em !important
+    }
+
+    div.titlebox-title .left * {
+        color: black !important;
         background: transparent !important;
-	}
-	
-	div.messagebody a[href]:after {
-	    text-decoration: underline !important;
-	    content: " (" attr(href) ") ";
-	}
+    }
 
+    div.messagebody a[href]:after {
+        text-decoration: underline !important;
+        content: " (" attr(href) ") ";
+    }
 
     div.results {
-        background: #ccc;
-
-    }
-
-	.messagebody {
-	    orphans: 2;
-	    widows: 2;
-	}
-	
-	div.titlebox-title {
-	    page-break-after: avoid;
-	    border: 0 !important;
-	}
-	
-	.history-container, div.transaction {
-	    border: 0 !important;
-	}
-	
-	div.transaction {
-	    page-break-inside: avoid;
-	}
-	
-	/* hide "Ticket metadata" */
-	div.summary > div > div.titlebox > div.titlebox-title {
-	    display: none !important;
-	}
-	
-	.value {
-	    font-weight: bold !important;
-	}
-	
-	.label, .label a, .labeltop, .labeltop a {
-	    font-weight: normal !important;
-	}
-	
-	div.titlebox {
-	    margin-bottom: 0;
-	}
-	
-	/* for web2 and ballard*/
-	
-	div.titlebox {
-	    border: 0 !important;
-	}
-	
-	div.history .titlebox-title {
-	    padding: 0 !important;
-	    margin: 0 !important;
-	}
-	
-	/* for web2 */
-	
-	#page-action-menu {
-	    display: none;
-	}
-	
-	/* form elements */
-	input, select, option {
-	    background: white !important;
+        background: #ccc
+    }
+
+    .messagebody {
+        orphans: 2;
+        widows: 2;
+    }
+
+    div.titlebox-title {
+        page-break-after: avoid;
+        border: 0 !important;
+    }
+
+    .history-container,
+    div.transaction {
+        border: 0 !important
+    }
+
+    div.transaction {
+        page-break-inside: avoid
+    }
+
+    /* hide "Ticket metadata" */
+
+    div.summary > div > div.titlebox > div.titlebox-title {
+        display: none !important
+    }
+
+    .value {
+        font-weight: bold !important
+    }
+
+    .label,
+    .label a,
+    .labeltop,
+    .labeltop a {
+        font-weight: normal !important
+    }
+
+    div.titlebox {
+        margin-bottom: 0
+    }
+
+    /* for web2 and ballard*/
+
+    div.titlebox {
+        border: 0 !important
+    }
+
+    div.history .titlebox-title {
+        padding: 0 !important;
+        margin: 0 !important;
+    }
+
+    /* for web2 */
+
+    #page-action-menu {
+        display: none
+    }
+
+    /* form elements */
+
+    input,
+    select,
+    option {
+        background: white !important;
         color: black !important;
-	    border: 1px solid #666 !important;
-	}
-	
-	option {
-	    border: none !important;
-	}
-	
-	option[selected] {
-	    font-weight: bold !important;
-	}
-	
+        border: 1px solid #666 !important;
+    }
+
+    option {
+        border: none !important
+    }
 
+    option[selected] {
+        font-weight: bold !important
+    }
 }
diff --git a/share/static/css/rudder/admin.css b/share/static/css/rudder/admin.css
index 8d79b7e..37dcb5c 100644
--- a/share/static/css/rudder/admin.css
+++ b/share/static/css/rudder/admin.css
@@ -1,5 +1,5 @@
 #comp-Admin .list-menu {
-float:left;
+    float: left
 }
 
 #rt-portal .titlebox {
diff --git a/share/static/css/rudder/base.css b/share/static/css/rudder/base.css
index b105f69..2217bfa 100644
--- a/share/static/css/rudder/base.css
+++ b/share/static/css/rudder/base.css
@@ -1,15 +1,17 @@
 a {
-  color: #000;
-  text-decoration: none;
+    color: #000;
+    text-decoration: none;
 }
 
-
 a:visited {
-    color: #666;
+    color: #666
 }
 
-a:hover  {
-  text-decoration: underline;
+a:hover {
+    text-decoration: underline
 }
 
-textarea:focus, input:focus {   background-color: #ffd; }
+textarea:focus,
+input:focus {
+    background-color: #ffd
+}
diff --git a/share/static/css/rudder/boxes.css b/share/static/css/rudder/boxes.css
index d752933..be94355 100644
--- a/share/static/css/rudder/boxes.css
+++ b/share/static/css/rudder/boxes.css
@@ -1,5 +1,5 @@
 .titlebox {
- margin-top: 1em;
+    margin-top: 1em;
     margin-bottom: 2em;
 }
 
@@ -17,56 +17,50 @@
 }
 
 * html .titlebox {
- border-top: none;
- border-left: none;
+    border-top: none;
+    border-left: none;
 }
 
 .titlebox .titlebox {
-
- margin-top: 1em;
- margin-right: 0.25em;
-
+    margin-top: 1em;
+    margin-right: 0.25em;
 }
 
 .titlebox .titlebox .titlebox-content {
-}
 
+}
 
 .titlebox {
- margin-left: 0em;
- margin-right: 0em;
- min-height: 1.25em;
-
- 
+    margin-left: 0em;
+    margin-right: 0em;
+    min-height: 1.25em;
 }
 
 .titlebox .titlebox-title {
- position: relative;
- background-color: transparent;
+    position: relative;
+    background-color: transparent;
 }
 
 .titlebox .titlebox-title a {
- text-decoration: none;
- color: black;
-
+    text-decoration: none;
+    color: black;
 }
 
 .titlebox .titlebox-title a:hover {
- text-decoration: underline;
-
+    text-decoration: underline
 }
 
 .titlebox.rolled-up  .titlebox-title .left,
-.titlebox.rolled-up  .titlebox-title .left a{
-    color: #ccc;
+.titlebox.rolled-up  .titlebox-title .left a {
+    color: #ccc
 }
 
 .titlebox.rolled-up .titlebox-title {
-    border-bottom: 1px solid #ccc;
+    border-bottom: 1px solid #ccc
 }
 
 .titlebox.rolled-up .titlebox-title .right {
-    display: none;
+    display: none
 }
 
 .titlebox .titlebox-title .left {
@@ -78,86 +72,77 @@
     font-size: 1.1em;
     border: none;
 }
+
 .titlebox .titlebox-title .left,
 .titlebox .titlebox-title .left a {
-    color: #3858a3;
+    color: #3858a3
 }
 
 .titlebox .titlebox-title .right-empty {
- display:none;
+    display: none
 }
 
 .titlebox .titlebox-title .right {
-  position: absolute;
-   right: 2px;
-   top: 0;
-  font-size: 0.9em;
- padding-right: 0em;
- padding-left: 0.4em;
- padding-bottom: 0.2em;
- padding-top: 0.5em;
- -moz-border-radius-bottomleft: 0.25em;
- -webkit-border-bottom-left-radius: 0.25em;
-
-
- -moz-border-radius-topright: 0.25em;
- -webkit-border-top-right-radius: 0.25em;
-
-  border-radius: 0 0.25em 0 0.25em;
-
-
+    position: absolute;
+    right: 2px;
+    top: 0;
+    font-size: 0.9em;
+    padding-right: 0em;
+    padding-left: 0.4em;
+    padding-bottom: 0.2em;
+    padding-top: 0.5em;
+    -moz-border-radius-bottomleft: 0.25em;
+    -webkit-border-bottom-left-radius: 0.25em;
+    -moz-border-radius-topright: 0.25em;
+    -webkit-border-top-right-radius: 0.25em;
+    border-radius: 0 0.25em 0 0.25em;
 }
 
 .titlebox .titlebox-title .right a,
 .titlebox .titlebox-title .right a:visited {
- color: #999;
- font-weight: bold;
- margin-left: 0.5em;
- margin-right: 0.5em;
+    color: #999;
+    font-weight: bold;
+    margin-left: 0.5em;
+    margin-right: 0.5em;
 }
 
 .titlebox:hover .titlebox-title .right a,
 .titlebox:active .titlebox-title .right a {
-    color: #000;
+    color: #000
 }
 
 .titlebox .titlebox-title .widget a {
-  display: block;
-  margin: 0;
-  width: 20px;
-
-  background: url(../../../static/images/css/rollup-arrow.gif) no-repeat;
-  background-position: center 0;
-  
-  position: absolute;
-  top: 0.5em;
-  left: 0.5em;
-  
-  padding: 7px 0 0 0;
-  overflow: hidden;
+    display: block;
+    margin: 0;
+    width: 20px;
+    background: url(../../../static/images/css/rollup-arrow.gif) no-repeat;
+    background-position: center 0;
+    position: absolute;
+    top: 0.5em;
+    left: 0.5em;
+    padding: 7px 0 0 0;
+    overflow: hidden;
 }
 
 .titlebox.rolled-up .titlebox-title .widget a {
-    background-image: url(../../../static/images/css/rolldown-arrow.gif);
+    background-image: url(../../../static/images/css/rolldown-arrow.gif)
 }
 
-
 div.results .titlebox .titlebox-content {
-    border:none;
+    border: none;
     -moz-border-radius: 0.5em;
     border-radius: 0.5em;
     -webkit-border-radius: 0.5em;
     padding-top: 0.5em;
     padding-bottom: 0.5em;
-
 }
 
 .results .titlebox-content ul {
-    list-style-type: none;
+    list-style-type: none
 }
-.results .titlebox-title {
-    display: none;
 
+.results .titlebox-title {
+    display: none
 }
 
 .titlebox form {
diff --git a/share/static/css/rudder/dashboards.css b/share/static/css/rudder/dashboards.css
index 7ff6e2d..731c36c 100644
--- a/share/static/css/rudder/dashboards.css
+++ b/share/static/css/rudder/dashboards.css
@@ -1,7 +1,7 @@
 table.dashboard {
-    margin-top: 6em;
+    margin-top: 6em
 }
 
 #body>table.dashboard {
-    margin-top: inherit;
-}
\ No newline at end of file
+    margin-top: inherit
+}
diff --git a/share/static/css/rudder/forms.css b/share/static/css/rudder/forms.css
index 5d264fe..237d596 100644
--- a/share/static/css/rudder/forms.css
+++ b/share/static/css/rudder/forms.css
@@ -1,7 +1,8 @@
 /* These override the base titlebox rules in base/forms.css. They try not to
    duplicate properties. */
 
-div.results .titlebox, div.error div.error {
+div.results .titlebox,
+div.error div.error {
     border: none;
     background: none;
     font-weight: bold;
@@ -24,46 +25,71 @@ div.error .titlebox-title span.left {
     border-right: 2px solid #b00;
 }
 
-div.error .titlebox-content, div#body>div.error {
+div.error .titlebox-content,
+div#body>div.error {
     background-color: #fcc;
     padding: 1em;
 }
 
-div.error .titlebox-title .widget a { background-position: center -7px; }
+div.error .titlebox-title .widget a {
+    background-position: center -7px
+}
 
-input[type=reset], input[type=submit], input[class=button], button, input, select {
+input[type=reset],
+input[type=submit],
+input[class=button],
+button,
+input,
+select {
     font-size: 1.0em;
     -moz-border-radius: 0;
     -webkit-border-radius: 0;
     border-radius: 0;
 }
 
-input[type=reset], input[type=submit], input[class=button], button {
-   color: #fff;
-   background: #4868b3;
+input[type=reset],
+input[type=submit],
+input[class=button],
+button {
+    color: #fff;
+    background: #4868b3;
     border: 1px solid #fff;
     padding: 0.5em;
 }
 
-input.button:focus, button:focus, input[type=reset]:focus, input[type=submit]:focus, input[class=button]:focus,
-input.button:hover, button:hover, input[type=reset]:hover, input[type=submit]:hover, input[class=button]:hover {
-   background: #3D5B9D;
+input.button:focus,
+button:focus,
+input[type=reset]:focus,
+input[type=submit]:focus,
+input[class=button]:focus,
+input.button:hover,
+button:hover,
+input[type=reset]:hover,
+input[type=submit]:hover,
+input[class=button]:hover {
+    background: #3D5B9D
 }
 
-input.button:active, button:active, input[type=reset]:active, input[type=submit]:active, input[class=button]:active {
-   background: #1D3B7D;
-//   background: #3D5B9D;
+input.button:active,
+button:active,
+input[type=reset]:active,
+input[type=submit]:active,
+input[class=button]:active {
+    background: #1D3B7D;
+    //   background: #3D5B9D;
 }
 
-
- input[type=reset], input[type=submit], input[class=button], button {
+input[type=reset],
+input[type=submit],
+input[class=button],
+button {
     -moz-border-radius: 3px;
     -webkit-border-radius: 3px;
     border-radius: 3px;
     padding-left: 0.75em;
     padding-right: 0.75em;
- }
+}
 
- .value {
-     font-size: 1em;
- }
+.value {
+    font-size: 1em
+}
diff --git a/share/static/css/rudder/history.css b/share/static/css/rudder/history.css
index d655461..e69de29 100644
--- a/share/static/css/rudder/history.css
+++ b/share/static/css/rudder/history.css
@@ -1,78 +0,0 @@
-div.history-container {
-    border: 0;
-}
-
-.history .transaction.message div.content {
-    padding-right: 0;
-    padding-bottom: 3em;
-    margin-left: 3em;
-}
-
-.history .transaction .metadata span.type {
-    margin:0;
-    font-size: 1.2em;
-    margin-right: 1em;
-    padding: 0.25em;
-    border: none;
-}
-.history .transaction .metadata span.type a{
-    color: transparent ;
-
-}
-.history .transaction .metadata span.type a#lasttrans{
-    display: inline;
-    
-}
-.history .transaction:hover .metadata span.type a{
-    color: white;
-}
-
-.history .transaction .metadata .date,
-.history .transaction .metadata .description,
-.history .transaction .metadata .time-taken {
-    margin-top: 0.5em;
-    display: inline-block;
-    margin-right: 2em;
-}
-
-.history .transaction .metadata {
-    margin-bottom: 0em;
-    margin-top: 0.25em;
-}
-
-.transaction div.metadata span.actions  {
-    background: #eee;
-    color: #eee;
-    display: inline-block;
-    margin-right: 0.5em;
-    padding-top: 0.5em;
-    padding-bottom: 0.5em;
-    border-right: 1px solid #999;
-    -moz-border-radius-bottomright: 0.5em;
-    -webkit-border-bottom-right-radius: 0.5em
-}
-.transaction div.metadata span.actions a {
-    padding: 0.2em;
-}
-
-.transaction div.downloadattachment {
-    float: right;
-    clear: both;
-    text-align: right;
-    background: transparent;
-    padding-top: 0.5em;
-    margin-left: 1em;
-    border: none;
-    color: transparent;
-    line-height: 1em;
-}
-
-.transaction div.downloadattachment a {
-    color: #aaa;
-    display: block;
-}
-
-.transaction div.downloadattachment .downloadcontenttype {
-    color #ccc;
-    display: block;
-}
\ No newline at end of file
diff --git a/share/static/css/rudder/layout.css b/share/static/css/rudder/layout.css
index 384211f..99a23d8 100644
--- a/share/static/css/rudder/layout.css
+++ b/share/static/css/rudder/layout.css
@@ -1,8 +1,8 @@
 /* body */
 
 body {
-    padding:0;
-    margin:0;
+    padding: 0;
+    margin: 0;
     font-family: arial, helvetica, sans-serif;
     color: #000000;
 }
@@ -14,33 +14,32 @@ div#body {
     margin-right: 0;
     margin-bottom: 0em;
     background: #fff;
-    z-index:1;
+    z-index: 1;
     /*    overflow-x: auto; */
 }
 
 div#footer {
- position: absolute;
- right: 0;
- text-align: right;
- font-size: 0.9em;
- margin-top: 2em;
- background: #fff;
- margin-bottom: 0;
- padding-left: 3em;
- padding-right: 1em;
+    position: absolute;
+    right: 0;
+    text-align: right;
+    font-size: 0.9em;
+    margin-top: 2em;
+    background: #fff;
+    margin-bottom: 0;
+    padding-left: 3em;
+    padding-right: 1em;
 }
 
 div#footer #time {
-    display: none ;
+    display: none
 }
 
 div#footer #bpscredits {
- text-align: right;
- background: url(../../../static/images/bpslogo.png) no-repeat top right;
- padding-top: 4em;
+    text-align: right;
+    background: url(../../../static/images/bpslogo.png) no-repeat top right;
+    padding-top: 4em;
 }
 
-
 /* logo stuff */
 
 div#logo {
@@ -63,57 +62,56 @@ div#logo .rtname {
     text-align: center;
     top: 0.7em;
     padding-right: 1em;
-    float:left;
+    float: left;
 }
 
-
-div#quickbar, div#logo {
-    font-size: 0.9em;
-}
-div#quickbar a, div#logo a {
-    color: #000;
+div#quickbar,
+div#logo {
+    font-size: 0.9em
 }
 
+div#quickbar a,
+div#logo a {
+    color: #000
+}
 
 div#quickbar {
- background: #fff;
- padding-top: 1em;
- padding-left: 1em;
- padding-bottom: 0.5em;
- height: 1em;
- border-bottom: 1px solid #ccc;
-
+    background: #fff;
+    padding-top: 1em;
+    padding-left: 1em;
+    padding-bottom: 0.5em;
+    height: 1em;
+    border-bottom: 1px solid #ccc;
 }
 
 div#header {
- position: absolute;
- top: 2.3em;
- left: 0;
- right: 0;
- height: 3.2em;
- background: #547CCC;
-
+    position: absolute;
+    top: 2.3em;
+    left: 0;
+    right: 0;
+    height: 3.2em;
+    background: #547CCC;
 }
+
 div#header h1 {
- position: absolute;
- left: 1em;
- right: 20em;
- top: 0em;
- height: 1.4em;
- font-size: 1.4em;
- color: #fff;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- 
+    position: absolute;
+    left: 1em;
+    right: 20em;
+    top: 0em;
+    height: 1.4em;
+    font-size: 1.4em;
+    color: #fff;
+    white-space: nowrap;
+    overflow: hidden;
+    text-overflow: ellipsis;
 }
 
 /* in multi-column layouts, make sure we have an internal gutter */
 
 tr .boxcontainer {
-      padding-right: 3em;
+    padding-right: 3em
 }
 
 tr .boxcontainer:last-child {
-      padding-right: 0;
+    padding-right: 0
 }
diff --git a/share/static/css/rudder/login.css b/share/static/css/rudder/login.css
index 542b1e4..889cb0e 100644
--- a/share/static/css/rudder/login.css
+++ b/share/static/css/rudder/login.css
@@ -1,8 +1,7 @@
 #login-box .titlebox-title .left {
-    padding-left: 0em;
+    padding-left: 0em
 }
 
- #login-box .input-row .label {
-     width: 13em;
-
- }
+#login-box .input-row .label {
+    width: 13em
+}
diff --git a/share/static/css/rudder/misc.css b/share/static/css/rudder/misc.css
index 82a5526..66d71db 100644
--- a/share/static/css/rudder/misc.css
+++ b/share/static/css/rudder/misc.css
@@ -1,7 +1,6 @@
 .comment {
- padding-left: 0.5em;
- color: #999;
-
+    padding-left: 0.5em;
+    color: #999;
 }
 
 #comp-Ticket-ShowEmailRecord #body {
@@ -10,17 +9,19 @@
     overflow: auto;
 }
 
-span.label, span.labeltop,
-td.label, td.labeltop {
+span.label,
+span.labeltop,
+td.label,
+td.labeltop {
     font-weight: bold;
     color: #666;
     font-size: 1em;
 }
 
 table.myday h2 {
-    display: inline;
+    display: inline
 }
 
 table.myday td {
-    padding: 0.25em;
+    padding: 0.25em
 }
diff --git a/share/static/css/rudder/msie.css b/share/static/css/rudder/msie.css
index 79ba2e4..eed7640 100644
--- a/share/static/css/rudder/msie.css
+++ b/share/static/css/rudder/msie.css
@@ -1,4 +1,5 @@
 div#body {
+
 }
 
 div#logo .rtname {
@@ -7,38 +8,38 @@ div#logo .rtname {
     position: absolute;
 }
 
-
 .topaction form * {
-    vertical-align: top;
+    vertical-align: top
 }
 
-.topaction form button, .topaction form input {
-   height: 2em;
+.topaction form button,
+.topaction form input {
+    height: 2em
 }
 
 .topaction form input.field {
-   height: 1.6em;
+    height: 1.6em
 }
 
 .topaction .select-queue {
-    margin-top: 0.2em;
+    margin-top: 0.2em
 }
 
 #pick-criteria td.label select {
-    width: 10em;
+    width: 10em
 }
 
-
 #editquery {
-  margin-top: 0.2em;
-  width: 39%;
-  left: 60%;
+    margin-top: 0.2em;
+    width: 39%;
+    left: 60%;
 }
 
 div#nav li.first {
     margin-top: 0.75em;
     border-top: none;
 }
+
 div#nav ul ul li.first {
     border-top: 1px solid #cccccc;
     margin-top: 0.25em;
@@ -50,37 +51,34 @@ div#nav li.last {
     margin-bottom: 0;
 }
 
-
-.transaction .type a { font-weight: normal; text-decoration: none; color: #fff; }
-
-
+.transaction .type a {
+    font-weight: normal;
+    text-decoration: none;
+    color: #fff;
+}
 
 /* IE's box model is wrong */
+
 .titlebox .titlebox-title .widget a {
     padding-top: 0;
     height: 7px;
     top: 0.75em;
 }
 
-
-
 .titlebox .titlebox-title .right {
     display: block;
     margin-top: 0.4em;
     padding-right: 0.3em;
-
 }
 
-
-
-
 /* nested things. like the ticket dates tab */
-.titlebox .titlebox .titlebox-title .right{
-    top: 0.25em;
+
+.titlebox .titlebox .titlebox-title .right {
+    top: 0.25em
 }
 
 .combobox {
-    float: left;
+    float: left
 }
 
 .combobox .combo-button {
@@ -89,25 +87,23 @@ div#nav li.last {
 }
 
 .combobox .combo-list {
-    margin-top:0.5em;
+    margin-top: 0.5em;
     margin-left: -0.2em;
 }
 
 #pick-criteria td.label {
-     width: auto;
+    width: auto
 }
 
 #pick-criteria td.operator {
-  width: 7.5em;
+    width: 7.5em
 }
 
 .plain-text-white-space {
-  word-wrap: break-word;       /* Internet Explorer 5.5+ */
-  white-space: pre;   /* IE only hack to re-specify in addition to
-  word-wrap  */
+    word-wrap: break-word; /* Internet Explorer 5.5+ */
+    white-space: pre; /* IE only hack to re-specify in addition to word-wrap  */
 }
 
 #rt-portal .titlebox-content {
-    height: 23em;
+    height: 23em
 }
-
diff --git a/share/static/css/rudder/nav.css b/share/static/css/rudder/nav.css
index 1cead1d..da6daa3 100644
--- a/share/static/css/rudder/nav.css
+++ b/share/static/css/rudder/nav.css
@@ -4,30 +4,32 @@
 }
 
 .sf-menu li:hover {
-    background-color: #CFDEFF;
+    background-color: #CFDEFF
 }
 
-.sf-menu li, .sf-menu li li, .sf-menu li li li {
-    background-color: #fff;
+.sf-menu li,
+.sf-menu li li,
+.sf-menu li li li {
+    background-color: #fff
 }
 
 .sf-sub-indicator {
-    background-image: url(../../../static/css/images/arrows-grey.png);
+    background-image: url(../../../static/css/images/arrows-grey.png)
 }
 
 .sf-menu li li .sf-sub-indicator {
-    margin-top: -3px;
+    margin-top: -3px
 }
 
 #page-menu.sf-menu li .sf-sub-indicator {
-    top: 0.7em;
+    top: 0.7em
 }
 
-#page-menu.sf-menu li:hover ul, #page-menu.sf-menu li.sfHover ul {
-    top: 2.5em;
+#page-menu.sf-menu li:hover ul,
+#page-menu.sf-menu li.sfHover ul {
+    top: 2.5em
 }
 
-
 #main-navigation {
     position: absolute;
     top: 1px;
@@ -36,7 +38,8 @@
     text-color: #000;
 }
 
-#main-navigation .sf-menu a, #main-navigation .sf-menu a:hover {
+#main-navigation .sf-menu a,
+#main-navigation .sf-menu a:hover {
     padding-top: 0.5em;
     padding-bottom: 0.5em;
     border-color: #fff;
@@ -44,22 +47,22 @@
 }
 
 #main-navigation a {
-    border-top: none;
+    border-top: none
 }
 
 #main-navigation li li a {
-    border-top: 1px solid white;
+    border-top: 1px solid white
 }
 
 #app-nav.sf-menu > li:first-child > a {
-    border-left: none;
+    border-left: none
 }
 
-#main-navigation #app-nav > li, #main-navigation #app-nav > li > a {
-    background-color: transparent;
+#main-navigation #app-nav > li,
+#main-navigation #app-nav > li > a {
+    background-color: transparent
 }
 
-
 #page-navigation {
     position: absolute;
     top: 6em;
@@ -72,45 +75,61 @@
     background-color: #eee;
 }
 
-#page-navigation #page-menu{
+#page-navigation #page-menu {
     margin-top: 0.2em;
     float: right;
     width: auto;
 }
- 
-#page-navigation .sf-menu li  {
-    background-color: transparent;
+
+#page-navigation .sf-menu li {
+    background-color: transparent
 }
-#page-navigation .sf-menu li li, #page-navigation .sf-menu li li li {
-    background-color: #fff;
+
+#page-navigation .sf-menu li li,
+#page-navigation .sf-menu li li li {
+    background-color: #fff
 }
 
-#page-navigation .sf-menu a:visited, #page-navigation .sf-menu a {
+#page-navigation .sf-menu a:visited,
+#page-navigation .sf-menu a {
     border: none;
     color: #000;
 }
 
 /* to stop a "flash" of an unstyled menu on an older browser,  hide the menu until superfish has initialized it */
-#app-nav.toplevel { display: none; }
-#app-nav.toplevel.sf-menu { display:block; }
-#page-menu.toplevel { display: none; }
-#page-menu.toplevel.sf-menu { display:block; }
+
+#app-nav.toplevel {
+    display: none
+}
+
+#app-nav.toplevel.sf-menu {
+    display: block
+}
+
+#page-menu.toplevel {
+    display: none
+}
+
+#page-menu.toplevel.sf-menu {
+    display: block
+}
 
 #topactions {
- position: absolute;
- background: transparent;
- top: 2.5em;
- right: 0em;
- padding-right: 0.7em;
- width: auto;
- padding-top: 0.5em;
- padding-bottom: 0.5em;
- min-width: 42em;
- font-size: 0.9em;
- z-index: 99;
+    position: absolute;
+    background: transparent;
+    top: 2.5em;
+    right: 0em;
+    padding-right: 0.7em;
+    width: auto;
+    padding-top: 0.5em;
+    padding-bottom: 0.5em;
+    min-width: 42em;
+    font-size: 0.9em;
+    z-index: 99;
 }
 
 #topactions form * {
+
 }
 
 #topactions input,
@@ -118,41 +137,39 @@
 #topactions input[type=submit],
 #topactions button {
     font-size: 1em;
-    padding-top: 0.25em;    
-    padding-bottom: 0.25em;  
+    padding-top: 0.25em;
+    padding-bottom: 0.25em;
     padding-left: 0.5em;
     padding-right: 0.5em;
     width: 8em;
     vertical-align: middle;
-    
-
 }
 
 #topactions .select-queue {
-    padding-right: 0;
+    padding-right: 0
 }
 
-#topactions #simple-search .field{
- margin-left: 1em;
- color: #787;
- }
+#topactions #simple-search .field {
+    margin-left: 1em;
+    color: #787;
+}
 
 #topactions #simple-search .field:focus {
- color: #000;
- }
+    color: #000
+}
 
-.sf-menu ul { 
+.sf-menu ul {
     background-image: none;
     padding: 0;
-
 }
+
 .sf-menu.sf-shadow ul {
-    -moz-border-radius:0;
+    -moz-border-radius: 0;
     -webkit-border-radius: 0;
-    border-radius:0;
-    -moz-box-shadow:    2px 2px 8px -2px #999;
+    border-radius: 0;
+    -moz-box-shadow: 2px 2px 8px -2px #999;
     -webkit-box-shadow: 2px 2px 8px -2px #999;
-    box-shadow:         2px 2px 8px -2px #999;
+    box-shadow: 2px 2px 8px -2px #999;
 }
 
 /* The bookmark star is too tall without adjusting the padding and height */
@@ -163,46 +180,45 @@
 }
 
 .sf-menu .toggle-bookmark a img {
-    padding-top: 0.6em;
+    padding-top: 0.6em
 }
 
 /* Pin page menu to top left corner once you scroll past it */
 
 #page-navigation #page-menu.pinned {
     position: fixed;
-    top:    0;
-    right:  0;
-    left:   auto;
-    width:  auto;
+    top: 0;
+    right: 0;
+    left: auto;
+    width: auto;
     margin-top: 0;
-    background:     white;
-    border-left:    1px #aaa solid;
-    border-bottom:  1px #aaa solid;
-    border-radius:  0 0 0 5px;
-    box-shadow:     0 0 10px rgba(0,0,0,0.4);
-
+    background: white;
+    border-left: 1px #aaa solid;
+    border-bottom: 1px #aaa solid;
+    border-radius: 0 0 0 5px;
+    box-shadow: 0 0 10px rgba(0,0,0,0.4);
     /* stupid vendor prefixes */
-    -moz-border-radius:     0 0 0 5px;
-    -webkit-border-radius:  0 0 0 5px;
-    -moz-box-shadow:        0 0 10px rgba(0,0,0,0.4);
-    -webkit-box-shadow:     0 0 10px rgba(0,0,0,0.4);
+    -moz-border-radius: 0 0 0 5px;
+    -webkit-border-radius: 0 0 0 5px;
+    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.4);
+    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.4);
 }
 
 #page-menu.pinned li:hover ul,
 #page-menu.pinned li.sfHover ul {
-    border-left:    1px #aaa solid;
-    border-right:   1px #aaa solid;
-    z-index:        -1 !important; /* relative to current stacking context */
-    box-shadow:     0 0 10px rgba(0,0,0,0.4);
-
-    -moz-box-shadow:    0 0 10px rgba(0,0,0,0.4);
+    border-left: 1px #aaa solid;
+    border-right: 1px #aaa solid;
+    z-index: -1 !important; /* relative to current stacking context */
+    box-shadow: 0 0 10px rgba(0,0,0,0.4);
+    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.4);
     -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.4);
 }
 
 /* round off the corner of the first menu item so it matches the container */
+
 #page-menu.pinned > li:first-of-type,
 #page-menu.pinned > li:first-of-type > a {
-    border-radius:          0 0 0 5px;
-    -moz-border-radius:     0 0 0 5px;
-    -webkit-border-radius:  0 0 0 5px;
+    border-radius: 0 0 0 5px;
+    -moz-border-radius: 0 0 0 5px;
+    -webkit-border-radius: 0 0 0 5px;
 }
diff --git a/share/static/css/rudder/ticket-forms.css b/share/static/css/rudder/ticket-forms.css
index 19aa5a8..a026c26 100644
--- a/share/static/css/rudder/ticket-forms.css
+++ b/share/static/css/rudder/ticket-forms.css
@@ -1,4 +1,5 @@
 .sidebyside #ticket-create-message .button[name="AddMoreAttach"],
 .sidebyside #ticket-update-message .button[name="AddMoreAttach"] {
-    margin-right: -0.25em; // right align with the button in the outer div
+    margin-right: -0.25em;
+    // right align with the button in the outer div: ;
 }
diff --git a/share/static/css/rudder/ticket-lists.css b/share/static/css/rudder/ticket-lists.css
index 000863c..cedc614 100644
--- a/share/static/css/rudder/ticket-lists.css
+++ b/share/static/css/rudder/ticket-lists.css
@@ -1,12 +1,13 @@
-table.queue-summary, table.collection-as-table {
-  width: 100%;
-  border-spacing:0;
-  border-collapse:collapse;
-  margin-top: 1em;
-
+table.queue-summary,
+table.collection-as-table {
+    width: 100%;
+    border-spacing: 0;
+    border-collapse: collapse;
+    margin-top: 1em;
 }
+
 table.collection-as-table td {
-    padding-bottom: 0.25em;
+    padding-bottom: 0.25em
 }
 
 table.collection-as-table h1,
@@ -20,148 +21,142 @@ table.collection-as-table h5 {
     padding: 0.1em;
     display: inline-block;
     font-weight: normal;
-} 
+}
 
 table.collection-as-table h1 a,
 table.collection-as-table h2 a,
 table.collection-as-table h3 a,
 table.collection-as-table h4 a,
-table.collection-as-table h5 a{
-    font-weight: normal;
-
+table.collection-as-table h5 a {
+    font-weight: normal
 }
-table.queue-summary tr>*:first-child {
- padding-left: 1em;
 
+table.queue-summary tr>*:first-child {
+    padding-left: 1em
 }
 
-
 table.queue-summary tr>*:last-child {
- padding-right: 1em;
-
+    padding-right: 1em
 }
 
-table.queue-summary a, table.collection-as-table a  {
-  font-weight: bold;
+table.queue-summary a,
+table.collection-as-table a {
+    font-weight: bold
 }
 
 table.collection-as-table th.collection-as-table,
 table.queue-summary th.collection-as-table {
-  background: transparent;
-  padding: 0.25em;
-  margin-bottom: 0.5em;
-  padding-bottom: 0.5em;
-  color: #3858a3;
+    background: transparent;
+    padding: 0.25em;
+    margin-bottom: 0.5em;
+    padding-bottom: 0.5em;
+    color: #3858a3;
 }
+
 table.collection-as-table th.collection-as-table a,
 table.queue-summary th.collection-as-table a {
-  color: #3858a3;
+    color: #3858a3
 }
 
 table.collection-as-table th.collection-as-table {
-  text-align: left;
+    text-align: left
 }
 
-
 table.queue-summary th.collection-as-table {
-  text-align: right;
+    text-align: right
 }
 
-table.collection-as-table, table.queue-summary {
+table.collection-as-table,
+table.queue-summary {
     border-bottom: 1px solid #ccc;
     margin-bottom: 1em;
-
 }
 
 table.queue-summary th.collection-as-table:first-child {
-  text-align: left;
-
+    text-align: left
 }
 
-
 tr.collection-as-table+tr.collection-as-table th,
 table.collection-as-table.chart th {
- border-bottom: 2px solid #ccc;
-
+    border-bottom: 2px solid #ccc
 }
 
-
-
 table.queue-summary td {
-  background: #efefef;
-  border-bottom: 1px solid #ccc;
+    background: #efefef;
+    border-bottom: 1px solid #ccc;
 }
 
-
-tr.evenline td, tr.oddline td {
- padding-top: 0.5em;
-  border-top: 1px solid #cccccc;
+tr.evenline td,
+tr.oddline td {
+    padding-top: 0.5em;
+    border-top: 1px solid #cccccc;
 }
 
 tr.evenline td {
-  background: #fff;
+    background: #fff
 }
 
 tr.oddline td {
-  background: #eee;
+    background: #eee
 }
+
 tr.evenline+tr.evenline td,
 tr.oddline+tr.oddline td {
-    border-top: none;
+    border-top: none
 }
 
-tr.evenline , tr.oddline  {
+tr.evenline,
+tr.oddline {
     border-left: 1px solid #cccccc;
     border-right: 1px solid #cccccc;
 }
 
-
-
-tr.evenline+tr.evenline td, tr.oddline+tr.oddline td{
- padding-top: 0;
- border: none;
+tr.evenline+tr.evenline td,
+tr.oddline+tr.oddline td {
+    padding-top: 0;
+    border: none;
 }
 
-
-
 table.collection-as-table td:first-child,
 table.collection-as-table th:first-child {
-  padding-left: 1em;
+    padding-left: 1em
 }
 
-table.collection-as-table td:last-child, table.collection-as-table th:last-child {
-  padding-right: 1em;
+table.collection-as-table td:last-child,
+table.collection-as-table th:last-child {
+    padding-right: 1em
 }
 
-th.collection-as-table , td.collection-as-table {
- padding-right: 0.5em;
+th.collection-as-table,
+td.collection-as-table {
+    padding-right: 0.5em
 }
 
-.pagenum.a:hover, .paging a.nav:hover{
-text-decoration: underline;
+.pagenum.a:hover,
+.paging a.nav:hover {
+    text-decoration: underline
 }
 
-
-.pagenum *, .paging a.nav{
-padding: .5em;
+.pagenum *,
+.paging a.nav {
+    padding: .5em
 }
 
-.currentpage{
-text-decoration: none;
-font-weight: bold;
-background: #eee;
+.currentpage {
+    text-decoration: none;
+    font-weight: bold;
+    background: #eee;
 }
 
-div.paging{
-text-align: center;
-padding-bottom: 1em;
+div.paging {
+    text-align: center;
+    padding-bottom: 1em;
 }
 
-
 /* full-page ticket lists */
-#body>table.collection-as-table {
-    margin-bottom: 2em;
 
+#body>table.collection-as-table {
+    margin-bottom: 2em
 }
 
 .chart.image {
@@ -185,15 +180,15 @@ padding-bottom: 1em;
     text-align: center;
     padding: 0.5em;
     padding-right: 1em;
-    padding-left:  1em;
+    padding-left: 1em;
 }
 
 .chart-wrapper .collection-as-table tr.total td {
-    border-top: 1px solid #ccc;
+    border-top: 1px solid #ccc
 }
 
 .chart-wrapper .collection-as-table td.value {
-    padding-left: 0.5em;
+    padding-left: 0.5em
 }
 
 .chart-wrapper .query {
@@ -204,12 +199,11 @@ padding-bottom: 1em;
 }
 
 .chart-wrapper .collection-as-table .label {
-    font-weight: bold;
+    font-weight: bold
 }
 
-
 .chart-wrapper .query .label {
-    font-weight: bold;
+    font-weight: bold
 }
 
 .chart-meta {
@@ -225,5 +219,5 @@ padding-bottom: 1em;
 }
 
 .chart-meta .saved-search {
-    display: inline-block;
+    display: inline-block
 }
diff --git a/share/static/css/rudder/ticket-search.css b/share/static/css/rudder/ticket-search.css
index f16a167..510083d 100644
--- a/share/static/css/rudder/ticket-search.css
+++ b/share/static/css/rudder/ticket-search.css
@@ -1,13 +1,13 @@
 #comp-Search-Build #body {
-    position: relative;
+    position: relative
 }
 
 #pick-criteria select {
-    width: 8em;
+    width: 8em
 }
 
 #pick-criteria tr {
-    height: 1.5em;
+    height: 1.5em
 }
 
 #pick-criteria td.label {
@@ -17,122 +17,112 @@
 }
 
 #pick-criteria td.label select {
-  width: 8.5em;
-  text-align: right;
+    width: 8.5em;
+    text-align: right;
 }
 
 #pick-criteria td.operator {
- padding-right: 0.5em;
- text-align: left;
- vertical-align: bottom;
- width: 7em;
+    padding-right: 0.5em;
+    text-align: left;
+    vertical-align: bottom;
+    width: 7em;
 }
 
 #pick-criteria td.operator select {
- text-align: right;
+    text-align: right
 }
 
 #pick-criteria td.value input,
 #pick-criteria td.value select {
- width: 11em;
+    width: 11em
 }
 
 #pick-criteria td.value #ValueOfDate {
- width: 11em;
+    width: 11em
 }
 
-
 #pick-criteria td.value #ValueOfTime {
- width: 4em;
-
+    width: 4em
 }
 
-#pick-criteria td.value #ValueOfTime-TimeUnits{
- width: 5.5em;
+#pick-criteria td.value #ValueOfTime-TimeUnits {
+    width: 5.5em
 }
 
 #pick-criteria td.value {
- padding-right: 0.5em;
- text-align: left;
- font: message-box;
+    padding-right: 0.5em;
+    text-align: left;
+    font: message-box;
 }
 
-#editquery, #editsearches{
-  position: absolute;
-  margin-top: 1.5em;
-  right: 1em;
-  left: 60%;
-  top: 1em;
-/*  margin-top: -1em; */
+#editquery,
+#editsearches {
+    position: absolute;
+    margin-top: 1.5em;
+    right: 1em;
+    left: 60%;
+    top: 1em;
+    /*  margin-top: -1em; */
 }
 
 #editquery {
-   top: 1.3em;
+    top: 1.3em
 }
 
-
 #editsearches {
-  top: 24em;
+    top: 24em
 }
 
-
 #pick-criteria {
- width: 58%;
- padding-top: 0em;
- margin-top: 0em;
+    width: 58%;
+    padding-top: 0em;
+    margin-top: 0em;
 }
 
 #pick-criteria .titlebox-content {
- overflow-x: auto;
+    overflow-x: auto
 }
 
 #BuildQuery .submit {
- width: 58%;
+    width: 58%
 }
 
-
 #sorting.titlebox {
- width: 55%;
- padding-right: 1em;
+    width: 55%;
+    padding-right: 1em;
 }
 
 #display-options .submit {
- width: 100%;
+    width: 100%
 }
 
-
-
 .search-result-views {
- position: absolute;
- top: 0;
- right: 0;
- margin-top: -2px;
- margin-right: 0em;
- padding: 0.25em;
- padding-left: 0.5em;
- padding-right: 0.5em;
- background-color: #ccc;
- border-left: 1px solid #999;
- border-bottom: 1px solid #999;
- -moz-border-radius-bottomleft: 0.5em;
- -webkit-border-bottom-left-radius: 0.5em;
- border-radius: 0 0 0 0.5em;
+    position: absolute;
+    top: 0;
+    right: 0;
+    margin-top: -2px;
+    margin-right: 0em;
+    padding: 0.25em;
+    padding-left: 0.5em;
+    padding-right: 0.5em;
+    background-color: #ccc;
+    border-left: 1px solid #999;
+    border-bottom: 1px solid #999;
+    -moz-border-radius-bottomleft: 0.5em;
+    -webkit-border-bottom-left-radius: 0.5em;
+    border-radius: 0 0 0 0.5em;
 }
 
-
-
 .search-result-views li {
-
- display: inline;
+    display: inline
 }
 
-.search-result-views li:after  {
- content: " \00b7 ";
+.search-result-views li:after {
+    content: " \00b7 "
 }
 
-.search-result-views li:last-child:after  {
- content: "";
-
+.search-result-views li:last-child:after {
+    content: ""
 }
 
 .edit-saved-searches .label {
@@ -156,18 +146,19 @@ span#display-options .titlebox#sorting {
 }
 
 span#display-options .titlebox#columns {
-    float: left;
+    float: left
 }
 
 span#display-options .titlebox#columns table.edit-columns td {
-    padding: 0.5em;
+    padding: 0.5em
 }
 
 span#display-options .titlebox#columns table.edit-columns div.row {
-    width: 9em;
+    width: 9em
 }
+
 span#display-options .titlebox#columns table.edit-columns span.label {
-    width: 2em;
+    width: 2em
 }
 
 span#display-options .titlebox#columns table.edit-columns span.value input,
@@ -178,18 +169,21 @@ span#display-options .titlebox#columns table.edit-columns span.value select {
 
 span#display-options .titlebox#columns table.edit-columns span.value {
     display: inline-block;
-    width:7em;
+    width: 7em;
 }
 
-#BuildQuery #formatbuttons.submit{
-    width: 85%;
+#BuildQuery #formatbuttons.submit {
+    width: 85%
 }
 
 .refresh {
-    float: left;
+    float: left
 }
 
 /* Force some widget to fit at max parent box */
-#HomeRefreshInterval, #SavedSearchLoad, #SavedSearchOwner {
-    max-width: 100%;
+
+#HomeRefreshInterval,
+#SavedSearchLoad,
+#SavedSearchOwner {
+    max-width: 100%
 }
diff --git a/share/static/css/rudder/ticket.css b/share/static/css/rudder/ticket.css
index 4c29077..6b01e82 100644
--- a/share/static/css/rudder/ticket.css
+++ b/share/static/css/rudder/ticket.css
@@ -1,22 +1,46 @@
 /* Use a lighter colored toggle arrow */
-.ticket-info-cfs .titlebox-title .widget a { background-position: center -7px; }
-.ticket-info-basics .titlebox-title .widget a { background-position: center -7px; }
-.ticket-info-people .titlebox-title .widget a { background-position: center -7px; }
-.ticket-info-requestor .titlebox-title .widget a { background-position: center -7px; }
-.ticket-info-links .titlebox-title .widget a { background-position: center -7px; }
-.ticket-info-reminders .titlebox-title .widget a { background-position: center -7px; }
-.ticket-info-dates .titlebox-title .widget a { background-position: center -7px; }
-.ticket-info-attachments .titlebox-title .widget a { background-position: center -7px; }
-
-.ticket-info-cfs .titlebox-title  ,
-.ticket-info-basics .titlebox-title  ,
-.ticket-info-people .titlebox-title  ,
-.ticket-info-requestor .titlebox-title  ,
-.ticket-info-links .titlebox-title  ,
-.ticket-info-reminders .titlebox-title  ,
-.ticket-info-dates .titlebox-title  ,
-.ticket-info-attachments .titlebox-title  {
-    margin-left: 1em;
+
+.ticket-info-cfs .titlebox-title .widget a {
+    background-position: center -7px
+}
+
+.ticket-info-basics .titlebox-title .widget a {
+    background-position: center -7px
+}
+
+.ticket-info-people .titlebox-title .widget a {
+    background-position: center -7px
+}
+
+.ticket-info-requestor .titlebox-title .widget a {
+    background-position: center -7px
+}
+
+.ticket-info-links .titlebox-title .widget a {
+    background-position: center -7px
+}
+
+.ticket-info-reminders .titlebox-title .widget a {
+    background-position: center -7px
+}
+
+.ticket-info-dates .titlebox-title .widget a {
+    background-position: center -7px
+}
+
+.ticket-info-attachments .titlebox-title .widget a {
+    background-position: center -7px
+}
+
+.ticket-info-cfs .titlebox-title,
+.ticket-info-basics .titlebox-title,
+.ticket-info-people .titlebox-title,
+.ticket-info-requestor .titlebox-title,
+.ticket-info-links .titlebox-title,
+.ticket-info-reminders .titlebox-title,
+.ticket-info-dates .titlebox-title,
+.ticket-info-attachments .titlebox-title {
+    margin-left: 1em
 }
 
 .ticket-info-cfs .titlebox-title  .left,
@@ -26,7 +50,7 @@
 .ticket-info-links .titlebox-title  .left,
 .ticket-info-reminders .titlebox-title  .left,
 .ticket-info-dates .titlebox-title  .left,
-.ticket-info-attachments .titlebox-title  .left{
+.ticket-info-attachments .titlebox-title  .left {
     padding-left: 2.25em;
     margin-left: 0;
     padding-bottom: 4px;
@@ -39,14 +63,16 @@
 }
 
 .titlebox.ticket-info-reminders table {
-    width: 100%;
+    width: 100%
 }
 
 .titlebox.ticket-info-reminders table form {
     display: inline-block;
     width: 100%;
 }
+
 /* don't put a background on the outer titlebox */
-.summary>div>.titlebox>.titlebox-content{
-    background: none;
+
+.summary>div>.titlebox>.titlebox-content {
+    background: none
 }

commit bd82e509f65291dba8d1b8f6fa15c95795c97989
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Tue Aug 27 18:10:23 2013 -0400

    Remove commented-out lines

diff --git a/share/static/css/rudder/forms.css b/share/static/css/rudder/forms.css
index 237d596..b6d2898 100644
--- a/share/static/css/rudder/forms.css
+++ b/share/static/css/rudder/forms.css
@@ -76,7 +76,6 @@ input[type=reset]:active,
 input[type=submit]:active,
 input[class=button]:active {
     background: #1D3B7D;
-    //   background: #3D5B9D;
 }
 
 input[type=reset],
diff --git a/share/static/css/rudder/layout.css b/share/static/css/rudder/layout.css
index 99a23d8..62080e8 100644
--- a/share/static/css/rudder/layout.css
+++ b/share/static/css/rudder/layout.css
@@ -15,7 +15,6 @@ div#body {
     margin-bottom: 0em;
     background: #fff;
     z-index: 1;
-    /*    overflow-x: auto; */
 }
 
 div#footer {
diff --git a/share/static/css/rudder/ticket-search.css b/share/static/css/rudder/ticket-search.css
index 510083d..8f022ae 100644
--- a/share/static/css/rudder/ticket-search.css
+++ b/share/static/css/rudder/ticket-search.css
@@ -62,7 +62,6 @@
     right: 1em;
     left: 60%;
     top: 1em;
-    /*  margin-top: -1em; */
 }
 
 #editquery {

-----------------------------------------------------------------------


More information about the Rt-commit mailing list