Skip to content

Commit

Permalink
Merge branch 'lab-01-project-setup-solved' into lab-02-first-componen…
Browse files Browse the repository at this point in the history
…t-start

* lab-01-project-setup-solved:
  making css build easier
  moved semantic into client assets and removed build updated packages updated links for react-select
  Updating lab 1 welcome message to something generic. And not a cat picture.

Conflicts:
	api/views/index.jade
  • Loading branch information
brucecoddington committed Aug 10, 2015
2 parents 602c1e4 + 652ed1c commit a9359b7
Show file tree
Hide file tree
Showing 397 changed files with 32,712 additions and 55,545 deletions.
10 changes: 0 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,6 @@ client/dist/*

node_modules/*

client/test-reports/*

client/docs/*

client/assets/js/*

client/cache.manifest

.idea/*
Expand All @@ -23,8 +17,4 @@ dist

api/data/db/*

semantic/dist/*

semantic/node_modules/*

npm-debug.log
10 changes: 5 additions & 5 deletions client/assets/less/lib/select/custom.less
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ Ensure you have the following variables set before importing this file:

@select-home: "../../../../../node_modules/react-select/less";

@import "@{select-home}/select-control.less";
@import "@{select-home}/select-menu.less";
@import "@{select-home}/select-mixins.less";
@import "@{select-home}/select-multi.less";
@import "@{select-home}/select-spinner.less";
@import "@{select-home}/control.less";
@import "@{select-home}/menu.less";
@import "@{select-home}/mixins.less";
@import "@{select-home}/multi.less";
@import "@{select-home}/spinner.less";

.ui.form {

Expand Down
11 changes: 8 additions & 3 deletions client/assets/less/lib/select/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
* MIT License: https://github.com/keystonejs/react-select
*/

//
//
// Select Variables
// ------------------------------
// ------------------------------------------------------------

@select-input-bg: #fff;
@select-text-color: #333;
@select-input-border-color: #ccc;
@select-input-border-radius: 4px;
Expand All @@ -28,6 +29,7 @@
@select-option-color: lighten(@select-text-color, 20%);
@select-option-focused-color: @select-text-color;
@select-option-focused-bg: #f2f9fc; // pale blue
@select-option-disabled-color: lighten(@select-text-color, 60%);

@select-noresults-color: lighten(@select-text-color, 40%);

Expand All @@ -44,11 +46,14 @@
@select-item-border-color: darken(@select-item-bg, 10%);
@select-item-hover-color: darken(@select-item-color, 5%); // pale blue
@select-item-hover-bg: darken(@select-item-bg, 5%);
@select-item-disabled-color: #888;
@select-item-disabled-bg: #f2f2f2;
@select-item-disabled-border-color: darken(@select-item-disabled-bg, 10%);



// wrapper

.Select {
position: relative;
}

Loading

0 comments on commit a9359b7

Please sign in to comment.