diff --git a/app/assets/javascripts/exercise.js b/app/assets/javascripts/exercise.js
index 38074d60f7..8d06507c27 100644
--- a/app/assets/javascripts/exercise.js
+++ b/app/assets/javascripts/exercise.js
@@ -254,13 +254,13 @@ function initExerciseShow(exerciseId, programmingLanguage, loggedIn, editorShown
$("#editor-process-btn")
.prop("disabled", false)
.removeClass("busy mdi-timer-sand-empty mdi-spin")
- .addClass("mdi-play");
+ .addClass("mdi-send");
}
function disableSubmitButton() {
$("#editor-process-btn")
.prop("disabled", true)
- .removeClass("mdi-play")
+ .removeClass("mdi-send")
.addClass("busy mdi-timer-sand-empty mdi-spin");
}
diff --git a/app/assets/stylesheets/components/card.css.scss b/app/assets/stylesheets/components/card.css.scss
index ec442425a5..439793d6f0 100644
--- a/app/assets/stylesheets/components/card.css.scss
+++ b/app/assets/stylesheets/components/card.css.scss
@@ -356,7 +356,7 @@ a.card-title-link:hover {
.card-title-fab {
position: absolute;
right: 24px;
- top: 33px;
+ top: 31px;
z-index: 4;
form {
diff --git a/app/assets/stylesheets/material_icons.css.scss b/app/assets/stylesheets/material_icons.css.scss
index a3021eaa75..6bf71f28d4 100644
--- a/app/assets/stylesheets/material_icons.css.scss
+++ b/app/assets/stylesheets/material_icons.css.scss
@@ -58,6 +58,9 @@ a.btn-fab .mdi::before {
margin-top: 5px;
}
+.btn-fab.mdi-send {
+ padding-left: 12px;
+}
.btn-sm .mdi::before {
font-size: 18px;
margin-top: 3px;
diff --git a/app/views/activities/show.html.erb b/app/views/activities/show.html.erb
index 8c0c237b9f..c7594d894b 100644
--- a/app/views/activities/show.html.erb
+++ b/app/views/activities/show.html.erb
@@ -78,7 +78,7 @@ end %>
<% if policy(@activity).submit? %>
-