Skip to content

Commit 7120748

Browse files
Merge pull request #240 from drupalprojects/7.x-3.x1-239-CHECKBOXES
#239: fixing positioning of checkboxes and radios inside of tables.
2 parents 2ff63b8 + 622aabd commit 7120748

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

css/tweaks.css

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,19 @@ tr.even, tr.odd {
100100
padding: inherit;
101101
}
102102

103-
table th.checkbox input, table td.checkbox input {
104-
float: none !important;
105-
margin-left: 0 !important;
103+
104+
table th .checkbox input[type="checkbox"],
105+
table td .checkbox input[type="checkbox"],
106+
table th .radio input[type="radio"],
107+
table td .radio input[type="radio"] {
108+
position: static;
109+
float: none;
110+
margin-left: 0;
111+
}
112+
113+
#modalContent .view-settings-wrapper .form-radio {
114+
margin-top: 7px;
115+
margin-left: -18px;
106116
}
107117

108118
/* Fieldsets */
@@ -318,8 +328,3 @@ div#admin-toolbar.vertical {
318328
ul.panels-ipe-linkbar {
319329
list-style: none outside none;
320330
}
321-
322-
/* Cramped features display */
323-
#features-export-form .features-export-parent {
324-
margin: 0 0 20px;
325-
}

0 commit comments

Comments
 (0)