File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,10 @@ export default class CourseListCard extends React.Component {
126126 { showStaffView ? `Courses - ${ program . title } ` : "Required Courses" }
127127 </ h2 >
128128 { showStaffView ? null : this . renderGradesOutOfDateMessage ( ) }
129- { courseRows }
129+ < div className = "parent-overlay" >
130+ < div className = "overlay" />
131+ { courseRows }
132+ </ div >
130133 </ CardContent >
131134 </ Card >
132135 )
Original file line number Diff line number Diff line change 2020 font-weight : 600 ;
2121}
2222
23+ .parent-overlay {
24+ position : relative ;
25+ height : 100% ;
26+ width : 100% ;
27+ }
28+
29+ .overlay {
30+ position : absolute ;
31+ height : 100% ;
32+ width : 100% ;
33+ display : block ;
34+ z-index : 999 ;
35+ background-color : black ;
36+ opacity : 0.2 ;
37+ }
38+
2339.dashboard {
2440
2541 h2 {
You can’t perform that action at this time.
0 commit comments