+
+
<%- gettext("Add your post to a relevant topic to help others find it. (Required)") %>
-
-
-
-
+
+
+
+
diff --git a/lms/static/sass/_header.scss b/lms/static/sass/_header.scss
index d48d926a55..b6e77fce1f 100644
--- a/lms/static/sass/_header.scss
+++ b/lms/static/sass/_header.scss
@@ -102,12 +102,12 @@
font-weight: $font-weight-normal;
display: inline-block;
margin-bottom: -1*$baseline/2;
- border-bottom: 4px solid transparent;
+ border-bottom: 4px hidden theme-color("dark");
cursor: pointer;
&.active,
&:hover {
- border-bottom-color: theme-color("dark");
+ border-bottom-style: solid;
}
&:hover {
diff --git a/lms/static/sass/course/layout/_courseware_header.scss b/lms/static/sass/course/layout/_courseware_header.scss
index 5f446ab492..2a28fa2f15 100644
--- a/lms/static/sass/course/layout/_courseware_header.scss
+++ b/lms/static/sass/course/layout/_courseware_header.scss
@@ -52,13 +52,13 @@
display: block;
text-align: center;
text-decoration: none;
- border-bottom: 4px solid transparent;
+ border-bottom: 4px hidden theme-color("primary");
&:hover,
&:focus,
&.active {
color: theme-color("primary");
- border-bottom-color: theme-color("primary");
+ border-bottom-style: solid;
background-color: transparent;
}
}
diff --git a/lms/static/sass/discussion/views/_create-edit-post.scss b/lms/static/sass/discussion/views/_create-edit-post.scss
index bfa45b85b9..2b6e7354bf 100644
--- a/lms/static/sass/discussion/views/_create-edit-post.scss
+++ b/lms/static/sass/discussion/views/_create-edit-post.scss
@@ -47,7 +47,6 @@
}
.field-label-text {
- margin: $baseline 0 0 0;
display: block;
}
@@ -67,7 +66,7 @@
line-height: 1.5;
field_help_post_type {
- @include margin($baseline / 2, 0, $baseline * 0.75, 0);
+ @include margin($baseline / 4, 0, $baseline * 0.75, 0);
}
new-post-editor-description {
diff --git a/openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js b/openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js
index 5dece91125..d1179edfb4 100644
--- a/openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js
+++ b/openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js
@@ -58,6 +58,7 @@
},
complete: function() {
view.$el.prop('disabled', false);
+ view.$el.focus();
}
});
},
@@ -78,6 +79,7 @@
},
complete: function() {
view.$el.prop('disabled', false);
+ view.$el.focus();
}
});
},
@@ -105,7 +107,7 @@
}
this.messageView.showMessage(errorMsg);
- // Hide message automatically after some interval
+ // Hide message automatically after some interval
setTimeout(_.bind(function() {
this.messageView.hideMessage();
}, this), this.showBannerInterval);