Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
lfeditor
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
12
Issues
12
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
TYPO3
lfeditor
Commits
61d03aa8
Commit
61d03aa8
authored
Mar 20, 2015
by
damjan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[BUGFIX] Trimming too long constants on EditFile page.
parent
91e8eb07
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
Resources/Private/Templates/EditFile/EditFile.html
Resources/Private/Templates/EditFile/EditFile.html
+6
-2
Resources/Public/StyleSheets/Lfeditor.css
Resources/Public/StyleSheets/Lfeditor.css
+7
-0
No files found.
Resources/Private/Templates/EditFile/EditFile.html
View file @
61d03aa8
...
...
@@ -45,7 +45,9 @@
<f:for
each=
"{constValues}"
key=
"constKey"
as=
"constValue"
iteration=
"iterator"
>
<fieldset
class=
"tx-lfeditor-fieldset bgColor5 {lfe:extendedIf(condition: iterator.isOdd, or: parallelEdit, then: 'tx-lfeditor-fleft', else: 'tx-lfeditor-fright')}"
>
<legend
class=
"bgColor3"
>
{languageSelection}:{constKey}
</legend>
<legend
class=
"bgColor3 tx-lfeditor-constantMaxWidth400"
title=
"{languageSelection}:{constKey}"
>
{languageSelection}:{constKey}
</legend>
<lfe:extendedIf
condition=
"{languageSelection} == {defaultLanguage}"
and=
"{defaultLanguagePermission} != 'TRUE'"
>
<f:then>
<f:form.textarea
...
...
@@ -73,7 +75,9 @@
</fieldset>
<f:if
condition=
"{parallelEdit}"
>
<fieldset
class=
"tx-lfeditor-fieldset bgColor5 tx-lfeditor-fright"
>
<legend
class=
"bgColor3"
>
{referenceLanguageSelection}:{constKey}
</legend>
<legend
class=
"bgColor3 tx-lfeditor-constantMaxWidth400"
title=
"{referenceLanguageSelection}:{constKey}"
>
{referenceLanguageSelection}:{constKey}
</legend>
<lfe:extendedIf
condition=
"{referenceLanguageSelection} == {defaultLanguage}"
and=
"{defaultLanguagePermission} != 'TRUE'"
>
<f:then>
<f:form.textarea
...
...
Resources/Public/StyleSheets/Lfeditor.css
View file @
61d03aa8
...
...
@@ -62,6 +62,13 @@ fieldset.tx-lfeditor-fieldset legend {
border
:
1px
solid
#AAA
;
}
.tx-lfeditor-constantMaxWidth400
{
text-overflow
:
ellipsis
;
max-width
:
400px
;
white-space
:
nowrap
;
overflow
:
hidden
;
}
fieldset
.tx-lfeditor-fieldset
p
,
fieldset
.tx-lfeditor-fieldset
p
input
{
margin
:
0
;
...
...
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