Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
b5898d2a
Commit
b5898d2a
authored
Jan 10, 2019
by
Piotr Gawron
Browse files
word wrapping for Firefox fixed; word wrapping is disabled for xolumns that don't require it
parent
d7020eae
Pipeline
#8145
passed with stage
in 1 minute and 57 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
frontend-js/src/main/css/global.css
View file @
b5898d2a
...
@@ -847,8 +847,15 @@ https://www.w3schools.com/css/tryit.asp?filename=trycss_tooltip
...
@@ -847,8 +847,15 @@ https://www.w3schools.com/css/tryit.asp?filename=trycss_tooltip
overflow-x
:
hidden
;
overflow-x
:
hidden
;
}
}
.minerva-overlay-panel
td
,
.minerva-overlay-panel
th
{
.minerva-overlay-panel
td
.word_wrap
,
.minerva-overlay-panel
th
.word_wrap
{
word-break
:
break-word
;
/* For Firefox */
white-space
:
pre-wrap
;
word-break
:
break-all
;
/* For Chrome */
word-wrap
:
break-word
;
min-width
:
50px
;
}
}
.pileup-root
.controls
input
[
type
=
"text"
]
{
.pileup-root
.controls
input
[
type
=
"text"
]
{
...
...
frontend-js/src/main/js/gui/leftPanel/OverlayPanel.js
View file @
b5898d2a
...
@@ -582,7 +582,8 @@ OverlayPanel.prototype.init = function () {
...
@@ -582,7 +582,8 @@ OverlayPanel.prototype.init = function () {
type
:
'
num
'
,
type
:
'
num
'
,
className
:
"
no_padding
"
className
:
"
no_padding
"
},
{
},
{
title
:
'
Name
'
title
:
'
Name
'
,
className
:
"
word_wrap
"
},
{
},
{
title
:
'
View
'
,
title
:
'
View
'
,
orderable
:
false
,
orderable
:
false
,
...
...
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