Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bluecheese-3353671
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
bluecheese-3353671
Commits
d75aaa9c
Commit
d75aaa9c
authored
9 years ago
by
Neil Drumm
Browse files
Options
Downloads
Plain Diff
Merge branch '2369159-credit' into 2340363-attribution
parents
f1388404
85eaaa63
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
js/bluecheese.js
+9
-2
9 additions, 2 deletions
js/bluecheese.js
sass/partials/common/_forms.scss
+7
-0
7 additions, 0 deletions
sass/partials/common/_forms.scss
sass/partials/drupalorg/_issue-page.scss
+11
-1
11 additions, 1 deletion
sass/partials/drupalorg/_issue-page.scss
with
27 additions
and
3 deletions
js/bluecheese.js
+
9
−
2
View file @
d75aaa9c
...
...
@@ -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
'
);
}
});
}
...
...
This diff is collapsed.
Click to expand it.
sass/partials/common/_forms.scss
+
7
−
0
View file @
d75aaa9c
...
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
sass/partials/drupalorg/_issue-page.scss
+
11
−
1
View file @
d75aaa9c
...
...
@@ -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
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment