Skip to content

Commit e8f95e0

Browse files
committed
Merge branch 'release-9.0' into dev
2 parents 53862fc + 0ac73a8 commit e8f95e0

File tree

12 files changed

+65
-11
lines changed

12 files changed

+65
-11
lines changed

build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<property name="phpunit_remote_coverage" value="" /><!-- set to 1 to enable code coverage for Mink tests -->
5757
<property name="retain_coverage_files" value="false" /><!-- set to true to keep temporary coverage files from Mink tests -->
5858

59-
<property name="version" value="9.0.2" />
59+
<property name="version" value="9.0.3" />
6060

6161
<!-- We only need the -p switch if the password is non-blank -->
6262
<if>

config/vufind/config.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ allowSavedSearches = true
177177
; features (such as display of hierarchies).
178178
nonJavascriptSupportEnabled = false
179179
; Generator value to display in an HTML header <meta> tag:
180-
generator = "VuFind 9.0.2"
180+
generator = "VuFind 9.0.3"
181181

182182
; This section allows you to configure the mechanism used for storing user
183183
; sessions. Available types: File, Memcache, Database, Redis.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vufind",
3-
"version": "9.0.2",
3+
"version": "9.0.3",
44
"description": "Dev tools to handle css preprocessing, js magic, and compression",
55
"repository": {
66
"type": "git",

packages/DEBIAN/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
vufind 9.0.3 distribution; urgency=low
2+
3+
* VuFind 9.0.3 release (see http://vufind.org/wiki/changelog for details)
4+
5+
-- maintainer VuFind Project Management Committee <[email protected]> Mo 24 Jul 2023 14:00:00 UTC
6+
17
vufind 9.0.2 distribution; urgency=low
28

39
* VuFind 9.0.2 release (see http://vufind.org/wiki/changelog for details)

packages/DEBIAN/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: vufind
2-
Version: 9.0.2
2+
Version: 9.0.3
33
Section: World Wide Web
44
Priority: Optional
55
Architecture: all

themes/bootprint3/css/compiled.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

themes/bootprint3/theme.config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
'external-link' => 'Fugue:link.png',
4747
'facet-applied' => 'Fugue:tick.png',
4848
// 'facet-checked' => inherited from parent theme,
49-
'facet-exclude' => 'Fugue:cross.png',
49+
// 'facet-exclude' => inherited from parent theme,
5050
// 'facet-unchecked' => inherited from parent theme,
5151
'feedback' => 'Fugue:email.png',
5252
'format-atlas' => 'Fugue:map.png',

themes/bootstrap3/css/compiled.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

themes/bootstrap3/less/components/js-tree.less

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,30 @@
6262
padding-left: 1rem;
6363
}
6464

65+
/* facet and tree text overflow */
66+
.facet .text {
67+
overflow: hidden;
68+
}
69+
70+
.hierarchical-facet-anchor,
71+
.hierarchical-facet-anchor .text {
72+
width: calc(100% - 1.5em);
73+
}
74+
[data-exclude] .hierarchical-facet-anchor,
75+
[data-exclude] .hierarchical-facet-anchor .text {
76+
width: calc(100% - 3.0em);
77+
}
78+
79+
.hierarchy-tree .jstree-node,
80+
.hierarchical-facet-anchor .text .icon-link__label {
81+
overflow: hidden;
82+
white-space: nowrap;
83+
text-overflow: ellipsis;
84+
}
85+
.hierarchical-facet-anchor .text .icon-link__label {
86+
display: inline;
87+
}
88+
6589
.jstree-clicked,
6690
.jstree-clicked:active,
6791
.jstree-clicked:focus,
@@ -71,7 +95,7 @@
7195
background-color: @list-group-active-bg;
7296

7397
.jstree-themeicon-custom {
74-
color: #fff;
98+
color: @list-group-active-color;
7599
filter: invert(1);
76100
}
77101
}

themes/bootstrap3/scss/components/js-tree.scss

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,30 @@
6262
padding-left: 1rem;
6363
}
6464

65+
/* facet and tree text overflow */
66+
.facet .text {
67+
overflow: hidden;
68+
}
69+
70+
.hierarchical-facet-anchor,
71+
.hierarchical-facet-anchor .text {
72+
width: calc(100% - 1.5em);
73+
}
74+
[data-exclude] .hierarchical-facet-anchor,
75+
[data-exclude] .hierarchical-facet-anchor .text {
76+
width: calc(100% - 3.0em);
77+
}
78+
79+
.hierarchy-tree .jstree-node,
80+
.hierarchical-facet-anchor .text .icon-link__label {
81+
overflow: hidden;
82+
white-space: nowrap;
83+
text-overflow: ellipsis;
84+
}
85+
.hierarchical-facet-anchor .text .icon-link__label {
86+
display: inline;
87+
}
88+
6589
.jstree-clicked,
6690
.jstree-clicked:active,
6791
.jstree-clicked:focus,
@@ -71,7 +95,7 @@
7195
background-color: $list-group-active-bg;
7296

7397
.jstree-themeicon-custom {
74-
color: #fff;
98+
color: $list-group-active-color;
7599
filter: invert(1);
76100
}
77101
}

themes/local_theme_example/css/compiled.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

themes/sandal/css/compiled.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)