it's not fluid anymore - and shadows are not that strong
This commit is contained in:
@@ -126,8 +126,8 @@ ActiveRecord::Schema.define(version: 20150414214540) do
|
||||
t.datetime "updated_at", null: false
|
||||
t.string "tags"
|
||||
t.json "traits"
|
||||
t.decimal "weight", precision: 5, scale: 3
|
||||
t.integer "supplier_id"
|
||||
t.decimal "weight", precision: 5, scale: 3
|
||||
t.integer "delivery_time_estimation_id"
|
||||
t.integer "brand_id"
|
||||
end
|
||||
@@ -197,9 +197,11 @@ ActiveRecord::Schema.define(version: 20150414214540) do
|
||||
end
|
||||
|
||||
create_table "sub_categories", force: :cascade do |t|
|
||||
t.string "name"
|
||||
t.integer "category_id"
|
||||
t.integer "order"
|
||||
t.string "name"
|
||||
t.integer "category_id"
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.integer "order"
|
||||
end
|
||||
|
||||
create_table "suppliers", force: :cascade do |t|
|
||||
|
||||
@@ -29,7 +29,7 @@ var SingleItem = React.createClass({
|
||||
else {
|
||||
return (
|
||||
|
||||
<div className="col-lg-2 col-md-2 col-sm-3 col-xs-6" onClick={itemClick}>
|
||||
<div className="col-lg-3 col-md-3 col-sm-4 col-xs-6" onClick={itemClick}>
|
||||
<div className="productbox">
|
||||
<img className="img-responsive" src={firstImage.resized_url} alt="product image" />
|
||||
<div>
|
||||
|
||||
@@ -43,7 +43,7 @@ var RootApp = React.createClass({
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="container-fluid">
|
||||
<div className="container">
|
||||
<div>
|
||||
<div className="col-lg-12 hidden-sm hidden-xs " style={{height: 80, background: 'none', marginBottom: '0px !important'}} id="mybody">
|
||||
<div style={{padding: '15px 15px'}} className="col-lg-3 col-md-3 col-sm-3 col-xs-3">
|
||||
|
||||
@@ -106,9 +106,9 @@ background: none;
|
||||
|
||||
.productbox{
|
||||
cursor: pointer;
|
||||
-moz-box-shadow: 1px 4px 25px #000000;
|
||||
-webkit-box-shadow: 1px 4px 25px #000000;
|
||||
box-shadow: 1px 4px 25px #000000;
|
||||
-moz-box-shadow: 1px 2px 2px #cccccc;
|
||||
-webkit-box-shadow: 1px 2px 2px #cccccc;
|
||||
box-shadow: 1px 2px 2px #cccccc;
|
||||
height: auto;
|
||||
background-color: rgba(255, 255, 255, 0.6);
|
||||
margin-top: 10px;
|
||||
|
||||
Reference in New Issue
Block a user