Skip to content
Snippets Groups Projects
Commit d75aaa9c authored by Neil Drumm's avatar Neil Drumm :wave:
Browse files

Merge branch '2369159-credit' into 2340363-attribution

parents f1388404 85eaaa63
No related branches found
No related tags found
No related merge requests found
......@@ -21,9 +21,16 @@
}
else {
$('table').not('#forum table').not('.page-user-track table').not('#project-usage-project-releases').each(function() {
var $this = $(this);
if ($this.parents('#drupalorg-issue-credit-form').length) {
// Do not use mobile tables for Credit & Comitting.
return;
}
// If the table is wider than the width of the window.
if ($(this).width() > windowsize) {
$(this).addClass('mobile-table');
if ($this.width() > windowsize) {
$this.addClass('mobile-table');
}
});
}
......
......@@ -45,6 +45,13 @@ input[type="radio"] {
font-size: 0.8125em;
}
.form-type-radio, .form-type-checkbox {
// Refine core style, no margin for inline descriptions.
span.description {
margin-left: 0;
}
}
input, textarea, select {
margin: 0;
// Limit width to inside parent containers.
......
......@@ -338,13 +338,23 @@ fieldset.group-issue-attribution {
}
#drupalorg-issue-credit-form {
.credit-summary {
padding-bottom: (8em / 13);
}
#edit-message {
width: 100%;
}
table {
width: inherit;
width: inherit; // Do not stretch to full width.
margin: 0.61538em 0;
}
th {
white-space: nowrap;
}
tr.odd .form-item, tr.even .form-item {
// Override core style, allow wrapping.
white-space: normal;
}
.author {
text-align: center;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment