-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ff05955
commit ebbb286
Showing
52 changed files
with
1,362 additions
and
500 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,5 @@ dist/* | |
.jshintrc | ||
|
||
build/* | ||
|
||
npm-debug.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
scss_files: ./src | ||
scss_files: ./scss | ||
|
||
linters: | ||
SelectorFormat: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,24 @@ | ||
@import 'susy'; | ||
|
||
.list { | ||
color: inherit; | ||
} | ||
|
||
.data-table-wrap { | ||
@include span(9 of 9 last); | ||
|
||
opacity: 0; | ||
transition: width .3s linear; | ||
transition-delay: .3s; | ||
width: 100%; | ||
|
||
&.smaller { | ||
@include span(6 of 9); | ||
} | ||
} | ||
|
||
.details-box-wrap.show-as-column { | ||
@include span(3 of 9 last); | ||
|
||
opacity: 1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
const Colors = require('material-ui/lib/styles/colors'); | ||
const ColorManipulator = require('material-ui/lib/utils/color-manipulator'); | ||
const Spacing = require('material-ui/lib/styles/spacing'); | ||
|
||
export default { | ||
spacing: Spacing, | ||
fontFamily: 'Roboto, sans-serif', | ||
palette: { | ||
primary1Color: Colors.cyan500, | ||
primary2Color: Colors.cyan700, | ||
primary3Color: Colors.lightBlack, | ||
accent1Color: Colors.pinkA200, | ||
accent2Color: Colors.grey100, | ||
accent3Color: Colors.grey500, | ||
textColor: Colors.darkBlack, | ||
alternateTextColor: Colors.white, | ||
borderColor: Colors.grey300, | ||
disabledColor: ColorManipulator.fade(Colors.darkBlack, 0.3), | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import objectActions from './objectActions'; | ||
import {EditModelBase} from './EditModelContainer.component'; | ||
|
||
export default class extends EditModelBase { | ||
static willTransitionTo(transition, params) { | ||
objectActions.getObjectOfTypeByIdAndClone({objectType: params.modelType, objectId: params.modelId}); | ||
} | ||
} |
Oops, something went wrong.