Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 19 additions & 12 deletions web/skins/classic/css/base/views/options.css
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,11 @@ input[name="newStorage[Url]"] {
margin-bottom: 20px;
margin-right: 5px;
border-bottom: 1px solid #e7e7e7;
padding-bottom: 0.75rem;
}

#options .form-group span.form-text {
margin-top: 0.5rem;
}
#options .col-md {
text-align: left;
Expand All @@ -131,32 +136,34 @@ form {
/* flex-direction: column;*/
width: 100%;
height: 100%;
margin-left: 9px;
/* padding-top: 2rem; */
}

@media screen and (max-width:767px) {
#options label,
label.col-form-label {
label.col-form-label {
text-align: left;
padding-bottom: 5px;
}
}

div.dnsmasq,
.dnsmasq .config {
text-align: left;
text-align: left;
}
.dnsmasq .container {
margin-left: 0;
margin-left: 0;
}
.dnsmasq .config .row > label {
width: 150px;
text-align: right;
width: 150px;
text-align: right;
}
.dnsmasq .config .row {
min-height:36px;
text-align: left;
display: flex;
align-content: space-around;
min-height:36px;
text-align: left;
display: flex;
align-content: space-around;
}
#leasesTable td,
#leasesTable th {
Expand Down Expand Up @@ -197,7 +204,7 @@ body.sticky .fixed-table-container {
}

body.sticky #controlTable thead {
position: sticky;
top: 0;
box-shadow: 0 0px 0, 0 -3px 0 #dfe4ea;
position: sticky;
top: 0;
box-shadow: 0 0px 0, 0 -3px 0 #dfe4ea;
}
2 changes: 1 addition & 1 deletion web/skins/classic/views/options.php
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ function format_timezone_name($name) {
echo '<p class="warning">Note: This value has been overriden via configuration files in '.ZM_CONFIG. ' or ' . ZM_CONFIG_SUBDIR.'.<br/>The overriden value is: '.constant($name).'</p>'.PHP_EOL;
}
?>
<span class="form-text form-control-sm"><?php echo validHtmlStr($optionPromptText); echo makeHelpLink($name) ?></span>
<span class="form-text"><?php echo validHtmlStr($optionPromptText); echo makeHelpLink($name) ?></span>
</div><!-- End .col-md -->
</div><!-- End .form-group -->
<?php
Expand Down
Loading