From 6375e8f2d0b8c8cc7479dd8327a05985e5248b78 Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Mon, 16 Jun 2014 18:14:57 +0600 Subject: [PATCH] SONAR-5331 Fix path issues --- sonar-server/src/main/less/select2.less | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/sonar-server/src/main/less/select2.less b/sonar-server/src/main/less/select2.less index fcc4a453d54..78bc60522ea 100755 --- a/sonar-server/src/main/less/select2.less +++ b/sonar-server/src/main/less/select2.less @@ -86,7 +86,7 @@ Version: 3.2 Timestamp: Mon Sep 10 10:38:04 PDT 2012 width: 12px; height: 12px; font-size: 1px; - background: url('select2.png') right top no-repeat; + background: url('../images/select2.png') right top no-repeat; cursor: pointer; text-decoration: none; border: 0; @@ -180,12 +180,12 @@ Version: 3.2 Timestamp: Mon Sep 10 10:38:04 PDT 2012 .select2-search input { background: #fff url('../images/select2.png') no-repeat 100% -22px; - background: url('select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee)); - background: url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%); - background: url('select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%); - background: url('select2.png') no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%); - background: url('select2.png') no-repeat 100% -22px, -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%); - background: url('select2.png') no-repeat 100% -22px, linear-gradient(top, #ffffff 85%, #eeeeee 99%); + background: url('../images/select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee)); + background: url('../images/select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%); + background: url('../images/select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%); + background: url('../images/select2.png') no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%); + background: url('../images/select2.png') no-repeat 100% -22px, -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%); + background: url('../images/select2.png') no-repeat 100% -22px, linear-gradient(top, #ffffff 85%, #eeeeee 99%); padding: 4px 20px 4px 5px; outline: 0; border: 1px solid #aaa; -- 2.39.5