Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CONCD-939 Trying to make the layout more responsive #2551

Merged
merged 1 commit into from
Oct 2, 2024
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
2 changes: 1 addition & 1 deletion concordia/static/scss/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1138,7 +1138,7 @@ $card-progress-height: 12px;
/* How to Guide */
#open-guide {
border-radius: $btn-border-radius;
margin: -14px 5px 0 9px;
margin: 0 5px 0 9px;
white-space: nowrap;
}

Expand Down
8 changes: 4 additions & 4 deletions concordia/templates/transcriptions/asset_detail/editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h2 id="display-inprogress" {% if transcription_status != "in_progress" %}hidden
<input type="hidden" name="supersedes" value="{{ transcription.pk|default:'' }}" />

<div class="row justify-content-sm-between px-3">
<span id="transcription-status-message">
<div id="transcription-status-message" class="col px-0">
<h2 id="message-contributors" {% if transcription_status == 'not_started' %}hidden{% endif %}>
Registered Contributors: <span id="message-contributors-num" class="font-weight-normal">{{ registered_contributors }}</span>
</h2>
Expand All @@ -43,10 +43,10 @@ <h2 id="message-contributors" {% if transcription_status == 'not_started' %}hidd
<span id="message-completed" {% if transcription_status != 'completed' %}hidden{% endif %}>
This transcription is finished! You can read and add tags.
</span>
</span>
</div>
{% if cards %}
<div class="align-items-center align-self-end btn-group">
<a class="font-weight-bold" id="quick-tips" data-toggle="modal" data-target="#tutorial-popup" role="button">
<div class="align-items-center align-self-end btn-group col px-0">
<a class="font-weight-bold mt-3" id="quick-tips" data-toggle="modal" data-target="#tutorial-popup" role="button">
<u>Campaign Tips</u>
</a>
{% if guides %}
Expand Down