Skip to content

Commit

Permalink
Merge pull request #229 from edx/mroytman/add-checklist-links
Browse files Browse the repository at this point in the history
Add links to Course Launch Checklist
  • Loading branch information
MichaelRoytman authored Jul 5, 2018
2 parents 81d38d5 + ba43f5a commit fb35153
Show file tree
Hide file tree
Showing 13 changed files with 481 additions and 124 deletions.
82 changes: 58 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"dependencies": {
"@edx/edx-bootstrap": "^1.0.0",
"@edx/paragon": "3.1.2",
"airbnb-prop-types": "^2.10.0",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.5",
"copy-to-clipboard": "^3.0.8",
Expand Down
12 changes: 12 additions & 0 deletions src/SFE.scss
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,15 @@ input[type="search"] {
.modal-footer {
flex: 0 0 auto;
}

.font-small {
font-size: $font-size-sm;
}

.font-large {
font-size: $font-size-lg;
}

.font-extra-large {
font-size: 1.5*$font-size-base;
}
22 changes: 8 additions & 14 deletions src/components/CourseChecklist/CourseChecklist.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
@import 'edx-bootstrap';
@import "~bootstrap/scss/_buttons";
@import "~bootstrap/scss/utilities/_screenreaders";

$dark-color: theme-color("dark");
$light-color: theme-color("light");
$lightest-color: theme-color("lightest");
$primary-color: theme-color("primary");
$success-color: theme-color("success");

.checklist-item-link {
text-decoration: none;
}

//complete checklist item style
.checklist-item-complete {
box-shadow: -5px 0 0 0 $success-color;
Expand All @@ -19,7 +25,7 @@ $success-color: theme-color("success");
box-shadow: -5px 0 0 0 $lightest-color;

.checklist-icon-incomplete {
color: $dark-color;
color: $light-color;
}

&:hover {
Expand All @@ -30,15 +36,3 @@ $success-color: theme-color("success");
}
}
}

.font-large {
font-size: $font-size-lg;
}

.font-small {
font-size: $font-size-sm;
}

.font-extra-large {
font-size: 1.5*$font-size-base;
}
Loading

0 comments on commit fb35153

Please sign in to comment.