diff --git a/module/bug/model.php b/module/bug/model.php index 433d4f3a57..cc3b1f7a52 100644 --- a/module/bug/model.php +++ b/module/bug/model.php @@ -27,7 +27,7 @@ class bugModel extends model $selectHtml = $this->product->select($products, $productID, 'bug', 'browse'); foreach($this->lang->bug->menu as $key => $menu) { - $replace = ($key == 'product') ? $selectHtml . $this->lang->arrow : $productID; + $replace = ($key == 'product') ? $selectHtml : $productID; common::setMenuVars($this->lang->bug->menu, $key, $replace); } } diff --git a/module/product/model.php b/module/product/model.php index b7a54b4032..901828109b 100644 --- a/module/product/model.php +++ b/module/product/model.php @@ -41,7 +41,7 @@ class productModel extends model $selectHtml = $this->select($products, $productID, $currentModule, $currentMethod, $extra); foreach($this->lang->product->menu as $key => $menu) { - $replace = $key == 'list' ? $selectHtml . $this->lang->arrow : $productID; + $replace = $key == 'list' ? $selectHtml : $productID; common::setMenuVars($this->lang->product->menu, $key, $replace); } } diff --git a/module/testcase/model.php b/module/testcase/model.php index 93f9cc32e9..27aef881ae 100644 --- a/module/testcase/model.php +++ b/module/testcase/model.php @@ -27,7 +27,7 @@ class testcaseModel extends model $selectHtml = $this->product->select($products, $productID, 'testcase', 'browse'); foreach($this->lang->testcase->menu as $key => $menu) { - $replace = ($key == 'product') ? $selectHtml . $this->lang->arrow : $productID; + $replace = ($key == 'product') ? $selectHtml : $productID; common::setMenuVars($this->lang->testcase->menu, $key, $replace); } } diff --git a/module/testtask/model.php b/module/testtask/model.php index 77b079e7f2..8e2c194ce7 100644 --- a/module/testtask/model.php +++ b/module/testtask/model.php @@ -27,7 +27,7 @@ class testtaskModel extends model $selectHtml = $this->product->select($products, $productID, 'testtask', 'browse'); foreach($this->lang->testtask->menu as $key => $value) { - $replace = ($key == 'product') ? $selectHtml . $this->lang->arrow: $productID; + $replace = ($key == 'product') ? $selectHtml : $productID; common::setMenuVars($this->lang->testtask->menu, $key, $replace); } } diff --git a/www/theme/default/chosen.css b/www/theme/default/chosen.css index 594ff4d13a..5c7c436f23 100644 --- a/www/theme/default/chosen.css +++ b/www/theme/default/chosen.css @@ -139,18 +139,16 @@ } /* @end */ + /* Product and project seleteGroup. */ -#projectID_chzn .chzn-single, #productID_chzn .chzn-single { - background-color: #E5e5e5; - border: none; -} +.chzn-container-single .chzn-single div b {background: url('./images/chosen/chosen-sprite.png') no-repeat 0 -2px;} + #navbar ul .chzn-results li {margin:0; padding:0px 0px 0px 5px; float:none; text-align:left; list-style-type:none;} #navbar ul .chzn-results .active-result {padding:0px 0px 0px 25px;} #modulemenu .chzn-results {height:auto; padding:0px} #modulemenu .chzn-results li {color:black} -#story_chzn .chzn-single, #task_chzn .chzn-single {border: 1px solid #ccc;} -#projectID_chzn .chzn-single {text-align:left; padding:0} -#projectID_chzn {border:1px solid #ccc; margin-top:3px; padding-left:5px} +#productID_chzn .chzn-single, #projectID_chzn .chzn-single {background-color: #E5e5e5; border: none; text-align:left; padding:0} +#productID_chzn, #projectID_chzn{border:1px solid #ccc; margin-top:3px; padding-left:5px} -.chzn-container-single .chzn-single div b {background: url('./images/chosen/chosen-sprite.png') no-repeat 0 -2px;} +#story_chzn .chzn-single, #task_chzn .chzn-single {border: 1px solid #ccc;}