123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- /******************************************************************************
- Point Of Sale - Product Template module for Odoo
- Copyright (C) 2014-Today Akretion (http://www.akretion.com)
- @author Sylvain LE GAL (https://twitter.com/legalsylvain)
- Some part of code from Odoo Project,
- Copyright (C) 2004-Today Odoo SA. (<http://odoo.com>).
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- ******************************************************************************/
- /* ********* Variant Selector PopUp ************************************** */
- .pos .modal-dialog .popup-select-variant{
- margin-left:0;
- margin-top:0;
- left:5%;
- width: 90%;
- top:5%;
- height:85%;
- }
- .pos .modal-dialog .popup-select-variant .variant-title{
- height: 8%;
- }
- .pos .modal-dialog .popup-select-variant .variant-title #variant-popup-cancel{
- margin: -10px 3px 3px 3px;
- }
- .pos .modal-dialog .popup-select-variant .container-attribute-list{
- width:100%;
- height:40%;
- overflow: hidden;
- overflow-y: auto;
- border-bottom: 1px dashed #444;
- -webkit-overflow-scrolling: touch;
- }
- .pos .modal-dialog .popup-select-variant .container-variant-list{
- width:100%;
- height:50%;
- overflow: hidden;
- overflow-y: auto;
- -webkit-overflow-scrolling: touch;
- }
- .pos .variant-list {
- padding: 10px;
- text-align: left;
- -webkit-transform: translate3d(0,0,0);
- }
- /* ********* Attribut Display ******************************************** */
- .pos .attribute {
- position:relative;
- width: 100%;
- vertical-align: top;
- display: inline-block;
- }
- .pos .attribute .attribute-name{
- float: left;
- font-size: 13px;
- width: 20%;
- overflow:hidden;
- }
- .pos .attribute .value-list-container{
- width:78%;
- float: left;
- }
- .pos .attribute .selected{
- background-color: white;
- }
- .pos .attribute .attribute-value {
- float: left;
- width: 150px;
- padding-left: 15px;
- }
- .pos .attribute .attribute-value .button{
- width: 100%;
- }
- .pos .attribute .attribute-value .attribute-value-header{
- width: 100%;
- height: 15px;
- text-align: right;
- }
- .pos .attribute .attribute-value .attribute-value-name{
- width: 100%;
- height: 25px;
- line-height:25px;
- overflow: hidden;
- font-size: 10px;
- text-align: left;
- font-weight: normal;
- padding: 2px;
- }
- .pos .attribute .attribute-value .variant-quantity{
- position: relative;
- top: 2px;
- right: 0px;
- vertical-align: top;
- color: #FFF;
- line-height: 13px;
- background: none repeat scroll 0% 0% #7F82AC;
- padding: 2px 5px;
- border-radius: 2px;
- font-size: 9px;
- margin-right:3px;
- }
- /* ********* Variant Display ********************************************* */
- /* This part is a copy paste from Odoo Project, with some values changed */
- .pos .variant {
- position:relative;
- vertical-align: top;
- display: inline-block;
- line-height: 100px;
- font-size: 11px;
- margin: 5px !important;
- width: 200px;
- height: 150px;
- background:#fff;
- border: 1px solid #e2e2e2;
- border-radius: 3px;
- border-bottom-width: 3px;
- overflow: hidden;
- cursor: pointer;
- }
- .pos .variant .variant-header {
- position: relative;
- width: 200px;
- height: 50px;
- background: white;
- text-align: center;
- }
- .pos .variant .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 .variant .variant-name {
- font-weight: normal;
- 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;
- }
- /*.pos .variant-list-scroller{*/
- /* -webkit-box-sizing: border-box;*/
- /* -moz-box-sizing: border-box;*/
- /* -ms-box-sizing: border-box;*/
- /* box-sizing: border-box;*/
- /* width:50%;*/
- /* height:50%;*/
- /* overflow: hidden;*/
- /* overflow-y: auto;*/
- /* -webkit-overflow-scrolling: touch;*/
- /* -webkit-transform: translate3d(0,0,0);*/
- /*}*/
|