- Also, only show banner if the course end_date has not already pass AND if the user is verified within the course.
25 lines
450 B
SCSS
25 lines
450 B
SCSS
div.reset-deadlines-banner {
|
|
background-color: theme-color("primary");
|
|
display: none;
|
|
flex-wrap: wrap;
|
|
padding: 15px 20px;
|
|
margin-top: 5px;
|
|
|
|
div,
|
|
button {
|
|
flex: 0 0 auto;
|
|
|
|
&.reset-deadlines-text {
|
|
color: theme-color("inverse");
|
|
padding-top: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
&.reset-deadlines-button {
|
|
color: #0075b4;
|
|
background-color: theme-color("inverse");
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|