179 lines
3.4 KiB
SCSS
179 lines
3.4 KiB
SCSS
/**
|
|
* MODUŁ ZOSTAŁ UDOSTĘPNIONY NA PODSTAWIE LICENCJI NA JEDNO STANOWISKO/DOMENĘ
|
|
* NIE MASZ PRAWA DO JEGO KOPIOWANIA, EDYTOWANIA I SPRZEDAWANIA
|
|
* W PRZYPADKU PYTAŃ LUB BŁĘDÓW SKONTAKTUJ SIĘ Z AUTOREM
|
|
*
|
|
* ENGLISH:
|
|
* MODULE IS LICENCED FOR ONE-SITE / DOMAIM
|
|
* YOU ARE NOT ALLOWED TO COPY, EDIT OR SALE
|
|
* IN CASE OF ANY QUESTIONS CONTACT AUTHOR
|
|
*
|
|
* ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** *
|
|
*
|
|
* EN: ODWIEDŹ NASZ SKLEP PO WIĘCEJ PROFESJONALNYCH MODUŁÓW PRESTASHOP
|
|
* PL: VISIT OUR ONLINE SHOP FOR MORE PROFESSIONAL PRESTASHOP MODULES
|
|
* HTTPS://SKLEP.SENSBIT.PL
|
|
*
|
|
* ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** *
|
|
*
|
|
* @author Tomasz Dacka (kontakt@sensbit.pl)
|
|
* @copyright 2016 sensbit.pl
|
|
* @license One-site license (jednostanowiskowa, bez możliwości kopiowania i udostępniania innym)
|
|
*/
|
|
|
|
.icon-AdminSensbitPaczkawRuchu:before {
|
|
content:"\f0c2";
|
|
}
|
|
|
|
.sensbitpaczkawruchu-tabs {
|
|
background-color: #fff;
|
|
list-style:none;
|
|
margin:0;
|
|
margin-top:11px;
|
|
padding:0;
|
|
|
|
&.bootstrap {
|
|
margin-top:32px;
|
|
background: #fff;
|
|
|
|
li > a.active{
|
|
background-color: #00b6b0 !important;
|
|
color:#fff;
|
|
}
|
|
}
|
|
|
|
li:first-child a{
|
|
border-top:none;
|
|
}
|
|
|
|
li {
|
|
> a {
|
|
display: block;
|
|
font-weight: normal;
|
|
color: #666;
|
|
padding: 7px 10px;
|
|
text-decoration:none !important;
|
|
-webkit-transition: all 300ms ease-in-out;
|
|
-moz-transition: all 300ms ease-in-out;
|
|
-ms-transition: all 300ms ease-in-out;
|
|
-o-transition: all 300ms ease-in-out;
|
|
transition: all 300ms ease-in-out;
|
|
|
|
|
|
&.active,
|
|
&:hover {
|
|
background-color: #00b6b0;
|
|
font-weight: bold;
|
|
color: #fff;
|
|
border-right: 3px solid #192f4d;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
body.sensbitpaczkawruchu-loader {
|
|
-webkit-transition: all 300ms ease-in-out;
|
|
-moz-transition: all 300ms ease-in-out;
|
|
-ms-transition: all 300ms ease-in-out;
|
|
-o-transition: all 300ms ease-in-out;
|
|
transition: all 300ms ease-in-out;
|
|
|
|
opacity:1;
|
|
|
|
&:after, &:before{
|
|
content: "";
|
|
background: #fff url(../../logo.png) no-repeat center center;
|
|
border-radius: 50%;
|
|
width: 100px;
|
|
height: 100px;
|
|
margin: auto;
|
|
display: block;
|
|
z-index: 99999999999;
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0px;
|
|
top: 0px;
|
|
bottom: 0;
|
|
|
|
}
|
|
&:after {
|
|
|
|
}
|
|
&:before {
|
|
background: #fff;
|
|
-webkit-animation:sensbit_loader 1s linear infinite;
|
|
-moz-animation:sensbit_loader 1s linear infinite;
|
|
animation:sensbit_loader 1s linear infinite;
|
|
z-index: 99999999998;
|
|
border-top: 5px solid #1f324e;
|
|
border-right: 0px solid #1f324e;
|
|
border-bottom: 5px solid #00b5af;
|
|
border-left: 0px solid #00b5af;
|
|
}
|
|
}
|
|
|
|
.sensbitpaczkawruchu-category-tree
|
|
{
|
|
padding: 0 20px;
|
|
|
|
ul{
|
|
margin:0;
|
|
padding:0 0 0 20px;
|
|
list-style: none;
|
|
|
|
li {
|
|
padding: 5px 0;
|
|
font-size: 14px;
|
|
}
|
|
|
|
input {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
i {
|
|
font-size:12px;
|
|
}
|
|
|
|
a {
|
|
color:inherit;
|
|
}
|
|
}
|
|
|
|
& > ul {
|
|
padding-left:5px;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
.mappedCategory{
|
|
.sensbitpaczkawruchu-unset-mapped-category {
|
|
display:none;
|
|
}
|
|
&:hover{
|
|
.sensbitpaczkawruchu-unset-mapped-category {
|
|
display:inline;
|
|
}
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes sensbit_loader {
|
|
0% {
|
|
-webkit-transform: rotate(0deg);
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
-webkit-transform: rotate(360deg);
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
@keyframes sensbit_loader {
|
|
0% {
|
|
-webkit-transform: rotate(0deg);
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
-webkit-transform: rotate(360deg);
|
|
transform: rotate(360deg);
|
|
}
|
|
} |