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 all 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
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,19 @@ reaction

For more information on setup and configuration, check out the [installation](https://docs.reactioncommerce.com/reaction-docs/development/installation) and [configuration](https://docs.reactioncommerce.com/reaction-docs/development/configuration) docs.

## Status
## Participation

Reaction’s codebase is now **officially** stable and ready for general availability! You may now run your shop on our production-ready platform.
If you are interested in participating in the development of Reaction, that's really great!

Even though we’ve reached 1.0, we will still continue to release new updates, improve upon existing features, and ensure that we remain up-to-date with the most current libraries available to us.
Our [community guidelines](https://docs.reactioncommerce.com/reaction-docs/master/guidelines) can be found in our [documentation](https://docs.reactioncommerce.com/). This is a good place to start getting more familar with Reaction.

- Master ( [stable](https://github.com/reactioncommerce/reaction/tree/master) )
- Development ( [latest](https://github.com/reactioncommerce/reaction/tree/development) )
The [Reaction Gitter channel](https://gitter.im/reactioncommerce/reaction) and [forum](http://discourse.reactioncommerce.com/) are good places to engage with core contributors and the community.

### Planning

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 [project board](https://waffle.io/reactioncommerce/reaction).

### Testing

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