Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
904f3cd4
Commit
904f3cd4
authored
Jul 25, 2017
by
Piotr Gawron
Browse files
label is in bold and annotations row differ for odd/even rows
parent
1c40011d
Changes
3
Hide whitespace changes
Inline
Side-by-side
frontend-js/src/main/css/global.css
View file @
904f3cd4
...
...
@@ -404,4 +404,20 @@ table.minerva-window-drug-table, table.minerva-window-drug-table th,
top
:
35px
;
right
:
35px
;
width
:
18px
;
}
.minerva-left-panel
.minerva-label
{
font-weight
:
900
;
background
:
#ffffff
;
line-height
:
24px
;
}
.minerva-annotation-row-odd
{
padding
:
5px
;
background-color
:
#EAEAEA
;
}
.minerva-annotation-row-even
{
padding
:
5px
;
background-color
:
#ffffff
;
}
\ No newline at end of file
frontend-js/src/main/js/gui/leftPanel/GuiUtils.js
View file @
904f3cd4
...
...
@@ -27,7 +27,7 @@ GuiUtils.prototype.getConfiguration = function() {
GuiUtils
.
prototype
.
createLabel
=
function
(
value
)
{
var
result
=
document
.
createElement
(
"
span
"
);
result
.
innerHTML
=
value
;
result
.
className
=
"
searchDescriptionL
abel
"
;
result
.
className
=
"
minerva-l
abel
"
;
return
result
;
};
...
...
@@ -182,9 +182,9 @@ GuiUtils.prototype.createAnnotationList = function(annotations, options) {
var
row
=
document
.
createElement
(
"
div
"
);
row
.
style
.
height
=
"
26px
"
;
if
(
i
%
2
===
0
)
{
row
.
className
=
"
annotation
RowO
dd
"
;
row
.
className
=
"
minerva-
annotation
-row-o
dd
"
;
}
else
{
row
.
className
=
"
annotation
RowE
ven
"
;
row
.
className
=
"
minerva-
annotation
-row-e
ven
"
;
}
var
header
=
document
.
createElement
(
"
div
"
);
header
.
style
.
width
=
"
24px
"
;
...
...
web/src/main/webapp/resources/css/search.css
View file @
904f3cd4
...
...
@@ -52,18 +52,3 @@ a.searchElementSubmodelLink {
background
:
#ffffff
;
}
.searchDescriptionLabel
{
font-weight
:
900
;
background
:
#ffffff
;
line-height
:
24px
;
}
.annotationRowOdd
{
padding
:
5px
;
background-color
:
#EAEAEA
;
}
.annotationRowEven
{
padding
:
5px
;
background-color
:
#ffffff
;
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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