Skip to content

Commit

Permalink
fix(form): better theme compatibility, UI enhancement
Browse files Browse the repository at this point in the history
  • Loading branch information
btry committed Oct 10, 2023
1 parent 3cf3e4e commit 9146ea5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
20 changes: 15 additions & 5 deletions css/styles.scss
Expand Up @@ -105,7 +105,7 @@

> .plugin_formcreator_section {
line-height: 32px;
background: #CCC;
background-color: var(--table-head-bg);
padding-bottom: 1px;
display: flex;
flex-wrap: wrap;
Expand All @@ -118,6 +118,7 @@
text-overflow: ellipsis;
flex: 1;
margin: 5px 0 0 5px;
color: inherit;
}
}
}
Expand Down Expand Up @@ -149,9 +150,13 @@
padding-left: 16px;
padding-right: 10px;
margin: 0 2px;
background: #F0F0F0;
background-color: var(--light-mix);
display: flex;
align-items: center;

> i {
min-width: 14px;
}
}

.grid-stack-item .grid-stack-item-content a[data-field=name] {
Expand All @@ -175,10 +180,14 @@
}

.plugin_formcreator_question {
background: #F0F0F0;
background-color: var(--tabs-active-bg);
margin: 5px 2px;
padding-left: 15px;
flex: 1;

a {
color: inherit;
}
}

/* actions on sections or questions */
Expand Down Expand Up @@ -350,7 +359,7 @@ form#plugin_formcreator_form {
}
#plugin_formcreator_form .form-group > .help-block {
font-size: 0.8em;
color: #333;
color: var(--text-muted);
padding: 3px 0;

p {
Expand Down Expand Up @@ -996,7 +1005,8 @@ a.plugin_formcreator_formTile_title {
/* Count of conditions in design view */
.plugin_formcreator_conditions_count {
border-radius: 50%;
background-color: #FFF;
background-color: var(--contrast-dark);
color: var(--contrast-light);
min-width: 18px;
height: 18px;
text-align: center;
Expand Down
4 changes: 2 additions & 2 deletions inc/question.class.php
Expand Up @@ -250,13 +250,13 @@ public function getDesignHtml() : string {
$html .= "</span>";

// Toggle mandatory for the question
$html .= "<span class='form_control pointer'>";
if ($fieldType::canRequire()) {
$html .= "<span class='form_control pointer'>";
$required = ($this->fields['required'] == '0') ? 'far fa-circle' : 'far fa-check-circle';
$html .= '<i class="' . $required .'"
onclick="plugin_formcreator.toggleRequired(this)"></i> ';
$html .= "</span>";
}
$html .= "</span>";

$html .= '</div>'; // grid stack item content

Expand Down

0 comments on commit 9146ea5

Please sign in to comment.