Workaround for the select file modal style

I noticed that on this modal the checkboxes were placed out of the modal margin.
I added a simple selector to add a 20px left margin on that div.
This commit is contained in:
Massimo Girondi 2016-11-14 21:11:35 +01:00
parent d51e77b0b9
commit 78b4fc7780

View File

@ -115,3 +115,7 @@ input[type=checkbox], input[type=radio] {
padding: 10px 20px 20px; padding: 10px 20px 20px;
box-shadow: 0 1px 3px 0 rgba(0,0,0,0.2),0 1px 1px 0 rgba(0,0,0,0.14),0 2px 1px -1px rgba(0,0,0,0.12); box-shadow: 0 1px 3px 0 rgba(0,0,0,0.2),0 1px 1px 0 rgba(0,0,0,0.14),0 2px 1px -1px rgba(0,0,0,0.12);
} }
body > div.modal.fade.ng-isolate-scope.modal-large.in > div > div > form > fieldset > div
{
margin-left:20px;
}