Skip to content

Commit 8774736

Browse files
committed
minor fixes
1 parent 18538d3 commit 8774736

File tree

4 files changed

+37
-3
lines changed

4 files changed

+37
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ To enable autosave in Atom, go to Atom > Preferences > Packages > search for "au
1818
## Roadmap
1919

2020
##### v1.0.0
21+
* Log button
2122
* Autorun test setting
2223
* Improved test failure display
2324
* Lint input before running (ESLint)

lib/components/app/app.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "atom-coderoad",
33
"main": "./lib/main",
4-
"version": "0.1.10",
4+
"version": "0.1.13",
55
"description": "Interactive tutorial plugin for Atom",
66
"author": "Shawn McKay <shawn.j.mckay@gmail.com",
77
"keywords": ["atom", "coderoad"],
@@ -14,7 +14,7 @@
1414
"atom": ">=1.0.0 <2.0.0"
1515
},
1616
"dependencies": {
17-
"lodash": "4.2.1",
17+
"lodash": "4.3.0",
1818
"material-ui": "0.14.4",
1919
"highlights": "1.3.1",
2020
"marked": "0.3.5",

styles/styles.less

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,30 @@
1+
// The ui-variables file is provided by base themes provided by Atom.
2+
//
3+
// See https://github.com/atom/atom-dark-ui/blob/master/styles/ui-variables.less
4+
// for a full listing of what's available.
15
@import 'ui-variables';
6+
@import '../src/components/_index';
7+
8+
// root: ../styles/tut.less
9+
@import './menu/_menu';
10+
@import './page/_chapter';
11+
@import './page/_page';
12+
@import './progress/_progress';
13+
@import './alert/_alert';
14+
@import './projects/_projects';
215

316
#crv {
417
width: 400px;
518
height: 100%;
619
overflow: scroll;
720
}
821

22+
.cr {
23+
&-account {
24+
25+
}
26+
}
27+
928
.cr-alert.success {
1029
button {
1130
span {
@@ -63,6 +82,7 @@
6382
}
6483
.cr-tasks {
6584
background-color: red;
85+
margin-bottom: 50px;
6686
.cr-task {
6787
position: relative;
6888
&-checkbox {
@@ -94,6 +114,13 @@
94114
padding-left: 15px;
95115
margin-top: 0;
96116
}
117+
.cr-page .cr-page-isDisabled {
118+
color: rgba(0, 0, 0, 0.5);
119+
background: white;
120+
&:hover {
121+
background: white;
122+
}
123+
}
97124
}
98125
}
99126

@@ -124,3 +151,9 @@
124151
padding: 10px;
125152
}
126153
}
154+
155+
.cr {
156+
&--downloads {
157+
158+
}
159+
}

0 commit comments

Comments
 (0)