File tree 6 files changed +8
-6
lines changed
6 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ var HintButton_1 = require('./HintButton');
6
6
var help_1 = require ( 'material-ui/svg-icons/action/help' ) ;
7
7
var styles = {
8
8
position : 'relative' ,
9
- margin : '-5px 20px' ,
9
+ margin : '0 20px -8px 20px' ,
10
10
width : '360px' ,
11
11
textAlign : 'center' ,
12
12
zIndex : '0' ,
Original file line number Diff line number Diff line change 2
2
var React = require ( 'react' ) ;
3
3
var LinearProgress_1 = require ( 'material-ui/LinearProgress' ) ;
4
4
var style = {
5
- height : '10px'
5
+ height : '10px' ,
6
+ zIndex : '10' ,
6
7
} ;
7
8
var ProgressBar = function ( _a ) {
8
9
var taskPosition = _a . taskPosition , taskLength = _a . taskLength , completed = _a . completed ;
Original file line number Diff line number Diff line change 1
1
"use strict" ;
2
2
var check_system_1 = require ( './check-system' ) ;
3
3
var store_1 = require ( '../../store' ) ;
4
- var check_1 = require ( '../tutorials /check' ) ;
4
+ var check_1 = require ( '../tutorial-list /check' ) ;
5
5
var result = function ( x ) { return x ; } ;
6
6
function allTrue ( obj ) {
7
7
return Object . values ( obj ) . every ( function ( x ) { return x === true ; } ) ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import Help from 'material-ui/svg-icons/action/help';
6
6
7
7
const styles = {
8
8
position : 'relative' ,
9
- margin : '-5px 20px' ,
9
+ margin : '0 20px -8px 20px' ,
10
10
width : '360px' ,
11
11
textAlign : 'center' ,
12
12
zIndex : '0' ,
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ import * as React from 'react';
2
2
import LinearProgress from 'material-ui/LinearProgress' ;
3
3
4
4
const style = {
5
- height : '10px'
5
+ height : '10px' ,
6
+ zIndex : '10' ,
6
7
} ;
7
8
8
9
const ProgressBar : React . StatelessComponent < {
Original file line number Diff line number Diff line change 1
1
import { npmMinVersion , nodeMinVersion } from './check-system' ;
2
2
import store from '../../store' ;
3
- import { searchForTutorials } from '../tutorials /check' ;
3
+ import { searchForTutorials } from '../tutorial-list /check' ;
4
4
5
5
const result = x => x ;
6
6
function allTrue ( obj : Object ) : boolean {
You can’t perform that action at this time.
0 commit comments