Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@
height: 30px;
}

.checkbox-label {
font-weight: normal;
padding-right: 5px;
}

@media (min-width: 768px) {
.text-sm-center {
text-align: center;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,12 @@
{{! Bibliographic (Citation) }}
<div data-test-project-contributors-list-item-citation-checkbox local-class='text-sm-center'
class='col-xs-10 col-sm-2 col-sm-offset-0 bib-padding'>
<label local-class='checkbox-label' class='visible-xs-inline' for='{{@contributor.id}}-citation'>
<em>
{{t 'app_components.project_contributors.list.item.in_citation_label'}}
</em>
</label>
<Input @id={{concat @contributor.id '-citation'}} @type='checkbox' @disabled={{not this.canChangeBibliographic}}
@checked={{@contributor.bibliographic}} @change={{action @toggleBibliographic @contributor}} />
<Input
aria-label={{t 'app_components.project_contributors.list.item.in_citation_label'}}
@type='checkbox'
@disabled={{not this.canChangeBibliographic}}
@checked={{@contributor.bibliographic}}
@change={{action @toggleBibliographic @contributor}} />
</div>

{{! Remove }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
class='input-group'
>
<Input
aria-label={{t 'app_components.project_contributors.search.placeholder'}}
@class='form-control'
@value={{this.query}}
@placeholder={{t 'app_components.project_contributors.search.placeholder'}}
/>
<span class='input-group-btn'>
<button
data-test-project-contributors-search-button
aria-label={{t 'app_components.project_contributors.search.perform_search'}}
local-class='authors-search-button'
class='btn btn-default'
type='submit'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.closed {
color: #888;
color: $color-text-black;
}

.green {
Expand Down
1 change: 1 addition & 0 deletions translations/en-us.yml
Original file line number Diff line number Diff line change
Expand Up @@ -777,6 +777,7 @@ app_components:
add: Add
add_contributor_success: 'Project contributor added!'
add_contributor_error: 'Could not add contributor.'
perform_search: 'Perform search'
project_metadata:
field_title_label: 'Title:'
field_title_placeholder: ""
Expand Down