updated miss origami css and js filename
This commit is contained in:
@@ -1,78 +0,0 @@
|
|||||||
@import "bootstrap";
|
|
||||||
@import "font-awesome";
|
|
||||||
@import "theme";
|
|
||||||
|
|
||||||
/* Show it is fixed to the top */
|
|
||||||
// body {
|
|
||||||
// min-height: 75rem;
|
|
||||||
// padding-top: 4.5rem;
|
|
||||||
// }
|
|
||||||
|
|
||||||
.cashier_number{
|
|
||||||
height:76px;
|
|
||||||
line-height:80px;
|
|
||||||
text-align:center;
|
|
||||||
background:#54A5AF;
|
|
||||||
float:left;
|
|
||||||
margin:2px;
|
|
||||||
font-size:20px;
|
|
||||||
color:white;
|
|
||||||
cursor:pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cashier_number:hover{
|
|
||||||
background:#A9F5F2;
|
|
||||||
}
|
|
||||||
|
|
||||||
.long{
|
|
||||||
width:100%
|
|
||||||
}
|
|
||||||
|
|
||||||
.sold {
|
|
||||||
background-color: red;
|
|
||||||
}
|
|
||||||
|
|
||||||
.selected-item {
|
|
||||||
background-color: blue;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Reciept Style */
|
|
||||||
#order-charges-table td {
|
|
||||||
border-top: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.charges-name {
|
|
||||||
width: 80%;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.item-name {
|
|
||||||
width: 60%;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.item-attr {
|
|
||||||
width: 20%;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Colors */
|
|
||||||
.purple {
|
|
||||||
background-color:#7a62d3;
|
|
||||||
}
|
|
||||||
|
|
||||||
.red {
|
|
||||||
background-color:#ff0000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.green{
|
|
||||||
background-color: #009900
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*----- Reset -----*/
|
|
||||||
|
|
||||||
select.form-control {
|
|
||||||
height: inherit !important;
|
|
||||||
}
|
|
||||||
@@ -9,8 +9,8 @@
|
|||||||
<title>SmartSales : Restaurant</title>
|
<title>SmartSales : Restaurant</title>
|
||||||
<%= csrf_meta_tags %>
|
<%= csrf_meta_tags %>
|
||||||
|
|
||||||
<%= stylesheet_link_tag 'orgiami', media: 'all', 'data-turbolinks-track': 'reload' %>
|
<%= stylesheet_link_tag 'origami', media: 'all', 'data-turbolinks-track': 'reload' %>
|
||||||
<%= javascript_include_tag 'orgiami', 'data-turbolinks-track': 'reload' %>
|
<%= javascript_include_tag 'origami', 'data-turbolinks-track': 'reload' %>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
@@ -165,7 +165,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
$(document).on('click', '.cashier_number', function(event){
|
$(document).on('click', '.cashier_number', function(event){
|
||||||
event.stopPropagation();
|
//event.stopPropagation();
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
if(event.handled !== true) {
|
if(event.handled !== true) {
|
||||||
var original_value;
|
var original_value;
|
||||||
|
|||||||
Reference in New Issue
Block a user