Portal: Worked on some CSS optimizations in forms

SVN:trunk[4706]
This commit is contained in:
Guillaume Lajarige
2017-04-27 11:40:05 +00:00
parent c1805ce47f
commit ee95dd2480
2 changed files with 15 additions and 2 deletions

View File

@@ -1373,7 +1373,8 @@ input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="rad
cursor: not-allowed;
}
.form-control-static {
padding-top: 9px;
padding-top: 0px;
/* 9px; */
padding-bottom: 9px;
margin-bottom: 0;
min-height: 31px;
@@ -4908,6 +4909,7 @@ label {
/*
* Specific to the combodo theme. Not standard BS classes
*/
/* Button groups */
.btn-group.btn_group_explicit {
padding: 7px;
background-color: #292826;
@@ -4926,3 +4928,8 @@ label {
border-radius: 37px !important;
box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.4);
}
/* Help blocks in forms */
.form_fields .form-group > .help-block {
margin-top: 0px;
margin-bottom: 0px;
}

View File

@@ -1743,7 +1743,7 @@ fieldset[disabled] .checkbox label {
cursor: not-allowed
}
.form-control-static {
padding-top: 9px;
padding-top: 0px; /* 9px; */
padding-bottom: 9px;
margin-bottom: 0;
min-height: 31px
@@ -5992,6 +5992,7 @@ label {
/*
* Specific to the combodo theme. Not standard BS classes
*/
/* Button groups */
.btn-group.btn_group_explicit{
padding: 7px;
background-color: $combodo-dark-gray-darker;
@@ -6009,4 +6010,9 @@ label {
background-color: $body-bg;
border-radius: 37px !important;
box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.4);
}
/* Help blocks in forms */
.form_fields .form-group > .help-block{
margin-top: 0px;
margin-bottom: 0px;
}