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

[#12269] Instructor edit sessions page: Fix add question button overflow. #12476

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Tue Jun 13 08:53:00 EDT 2023
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="card-body background-color-light-blue text-center">
<div ngbDropdown class="d-inline-block">
<button id="btn-new-question" class="btn btn-primary" ngbDropdownToggle>Add New Question</button>
<button id="btn-new-question" class="btn btn-primary p-1 p-sm-2" ngbDropdownToggle>Add New Question</button>
<div id="new-question-dropdown" ngbDropdownMenu>
<button class="dropdown-item" (click)="templateQuestionModalHandler()">Choose from template questions</button>
<div class="dropdown-divider"></div>
Expand All @@ -25,6 +25,6 @@
<i class="fas fa-info-circle"></i>
</a>
<a type="button" class="btn btn-link" *ngIf="isLinkDisabled"><i class="fas fa-info-circle"></i></a>
<button id="btn-copy-question" class="btn btn-primary" (click)="copyQuestionsFromOtherSessionsHandler()"
<button id="btn-copy-question" class="btn btn-primary p-1 p-sm-2" (click)="copyQuestionsFromOtherSessionsHandler()"
[disabled]="isCopyingQuestion"><tm-ajax-loading *ngIf="isCopyingQuestion"></tm-ajax-loading>Copy Question</button>
</div>
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.background-color-light-blue {
background-color: #EAEFF5;
}
}