odoo/addons/point_of_sale/static/src/css/pos.css

1529 lines
30 KiB
CSS

/* --- Fonts --- */
@font-face{
font-family: 'Inconsolata';
src: url(../fonts/Inconsolata.otf);
}
/* --- Styling of OpenERP Elements --- */
.ui-dialog{
background: white;
padding: 10px;
border-radius: 3px;
font-family: sans-serif;
box-shadow: 0px 10px 40px rgba(0,0,0,0.4);
}
.ui-dialog button{
padding: 8px;
min-width: 48px;
}
.ui-dialog .ui-icon-closethick{
float: right;
}
/* --- Generic Restyling and Resets --- */
html {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
font-family: sans-serif;
}
table {
border-spacing: 0px;
border-collapse: collapse;
}
td {
padding: 0px;
}
.oe_hidden{
display: none !important;
}
.clearfix:after {
content:" ";
display: block;
visibility: hidden;
line-height: 0;
height: 0;
clear: both;
}
.pos input::-webkit-outer-spin-button,
.pos input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.pos button{
box-shadow: none;
outline: none;
border: none;
font-family: 'Lato';
}
.pos button:hover{
background: default;
}
.pos .oe_hidden{
display: none !important;
}
.pos ul, .pos li {
margin: 0;
padding: 0;
list-style-type: none;
}
.pos {
padding: 0;
margin: 0;
background-color: #f0eeee;
font-family: "Lato","Lucida Grande", Helvetica, Verdana, Arial;
color: #555555;
font-size: 12px;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
text-shadow: none;
overflow: hidden;
}
/* ********* The black loading screen ********* */
.pos .loader{
background-color: #222;
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
z-index: 999;
text-align: center;
font-family: Lato;
color: #555555;
}
.pos .loader-feedback{
width: 400px;
height: 160px;
margin: -60px -200px;
position: absolute;
left: 50%; top: 50%;
text-align: center;
}
.pos .loader-feedback h1{
font-weight: 300;
}
.pos .loader-feedback .progressbar{
background: rgb(73,73,73);
height: 1px;
}
.pos .loader-feedback .progressbar > .progress{
height: 100%;
background: white;
width: 0%;
box-shadow: 0px 0px 5px rgba(255,255,255,0.35);
}
.pos .loader-feedback .button{
display: inline-block;
margin: 25px auto;
line-height: 42px;
padding: 0px 16px;
font-size: 20px;
font-weight: 300;
border: solid 1px;
border-radius: 5px;
cursor: pointer;
}
.pos .loader-feedback .button:active{
color: #222;
background: #555555;
}
/* ********* Generic Layout Constructs ********* */
.pos .window{
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
display: table;
border: none;
}
.pos .window .subwindow{
display: table-row;
width: 100%;
height: 100%;
}
.pos .window .subwindow.collapsed{
height: 0px;
}
.pos .subwindow .subwindow-container{
display: table-cell;
position: relative;
}
/* firefox seems to ignore the relative positionning of the subwindow-container
* putting this inside subwindow-container fixes it.
*/
.pos .subwindow .subwindow-container-fix{
height: 100%;
position: relative;
}
/* ---- Scrollers ----- */
.pos .scroller-container{
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
}
.pos .scroller{
width: 100%;
height: 100%;
overflow: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.pos .scroller.horizontal{
overflow-y: hidden;
overflow-x: auto;
}
.pos .scroller-content{
-webkit-transform: translate3d(0,0,0);
}
.pos .scroller-container ::-webkit-scrollbar{
width: 10px;
height: 10px;
}
.pos .scroller-container ::-webkit-scrollbar-track{
background: rgb(224,224,224);
border-left: solid 1px rgb(200,200,200);
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
.pos .scroller-container ::-webkit-scrollbar-thumb{
background: rgb(168,168,168);
min-height: 30px;
}
/* ********* Generic element styling ********* */
.pos a {
text-decoration: none;
color: #555555;
}
.pos button, .pos a.button {
display: inline-block;
cursor: pointer;
padding: 4px 10px;
font-size: 11px;
border: 1px solid #cacaca;
background: #e2e2e2;
border-radius: 3px;
}
.pos ul, .pos ol {
padding: 0;
margin: 0;
}
.pos li {
list-style-type: none;
}
.pos .pos-right-align {
text-align: right;
}
.pos .pos-center-align {
text-align: center;
}
.pos .pos-disc-font {
font-size: 12px;
font-style:italic;
color: #808080;
}
/* ********* The black header bar ********* */
.pos .pos-topheader {
position:absolute;
left:0;
top:0;
width: 100%;
height: 34px;
margin:0;
padding:0;
color: gray;
background: #393939;
}
/* a) The left part of the top-bar */
.pos .pos-branding{
position: absolute;
display: table-cell;
left:0;
top:0;
width:439px;
height:100%;
margin:0;
padding:0;
border-right: 1px solid #373737;
text-align:left;
line-height:100%;
vertical-align: middle;
}
.pos .pos-logo {
height: 32px;
width: 116px;
margin-left:5px;
vertical-align:middle;
}
.pos .pos-branding .username{
float:right;
color:#DDD;
font-size:16px;
margin-right:32px;
margin-top:10px;
font-style:italic;
}
/* b) The right part of the top-bar */
.pos .pos-rightheader {
position: absolute;
left:440px;
right:0;
top:0;
height:100%;
}
.pos .order-button{
color: #273072;
height:27px;
margin:3px;
margin-right:0px;
border: 1px solid #353A7E;
background: #7f82ac;
text-shadow: none;
border-radius: 3px;
}
.pos .order-button.selected{
font-weight: 900;
background: #666997;
color: rgb(236, 237, 255);
}
.pos .order-button.square{
width: 32px;
margin-left:4px;
}
.pos .order-selector {
display: inline-block;
}
.pos .orders {
display: inline-block;
vertical-align: top;
margin-left: 8px;
}
/* c) The session buttons */
.pos .pos-rightheader .header-button{
float:right;
height:32px;
padding-left:10px;
padding-right:10px;
border-right: 1px solid #292929;
border-left: 1px solid #292929;
color:#DDD;
line-height:32px;
text-align:center;
cursor: pointer;
-webkit-transition-property: background;
-webkit-transition-duration: 0.2s;
-webkit-transition-timing-function: ease-out;
}
.pos .pos-rightheader .header-button:last-child{
border-left: 1px solid #3a3a3a;
}
.pos .pos-rightheader .header-button:active{
background: rgba(0,0,0,0.2);
color:#EEE;
}
/* c) The notifications indicator */
.pos .oe_status{
float:right;
color: rgba(255,255,255,0.4);
padding: 8px;
line-height:16px;
font-size:16px;
vertical-align:middle;
font-style: italic;
cursor:pointer;
}
.pos .oe_status.oe_inactive{
cursor: default;
}
.pos .oe_status .oe_icon{
display:inline-block;
cursor:pointer;
width:20px; height:16px;
color: white;
}
.pos .oe_status .oe_red,
.pos .oe_icon.oe_red {
color: rgb(197, 52, 0);
}
.pos .oe_statu .oe_green,
.pos .oe_icon.oe_green {
color: rgb(94, 185, 55);
}
.pos .oe_status .oe_orange,
.pos .oe_icon.oe_orange {
color: rgb(239, 153, 65);
}
/* ********* Contains everything below the bar ********* */
.pos .pos-content {
width: 100%;
position: absolute;
top: 34px;
bottom: 0;
background: #F0EEEE;
}
/* ********* The leftpane contains the order, numpad and paypad ********* */
.pos .pos-leftpane {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
position:absolute;
left:0;
width:440px;
top:0px;
bottom:0;
border-right: solid 1px #CECBCB;
}
.pos .pos-leftpane .pads {
background: #F0EEEE;
white-space: nowrap;
}
/* ********* The paypad contains the payment buttons ********* */
.pos .paypad {
padding: 8px 4px 8px 8px;
display: inline-block;
text-align: center;
vertical-align: top;
width: 205px;
max-height: 350px;
overflow-y: auto;
overflow-x: hidden;
}
.pos .paypad button {
height: 39px;
display: block;
width: 100%;
margin: 0px -6px 4px -2px;
font-weight: bold;
vertical-align: middle;
color: #555555;
font-size: 14px;
}
.pos .paypad button:active,
.pos .numpad button:active,
.pos .numpad .selected-mode,
.pos .popup button:active{
border: none;
color: white;
background: #7f82ac;
}
/* ********* The Numpad ********* */
.pos .numpad {
padding: 8px 8px 8px 4px;
display: inline-block;
text-align: center;
}
.pos .numpad button {
height: 50px;
width: 50px;
margin: 0px 0px 4px 0px;
font-weight: bold;
vertical-align: middle;
color: #555555;
}
.pos .input-button {
font-size: 24px;
}
.pos .mode-button {
font-size: 14px;
}
/* ********* The right pane contains the screens and headers ********* */
.pos .rightpane {
position: absolute;
top: 0;
/*bottom: 105px;*/
bottom:0;
left: 440px;
right: 0;
vertical-align: top;
-webkit-transform: translate3d(0,0,0);
}
.pos .rightpane-header {
padding: 0;
height: 48px;
border-bottom: 1px solid #c7c7c7;
background: #d3d3d3;
text-align: center;
}
/* ********* The product list ********* */
.pos .product-list {
padding: 10px;
text-align: left;
-webkit-transform: translate3d(0,0,0);
}
.pos .product-list-scroller{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
width:100%;
height:100%;
overflow: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
-webkit-transform: translate3d(0,0,0);
}
.pos .product-list-container {
position:absolute;
top:0px;
bottom:0px;
left:0px;
right:0px;
}
/* a) the product list navigation bar */
.pos .breadcrumbs{
display: inline-block;
text-align: left;
float:left;
}
.pos .breadcrumb{
float: left;
display: inline-block;
line-height: 48px;
height: 48px;
min-width: 48px;
}
.pos .breadcrumb:last-child {
padding-right: 3px;
border-right: 1px solid #c5c5c5;
}
.pos .breadcrumb-button {
display: inline-block;
padding: 0 9px;
vertical-align: top;
color: #808080;
font-size: 14px;
cursor: pointer;
}
.pos .breadcrumb-arrow{
width: 28px;
}
.pos .breadcrumb-homeimg {
width: 27px;
margin: 12px 6px;
}
/* b) the search box */
.pos .searchbox {
position: absolute;
right: 2px;
}
.pos .searchbox input {
width: 100px;
border: 1px solid #cecbcb;
padding: 10px 20px;
padding-left: 38px;
margin: 6px;
background: url("../img/search.png") no-repeat 15px;
background-color: white;
border-radius: 20px;
font-family: Lato;
font-size: 13px;
}
.pos .searchbox input:focus {
outline: none;
box-shadow: 0px 0px 0px 2px rgb(153, 153, 255) inset;
color: rgb(153, 153, 255);
}
.pos .search-clear {
position: absolute;
width: 30px;
height: 30px;
top: 11px;
left: 11px;
cursor: pointer;
}
/* c) the categories list */
.pos .categories {
position: relative;
border-bottom: 1px solid #cecece;
}
.pos .categories h4 {
display: inline-block;
margin: 9px 5px;
}
.pos .category-list{
text-align: left;
padding: 10px;
background: rgb(229, 229, 229);
}
/* d) the category button */
.pos .category-button {
position: relative;
vertical-align: top;
display: inline-block;
font-size: 11px;
margin: 5px !important;
width: 120px;
height:120px;
background:#fff;
border: 1px solid #d7d7d7;
border-radius: 3px;
border-bottom-width: 3px;
cursor: pointer;
}
.pos .category-simple-button{
position: relative;
display: inline-block;
font-size: 14px;
margin-right:10px;
padding: 5px 12px;
line-height: 24px;
border-radius: 3px;
cursor: pointer;
border: 1px solid #cacaca;
background: #e2e2e2;
}
.pos .category-simple-button:active{
color: white;
background: #7f82ac;
border: 1px solid #7f82ac;
-webkit-transition-property: background, border;
-webkit-transition-duration: 0.2s;
-webkit-transition-timing-function: ease-out;
}
.pos .category-button .category-img {
position: relative;
width: 120px;
height: 100px;
text-align: center;
cursor: pointer;
}
.pos .category-button .category-img img {
max-height: 100px;
max-width: 120px;
vertical-align: middle;
}
.pos .category-button .category-name {
position: absolute;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
bottom: 0;
top: auto;
line-height: 14px;
width: 100%;
/* for some reason the -90deg orientation doesn't match the -webkit-linear-gradient. It should be 180deg here.
* webkit also insists on rendering *both* gradients instead of only the native one. So it doesn't looks right. ugh.
background: linear-gradient(-90deg,rgba(255,255,255,0),rgba(255,255,255,1), rgba(255,255,255,1)); */
/*background:#FFF;*/
padding: 3px;
padding-top: 15px;
color: #7C7BAD;
}
/* e) the product */
.pos .product {
position:relative;
vertical-align: top;
display: inline-block;
line-height: 100px;
font-size: 11px;
margin: 5px !important;
width: 120px;
height:120px;
background:#fff;
border: 1px solid #e2e2e2;
border-radius: 3px;
border-bottom-width: 3px;
overflow: hidden;
cursor: pointer;
}
.pos .product .product-img {
position: relative;
width: 120px;
height: 100px;
background: white;
text-align: center;
}
.pos .product .product-img img {
max-height: 100px;
max-width: 120px;
vertical-align: middle;
}
.pos .product .price-tag {
position: absolute;
top: 2px;
right: 2px;
vertical-align: top;
color: white;
line-height: 13px;
background: #7f82ac;
padding: 2px 5px;
border-radius: 2px;
}
.pos .product .product-name {
position: absolute;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
bottom:0;
top:auto;
line-height: 14px;
width:100%;
overflow: hidden;
text-overflow: ellipsis;
background: -webkit-linear-gradient(-90deg,rgba(255,255,255,0),rgba(255,255,255,1), rgba(255,255,255,1));
background: -moz-linear-gradient(-90deg,rgba(255,255,255,0),rgba(255,255,255,1), rgba(255,255,255,1));
background: -ms-linear-gradient(-90deg,rgba(255,255,255,0),rgba(255,255,255,1), rgba(255,255,255,1));
/* troublesome in latest webkit
background: linear-gradient(-90deg,rgba(255,255,255,0),rgba(255,255,255,1), rgba(255,255,255,1));
*/
/*background:#FFF;*/
padding: 3px;
padding-top:15px;
}
/* ********* The Screens ********* */
.pos .screen {
position:absolute;
text-align: center;
top:0px;
bottom:0px;
width:100%;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
.pos .screen header h2 {
margin-top: 0px;
padding-top: 7px;
}
.pos .screen p{
font-size: 18px;
}
.pos .dialog{
width: 500px;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
text-align: center;
}
.pos .dialog p{
font-size: 25px;
margin-top: 10px;
color: #5a5a5a;
}
/* a) Layout for the Product Screen */
.pos .screen .layout-table {
border:none;
width:100%;
height:100%;
}
.pos .screen .header-row {
border:none;
width:100%;
height:0px;
}
.pos .screen .header-cell{
border:none;
width:100%;
height:0px;
}
.pos .screen .content-row {
width:100%;
height:100%;
}
.pos .screen .content-cell{
width:100%;
}
.pos .screen .content-cell .content-container{
height:100%;
position:relative;
}
/* b) The payment screen */
.pos .pos-payment-container {
display: inline-block;
font-size: 16px;
text-align: left;
width: 360px;
}
.pos .payment-due-total {
text-align: center;
font-weight: bold;
font-size: 48px;
margin: 27px;
text-shadow: 0px 2px rgb(202, 202, 202);
}
.pos .paymentline{
position: relative;
padding: 8px;
border-box: 3px;
box-sizing: border-box;
-moz-box-sizing: border-box;
border-radius: 3px;
}
.pos .paymentline-name{
margin-bottom: 8px;
}
.pos .paymentline-input{
font-size: 20px;
font-family: Lato;
display: block;
width: 100%;
box-sizing: border-box;
-moz-box-sizing: border-box;
outline: none;
border: none;
padding: 6px 8px;
background: white;
color: #484848;
text-align: right;
border-radius: 3px;
box-shadow: 0px 2px rgba(143, 143, 143, 0.3) inset;
}
.pos .paymentline-input:focus{
color: rgb(130, 124, 255);
box-shadow: 0px 2px rgba(219, 219, 219, 0.3) inset;
-webkit-animation: all 250ms linear;
}
.paymentline-delete {
width: 32px;
height: 32px;
padding: 5px;
text-align: center;
box-sizing: border-box;
-moz-box-sizing: border-box;
position: absolute;
bottom: 10px;
left: 8px;
cursor: pointer;
}
.pos .pos-payment-container .left-block{
display: inline-block;
width:49%;
margin:0;
padding:0;
text-align:left;
}
.pos .pos-payment-container .infoline{
margin-top:5px;
margin-bottom:5px;
padding: 0px 8px;
opacity: 0.5;
}
.pos .pos-payment-container .infoline.bigger{
opacity: 1;
font-size: 20px;
}
.pos .pos-payment-container .right-block{
display: inline-block;
width:49%;
margin:0;
padding:0;
text-align:right;
}
.pos .paymentline.selected{
background: rgb(220,220,220);
}
/* c) The receipt screen */
.pos .pos-receipt-container {
font-size: 0.75em;
}
.pos .pos-sale-ticket {
text-align: left;
width: 300px;
background-color: white;
margin: 20px;
padding: 15px;
font-size: 14px;
padding-bottom:30px;
display: inline-block;
font-family: "Inconsolata";
border: solid 1px rgb(220,220,220);
border-radius: 3px;
overflow: hidden;
}
.pos .pos-sale-ticket pre{
font-family: "Inconsolata";
}
.pos .pos-sale-ticket .emph{
font-size: 20px;
margin:5px;
}
.pos .pos-sale-ticket table {
width: 100%;
border: 0;
table-layout: fixed;
}
.pos .pos-sale-ticket table td {
border: 0;
word-wrap: break-word;
}
@media print {
.oe_leftbar,
.pos .pos-topheader,
.pos .pos-leftpane,
.pos .keyboard_frame {
display: none !important;
}
.pos,
.pos .pos-content,
.pos .rightpane,
.pos .screen,
.pos .window,
.pos .window .subwindow,
.pos .subwindow .subwindow-container{
display: block;
position: static;
height: auto;
}
.pos{
background: white !important;
}
.pos .rightpane {
left: 0px !important;
background-color: white;
}
.pos .receipt-screen header {
display: none !important;
}
.pos .receipt-screen {
text-align: left;
}
.pos-actionbar {
display: none !important;
}
.debug-widget{
display: none !important;
}
.pos *{
text-shadow: none !important;
box-shadow: none !important;
background: transparent !important;
}
.pos .pos-sale-ticket{
margin: 0;
margin-left: auto !important;
margin-right: auto !important;
border: none !important;
font-size: 13px !important;
width: 266px !important;
}
}
/* d) The Scale screen */
.pos .scale-screen .display{
position:relative;
width: 550px;
height:190px;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
}
.pos .scale-screen .product-picture {
position: relative;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
display: float;
float: right;
margin: 5px;
width: 180px;
height:180px;
line-height:180px;
cursor:pointer;
background:#fff;
border: 1px solid #fff;
border-radius: 3px;
box-shadow: 0px 2px rgb(228, 228, 228);
}
.pos .scale-screen .product-picture img{
max-width: 178px;
max-height: 178px;
vertical-align: middle;
cursor:pointer;
}
.pos .scale-screen .product-picture .product-price{
position: absolute;
top:8px;
right:8px;
width:auto;
height:auto;
line-height:1;
color:white;
background: #7f82ac;
padding: 4px 5px;
border-radius: 3px;
cursor:pointer;
}
.pos .scale-screen .product-name {
position: absolute;
left: 0px;
right: 210px;
top: 10px;
height: 50px;
font-size: 36px;
line-height: 50px;
text-align: right;
color: #8d8d8d;
overflow: hidden;
text-overflow: ellipsis;
}
.pos .scale-screen .weight{
position: absolute;
left: 0;
top: 80px;
height: 90px;
bottom: 55px;
right: 210px;
padding: 6px;
padding-right: 33px;
padding-top: 11px;
background: white;
border-radius: 3px;
box-shadow: 0px 2px rgb(228, 228, 228) inset;
}
.pos .scale-screen .weight p{
display: inline-block;
text-align:right;
line-height: 90px;
font-size: 56px;
width: 100%;
height: 100%;
margin: 0;
margin-right: 18px;
font-family: "Inconsolata";
color: #6c6c6c;
}
/* e) The Welcome Screen */
.pos .goodbye-message{
position: absolute;
left:50%;
top:40%;
width:500px;
height:400px;
margin-left: -250px;
margin-top: -200px;
padding:10px;
padding-top:20px;
text-align:center;
font-size:20px;
font-weight:bold;
background-color: #F0EEEE;
border: 1px solid #E0DDDD;
border-radius: 3px;
box-shadow: 0px 10px 20px rgba(0,0,0,0.4);
z-index:1150;
}
/* ********* The OrderWidget ********* */
.pos .order-container{
position: absolute;
top: 0px;
width:100%;
height: 100%;
background: #F0EEEE;
}
.pos .order-scroller{
width:100%;
height:100%;
overflow:hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.pos .order{
background: white;
padding-bottom:15px;
padding-top:15px;
margin-left:16px;
margin-right:16px;
margin-top:16px;
margin-bottom:16px;
font-size:16px;
border-radius: 3px;
border: solid 1px rgb(220,220,220);
-webkit-transform: translate3d(0,0,0);
}
.pos .order .empty{
text-align:center;
margin-top: 15px;
margin-bottom: 5px;
color:#999;
font-weight: normal;
}
.pos .order .summary{
width:100%;
text-align:right;
font-weight: bold;
margin-top:20px;
margin-bottom:10px;
}
.pos .order .summary .line{
float: right;
margin-right:15px;
margin-left: 15px;
padding-top:5px;
border-top: solid 2px;
border-color:#777;
}
.pos .order .summary .line .subentry{
font-size: 14px;
font-weight: normal;
text-align: center;
}
.pos .order .summary .line.empty{
text-align: right;
border-color:#BBB;
color:#999;
}
/* ********* The OrderLineWidget ********* */
.pos .order .orderline{
width:100%;
margin:0px;
padding-top:3px;
padding-bottom:10px;
padding-left:15px;
padding-right:15px;
cursor: pointer;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: background 250ms ease-in-out;
-moz-transition: background 250ms ease-in-out;
transition: background 250ms ease-in-out;
}
.pos .order .orderline:active{
background: rgba(140,143,183,0.05);
-webkit-transition: background 50ms ease-in-out;
-moz-transition: background 50ms ease-in-out;
transition: background 50ms ease-in-out;
}
.pos .order .orderline.empty:active{
background: transparent;
cursor: default;
}
.pos .order .orderline.selected{
background: rgba(140,143,183,0.2);
-webkit-transition: background 250ms ease-in-out;
-moz-transition: background 250ms ease-in-out;
transition: background 250ms ease-in-out;
cursor: default;
}
.pos .order .orderline .product-name{
padding:0;
display:inline-block;
font-weight: bold;
width:80%;
overflow:hidden;
text-overflow: ellipsis;
}
.pos .order .orderline .price{
padding:0;
font-weight: bold;
float:right;
}
.pos .order .orderline .info-list{
color: #888;
margin-left:10px;
}
.pos .order .orderline .info-list em{
color: #777;
font-weight: bold;
font-style:normal;
}
/* ********* The ActionBarWidget ********* */
.pos .pos-actionbar{
height: 105px;
background: #f5f5f5; /*#ebebeb;*/
border-top: solid 1px #cecece;
z-index:900;
}
.pos .pos-actionbar ul{
list-style: none;
}
.pos .pos-actionbar-button-list{
height: 100%;
margin: 0px;
padding-left:3px;
padding-right:3px;
overflow:hidden;
}
.pos .pos-actionbar .button{
width: 90px;
height: 90px;
text-align:center;
margin:3px;
margin-top:6px;
float:left;
font-size: 14px;
font-weight: bold;
cursor: pointer;
border: 1px solid #cacaca;
border-radius: 3px;
background: #e2e2e2;
}
.pos .pos-actionbar .button .label{
margin-top: 37px;
}
.pos .pos-actionbar .button .icon{
margin-top: 10px;
}
.pos .pos-actionbar .button:active{
color: white;
background: #7f82ac;
border: 1px solid #7f82ac;
-webkit-transition-property: background, border;
-webkit-transition-duration: 0.2s;
-webkit-transition-timing-function: ease-out;
}
.pos .pos-actionbar .button.disabled{
opacity: 0.5;
}
.pos .pos-actionbar .button.disabled:active{
border: 1px solid #cacaca;
color: #555;
cursor: default;
background: #e2e2e2;
}
.pos .pos-actionbar .button.rightalign{
float:right;
}
/* ********* The Debug Widget ********* */
.pos .debug-widget{
z-index:100000;
position: absolute;
right: 10px;
top: 10px;
width: 200px;
font-size: 10px;
background: rgba(0,0,0,0.82);
color: white;
padding-bottom: 10px;
cursor: move;
-webkit-transform: translate3d(0,0,0);
}
.pos .debug-widget .toggle{
position: absolute;
font-size: 16px;
cursor:pointer;
top:0px;
right:0px;
padding:10px;
padding-right:15px;
}
.pos .debug-widget .content{
overflow: hidden;
}
.pos .debug-widget h1{
background:black;
padding-top: 10px;
padding-left: 10px;
margin-top:0;
margin-bottom:0;
}
.pos .debug-widget .category{
background: black;
padding-left: 10px;
margin: 0px;
font-weight: bold;
padding-top:3px;
padding-bottom:3px;
}
.pos .debug-widget .button{
padding: 5px;
padding-left: 15px;
display: block;
cursor:pointer;
}
.pos .debug-widget .button:active{
background: rgba(96,21,177,0.45);
}
.pos .debug-widget input{
margin-left:10px;
margin-top:7px;
padding: 4px;
width: 180px;
border: none;
box-sizing: border-box;
-moz-box-sizing: border-box;
border-radius: 3px;
}
.pos .debug-widget .status{
padding: 5px;
padding-left: 15px;
display: block;
cursor:default;
}
.pos .debug-widget .status.on{
background-color: #6cd11d;
}
.pos .debug-widget .event{
padding: 5px;
padding-left: 15px;
display: block;
cursor:default;
background-color: #1E1E1E;
}
/* ********* The PopupWidgets ********* */
.pos .modal-dialog{
position: absolute;
left: 0;
top: 0;
width: 100%;
height:100%;
background-color: rgba(0,0,0,0.5);
z-index:1000;
}
.pos .modal-dialog .popup{
position: absolute;
left:50%;
top:50%;
width:500px;
height:400px;
margin-left: -250px;
margin-top: -200px;
padding:10px;
padding-top:20px;
text-align:center;
font-size:20px;
font-weight:bold;
background-color: #F0EEEE;
border-radius: 3px;
box-shadow: 0px 10px 20px rgba(0,0,0,0.4);
z-index:1200;
}
.pos .popup .footer{
position:absolute;
bottom:0;
left:0;
width:100%;
height:60px;
border-top: 1px solid #E0DDDD;
}
.pos .popup .button{
float:right;
width: 110px;
height: 40px;
line-height:40px;
text-align:center;
margin:3px;
margin-top:10px;
margin-right:10px;
font-size: 14px;
font-weight: bold;
cursor: pointer;
border: 1px solid #cacaca;
background: #e2e2e2;
}
.pos .popup .button:active{
color: white;
background: #7f82ac;
border: 1px solid #7f82ac;
-webkit-transition-property: background, border;
-webkit-transition-duration: 0.2s;
-webkit-transition-timing-function: ease-out;
}
.pos .popup .button.big-left{
position:absolute;
top: 120px;
left:40px;
width: 180px;
height: 180px;
line-height:180px;
}
.pos .popup .button.big-right{
position:absolute;
top: 120px;
right:40px;
width: 180px;
height: 180px;
line-height:180px;
}
/* ********* The Webkit Scrollbar ********* */
.pos *::-webkit-scrollbar{
width: 10px;
height: 10px;
}
.pos *::-webkit-scrollbar-track{
background: rgb(224,224,224);
border-left: solid 1px rgb(200,200,200);
}
.pos *::-webkit-scrollbar-thumb{
background: rgb(168,168,168);
min-height: 30px;
}
.pos.big-scrollbars *::-webkit-scrollbar{
width: 40px;
height: 40px;
}
.pos.big-scrollbars *::-webkit-scrollbar-track{
background: rgb(224,224,224);
border-left: none;
}
.pos.big-scrollbars *::-webkit-scrollbar-thumb{
background: rgb(168,168,168);
min-height: 40px;
border-radius: 3px;
}
.pos.big-scrollbars *::-webkit-scrollbar-button{
width: 40px;
height: 40px;
border-radius: 3px;
background: rgb(210,210,210);
background-size: cover;
}
.pos.big-scrollbars *::-webkit-scrollbar-button:decrement{
background-image: url('../img/scroll-up.png');
}
.pos.big-scrollbars *::-webkit-scrollbar-button:increment{
background-image: url('../img/scroll-down.png');
}
/* ********* Unsupported Browser Page ********* */
.pos .not-supported-browser{
position: absolute;
z-index: 100000;
top: 0; bottom: 0; left: 0; right: 0;
background: #2C2C2C;
}
.pos .not-supported-browser .message{
width:600px;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
text-align: center;
color: #d3d3d3;
font-size: 14px;
}
.pos .not-supported-browser img{
border-collapse: separate;
}