Minor fixes - discovery styles
This commit is contained in:
parent
de3464bd02
commit
7347324601
|
@ -796,7 +796,7 @@ class Wizard
|
||||||
$cb_function = $data['cb_function'];
|
$cb_function = $data['cb_function'];
|
||||||
$cb_args = $data['cb_args'];
|
$cb_args = $data['cb_args'];
|
||||||
|
|
||||||
$output_head = '<form enctype="'.$form['enctype'].'" action="'.$form['action'].'" method="'.$form['method'];
|
$output_head = '<form class="discovery" enctype="'.$form['enctype'].'" action="'.$form['action'].'" method="'.$form['method'];
|
||||||
$output_head .= '" '.$form['extra'].'>';
|
$output_head .= '" '.$form['extra'].'>';
|
||||||
|
|
||||||
if ($return === false) {
|
if ($return === false) {
|
||||||
|
@ -868,7 +868,7 @@ class Wizard
|
||||||
$cb_function = $data['cb_function'];
|
$cb_function = $data['cb_function'];
|
||||||
$cb_args = $data['cb_args'];
|
$cb_args = $data['cb_args'];
|
||||||
|
|
||||||
$output_head = '<form enctype="'.$form['enctype'].'" action="'.$form['action'].'" method="'.$form['method'];
|
$output_head = '<form class="discovery" enctype="'.$form['enctype'].'" action="'.$form['action'].'" method="'.$form['method'];
|
||||||
$output_head .= '" '.$form['extra'].'>';
|
$output_head .= '" '.$form['extra'].'>';
|
||||||
|
|
||||||
if ($return === false) {
|
if ($return === false) {
|
||||||
|
@ -963,7 +963,7 @@ class Wizard
|
||||||
$cb_function = $data['cb_function'];
|
$cb_function = $data['cb_function'];
|
||||||
$cb_args = $data['cb_args'];
|
$cb_args = $data['cb_args'];
|
||||||
|
|
||||||
$output_head = '<form enctype="'.$form['enctype'].'" action="'.$form['action'].'" method="'.$form['method'];
|
$output_head = '<form class="discovery" enctype="'.$form['enctype'].'" action="'.$form['action'].'" method="'.$form['method'];
|
||||||
$output_head .= '" '.$form['extra'].'>';
|
$output_head .= '" '.$form['extra'].'>';
|
||||||
|
|
||||||
if ($return === false) {
|
if ($return === false) {
|
||||||
|
|
|
@ -27,6 +27,11 @@ li.discovery > a label {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.data_container > label {
|
||||||
|
font-family: "lato-bolder", "Open Sans", sans-serif !important;
|
||||||
|
font-weight: lighter;
|
||||||
|
}
|
||||||
|
|
||||||
div.data_container {
|
div.data_container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -160,6 +165,10 @@ span.breadcrumb_link {
|
||||||
* Discovery forms structure
|
* Discovery forms structure
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
form.discovery * {
|
||||||
|
font-size: 10pt;
|
||||||
|
}
|
||||||
|
|
||||||
.edit_discovery_info {
|
.edit_discovery_info {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
|
@ -196,7 +205,9 @@ li > input[type="password"],
|
||||||
background-color: transparent !important;
|
background-color: transparent !important;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 0 !important;
|
border-radius: 0 !important;
|
||||||
border-bottom: 1px solid #343434;
|
border-bottom: 1px solid #ccc;
|
||||||
|
font-family: "lato-bolder", "Open Sans", sans-serif !important;
|
||||||
|
font-weight: lighter;
|
||||||
padding: 0px 0px 2px 0px;
|
padding: 0px 0px 2px 0px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
|
@ -215,7 +226,7 @@ li > input[type="password"],
|
||||||
}
|
}
|
||||||
|
|
||||||
.discovery_list_input option {
|
.discovery_list_input option {
|
||||||
text-align: center;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.discovery_list_input option:checked {
|
.discovery_list_input option:checked {
|
||||||
|
|
Loading…
Reference in New Issue