From patchwork Fri Sep 11 15:54:57 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Damien Lespiau X-Patchwork-Id: 516867 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 1CFBE14012C for ; Sat, 12 Sep 2015 01:59:17 +1000 (AEST) Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 027491A2BE3 for ; Sat, 12 Sep 2015 01:59:17 +1000 (AEST) X-Original-To: patchwork@lists.ozlabs.org Delivered-To: patchwork@lists.ozlabs.org Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by lists.ozlabs.org (Postfix) with ESMTP id 847B31A2BB8 for ; Sat, 12 Sep 2015 01:55:56 +1000 (AEST) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga103.fm.intel.com with ESMTP; 11 Sep 2015 08:55:56 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,511,1437462000"; d="scan'208";a="559867126" Received: from jeffzhua-mobl.amr.corp.intel.com (HELO strange.amr.corp.intel.com) ([10.254.88.85]) by FMSMGA003.fm.intel.com with ESMTP; 11 Sep 2015 08:55:55 -0700 From: Damien Lespiau To: patchwork@lists.ozlabs.org Subject: [PATCH 24/51] dynatable: Use our theming for the table headers Date: Fri, 11 Sep 2015 16:54:57 +0100 Message-Id: <1441986924-26689-25-git-send-email-damien.lespiau@intel.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1441986924-26689-1-git-send-email-damien.lespiau@intel.com> References: <1441986924-26689-1-git-send-email-damien.lespiau@intel.com> X-BeenThere: patchwork@lists.ozlabs.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Patchwork development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: patchwork-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Patchwork" Signed-off-by: Damien Lespiau --- htdocs/css/style.css | 2 +- lib/packages/jquery/jquery.dynatable.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/css/style.css b/htdocs/css/style.css index 8c8aa80..7588971 100644 --- a/htdocs/css/style.css +++ b/htdocs/css/style.css @@ -151,7 +151,7 @@ table#patchlist > tbody > tr > td.tag-T { background-color: #b4cfec; } -a.colinactive, a.colactive { +a.colinactive, a.colactive, a.dynatable-sort-header { color: black; text-decoration: none; } diff --git a/lib/packages/jquery/jquery.dynatable.js b/lib/packages/jquery/jquery.dynatable.js index eb8065d..de04547 100644 --- a/lib/packages/jquery/jquery.dynatable.js +++ b/lib/packages/jquery/jquery.dynatable.js @@ -1045,12 +1045,12 @@ this.appendArrowUp = function($link) { this.removeArrow($link); - $link.append(""); + $link.prepend(" "); }; this.appendArrowDown = function($link) { this.removeArrow($link); - $link.append(""); + $link.prepend(" "); }; this.removeArrow = function($link) {