Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
83a1acb9
Commit
83a1acb9
authored
Feb 09, 2021
by
Piotr Gawron
Browse files
styling improved
parent
b17661f9
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
83a1acb9
...
...
@@ -15,6 +15,7 @@ minerva (16.0.0~alpha.1) stable; urgency=medium
(#
1376
)
*
Small
improvement
:
context
menu
exporting
map
is
more
precise
about
scope
(#
1447
)
*
Small
improvement
:
styling
of
GENERIC
search
tab
title
improved
(#
1364
)
*
Bug
fix
:
removing
plugin
that
does
not
exist
anymore
does
not
raise
an
error
(#
1289
)
*
Bug
fix
:
broken
overlays
crashed
minerva
upgrade
(#
1453
)
...
...
frontend-js/src/main/js/gui/leftPanel/GenericSearchPanel.js
View file @
83a1acb9
...
...
@@ -35,9 +35,10 @@ function GenericSearchPanel(params) {
params
[
"
placeholder
"
]
=
"
keyword
"
;
AbstractDbPanel
.
call
(
self
,
params
);
self
.
getControlElement
(
PanelControlElementType
.
SEARCH_LABEL
).
innerHTML
=
"
SEARCH IN CONTENT:
"
;
$
(
params
.
element
).
addClass
(
"
minerva-generic-search-panel
"
);
$
(
"
.minerva-generic-search-tab-link
"
).
css
(
"
border-top-color
"
,
"
white
"
);
self
.
createSearchGui
();
self
.
getMap
().
addListener
(
"
onBioEntityClick
"
,
function
(
e
)
{
...
...
frontend-js/src/main/js/gui/leftPanel/SearchPanel.js
View file @
83a1acb9
...
...
@@ -57,7 +57,7 @@ SearchPanel.prototype._createPanelGui = function () {
*/
SearchPanel
.
prototype
.
getPanelsDefinition
=
function
()
{
return
[{
name
:
"
GENERIC
"
,
name
:
"
CONTENT
"
,
panelClass
:
GenericSearchPanel
,
linkClassName
:
"
minerva-generic-search-tab-link
"
,
options
:
{
parent
:
this
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment