Skip to content
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
5 changes: 4 additions & 1 deletion assets/src/modules/sm/App/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,10 @@ form {
cursor: pointer;
}

.label-professor {
font-weight: normal;
}

/* NEW SCHEDULES */

div[schedule] .canvas-cont {
Expand Down Expand Up @@ -361,7 +365,6 @@ div[schedule] .schedule-loading {
}
}


/* BOOTSTRAP EXTENSIONS */
.btn {
transition: background-color .25s ease, box-shadow .125s ease;
Expand Down
2 changes: 1 addition & 1 deletion assets/src/modules/sm/Browse/templates/browse.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ <h4 class="list-group-item-heading">{{course | courseNum}}</h4>
<h4 class="list-group-item-heading">{{$index + 1}}. {{course | courseNum}}-{{section.section}}</h4>
<small>{{section.title}}</small>
<p class="list-group-item-text label-line ">
<span class="label label-default" ng-bind-html="section.instructor | RMPUrl"></span>
<span class="label label-default label-professor" ng-bind-html="section.instructor | RMPUrl"></span>
</p>
<div ng-init="parsedTimes = (section.times | parseSectionTimes:true)">
<div ng-repeat="time in parsedTimes" style="font-size: small">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<h4 class="list-group-item-heading"><span course-detail-popover="section.id">{{$index + 1}}. {{section.courseNum}}</span></h4>
<small>{{section.title}}</small>
<p class="list-group-item-text label-line ">
<span class="label label-default" ng-bind-html="section.instructor | RMPUrl"></span>
<span class="label label-default label-professor" ng-bind-html="section.instructor | RMPUrl"></span>
</p>
<div ng-init="parsedTimes = (section.times | parseSectionTimes)">
<div ng-repeat="time in parsedTimes" style="font-size:small">{{time.days}} <span style="white-space:nowrap">{{time.start | formatTime}}-{{time.end | formatTime}}</span></div>
Expand Down
2 changes: 1 addition & 1 deletion assets/src/modules/sm/Search/templates/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ <h2 class="panel-title control-label pull-left">Search Courses</h2>
<h4 class="list-group-item-heading"><span course-detail-popover="section.id">{{($index + 1) + (searchPagination.currentPage*searchPagination.pageSize)}}. {{section.courseNum}}</span></h4>
<small>{{section.title}}</small>
<p class="list-group-item-text label-line ">
<span class="label label-default" ng-bind-html="section.instructor | RMPUrl"></span>
<span class="label label-default label-professor" ng-bind-html="section.instructor | RMPUrl"></span>
</p>
<div ng-init="parsedTimes = (section.times | parseSectionTimes:true)">
<div ng-repeat="time in parsedTimes" style="font-size: small">
Expand Down