From 78b4fc77807e4488d21f238d8fd6b57eb977f494 Mon Sep 17 00:00:00 2001 From: Massimo Girondi Date: Mon, 14 Nov 2016 21:11:35 +0100 Subject: [PATCH] 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. --- css/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/css/style.css b/css/style.css index a0b86a0..0ca8e76 100755 --- a/css/style.css +++ b/css/style.css @@ -115,3 +115,7 @@ input[type=checkbox], input[type=radio] { 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); } +body > div.modal.fade.ng-isolate-scope.modal-large.in > div > div > form > fieldset > div +{ + margin-left:20px; +}