Skip to content
Snippets Groups Projects
Commit 697a9374 authored by Carsten  Rose's avatar Carsten Rose
Browse files

BuildFormBootstrap.php: Added class'clearfix' to every Bootstrap row...

BuildFormBootstrap.php: Added class'clearfix' to every Bootstrap row 'form-group' - on request of BB: should solve problems which we don't see at the moment.
qfq-bs.css.less: Typeahead - expand with of dropdown Box to 100% of current input element. Add hoover for the dropdown Box with a blue background
parent 09d0a236
No related branches found
No related tags found
No related merge requests found
......@@ -3810,7 +3810,10 @@ Changes
* Play formEditor.sql.
* Dropdownlist of containerassigment updated.
* Dropdownlist of container assigment: remove 'class' (always 'container') and insert 'type' ('pill', 'fiedlset', 'templategroup').
* FormElement.placeholder colum width extended to 512:
ALTER TABLE `FormElement` CHANGE `placeholder` `placeholder` VARCHAR(512) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '';
Features
^^^^^^^^
......
......@@ -53,7 +53,7 @@ class BuildFormBootstrap extends AbstractBuildForm {
$this->wrap[WRAP_SETUP_TITLE][WRAP_SETUP_END] = "</h1></div></div>";
// Element: Label + Input + Note
$this->wrap[WRAP_SETUP_ELEMENT][WRAP_SETUP_START] = "<div class='form-group'>";
$this->wrap[WRAP_SETUP_ELEMENT][WRAP_SETUP_START] = "<div class='form-group clearfix'>";
$this->wrap[WRAP_SETUP_ELEMENT][WRAP_SETUP_END] = "</div>";
$this->wrap[WRAP_SETUP_SUBRECORD][WRAP_SETUP_START] = "<div class='col-md-12'>";
......
......@@ -96,7 +96,6 @@ i.@{spinner_class} {
padding-top: 4px;
}
.qfq-color-white {
background-color: #ffffff;
}
......@@ -137,7 +136,6 @@ i.@{spinner_class} {
// TypeAhead Suggestions
.tt-menu {
padding: 12px;
background-color: #fff;
border-left: 1px solid #66afe9;
border-right: 1px solid #66afe9;
......@@ -145,11 +143,31 @@ i.@{spinner_class} {
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
width: 100%;
}
@media (min-width: 768px) {
.form-horizontal .control-label {
text-align: unset;
}
}
.tt-suggestion {
cursor: pointer;
cursor: hand;
padding-left: 12px;
padding-right: 12px;
padding-bottom: 6px;
padding-top: 12px;
}
.tt-suggestion + .tt-suggestion {
margin-top: 12px;
padding-top: 6px;
}
.tt-suggestion:hover {
background-color: rgba(102, 175, 233, .6);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment