12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085 |
- <?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/>.
- */
- /**
- * \file htdocs/takepos/css/pos.css.php
- * \brief File for CSS style for TakePOS
- */
- //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.
- if (!defined('NOREQUIRESOC')) {
- define('NOREQUIRESOC', '1');
- }
- //if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); // Not disabled because need to do translations
- if (!defined('NOTOKENRENEWAL')) {
- define('NOTOKENRENEWAL', 1);
- }
- if (!defined('NOLOGIN')) {
- define('NOLOGIN', 1); // File must be accessed by logon page so without login
- }
- //if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU',1); // We need top menu content
- if (!defined('NOREQUIREHTML')) {
- define('NOREQUIREHTML', 1);
- }
- if (!defined('NOREQUIREAJAX')) {
- define('NOREQUIREAJAX', '1');
- }
- 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.
- if (empty($dolibarr_nocache)) {
- header('Cache-Control: max-age=10800, public, must-revalidate');
- } else {
- header('Cache-Control: no-cache');
- }
- include DOL_DOCUMENT_ROOT.'/theme/'.$conf->theme.'/theme_vars.inc.php';
- if (defined('THEME_ONLY_CONSTANT')) {
- return;
- }
- ?>
- html,body {
- box-sizing: border-box;
- padding:0px;
- margin:0;
- height:100%;
- width:100%;
- }
- .bodytakepos {
- background-color: var(--colorbackgrey);
- }
- .center {
- text-align: center;
- }
- button.calcbutton.poscolorblue {
- background-color: #0066AA;
- }
- button.calcbutton2.poscolordelete {
- background: rgb(255, 188, 185);
- color: #633;
- /*background-color: #884444;
- color: #fff;*/
- }
- 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 */
- width: calc(25% - 2px);
- height: calc(25% - 2px);
- font-weight: bold;
- background-color: #8c907e;
- color: #fff;
- /* border-color: unset; */
- border-width: 0;
- margin: 1px;
- font-size: 14pt;
- border-radius: 3px;
- }
- button.calcbutton2 {
- color: #fff;
- background-color: #5555AA;
- border-width: 0px;
- 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(25% - 2px);
- height: calc(25% - 2px);
- font-weight: bold;
- font-size: 10pt;
- margin: 1px;
- border-radius: 3px;
- }
- button.calcbutton2.clicked {
- background-color: #8855AA;
- }
- button.calcbutton2 .iconwithlabel {
- padding-bottom: 10px;
- }
- 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 */
- width: calc(25% - 2px);
- height: calc(25% - 2px);
- font-size: 14pt;
- margin: 1px;
- border-radius: 3px;
- }
- 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;
- background-color: #a3a6a3;
- color: #fff;
- /* border-color: unset; */
- border-width: 0;
- margin: 1px;
- font-size: 14pt;
- border-radius: 3px;
- }
- button.actionbutton {
- background: #EABCA6;
- color: #222;
- border: 2px solid #EEE;
- min-height: 40px;
- border-radius: 3px;
- }
- 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 */
- width: calc(33.33% - 2px);
- height: calc(25% - 2px);
- margin: 1px;
- border-width: 0;
- }
- 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;
- }
- div[aria-describedby="dialog-info"] button:before {
- content: "\f788";
- font-family: "<?php echo getDolGlobalString('MAIN_FONTAWESOME_FAMILY', 'Font Awesome 5 Free'); ?>";
- font-weight: 900;
- padding-right: 5px;
- }
- div[aria-describedby="dialog-info"].ui-dialog .ui-dialog-buttonpane {
- border-width: 0;
- }
- .takepospay {
- font-size: 1.5em;
- }
- .fa.fa-trash:before {
- font-size: 1.5em;
- }
- div.wrapper{
- float:left; /* important */
- position:relative; /* important(so we can absolutely position the description div */
- width:25%;
- height:33%;
- margin:0;
- padding:1px;
- border: 2px solid #EEE;
- /*box-shadow: 3px 3px 3px #bbb; */
- text-align: center;
- box-sizing: border-box;
- background-color:#fff;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- div.wrapper2{
- float:left; /* important */
- position:relative; /* important(so we can absolutely position the description div */
- width:12.5%;
- height:33%;
- margin:0;
- /* padding:1px; */
- border: 2px solid #EEE;
- /*box-shadow: 3px 3px 3px #bbb;*/
- text-align: center;
- box-sizing: border-box;
- background-color:#fff;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- img.imgwrapper {
- max-width: 100%;
- max-height: 100%;
- }
- button:active{
- background:black;
- color: white;
- }
- 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%;
- /* styling below */
- background-color:black;
- /*color:white;*/
- opacity:1; /* transparency */
- /*filter:alpha(opacity=80); IE transparency */
- text-align:center;
- padding-top: 30px;
- 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));
- }
- div.catwatermark{
- position:absolute;
- top:3%;
- left:3%;
- width:20%;
- background-color:black;
- color:white;
- text-align:center;
- font-size: 20px;
- display: none;
- opacity: 0.25;
- }
- table.postablelines tr td {
- line-height: unset;
- padding-top: 3px;
- padding-bottom: 3px;
- }
- .posinvoiceline td {
- height: 40px !important;
- background-color: var(--colorbacklineimpair2);
- }
- .postablelines td.linecolht {
- line-height: 1.3em !important;
- }
- div.paymentbordline
- {
- width:calc(50% - 16px);
- background-color:#aaa;
- border-radius: 8px;
- margin-bottom: 4px;
- display: inline-block;
- padding: 5px;
- }
- @media only screen and (max-aspect-ratio: 6/4) {
- div.description{
- min-height:20%;
- }
- }
- .container{
- width: 100%;
- height: 100%;
- margin: 0 auto;
- <?php
- if (getDolGlobalString('TAKEPOS_USE_ARROW_ON_NAVBAR')) {
- ?>
- overflow-x: hidden;
- overfloy-y: scroll;
- <?php
- } else {
- ?>
- overflow: visible;
- <?php
- }
- ?>
- box-sizing: border-box;
- }
- .row1{
- margin: 0 auto;
- width: 100%;
- height: 34%;
- }
- .row1withhead{
- margin: 0 auto;
- width: 100%;
- height: calc(45% - 50px);
- padding-top: 9px;
- }
- .row2{
- margin: 0 auto;
- width: 100%;
- height: 66%;
- }
- .row2withhead{
- margin: 0 auto;
- width: 100%;
- height: 55%;
- overflow-x: hidden;
- }
- .div1{
- height:100%;
- width: 34%;
- float: left;
- text-align: center;
- box-sizing: border-box;
- overflow: auto;
- /* background-color:white; */
- padding-top: 1px;
- padding-bottom: 0;
- min-height: 180px;
- }
- .div2{
- height: 100%;
- width: 33%;
- font-size: 0;
- float: left;
- box-sizing: border-box;
- padding-top: 0;
- padding-bottom: 0;
- min-height: 180px;
- }
- .div3{
- height: 100%;
- width: 33%;
- float: left;
- box-sizing: border-box;
- padding-top: 0;
- padding-bottom: 0;
- }
- .div4{
- height: 100%;
- width: 34%;
- float: left;
- box-sizing: border-box;
- font-size: 6px;
- padding-top: 10px;
- padding-bottom: 10px;
- }
- .div5{
- height: 100%;
- width: 66%;
- float: left;
- box-sizing: border-box;
- font-size: 6px;
- padding-top:10px;
- padding-bottom:10px;
- }
- .div1, .div2, .div3, .div4, .div5 {
- padding-right: 5px;
- padding-left: 5px;
- }
- .div1, .div4 {
- padding-left: 8px;
- }
- .div3, .div5 {
- padding-right: 8px;
- }
- tr.selected, tr.selected td {
- /* font-weight: bold; */
- background-color: rgb(240,230,210) !important;
- }
- .order td {
- color: green;
- /* background-color: #f5f5f5; */
- }
- .colorwhite {
- color: white;
- }
- .colorred {
- color: red;
- }
- .colorgreen {
- color: green;
- }
- .poscolordelete {
- color: #844;
- }
- .poscolorgreen {
- color: #060;
- }
- .poscolorblue {
- color: #006;
- }
- .centerinmiddle {
- position: relative;
- /* transform: translate(0,-50%);
- top: 50%; */
- }
- .trunc {
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- p.description_content{
- padding:10px;
- margin:0px;
- }
- div.description_content {
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: <?php echo getDolGlobalInt('TAKEPOS_LINES_TO_SHOW', 2); ?>;
- overflow: hidden;
- padding-left: 2px;
- padding-right: 2px;
- }
- .header{
- margin: 0 auto;
- width: 100%;
- height: 52px;
- background: rgb(60,70,100);
- }
- .topnav-left {
- float: left;
- }
- .topnav-right {
- }
- .topnav div.login_block_other, .topnav div.login_block_user {
- max-width: unset;
- width: unset;
- }
- .topnav{
- background: var(--colorbackhmenu1);
- overflow: hidden;
- height: 100%;
- }
- .topnav .tmenu {
- display: block;
- }
- .topnav a{
- float: left;
- color: #f2f2f2;
- text-decoration: none;
- }
- .topnav .login_block_other a {
- padding: 5px 10px;
- margin-left: 4px;
- font-size: 1.3em;
- }
- .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;
- }
- @media screen and (max-width: 767px) {
- .topnav .login_block_other a {
- padding: 5px 5px;
- font-size: 1.2em;
- }
- .div1, .div4 {
- padding-left: 5px;
- }
- .div3, .div5 {
- padding-right: 5px;
- }
- }
- .topnav-right > a {
- font-size: 17px;
- }
- .topnav-left a {
- padding: 7px 4px 7px 4px;
- margin: 8px;
- margin-left: 5px;
- margin-right: 5px;
- border-radius: 3px;
- }
- .topnav-left a:hover:not(.nohover), .topnav .login_block_other a:hover:not(.nohover) {
- background-color: #ddd;
- color: black;
- }
- .topnav-right{
- float: right;
- }
- .topnav input[type="text"] {
- background-color: #fff;
- color: #000;
- float: left;
- border-bottom: none !important;
- margin-left: 6px;
- font-size: 1.3em;
- max-width: 250px;
- border-radius: 5px;
- }
- div#moreinfo, div#infowarehouse {
- color: #aaa;
- padding: 0 8px 0 8px;
- }
- .basketselected {
- font-weight: bold;
- /* text-decoration: underline; */
- }
- .basketnotselected {
- opacity: 0.8;
- }
- .productprice {
- position: absolute;
- top: 5px;
- right: 5px;
- background: var(--colorbackhmenu1);
- color: var(--colortextbackhmenu);
- font-size: 2em;
- padding: 4px;
- border-radius: 2px;
- opacity: 0.9;
- padding-left: 6px;
- padding-right: 6px;
- }
- @media screen and (min-width: 892px) {
- .actionbutton{
- font-size: 13px;
- }
- div.description{
- font-size: 15px;
- }
- .invoice{
- font-size: 14px;
- }
- }
- @media (max-width: 891px) and (min-width: 386px) {
- .actionbutton{
- font-size: 12px;
- }
- div.description{
- font-size: 13px;
- }
- .invoice{
- font-size: 12px;
- }
- }
- @media screen and (max-width: 385px){
- .actionbutton{
- font-size: 10px;
- }
- div.description{
- font-size: 11px;
- }
- .invoice{
- font-size: 10px;
- }
- }
- /* For small screens */
- @media screen and (max-width: 1024px) {
- .topnav input[type="text"] {
- max-width: 150px;
- }
- }
- @media screen and (max-width: 767px) {
- .header {
- position: sticky;
- top: 0;
- z-index: 10;
- }
- .topnav input[type="text"] {
- max-width: 90px;
- font-size: 1.15em;
- }
- .topnav-right {
- float: unset;
- }
- .header {
- height: unset;
- }
- div.container {
- overflow-x: scroll;
- }
- div.wrapper {
- width: 50%;
- }
- div.wrapper2 {
- width: 25%;
- }
- .row1withhead{
- height: unset;
- }
- div#moreinfo, div#infowarehouse {
- padding: 0 5px 0 5px;
- }
- div.div1 {
- padding-bottom: 0;
- margin-bottom: 10px;
- }
- div.div1, div.div2, div.div3 {
- width: 100%;
- }
- div.row1 {
- height: unset;
- }
- div.div2 {
- min-height: unset;
- }
- div.div3 {
- margin-top: 8px;
- height: unset;
- }
- button.calcbutton, button.calcbutton2 {
- min-height: 30px;
- }
- .takepospay {
- font-size: 1.2em;
- }
- button.actionbutton {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- padding-left: 4px;
- padding-right: 4px;
- min-height: 30px;
- }
- }
- /* Modal box */
- .modal {
- display: none; /* Hidden by default */
- position: fixed;
- z-index: 20;
- 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;
- animation-duration: 0.4s;
- min-width: 200px;
- }
- @keyframes animatetop {
- from {top: -300px; opacity: 0}
- to {top: 0; opacity: 1}
- }
- .block {
- display: block;
- width: 100%;
- border: none;
- color: white;
- background-color: #8c907e;
- padding: 14px 0px;
- font-size: 16px;
- cursor: pointer;
- text-align: center;
- margin: 2px;
- }
- .splitsale {
- float: left;
- width: 100%;
- height: 100%;
- overflow: auto;
- }
- .rowsplit {
- width: 100%;
- height: 40%;
- }
- .headersplit {
- height: 10%;
- width: 100%;
- padding-top: 20px;
- padding-bottom: 2px;
- }
- .headercontent {
- margin: auto;
- width: 50%;
- border: 3px solid black;
- text-align: center;
- font-size: 150%;
- background-color: rgb(233,234,237);
- }
- @media only screen and (max-width: 767px)
- {
- .headercontent {
- width: 80%;
- }
- .headersplit .headercontent {
- font-size: 1em;
- }
- }
- .row:after {
- content: "";
- display: table;
- clear: both;
- }
- .div5 .imgadd {
- display: none;
- }
- @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;
- }
- .div4 .wrapper.divempty, .div4 img, .div4 .wrapper:nth-last-child(1), .div4 .wrapper:nth-last-child(2), #prodiv22, #prodiv23, .catwatermark {
- display: none!important;
- }
- .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;
- }
- .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;
- }
- .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));
- }
- .div5 .description .description_content {
- font-weight: bold;
- font-size: 14px;
- padding-left: 10px;
- }
- .div5 .wrapper2 {
- width: 100%;
- display: inline-flex;
- align-items: center;
- padding: 10px;
- justify-content: normal;
- }
- .div5 .wrapper2.divempty {
- display: none;
- }
- div.wrapper2 {
- float: none;
- }
- .div5 .arrow {
- width: auto;
- height: auto;
- display: none!important;
- }
- .div5 .arrow .centerinmiddle {
- transform: translate(0, 0);
- }
- .div5 .imgadd {
- display: flex;
- }
- div.wrapper2{
- height: 40px;
- }
- }
- <?php
- if (!getDolGlobalString('TAKEPOS_USE_ARROW_ON_NAVBAR')) {
- ?>
- .arrows {
- display: none;
- }
- <?php
- } else { ?>
- .indicator {
- background: #00000042;
- padding: 15px 5px;
- cursor: pointer;
- position:absolute;
- }
- .indicator.left {
- left:0;
- }
- .indicator.right {
- right:0;
- }
- .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 {
- height: unset;
- }
- .topnav {
- width: 100%;
- white-space: nowrap;
- overflow-x: scroll;
- display: inline-flex;
- }
- .topnav-left {
- white-space: nowrap;
- float: none;
- margin-right: auto;
- align-items: center;
- }
- .topnav-right {
- display: flex;
- white-space: nowrap;
- float: none;
- align-items: center;
- }
- .topnav-left #shoppingcart {
- display:inline-flex;
- }
- .topnav-right .login_block_other {
- display: flex;
- white-space: nowrap;
- }
- ::-webkit-scrollbar {
- width: 8px;
- }
- ::-webkit-scrollbar-track {
- background: #f1f1f1;
- }
- ::-webkit-scrollbar-thumb {
- background: #888;
- }
- .topnav::-webkit-scrollbar-track{
- background: #eeeeee;
- }
- .topnav::-webkit-scrollbar{
- width: 1px;
- background: #F5F5F5;
- }
- .topnav::-webkit-scrollbar-thumb{
- background: #f9171700;
- }
- .topnav.overflow .arrows {
- display: flex;
- }
- <?php } ?>
|