Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
qfq
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
typo3
qfq
Commits
ed5ec89a
Commit
ed5ec89a
authored
Oct 13, 2019
by
Carsten Rose
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #9354 - Missing Border aroung form if there is no pill and no title.
parent
b73e7bcb
Pipeline
#2485
passed with stages
in 2 minutes and 47 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
extension/Classes/Core/BuildFormBootstrap.php
extension/Classes/Core/BuildFormBootstrap.php
+5
-0
less/qfq-bs.css.less
less/qfq-bs.css.less
+6
-0
No files found.
extension/Classes/Core/BuildFormBootstrap.php
View file @
ed5ec89a
...
...
@@ -149,6 +149,11 @@ class BuildFormBootstrap extends AbstractBuildForm {
$class
=
[
'tab-content'
,
$this
->
formSpec
[
F_CLASS_BODY
]];
if
(
$pill
==
''
)
{
$class
[]
=
'col-md-12'
;
$class
[]
=
'qfq-form-body'
;
// Make an outline on form body
if
(
$title
==
''
)
{
$class
[]
=
'qfq-form-no-title'
;
}
}
$html
.
=
"<div "
.
Support
::
doAttribute
(
'class'
,
$class
)
.
">"
;
...
...
less/qfq-bs.css.less
View file @
ed5ec89a
...
...
@@ -153,6 +153,12 @@ select.qfq-locked:invalid {
border-top: none;
}
.qfq-form-no-title {
border-top-right-radius: 4px;
border-top-left-radius: 4px;
border: 1px solid #ccc;
}
/* adjust BS padding of input elements: center */
.form-group {
padding-top: 5px;
...
...
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