2020-01-27 02:06:34 +01:00
|
|
|
<?php
|
|
|
|
|
/* Copyright (C) 2004-2017 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
|
|
|
* Copyright (C) 2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
|
|
|
* Copyright (C) 2007-2017 Regis Houssin <regis.houssin@inodbox.com>
|
|
|
|
|
* Copyright (C) 2011 Philippe Grand <philippe.grand@atoo-net.com>
|
|
|
|
|
* Copyright (C) 2012 Juanjo Menent <jmenent@2byte.es>
|
|
|
|
|
* Copyright (C) 2018 Ferran Marcet <fmarcet@2byte.es>
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU 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 General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2021-08-18 22:15:20 +02:00
|
|
|
* \file htdocs/takepos/css/pos.css.php
|
|
|
|
|
* \brief File for CSS style for TakePOS
|
2020-01-27 02:06:34 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled because need to load personalized language
|
|
|
|
|
//if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled to increase speed. Language code is found on url.
|
2021-02-26 21:17:52 +01:00
|
|
|
if (!defined('NOREQUIRESOC')) {
|
|
|
|
|
define('NOREQUIRESOC', '1');
|
|
|
|
|
}
|
2020-01-27 02:06:34 +01:00
|
|
|
//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); // Not disabled because need to do translations
|
2021-02-26 21:17:52 +01:00
|
|
|
if (!defined('NOTOKENRENEWAL')) {
|
|
|
|
|
define('NOTOKENRENEWAL', 1);
|
|
|
|
|
}
|
|
|
|
|
if (!defined('NOLOGIN')) {
|
|
|
|
|
define('NOLOGIN', 1); // File must be accessed by logon page so without login
|
|
|
|
|
}
|
2020-01-27 02:06:34 +01:00
|
|
|
//if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU',1); // We need top menu content
|
2021-02-26 21:17:52 +01:00
|
|
|
if (!defined('NOREQUIREHTML')) {
|
|
|
|
|
define('NOREQUIREHTML', 1);
|
|
|
|
|
}
|
|
|
|
|
if (!defined('NOREQUIREAJAX')) {
|
|
|
|
|
define('NOREQUIREAJAX', '1');
|
|
|
|
|
}
|
2020-01-27 02:06:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
define('ISLOADEDBYSTEELSHEET', '1');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
session_cache_limiter('public');
|
|
|
|
|
|
|
|
|
|
require_once __DIR__.'/../../main.inc.php'; // __DIR__ allow this script to be included in custom themes
|
|
|
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
|
|
|
|
|
|
|
|
|
|
// Define css type
|
|
|
|
|
top_httphead('text/css');
|
|
|
|
|
// Important: Following code is to avoid page request by browser and PHP CPU at each Dolibarr page access.
|
2021-02-26 21:17:52 +01:00
|
|
|
if (empty($dolibarr_nocache)) {
|
|
|
|
|
header('Cache-Control: max-age=10800, public, must-revalidate');
|
|
|
|
|
} else {
|
|
|
|
|
header('Cache-Control: no-cache');
|
|
|
|
|
}
|
2020-01-27 02:06:34 +01:00
|
|
|
|
|
|
|
|
|
2021-04-06 22:18:32 +02:00
|
|
|
include DOL_DOCUMENT_ROOT.'/theme/'.$conf->theme.'/theme_vars.inc.php';
|
2021-02-26 21:17:52 +01:00
|
|
|
if (defined('THEME_ONLY_CONSTANT')) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-01-27 02:06:34 +01:00
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
2018-09-28 13:31:41 +02:00
|
|
|
html,body {
|
2021-02-26 21:17:52 +01:00
|
|
|
box-sizing: border-box;
|
2020-01-27 01:31:39 +01:00
|
|
|
padding:0px;
|
2021-02-26 21:17:52 +01:00
|
|
|
margin:0;
|
|
|
|
|
height:100%;
|
2019-01-27 01:28:32 +01:00
|
|
|
width:100%;
|
2018-09-28 13:31:41 +02:00
|
|
|
}
|
|
|
|
|
|
2019-11-30 23:03:30 +01:00
|
|
|
.bodytakepos {
|
2024-02-12 13:41:46 +01:00
|
|
|
background-color: var(--colorbackgrey);
|
2019-11-30 23:03:30 +01:00
|
|
|
}
|
|
|
|
|
|
2019-11-07 15:25:57 +01:00
|
|
|
.center {
|
2020-01-27 02:11:37 +01:00
|
|
|
text-align: center;
|
2019-11-07 15:25:57 +01:00
|
|
|
}
|
|
|
|
|
|
2019-11-30 23:03:30 +01:00
|
|
|
button.calcbutton.poscolorblue {
|
2021-02-26 21:17:52 +01:00
|
|
|
background-color: #0066AA;
|
2019-11-30 23:03:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button.calcbutton2.poscolordelete {
|
|
|
|
|
background: rgb(255, 188, 185);
|
2021-02-26 21:17:52 +01:00
|
|
|
color: #633;
|
|
|
|
|
/*background-color: #884444;
|
|
|
|
|
color: #fff;*/
|
2019-11-30 23:03:30 +01:00
|
|
|
}
|
|
|
|
|
|
2018-09-28 13:31:41 +02:00
|
|
|
button.calcbutton {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: 0;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
text-align: center;
|
|
|
|
|
overflow: visible; /* removes extra width in IE */
|
2019-12-04 20:15:48 +01:00
|
|
|
width: calc(25% - 2px);
|
2020-01-27 01:31:39 +01:00
|
|
|
height: calc(25% - 2px);
|
2018-12-17 22:43:02 +01:00
|
|
|
font-weight: bold;
|
2021-02-26 21:17:52 +01:00
|
|
|
background-color: #8c907e;
|
|
|
|
|
color: #fff;
|
|
|
|
|
/* border-color: unset; */
|
|
|
|
|
border-width: 0;
|
|
|
|
|
margin: 1px;
|
2020-03-10 11:20:15 +01:00
|
|
|
font-size: 14pt;
|
2021-02-26 21:17:52 +01:00
|
|
|
border-radius: 3px;
|
2018-09-28 13:31:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button.calcbutton2 {
|
2021-02-26 21:17:52 +01:00
|
|
|
color: #fff;
|
|
|
|
|
background-color: #5555AA;
|
|
|
|
|
border-width: 0px;
|
2018-09-28 13:31:41 +02:00
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: 0;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
text-align: center;
|
|
|
|
|
overflow: visible; /* removes extra width in IE */
|
2019-12-04 20:15:48 +01:00
|
|
|
width: calc(25% - 2px);
|
2020-01-27 01:31:39 +01:00
|
|
|
height: calc(25% - 2px);
|
2018-12-17 22:43:02 +01:00
|
|
|
font-weight: bold;
|
2020-03-16 11:56:47 +01:00
|
|
|
font-size: 10pt;
|
2020-03-10 11:20:15 +01:00
|
|
|
margin: 1px;
|
2021-02-26 21:17:52 +01:00
|
|
|
border-radius: 3px;
|
2018-09-28 13:31:41 +02:00
|
|
|
}
|
2022-06-08 02:55:45 +02:00
|
|
|
button.calcbutton2.clicked {
|
|
|
|
|
background-color: #8855AA;
|
|
|
|
|
}
|
2020-12-02 09:38:30 +01:00
|
|
|
button.calcbutton2 .iconwithlabel {
|
|
|
|
|
padding-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-28 13:05:59 +01:00
|
|
|
button.calcbutton3 {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: 0;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
text-align: center;
|
|
|
|
|
overflow: visible; /* removes extra width in IE */
|
2019-12-04 20:15:48 +01:00
|
|
|
width: calc(25% - 2px);
|
2020-01-27 01:31:39 +01:00
|
|
|
height: calc(25% - 2px);
|
2020-03-10 11:20:15 +01:00
|
|
|
font-size: 14pt;
|
|
|
|
|
margin: 1px;
|
2021-02-26 21:17:52 +01:00
|
|
|
border-radius: 3px;
|
2018-11-28 13:05:59 +01:00
|
|
|
}
|
|
|
|
|
|
2020-09-16 06:54:01 +02:00
|
|
|
button.productbutton {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: 0;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
text-align: center;
|
|
|
|
|
overflow: visible; /* removes extra width in IE */
|
|
|
|
|
width: calc(100% - 2px);
|
|
|
|
|
height: calc(100% - 2px);
|
|
|
|
|
font-weight: bold;
|
2021-02-26 21:17:52 +01:00
|
|
|
background-color: #a3a6a3;
|
|
|
|
|
color: #fff;
|
|
|
|
|
/* border-color: unset; */
|
|
|
|
|
border-width: 0;
|
|
|
|
|
margin: 1px;
|
2020-09-16 06:54:01 +02:00
|
|
|
font-size: 14pt;
|
2021-02-26 21:17:52 +01:00
|
|
|
border-radius: 3px;
|
2020-09-16 06:54:01 +02:00
|
|
|
}
|
|
|
|
|
|
2019-11-30 23:03:30 +01:00
|
|
|
button.actionbutton {
|
2021-02-26 21:17:52 +01:00
|
|
|
background: #EABCA6;
|
2024-02-12 13:41:46 +01:00
|
|
|
color: #222;
|
2021-02-26 21:17:52 +01:00
|
|
|
border: 2px solid #EEE;
|
|
|
|
|
min-height: 40px;
|
|
|
|
|
border-radius: 3px;
|
2019-11-30 23:03:30 +01:00
|
|
|
}
|
|
|
|
|
|
2018-09-28 13:31:41 +02:00
|
|
|
button.actionbutton {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: 0;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
text-align: center;
|
|
|
|
|
overflow: visible; /* removes extra width in IE */
|
2020-06-29 17:58:04 +02:00
|
|
|
width: calc(33.33% - 2px);
|
2020-01-27 01:31:39 +01:00
|
|
|
height: calc(25% - 2px);
|
2020-03-16 13:27:10 +01:00
|
|
|
margin: 1px;
|
2021-02-26 21:17:52 +01:00
|
|
|
border-width: 0;
|
2018-09-28 13:31:41 +02:00
|
|
|
}
|
|
|
|
|
|
2020-03-17 09:44:59 +01:00
|
|
|
button.item_value {
|
|
|
|
|
background: #bbbbbb;
|
|
|
|
|
border: #000000 1px solid;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button.item_value.selected {
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
color: #000000;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-11 23:57:36 +01:00
|
|
|
div[aria-describedby="dialog-info"] button:before {
|
2021-02-26 21:17:52 +01:00
|
|
|
content: "\f788";
|
2023-09-26 21:49:15 +02:00
|
|
|
font-family: "<?php echo getDolGlobalString('MAIN_FONTAWESOME_FAMILY', 'Font Awesome 5 Free'); ?>";
|
2021-02-26 21:17:52 +01:00
|
|
|
font-weight: 900;
|
|
|
|
|
padding-right: 5px;
|
2020-03-11 23:57:36 +01:00
|
|
|
}
|
|
|
|
|
div[aria-describedby="dialog-info"].ui-dialog .ui-dialog-buttonpane {
|
|
|
|
|
border-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-04 20:15:48 +01:00
|
|
|
.takepospay {
|
2020-01-27 02:11:37 +01:00
|
|
|
font-size: 1.5em;
|
2019-12-04 20:15:48 +01:00
|
|
|
}
|
2019-11-30 23:03:30 +01:00
|
|
|
|
|
|
|
|
.fa.fa-trash:before {
|
2021-02-26 21:17:52 +01:00
|
|
|
font-size: 1.5em;
|
2019-11-30 23:03:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2018-09-28 13:31:41 +02:00
|
|
|
div.wrapper{
|
|
|
|
|
float:left; /* important */
|
|
|
|
|
position:relative; /* important(so we can absolutely position the description div */
|
2019-02-02 23:57:38 +01:00
|
|
|
width:25%;
|
2020-01-27 01:31:39 +01:00
|
|
|
height:33%;
|
2019-02-02 23:57:38 +01:00
|
|
|
margin:0;
|
|
|
|
|
padding:1px;
|
2019-11-30 23:03:30 +01:00
|
|
|
border: 2px solid #EEE;
|
2019-03-28 18:51:04 +01:00
|
|
|
/*box-shadow: 3px 3px 3px #bbb; */
|
2018-09-28 13:31:41 +02:00
|
|
|
text-align: center;
|
2019-02-02 23:57:38 +01:00
|
|
|
box-sizing: border-box;
|
2019-03-28 18:51:04 +01:00
|
|
|
background-color:#fff;
|
2023-03-06 13:51:53 +01:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2018-09-28 13:31:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.wrapper2{
|
|
|
|
|
float:left; /* important */
|
|
|
|
|
position:relative; /* important(so we can absolutely position the description div */
|
2019-02-02 23:57:38 +01:00
|
|
|
width:12.5%;
|
2020-01-27 01:31:39 +01:00
|
|
|
height:33%;
|
2019-02-02 23:57:38 +01:00
|
|
|
margin:0;
|
2019-03-15 01:28:54 +01:00
|
|
|
/* padding:1px; */
|
2019-11-30 23:03:30 +01:00
|
|
|
border: 2px solid #EEE;
|
2019-03-28 18:51:04 +01:00
|
|
|
/*box-shadow: 3px 3px 3px #bbb;*/
|
2018-09-28 13:31:41 +02:00
|
|
|
text-align: center;
|
2019-02-02 23:57:38 +01:00
|
|
|
box-sizing: border-box;
|
2019-03-28 18:51:04 +01:00
|
|
|
background-color:#fff;
|
2023-03-06 13:51:53 +01:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2018-09-28 13:31:41 +02:00
|
|
|
}
|
|
|
|
|
|
2019-11-28 14:37:06 +01:00
|
|
|
img.imgwrapper {
|
2021-02-26 21:17:52 +01:00
|
|
|
max-width: 100%;
|
2023-03-06 13:51:53 +01:00
|
|
|
max-height: 100%;
|
2019-11-28 14:37:06 +01:00
|
|
|
}
|
|
|
|
|
|
2018-12-17 22:43:02 +01:00
|
|
|
button:active{
|
2021-02-26 21:17:52 +01:00
|
|
|
background:black;
|
2018-12-17 22:43:02 +01:00
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-28 13:31:41 +02:00
|
|
|
div.description{
|
|
|
|
|
position:absolute; /* absolute position (so we can position it where we want)*/
|
|
|
|
|
bottom:0px; /* position will be on bottom */
|
|
|
|
|
left:0px;
|
|
|
|
|
width:100%;
|
2019-02-10 12:59:09 +01:00
|
|
|
/* styling below */
|
2018-09-28 13:31:41 +02:00
|
|
|
background-color:black;
|
2019-11-30 23:03:30 +01:00
|
|
|
/*color:white;*/
|
|
|
|
|
opacity:1; /* transparency */
|
|
|
|
|
/*filter:alpha(opacity=80); IE transparency */
|
2018-09-28 13:31:41 +02:00
|
|
|
text-align:center;
|
2020-01-27 02:11:37 +01:00
|
|
|
|
2019-11-30 23:03:30 +01:00
|
|
|
padding-top: 30px;
|
2021-02-26 21:17:52 +01:00
|
|
|
background: -webkit-linear-gradient(top, rgba(250,250,250,0), rgba(250,250,250,0.5), rgba(250,250,250,0.95), rgba(250,250,250,1));
|
2018-09-28 13:31:41 +02:00
|
|
|
}
|
|
|
|
|
|
2019-02-24 21:15:11 +01:00
|
|
|
div.catwatermark{
|
|
|
|
|
position:absolute;
|
|
|
|
|
top:3%;
|
|
|
|
|
left:3%;
|
|
|
|
|
width:20%;
|
|
|
|
|
background-color:black;
|
|
|
|
|
color:white;
|
|
|
|
|
text-align:center;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
display: none;
|
2019-11-30 23:03:30 +01:00
|
|
|
opacity: 0.25;
|
2019-02-24 21:15:11 +01:00
|
|
|
}
|
|
|
|
|
|
2019-03-28 18:51:04 +01:00
|
|
|
table.postablelines tr td {
|
|
|
|
|
line-height: unset;
|
2021-02-26 21:17:52 +01:00
|
|
|
padding-top: 3px;
|
|
|
|
|
padding-bottom: 3px;
|
2019-03-28 18:51:04 +01:00
|
|
|
}
|
2020-02-24 19:24:38 +01:00
|
|
|
|
2019-03-28 18:51:04 +01:00
|
|
|
.posinvoiceline td {
|
2021-02-26 21:17:52 +01:00
|
|
|
height: 40px !important;
|
2022-04-29 11:50:55 +02:00
|
|
|
background-color: var(--colorbacklineimpair2);
|
2019-03-28 18:51:04 +01:00
|
|
|
}
|
2019-03-29 12:35:33 +01:00
|
|
|
|
2020-07-07 03:50:14 +02:00
|
|
|
.postablelines td.linecolht {
|
2021-02-26 21:17:52 +01:00
|
|
|
line-height: 1.3em !important;
|
2020-07-07 03:50:14 +02:00
|
|
|
}
|
|
|
|
|
|
2019-09-26 17:41:37 +02:00
|
|
|
div.paymentbordline
|
|
|
|
|
{
|
2020-06-29 17:58:04 +02:00
|
|
|
width:calc(50% - 16px);
|
2021-09-10 14:28:38 +02:00
|
|
|
background-color:#aaa;
|
2020-01-27 02:11:37 +01:00
|
|
|
border-radius: 8px;
|
2019-09-26 17:41:37 +02:00
|
|
|
margin-bottom: 4px;
|
2020-06-29 17:58:04 +02:00
|
|
|
display: inline-block;
|
|
|
|
|
padding: 5px;
|
2019-09-26 17:41:37 +02:00
|
|
|
}
|
|
|
|
|
|
2018-09-28 13:31:41 +02:00
|
|
|
@media only screen and (max-aspect-ratio: 6/4) {
|
|
|
|
|
div.description{
|
|
|
|
|
min-height:20%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-27 01:28:32 +01:00
|
|
|
.container{
|
2019-02-02 23:57:38 +01:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2019-01-27 01:28:32 +01:00
|
|
|
margin: 0 auto;
|
2022-12-11 13:46:55 +01:00
|
|
|
<?php
|
|
|
|
|
if (getDolGlobalString('TAKEPOS_USE_ARROW_ON_NAVBAR')) {
|
|
|
|
|
?>
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
overfloy-y: scroll;
|
2022-12-20 18:27:12 +01:00
|
|
|
<?php
|
2022-12-11 13:46:55 +01:00
|
|
|
} else {
|
2022-12-20 18:22:10 +01:00
|
|
|
?>
|
2022-12-11 13:46:55 +01:00
|
|
|
overflow: visible;
|
|
|
|
|
<?php
|
|
|
|
|
}
|
|
|
|
|
?>
|
2019-01-27 01:28:32 +01:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row1{
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 34%;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-27 01:31:39 +01:00
|
|
|
.row1withhead{
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
width: 100%;
|
2020-03-16 18:04:22 +01:00
|
|
|
height: calc(45% - 50px);
|
2021-12-05 13:00:23 +01:00
|
|
|
padding-top: 9px;
|
2020-01-27 01:31:39 +01:00
|
|
|
}
|
|
|
|
|
|
2019-01-27 01:28:32 +01:00
|
|
|
.row2{
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 66%;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-27 01:31:39 +01:00
|
|
|
.row2withhead{
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
width: 100%;
|
2020-03-16 18:04:22 +01:00
|
|
|
height: 55%;
|
2024-03-11 13:30:34 +01:00
|
|
|
overflow-x: hidden;
|
2020-01-27 01:31:39 +01:00
|
|
|
}
|
|
|
|
|
|
2019-01-27 01:28:32 +01:00
|
|
|
.div1{
|
|
|
|
|
height:100%;
|
2019-02-02 23:57:38 +01:00
|
|
|
width: 34%;
|
2019-01-27 01:28:32 +01:00
|
|
|
float: left;
|
|
|
|
|
text-align: center;
|
|
|
|
|
box-sizing: border-box;
|
2019-02-02 23:57:38 +01:00
|
|
|
overflow: auto;
|
2019-03-15 00:49:44 +01:00
|
|
|
/* background-color:white; */
|
2020-03-16 13:27:10 +01:00
|
|
|
padding-top: 1px;
|
2020-01-27 01:31:39 +01:00
|
|
|
padding-bottom: 0;
|
|
|
|
|
min-height: 180px;
|
2019-01-27 01:28:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.div2{
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 33%;
|
|
|
|
|
font-size: 0;
|
|
|
|
|
float: left;
|
|
|
|
|
box-sizing: border-box;
|
2019-03-15 00:49:44 +01:00
|
|
|
padding-top: 0;
|
2020-01-27 01:31:39 +01:00
|
|
|
padding-bottom: 0;
|
2019-11-30 23:03:30 +01:00
|
|
|
min-height: 180px;
|
2019-01-27 01:28:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.div3{
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 33%;
|
|
|
|
|
float: left;
|
|
|
|
|
box-sizing: border-box;
|
2019-03-15 00:49:44 +01:00
|
|
|
padding-top: 0;
|
2020-01-27 01:38:50 +01:00
|
|
|
padding-bottom: 0;
|
2019-01-27 01:28:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.div4{
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 34%;
|
|
|
|
|
float: left;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
font-size: 6px;
|
2019-03-15 00:49:44 +01:00
|
|
|
padding-top: 10px;
|
|
|
|
|
padding-bottom: 10px;
|
2019-01-27 01:28:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.div5{
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 66%;
|
|
|
|
|
float: left;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
font-size: 6px;
|
2019-03-15 00:49:44 +01:00
|
|
|
padding-top:10px;
|
|
|
|
|
padding-bottom:10px;
|
2021-12-05 13:00:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.div1, .div2, .div3, .div4, .div5 {
|
2019-03-15 00:49:44 +01:00
|
|
|
padding-right: 5px;
|
|
|
|
|
padding-left: 5px;
|
2019-01-27 01:28:32 +01:00
|
|
|
}
|
2021-12-05 13:00:23 +01:00
|
|
|
.div1, .div4 {
|
|
|
|
|
padding-left: 8px;
|
|
|
|
|
}
|
|
|
|
|
.div3, .div5 {
|
|
|
|
|
padding-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-29 12:27:54 +01:00
|
|
|
tr.selected, tr.selected td {
|
2024-06-22 01:18:10 +02:00
|
|
|
background-color: var(--colorbacklinepairchecked) !important;
|
2019-03-27 17:50:23 +01:00
|
|
|
}
|
2022-05-24 12:36:11 +02:00
|
|
|
.order td {
|
|
|
|
|
color: green;
|
|
|
|
|
/* background-color: #f5f5f5; */
|
2019-03-27 17:50:23 +01:00
|
|
|
}
|
|
|
|
|
|
2019-03-27 12:40:32 +01:00
|
|
|
.colorwhite {
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
.colorred {
|
|
|
|
|
color: red;
|
|
|
|
|
}
|
|
|
|
|
.colorgreen {
|
|
|
|
|
color: green;
|
|
|
|
|
}
|
2019-03-29 12:35:33 +01:00
|
|
|
.poscolordelete {
|
|
|
|
|
color: #844;
|
|
|
|
|
}
|
|
|
|
|
.poscolorgreen {
|
|
|
|
|
color: #060;
|
|
|
|
|
}
|
|
|
|
|
.poscolorblue {
|
|
|
|
|
color: #006;
|
|
|
|
|
}
|
2019-03-29 11:45:40 +01:00
|
|
|
|
|
|
|
|
.centerinmiddle {
|
2021-02-26 21:17:52 +01:00
|
|
|
position: relative;
|
2024-01-05 02:34:08 +01:00
|
|
|
/* transform: translate(0,-50%);
|
|
|
|
|
top: 50%; */
|
2019-03-29 11:45:40 +01:00
|
|
|
}
|
|
|
|
|
.trunc {
|
2021-02-26 21:17:52 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
2019-03-29 11:45:40 +01:00
|
|
|
}
|
|
|
|
|
|
2018-09-28 13:31:41 +02:00
|
|
|
p.description_content{
|
|
|
|
|
padding:10px;
|
|
|
|
|
margin:0px;
|
|
|
|
|
}
|
2019-09-27 09:57:48 +02:00
|
|
|
div.description_content {
|
|
|
|
|
display: -webkit-box;
|
2021-02-26 21:17:52 +01:00
|
|
|
-webkit-box-orient: vertical;
|
2022-11-01 23:23:42 +01:00
|
|
|
-webkit-line-clamp: <?php echo getDolGlobalInt('TAKEPOS_LINES_TO_SHOW', 2); ?>;
|
2021-02-26 21:17:52 +01:00
|
|
|
overflow: hidden;
|
|
|
|
|
padding-left: 2px;
|
|
|
|
|
padding-right: 2px;
|
2019-09-27 09:57:48 +02:00
|
|
|
}
|
2018-12-07 21:33:40 +01:00
|
|
|
|
2020-01-27 01:31:39 +01:00
|
|
|
.header{
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
width: 100%;
|
2020-12-03 23:50:45 +01:00
|
|
|
height: 52px;
|
2020-01-27 01:31:39 +01:00
|
|
|
background: rgb(60,70,100);
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-24 19:24:38 +01:00
|
|
|
.topnav-left {
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
.topnav-right {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topnav div.login_block_other, .topnav div.login_block_user {
|
|
|
|
|
max-width: unset;
|
|
|
|
|
width: unset;
|
|
|
|
|
}
|
2020-01-27 01:31:39 +01:00
|
|
|
.topnav{
|
2020-10-16 00:29:35 +02:00
|
|
|
background: var(--colorbackhmenu1);
|
2020-01-27 01:31:39 +01:00
|
|
|
overflow: hidden;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
2020-02-24 19:24:38 +01:00
|
|
|
.topnav .tmenu {
|
2021-02-26 21:17:52 +01:00
|
|
|
display: block;
|
2020-02-24 19:24:38 +01:00
|
|
|
}
|
2020-01-27 01:31:39 +01:00
|
|
|
|
|
|
|
|
.topnav a{
|
|
|
|
|
float: left;
|
|
|
|
|
color: #f2f2f2;
|
|
|
|
|
text-decoration: none;
|
2020-02-24 19:24:38 +01:00
|
|
|
}
|
|
|
|
|
.topnav .login_block_other a {
|
|
|
|
|
padding: 5px 10px;
|
2021-02-26 21:17:52 +01:00
|
|
|
margin-left: 4px;
|
|
|
|
|
font-size: 1.3em;
|
2020-02-24 19:24:38 +01:00
|
|
|
}
|
2021-12-05 13:00:23 +01:00
|
|
|
.topnav div.login_block_user {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
line-height: 50px;
|
|
|
|
|
height: 50px;
|
|
|
|
|
}
|
|
|
|
|
.userimg.atoplogin img.userphoto, .userimgatoplogin img.userphoto {
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
2020-06-29 17:58:04 +02:00
|
|
|
|
|
|
|
|
@media screen and (max-width: 767px) {
|
|
|
|
|
.topnav .login_block_other a {
|
|
|
|
|
padding: 5px 5px;
|
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
}
|
2021-12-05 13:00:23 +01:00
|
|
|
|
|
|
|
|
.div1, .div4 {
|
|
|
|
|
padding-left: 5px;
|
|
|
|
|
}
|
|
|
|
|
.div3, .div5 {
|
|
|
|
|
padding-right: 5px;
|
|
|
|
|
}
|
2020-06-29 17:58:04 +02:00
|
|
|
}
|
|
|
|
|
|
2020-02-24 19:24:38 +01:00
|
|
|
.topnav-right > a {
|
2020-01-27 01:31:39 +01:00
|
|
|
font-size: 17px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-24 19:24:38 +01:00
|
|
|
.topnav-left a {
|
|
|
|
|
padding: 7px 4px 7px 4px;
|
2021-02-26 21:17:52 +01:00
|
|
|
margin: 8px;
|
2024-01-07 11:43:29 +01:00
|
|
|
margin-left: 5px;
|
|
|
|
|
margin-right: 5px;
|
2022-11-06 23:18:16 +01:00
|
|
|
border-radius: 3px;
|
2020-02-24 19:24:38 +01:00
|
|
|
}
|
2024-01-07 11:43:29 +01:00
|
|
|
.topnav-left a:hover:not(.nohover), .topnav .login_block_other a:hover:not(.nohover) {
|
2020-01-27 01:31:39 +01:00
|
|
|
background-color: #ddd;
|
|
|
|
|
color: black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topnav-right{
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topnav input[type="text"] {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
color: #000;
|
|
|
|
|
float: left;
|
|
|
|
|
border-bottom: none !important;
|
2020-01-27 02:11:37 +01:00
|
|
|
margin-left: 6px;
|
2020-02-24 19:24:38 +01:00
|
|
|
font-size: 1.3em;
|
2021-02-26 21:17:52 +01:00
|
|
|
max-width: 250px;
|
|
|
|
|
border-radius: 5px;
|
2020-01-27 01:31:39 +01:00
|
|
|
}
|
|
|
|
|
|
2024-06-22 01:18:10 +02:00
|
|
|
|
|
|
|
|
.login_block_other.takepos {
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2020-03-16 13:27:10 +01:00
|
|
|
div#moreinfo, div#infowarehouse {
|
2021-02-26 21:17:52 +01:00
|
|
|
color: #aaa;
|
|
|
|
|
padding: 0 8px 0 8px;
|
2020-03-16 13:27:10 +01:00
|
|
|
}
|
|
|
|
|
|
2022-11-06 23:18:16 +01:00
|
|
|
.basketselected {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
/* text-decoration: underline; */
|
|
|
|
|
}
|
|
|
|
|
.basketnotselected {
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-16 18:04:22 +01:00
|
|
|
.productprice {
|
2021-02-26 21:17:52 +01:00
|
|
|
position: absolute;
|
|
|
|
|
top: 5px;
|
|
|
|
|
right: 5px;
|
|
|
|
|
background: var(--colorbackhmenu1);
|
|
|
|
|
color: var(--colortextbackhmenu);
|
|
|
|
|
font-size: 2em;
|
2022-11-01 23:23:42 +01:00
|
|
|
padding: 4px;
|
2021-02-26 21:17:52 +01:00
|
|
|
border-radius: 2px;
|
|
|
|
|
opacity: 0.9;
|
2022-11-01 23:23:42 +01:00
|
|
|
padding-left: 6px;
|
|
|
|
|
padding-right: 6px;
|
2020-03-16 18:04:22 +01:00
|
|
|
}
|
|
|
|
|
|
2020-03-16 13:27:10 +01:00
|
|
|
|
2018-12-07 21:33:40 +01:00
|
|
|
@media screen and (min-width: 892px) {
|
|
|
|
|
.actionbutton{
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
div.description{
|
|
|
|
|
font-size: 15px;
|
2018-12-16 13:01:53 +01:00
|
|
|
}
|
2018-12-07 21:33:40 +01:00
|
|
|
.invoice{
|
|
|
|
|
font-size: 14px;
|
2018-12-16 13:01:53 +01:00
|
|
|
}
|
2018-12-07 21:33:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 891px) and (min-width: 386px) {
|
|
|
|
|
.actionbutton{
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
div.description{
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
.invoice{
|
|
|
|
|
font-size: 12px;
|
2018-12-16 13:01:53 +01:00
|
|
|
}
|
2018-12-07 21:33:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media screen and (max-width: 385px){
|
|
|
|
|
.actionbutton{
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
}
|
|
|
|
|
div.description{
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
}
|
|
|
|
|
.invoice{
|
|
|
|
|
font-size: 10px;
|
2018-12-16 13:01:53 +01:00
|
|
|
}
|
2019-03-29 11:45:40 +01:00
|
|
|
}
|
|
|
|
|
|
2019-12-04 20:15:48 +01:00
|
|
|
/* For small screens */
|
|
|
|
|
|
2020-02-24 19:24:38 +01:00
|
|
|
@media screen and (max-width: 1024px) {
|
|
|
|
|
.topnav input[type="text"] {
|
|
|
|
|
max-width: 150px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-04 20:15:48 +01:00
|
|
|
@media screen and (max-width: 767px) {
|
2020-02-24 19:24:38 +01:00
|
|
|
.header {
|
2021-02-26 21:17:52 +01:00
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
z-index: 10;
|
2020-02-24 19:24:38 +01:00
|
|
|
}
|
|
|
|
|
|
2020-02-24 19:42:21 +01:00
|
|
|
.topnav input[type="text"] {
|
2020-06-29 17:58:04 +02:00
|
|
|
max-width: 90px;
|
2021-12-05 13:00:23 +01:00
|
|
|
font-size: 1.15em;
|
2020-02-24 19:42:21 +01:00
|
|
|
}
|
|
|
|
|
|
2020-01-27 01:31:39 +01:00
|
|
|
.topnav-right {
|
|
|
|
|
float: unset;
|
|
|
|
|
}
|
|
|
|
|
.header {
|
|
|
|
|
height: unset;
|
|
|
|
|
}
|
2019-12-04 20:15:48 +01:00
|
|
|
div.container {
|
|
|
|
|
overflow-x: scroll;
|
|
|
|
|
}
|
2019-03-29 11:45:40 +01:00
|
|
|
div.wrapper {
|
|
|
|
|
width: 50%;
|
|
|
|
|
}
|
|
|
|
|
div.wrapper2 {
|
|
|
|
|
width: 25%;
|
|
|
|
|
}
|
2020-01-27 02:11:37 +01:00
|
|
|
|
2020-02-24 19:24:38 +01:00
|
|
|
.row1withhead{
|
2021-12-20 13:39:34 +01:00
|
|
|
height: unset;
|
2020-02-24 19:24:38 +01:00
|
|
|
}
|
|
|
|
|
|
2020-05-12 14:08:28 +02:00
|
|
|
div#moreinfo, div#infowarehouse {
|
2021-02-26 21:17:52 +01:00
|
|
|
padding: 0 5px 0 5px;
|
2020-05-12 14:08:28 +02:00
|
|
|
}
|
2020-02-24 19:24:38 +01:00
|
|
|
|
2020-01-27 01:31:39 +01:00
|
|
|
div.div1 {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
2019-12-04 20:15:48 +01:00
|
|
|
div.div1, div.div2, div.div3 {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2020-01-27 02:11:37 +01:00
|
|
|
|
2019-12-04 20:15:48 +01:00
|
|
|
div.row1 {
|
|
|
|
|
height: unset;
|
|
|
|
|
}
|
2020-01-27 02:11:37 +01:00
|
|
|
|
2019-12-04 20:15:48 +01:00
|
|
|
div.div2 {
|
|
|
|
|
min-height: unset;
|
|
|
|
|
}
|
2020-01-27 02:11:37 +01:00
|
|
|
|
2020-01-27 01:31:39 +01:00
|
|
|
div.div3 {
|
2020-02-24 19:24:38 +01:00
|
|
|
margin-top: 8px;
|
2020-01-27 01:31:39 +01:00
|
|
|
height: unset;
|
|
|
|
|
}
|
2020-01-27 02:11:37 +01:00
|
|
|
|
2019-12-04 20:15:48 +01:00
|
|
|
button.calcbutton, button.calcbutton2 {
|
2021-02-26 21:17:52 +01:00
|
|
|
min-height: 30px;
|
2019-12-04 20:15:48 +01:00
|
|
|
}
|
2020-01-27 02:11:37 +01:00
|
|
|
|
2019-12-04 20:15:48 +01:00
|
|
|
.takepospay {
|
2020-01-27 02:11:37 +01:00
|
|
|
font-size: 1.2em;
|
2019-12-04 20:15:48 +01:00
|
|
|
}
|
2020-01-27 02:11:37 +01:00
|
|
|
|
2020-03-16 13:27:10 +01:00
|
|
|
button.actionbutton {
|
2022-11-25 22:50:26 +01:00
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2020-03-16 13:27:10 +01:00
|
|
|
padding-left: 4px;
|
|
|
|
|
padding-right: 4px;
|
2022-11-25 22:50:26 +01:00
|
|
|
min-height: 30px;
|
2020-03-16 13:27:10 +01:00
|
|
|
}
|
2019-03-29 11:45:40 +01:00
|
|
|
}
|
2020-09-27 11:11:31 +02:00
|
|
|
|
|
|
|
|
/* Modal box */
|
|
|
|
|
.modal {
|
|
|
|
|
display: none; /* Hidden by default */
|
|
|
|
|
position: fixed;
|
2020-09-27 22:19:49 +02:00
|
|
|
z-index: 20;
|
2020-09-27 11:11:31 +02:00
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
background-color: rgb(0,0,0);
|
|
|
|
|
background-color: rgba(0,0,0,0.4);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The Close Button */
|
|
|
|
|
.close {
|
|
|
|
|
color: #aaa;
|
|
|
|
|
float: right;
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.close:hover,
|
|
|
|
|
.close:focus {
|
|
|
|
|
color: black;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-header {
|
|
|
|
|
padding: 2px 16px;
|
|
|
|
|
background-color: #2b4161;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-body {padding: 2px 16px;}
|
|
|
|
|
|
|
|
|
|
.modal-content {
|
|
|
|
|
position: relative;
|
|
|
|
|
background-color: #fefefe;
|
|
|
|
|
margin: 15% auto; /* 15% from the top and centered */
|
|
|
|
|
padding: 0;
|
|
|
|
|
border: 1px solid #888;
|
|
|
|
|
width: 40%;
|
|
|
|
|
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
|
|
|
|
|
animation-name: animatetop;
|
2020-09-29 17:06:08 +02:00
|
|
|
animation-duration: 0.4s;
|
|
|
|
|
min-width: 200px;
|
2020-09-27 11:11:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes animatetop {
|
|
|
|
|
from {top: -300px; opacity: 0}
|
|
|
|
|
to {top: 0; opacity: 1}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.block {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: none;
|
|
|
|
|
color: white;
|
|
|
|
|
background-color: #8c907e;
|
2021-04-14 00:15:02 +02:00
|
|
|
padding: 14px 0px;
|
2020-09-27 11:11:31 +02:00
|
|
|
font-size: 16px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: 2px;
|
2020-09-27 22:19:49 +02:00
|
|
|
}
|
2021-08-21 22:31:03 +02:00
|
|
|
|
|
|
|
|
.splitsale {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rowsplit {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 40%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.headersplit {
|
|
|
|
|
height: 10%;
|
|
|
|
|
width: 100%;
|
2022-03-26 20:06:50 +01:00
|
|
|
padding-top: 20px;
|
|
|
|
|
padding-bottom: 2px;
|
2021-08-21 22:31:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.headercontent {
|
|
|
|
|
margin: auto;
|
|
|
|
|
width: 50%;
|
|
|
|
|
border: 3px solid black;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 150%;
|
|
|
|
|
background-color: rgb(233,234,237);
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-26 20:06:50 +01:00
|
|
|
|
|
|
|
|
@media only screen and (max-width: 767px)
|
|
|
|
|
{
|
|
|
|
|
.headercontent {
|
|
|
|
|
width: 80%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.headersplit .headercontent {
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2021-08-21 22:31:03 +02:00
|
|
|
.row:after {
|
|
|
|
|
content: "";
|
|
|
|
|
display: table;
|
|
|
|
|
clear: both;
|
|
|
|
|
}
|
2022-10-16 21:04:52 +02:00
|
|
|
|
|
|
|
|
.div5 .imgadd {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-11 13:46:55 +01:00
|
|
|
|
2022-10-16 21:04:52 +02:00
|
|
|
@media screen and (max-width: 767px) {
|
|
|
|
|
.div4 {
|
|
|
|
|
height: auto;
|
|
|
|
|
width: 100%;
|
|
|
|
|
float: left;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
font-size: 6px;
|
|
|
|
|
padding-top: 10px;
|
|
|
|
|
padding-bottom: 2px;
|
|
|
|
|
margin-left: 2px;
|
|
|
|
|
}
|
2022-11-01 23:23:42 +01:00
|
|
|
|
2022-10-16 21:04:52 +02:00
|
|
|
.div4 .wrapper.divempty, .div4 img, .div4 .wrapper:nth-last-child(1), .div4 .wrapper:nth-last-child(2), #prodiv22, #prodiv23, .catwatermark {
|
|
|
|
|
display: none!important;
|
|
|
|
|
}
|
2022-11-01 23:23:42 +01:00
|
|
|
|
2022-10-16 21:04:52 +02:00
|
|
|
.tab-category {
|
|
|
|
|
float: left;
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 25%;
|
|
|
|
|
height: 33%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 1px;
|
|
|
|
|
border: 2px solid #EEE;
|
|
|
|
|
text-align: center;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
2022-11-01 23:23:42 +01:00
|
|
|
|
2022-10-16 21:04:52 +02:00
|
|
|
.div4 .wrapper, .tab-category {
|
|
|
|
|
width: auto;
|
|
|
|
|
height: auto;
|
|
|
|
|
padding: 6px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border: 1px solid #FFF!important;
|
|
|
|
|
border-top: 3px solid #FFF!important;
|
|
|
|
|
}
|
2022-11-01 23:23:42 +01:00
|
|
|
|
2022-10-16 21:04:52 +02:00
|
|
|
.div4 .tab-category.active {
|
|
|
|
|
border-right: 1px solid #CCC !important;
|
|
|
|
|
border-left: 1px solid #CCC !important;
|
|
|
|
|
border-top: 3px solid var(--colorbackhmenu1) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.div5 {
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding-top: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.description {
|
|
|
|
|
position: initial;
|
|
|
|
|
width: auto;
|
|
|
|
|
background-color: black;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding-top: 0px;
|
|
|
|
|
background: -webkit-linear-gradient(top, rgba(250,250,250,0), rgba(250,250,250,0.5), rgba(250,250,250,0.95), rgba(250,250,250,1));
|
|
|
|
|
}
|
2022-11-01 23:23:42 +01:00
|
|
|
|
2022-10-16 21:04:52 +02:00
|
|
|
.div5 .description .description_content {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
padding-left: 10px;
|
|
|
|
|
}
|
2022-11-01 23:23:42 +01:00
|
|
|
|
2022-10-16 21:04:52 +02:00
|
|
|
.div5 .wrapper2 {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 10px;
|
2023-03-06 13:51:53 +01:00
|
|
|
justify-content: normal;
|
2022-10-16 21:04:52 +02:00
|
|
|
}
|
2022-11-01 23:23:42 +01:00
|
|
|
|
2022-10-16 21:04:52 +02:00
|
|
|
.div5 .wrapper2.divempty {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2022-11-01 23:23:42 +01:00
|
|
|
|
2022-10-16 21:04:52 +02:00
|
|
|
div.wrapper2 {
|
|
|
|
|
float: none;
|
|
|
|
|
}
|
2022-11-01 23:23:42 +01:00
|
|
|
|
2022-10-16 21:04:52 +02:00
|
|
|
.div5 .arrow {
|
|
|
|
|
width: auto;
|
|
|
|
|
height: auto;
|
|
|
|
|
display: none!important;
|
|
|
|
|
}
|
2022-11-01 23:23:42 +01:00
|
|
|
|
2022-10-16 21:04:52 +02:00
|
|
|
.div5 .arrow .centerinmiddle {
|
|
|
|
|
transform: translate(0, 0);
|
|
|
|
|
}
|
2022-11-01 23:23:42 +01:00
|
|
|
|
2022-10-16 21:04:52 +02:00
|
|
|
.div5 .imgadd {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
2022-11-01 23:23:42 +01:00
|
|
|
|
2022-10-19 22:03:26 +02:00
|
|
|
div.wrapper2{
|
2023-05-17 15:55:29 +02:00
|
|
|
height: 40px;
|
2022-10-19 22:03:26 +02:00
|
|
|
}
|
2022-10-28 12:37:35 +02:00
|
|
|
}
|
|
|
|
|
|
2022-12-11 13:46:55 +01:00
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
if (!getDolGlobalString('TAKEPOS_USE_ARROW_ON_NAVBAR')) {
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
.arrows {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-04 13:53:48 +01:00
|
|
|
<?php
|
|
|
|
|
} else { ?>
|
2022-10-28 12:37:35 +02:00
|
|
|
.indicator {
|
|
|
|
|
background: #00000042;
|
|
|
|
|
padding: 15px 5px;
|
|
|
|
|
cursor: pointer;
|
2022-11-24 18:26:47 +01:00
|
|
|
position:absolute;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.indicator.left {
|
|
|
|
|
left:0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.indicator.right {
|
|
|
|
|
right:0;
|
2022-10-28 12:37:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.indicator:hover {
|
|
|
|
|
background: #000000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.indicator i {
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topnav-left {
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topnav-right {
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* For Header Scroll */
|
|
|
|
|
html {
|
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topnav {
|
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header {
|
2022-10-28 12:44:04 +02:00
|
|
|
height: unset;
|
2022-10-28 12:37:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topnav {
|
|
|
|
|
width: 100%;
|
2022-10-28 12:44:04 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow-x: scroll;
|
2022-10-28 12:37:35 +02:00
|
|
|
display: inline-flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topnav-left {
|
2022-10-28 12:44:04 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
|
float: none;
|
2022-10-28 12:37:35 +02:00
|
|
|
margin-right: auto;
|
2022-10-28 12:44:04 +02:00
|
|
|
align-items: center;
|
2022-10-28 12:37:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topnav-right {
|
2022-10-28 12:44:04 +02:00
|
|
|
display: flex;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
float: none;
|
|
|
|
|
align-items: center;
|
2022-10-28 12:37:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topnav-left #shoppingcart {
|
|
|
|
|
display:inline-flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topnav-right .login_block_other {
|
|
|
|
|
display: flex;
|
2022-10-28 12:44:04 +02:00
|
|
|
white-space: nowrap;
|
2022-10-28 12:37:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
width: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
2022-11-01 23:23:42 +01:00
|
|
|
background: #f1f1f1;
|
2022-10-28 12:37:35 +02:00
|
|
|
}
|
2022-11-01 23:23:42 +01:00
|
|
|
|
2022-10-28 12:37:35 +02:00
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
2022-11-01 23:23:42 +01:00
|
|
|
background: #888;
|
2022-10-28 12:37:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topnav::-webkit-scrollbar-track{
|
|
|
|
|
background: #eeeeee;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topnav::-webkit-scrollbar{
|
|
|
|
|
width: 1px;
|
|
|
|
|
background: #F5F5F5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topnav::-webkit-scrollbar-thumb{
|
|
|
|
|
background: #f9171700;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topnav.overflow .arrows {
|
|
|
|
|
display: flex;
|
2022-11-25 22:50:26 +01:00
|
|
|
}
|
2022-12-11 13:46:55 +01:00
|
|
|
|
|
|
|
|
<?php } ?>
|