Skip to content

Commit

Permalink
feat: LMS dashboard styles
Browse files Browse the repository at this point in the history
  • Loading branch information
RahatAli authored and RahatAli committed Dec 6, 2023
1 parent d14dd9a commit f279bb5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions lms/static/sass/features/_leaderboard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

.star-icon {
width: 25%;
max-width: 104px;
}
}

Expand Down
4 changes: 2 additions & 2 deletions lms/templates/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ <h3>${course_dir}</h3>
<form class="search-form">
<label for="dashboard-search-input">${_('Search Your Courses')}</label>
<div class="search-field-wrapper">
<input id="dashboard-search-input" type="text" class="search-field"/>
<input id="dashboard-search-input" type="text" class="search-field" placeholder="${_('Search Your Courses')}"/>
<button type="submit" class="search-button" title="${_('Search')}">
<span class="icon fa fa-search" aria-hidden="true"></span>
</button>
Expand Down Expand Up @@ -315,7 +315,7 @@ <h3>${course_dir}</h3>
<ul class="user-list" id="userList">
</ul>
</div>

<%block name="skip_links">
% if settings.FEATURES.get('ENABLE_ANNOUNCEMENTS'):
<a id="announcements-skip" class="nav-skip sr-only sr-only-focusable" href="#announcements">${_("Skip to list of announcements")}</a>
Expand Down
2 changes: 1 addition & 1 deletion lms/templates/header/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@
)}
% endif
<div class="main-header">
<%include file="navbar-logo-header.html" args="online_help_token=online_help_token"/>
<div class="hamburger-menu" role="button" aria-label=${_("Options Menu")} aria-expanded="false" aria-controls="mobile-menu" tabindex="0">
<span class="line"></span>
<span class="line"></span>
<span class="line"></span>
<span class="line"></span>
</div>
<%include file="navbar-logo-header.html" args="online_help_token=online_help_token"/>
% if user.is_authenticated:
<%include file="navbar-authenticated.html" args="online_help_token=online_help_token"/>
% else:
Expand Down

0 comments on commit f279bb5

Please sign in to comment.