diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-04-21 02:23:40 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-04-21 02:23:40 -0400 |
commit | 8ff271216f421594970631eec1ba156a8a35e561 (patch) | |
tree | e56af4f242621c0e0a20a30d9fe881edbc307feb /sitestatic | |
parent | 03fa7e4f27bdb39a8f8f5ed91a87d18bf8357b47 (diff) | |
parent | bb18fa3323a0494a2774ea61911572b089d04b6d (diff) |
Merge branch 'archweb' into archweb-generic2
Diffstat (limited to 'sitestatic')
-rw-r--r-- | sitestatic/archweb.css | 18 | ||||
-rw-r--r-- | sitestatic/archweb.js | 1 |
2 files changed, 9 insertions, 10 deletions
diff --git a/sitestatic/archweb.css b/sitestatic/archweb.css index a0dfb2ec..b7d6e1ee 100644 --- a/sitestatic/archweb.css +++ b/sitestatic/archweb.css @@ -314,7 +314,7 @@ dl { dl dt, dl dd { margin-bottom: 4px; - padding: 8px 0px 4px; + padding: 8px 0 4px; font-weight: bold; border-top: 1px dotted #bbb; } @@ -420,7 +420,7 @@ table thead th.tablesorter-headerDesc { } table thead th.sorter-false { - background-image: url(); + background-image: none; cursor: default; } @@ -490,13 +490,13 @@ table thead th.sorter-false { h3 span.arrow { display: block; - width: 0px; - height: 0px; + width: 0; + height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 6px solid #1794D1; margin: 0 auto; - font-size: 0px; + font-size: 0; line-height: 0px; } @@ -885,19 +885,19 @@ table td.country { display: inline; } -#visualize-mirror .axis path, -#visualize-mirror .axis line { +.visualize-mirror .axis path, +.visualize-mirror .axis line { fill: none; stroke: #000; stroke-width: 3px; shape-rendering: crispEdges; } -#visualize-mirror .url-dot { +.visualize-mirror .url-dot { stroke: #000; } -#visualize-mirror .url-line { +.visualize-mirror .url-line { fill: none; stroke-width: 1.5px; } diff --git a/sitestatic/archweb.js b/sitestatic/archweb.js index 5809641b..f7be50d8 100644 --- a/sitestatic/archweb.js +++ b/sitestatic/archweb.js @@ -166,7 +166,6 @@ if (typeof $ !== 'undefined' && typeof $.tablesorter !== 'undefined') { (function($) { $.fn.enableCheckboxRangeSelection = function() { var lastCheckbox = null, - lastElement = null, spec = this; spec.unbind("click.checkboxrange"); |