Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.0.0 #2002

Merged
merged 17 commits into from
Mar 20, 2017
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 2 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,6 @@ reaction

Additional prerequisites, setup options and detailed installation documentation can be found in the [installation](https://docs.reactioncommerce.com/reaction-docs/development/installation) and [configuration documentation](https://docs.reactioncommerce.com/reaction-docs/development/configuration). Topics covered are Windows installation, setting up the default credentials, installation without `reaction-cli`, and pre-configuring packages.

## Status

Reaction is expected to have a stable codebase ready for some production configurations within the next couple of major releases. Be aware though, that we're updating frequently. Even existing structures that are functionally done are getting frequent updates to ensure we're current with the most current libraries available to us.

Currently good for contributing, observing progress, and testing. We'd encourage due diligence in production usage, be very comfortable with the code, and risk tolerant. There are still many parts in development!

- Master ( [stable](https://github.com/reactioncommerce/reaction/tree/master) )
- Development ( [latest](https://github.com/reactioncommerce/reaction/tree/development) )

## Participation

If you are interested in participating in the development of Reaction, that's really great!
Expand All @@ -42,9 +33,9 @@ The [Reaction Gitter channel](https://gitter.im/reactioncommerce/reaction) and [

### Planning

For a high level review our roadmap, take a look at the [Reaction vision page](http://reactioncommerce.com/vision).
For a high level review our roadmap, take a look at the [Reaction features page](http://reactioncommerce.com/features).

For a kanban-esque, hardcore, real time progress overview of all Reaction Commerce projects use our [waffle board](https://waffle.io/reactioncommerce/reaction).
For a kanban-esque, hardcore, real time progress overview of all Reaction Commerce projects use our [project board](https://waffle.io/reactioncommerce/reaction).

Grouped by functional area, [reactioncommerce/reaction projects](https://github.com/reactioncommerce/reaction/projects) deliver a progress view of the Reaction sub-projects.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,16 @@
padding: 20px;
}

// Only apply form-control styles to non .rui form fields
// This should only apply to normal BS3 / Autoform fields
.admin-controls-content .form-group:not(.rui) input:not([type=checkbox]) {
.form-control;
}

.admin-controls-content .form-group:not(.rui) select {
.form-control;
}

body.admin-vertical .admin-controls {
height: 20vh;
min-width: 100%;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,25 @@
.select2-container {
width: 370px;
}
.select2-container--default .select2-selection--single {
border-radius: 4px;
border: 1px solid #cccccc;
box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.select2-container .select2-selection--single {
height: 36px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
height: 34px;
b {
border-color:#999999 transparent transparent;
border-width: 5px 5px 2.5px;
margin-left: -9px;
}
}
#select2-taxCode-container {
font-size: 14px;
line-height:34px;
color: #555555;
letter-spacing: 0.5px;
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "reaction",
"description": "Reaction is a modern reactive, real-time event driven ecommerce platform.",
"version": "0.20.0",
"version": "1.0.0",
"main": "main.js",
"directories": {
"test": "tests"
Expand Down