Added a lot of functionality; Fixed a large number of bugs; Removed Bootstrap from the mix and replaced it with SimpleGrid and some choice bits from the bootstrap system; Pricing, Sales, and Product management all now function at basic levels.

This commit is contained in:
Wynne Crisman
2017-01-17 22:31:43 -08:00
parent b757595cd6
commit 55337521f6
49 changed files with 16017 additions and 1547 deletions

56
client/bootstrap.styl vendored
View File

@@ -14,10 +14,10 @@ input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus,
.list-group:focus {
border-color: rgba(82, 168, 236, 0.8);
outline: 0;
outline: thin dotted \9;
.list-group:focus
border-color: rgba(82, 168, 236, 0.8)
outline: 0
outline: thin dotted \9
/* IE6-9 */
/*
@@ -25,37 +25,30 @@ input[type="color"]:focus,
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
*/
-webkit-box-shadow: 0px 0px 46px -13px rgba(230,28,230,1) !important;
-moz-box-shadow: 0px 0px 46px -13px rgba(230,28,230,1) !important;
box-shadow: 0px 0px 46px -13px rgba(230,28,230,1) !important;
-webkit-box-shadow: 0px 0px 46px -13px rgba(230,28,230,1) !important
-moz-box-shadow: 0px 0px 46px -13px rgba(230,28,230,1) !important
box-shadow: 0px 0px 46px -13px rgba(230,28,230,1) !important
}
.form-control
font-size: 14px
margin-bottom: 0px
.form-control, .select2-selection {
font-size: 14px;
margin-bottom: 0px;
}
.input-group
margin-bottom: 15px
.input-group {
margin-bottom: 15px;
}
.select2 .select2-selection
border-color: #ccc
.select2 .select2-selection {
border-color: #ccc;
}
.select2-container--default.select2-container--focus .select2-selection--multiple
border-color: rgba(101, 174, 231, 0.823529)
outline: 0
outline: thin dotted \9
-webkit-box-shadow: 0px 0px 46px -11px rgba(230,28,230,1) !important
-moz-box-shadow: 0px 0px 46px -11px rgba(230,28,230,1) !important
box-shadow: 0px 0px 46px -11px rgba(230,28,230,1) !important
.select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: rgba(101, 174, 231, 0.823529);
outline: 0;
outline: thin dotted \9;
-webkit-box-shadow: 0px 0px 46px -11px rgba(230,28,230,1) !important;
-moz-box-shadow: 0px 0px 46px -11px rgba(230,28,230,1) !important;
box-shadow: 0px 0px 46px -11px rgba(230,28,230,1) !important;
}
.has-error {
border-color: #a94442 !important;
.has-error
border-color: #a94442 !important
/*
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
@@ -65,5 +58,4 @@ input[type="color"]:focus,
-webkit-box-shadow: 0px 0px 46px -13px rgba(255,28,230,1) !important;
-moz-box-shadow: 0px 0px 46px -13px rgba(255,28,230,1) !important;
box-shadow: 0px 0px 46px -13px rgba(255,28,230,1) !important;
*/
}
*/