Skip to content
Snippets Groups Projects
Commit 94e13424 authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Merge branch 'release-3.1'

parents 4dac1229 3fe4a170
No related merge requests found
...@@ -357,7 +357,37 @@ class SearchActionsTest extends \VuFindTest\Unit\MinkTestCase ...@@ -357,7 +357,37 @@ class SearchActionsTest extends \VuFindTest\Unit\MinkTestCase
$genreMore->click(); $genreMore->click();
$this->facetListProcedure($page, $limit, true); $this->facetListProcedure($page, $limit, true);
$this->assertEquals(1, count($page->find('css', '.list-group.filters'))); $this->assertEquals(1, count($page->find('css', '.list-group.filters')));
} }
/**
* Test that exclusion works properly deep in lightbox results.
*
* @return void
*/
public function testHierarchicalFacets()
{
$this->changeConfigs(
[
'facets' => [
'Results' => [
'hierarchical_facet_str_mv' => 'hierarchy'
],
'SpecialFacets' => [
'hierarchical[]' => 'hierarchical_facet_str_mv'
]
]
]
);
$page = $this->performSearch('');
$this->findCss($page, '#j1_1.jstree-closed .jstree-icon');
$session = $this->getMinkSession();
$session->executeScript("$('#j1_1.jstree-closed .jstree-icon').click();");
$this->findCss($page, '#j1_1.jstree-open .jstree-icon');
$this->findCss($page, '#j1_2 a')->click();
$filter = $this->findCss($page, '.filters .list-group-item.active');
$this->assertEquals('hierarchy: 1/level1a/level2a/', $filter->getText());
$this->findCss($page, '#j1_2 .fa-check');
}
/** /**
* Standard teardown method. * Standard teardown method.
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -93,3 +93,6 @@ li.jstree-node { ...@@ -93,3 +93,6 @@ li.jstree-node {
} }
li.jstree-facet .badge {cursor: text;} li.jstree-facet .badge {cursor: text;}
li.jstree-facet ul {padding-left: 20px;} li.jstree-facet ul {padding-left: 20px;}
.list-group.facet .jstree-node { padding-left: 19px; }
.list-group.facet .jstree-icon::before { margin-left: -12px; }
...@@ -93,3 +93,6 @@ li.jstree-node { ...@@ -93,3 +93,6 @@ li.jstree-node {
} }
li.jstree-facet .badge {cursor: text;} li.jstree-facet .badge {cursor: text;}
li.jstree-facet ul {padding-left: 20px;} li.jstree-facet ul {padding-left: 20px;}
.list-group.facet .jstree-node { padding-left: 19px; }
.list-group.facet .jstree-icon::before { margin-left: -12px; }
...@@ -48,3 +48,5 @@ ...@@ -48,3 +48,5 @@
.marc-row-008 { .marc-row-008 {
white-space: pre-wrap; white-space: pre-wrap;
} }
.comment-form textarea.form-control { display: block; }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment