97a3d3565b
The checkboxes where out of left margin, I create a new CSS class to identify that modal, then applied the style in the modals.css
45 lines
879 B
CSS
Executable File
45 lines
879 B
CSS
Executable File
.modal-body textarea {
|
|
width: 100%;
|
|
}
|
|
|
|
.modal-advanced-title {
|
|
font-weight: bold;
|
|
margin-bottom: 0px;
|
|
background-color: rgb(245, 245, 245);
|
|
border: 1px solid rgba(0, 0, 0, 0.05);
|
|
border-bottom: 0px;
|
|
border-radius: 4px 4px 0px 0px;
|
|
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
|
|
cursor: pointer;
|
|
padding: 5px 15px;
|
|
}
|
|
|
|
.modal-advanced-options {
|
|
/*width: 100%;
|
|
margin-bottom: 10px;*/
|
|
margin-top:0px;
|
|
margin-bottom: 2px;
|
|
background-color: rgb(245, 245, 245);
|
|
border: 1px solid rgba(0, 0, 0, 0.05);
|
|
border-top: 0px;
|
|
border-radius: 0px 0px 4px 4px;
|
|
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.modal-form-input-verylarge {
|
|
width: 95%;
|
|
}
|
|
|
|
.modal-form-input-number {
|
|
width: 80px;
|
|
}
|
|
.selectFiles > div > .control-label
|
|
{
|
|
font-weight: normal;
|
|
margin-left:30px;
|
|
}
|
|
.selectFiles > div > .controls
|
|
{
|
|
margin-left:30px;
|
|
}
|