2014-11-06 18:56:00 +01:00
|
|
|
// Place all the styles related to the Orders controller here.
|
|
|
|
// They will automatically be included in application.css.
|
|
|
|
// You can use Sass (SCSS) here: http://sass-lang.com/
|
2015-02-19 18:08:50 +01:00
|
|
|
|
|
|
|
.big-form-button {
|
|
|
|
height: 65px;
|
|
|
|
width: 65px;
|
2015-02-19 15:30:13 +01:00
|
|
|
}
|
2015-02-19 18:08:50 +01:00
|
|
|
|
|
|
|
.form-control.big-form-field {
|
2015-03-03 19:45:13 +01:00
|
|
|
height: 65px;
|
2015-02-19 18:08:50 +01:00
|
|
|
text-align: center;
|
2015-02-18 21:16:27 +01:00
|
|
|
}
|
2015-02-19 18:07:34 +01:00
|
|
|
|
|
|
|
.form_row_image {
|
|
|
|
height: 100px;
|
|
|
|
width: 100px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
position: relative;
|
2015-03-19 14:59:37 +01:00
|
|
|
img {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
margin: auto;
|
|
|
|
}
|
2015-02-19 18:07:34 +01:00
|
|
|
}
|
|
|
|
|
2015-04-04 04:13:30 +02:00
|
|
|
.form_row input::-webkit-outer-spin-button,
|
|
|
|
.form_row input::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
|
|
|
|
}
|
|
|
|
|
2015-06-30 23:33:11 +02:00
|
|
|
.form_row .btn-lg {
|
|
|
|
padding: 10px 10px;
|
|
|
|
}
|
2015-07-01 16:19:36 +02:00
|
|
|
|
|
|
|
.form_row .caption {
|
|
|
|
h4 {
|
|
|
|
position: relative;
|
|
|
|
span {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
max-width: 100%;
|
|
|
|
display: inline-block;
|
|
|
|
padding-right: 50px;
|
|
|
|
}
|
|
|
|
small {
|
|
|
|
margin-left: -45px;
|
|
|
|
position: absolute;
|
|
|
|
top: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|