Initial commit

This commit is contained in:
2020-10-07 10:37:15 +02:00
commit ce5f440392
28157 changed files with 4429172 additions and 0 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,7 @@
/*!
* bootstrap-select v1.3.7
* http://silviomoreto.github.io/bootstrap-select/
*
* Copyright 2013 bootstrap-select
* Licensed under the MIT license
*/.bootstrap-select.btn-group,.bootstrap-select.btn-group[class*="span"]{float:none;display:inline-block;margin-bottom:10px;margin-left:0}.form-search .bootstrap-select.btn-group,.form-inline .bootstrap-select.btn-group,.form-horizontal .bootstrap-select.btn-group{margin-bottom:0}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:0}.bootstrap-select.btn-group.pull-right,.bootstrap-select.btn-group[class*="span"].pull-right,.row-fluid .bootstrap-select.btn-group[class*="span"].pull-right{float:right}.input-append .bootstrap-select.btn-group{margin-left:-1px}.input-prepend .bootstrap-select.btn-group{margin-right:-1px}.bootstrap-select:not([class*="span"]):not([class*="col-"]):not([class*="form-control"]){width:220px}.bootstrap-select{width:220px\0}.bootstrap-select.form-control:not([class*="span"]){width:100%}.bootstrap-select>.btn{width:100%}.error .bootstrap-select .btn{border:1px solid #b94a48}.dropdown-menu{z-index:2000}.bootstrap-select.show-menu-arrow.open>.btn{z-index:2051}.bootstrap-select .btn:focus{outline:thin dotted #333 !important;outline:5px auto -webkit-focus-ring-color !important;outline-offset:-2px}.bootstrap-select.btn-group .btn .filter-option{overflow:hidden;position:absolute;left:12px;right:25px;text-align:left}.bootstrap-select.btn-group .btn .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select.btn-group>.disabled,.bootstrap-select.btn-group .dropdown-menu li.disabled>a{cursor:not-allowed}.bootstrap-select.btn-group>.disabled:focus{outline:none !important}.bootstrap-select.btn-group[class*="span"] .btn{width:100%}.bootstrap-select.btn-group .dropdown-menu{min-width:100%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .dropdown-menu.inner{position:static;border:0;padding:0;margin:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.bootstrap-select.btn-group .dropdown-menu dt{display:block;padding:3px 20px;cursor:default}.bootstrap-select.btn-group .div-contain{overflow:hidden}.bootstrap-select.btn-group .dropdown-menu li{position:relative}.bootstrap-select.btn-group .dropdown-menu li>a.opt{position:relative;padding-left:35px}.bootstrap-select.btn-group .dropdown-menu li>a{cursor:pointer}.bootstrap-select.btn-group .dropdown-menu li>dt small{font-weight:normal}.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a i.check-mark{display:inline-block;position:absolute;right:15px;margin-top:2.5px}.bootstrap-select.btn-group .dropdown-menu li a i.check-mark{display:none}.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select.btn-group .dropdown-menu li small{padding-left:.5em}.bootstrap-select.btn-group .dropdown-menu li:not(.disabled)>a:hover small,.bootstrap-select.btn-group .dropdown-menu li:not(.disabled)>a:focus small,.bootstrap-select.btn-group .dropdown-menu li.active:not(.disabled)>a small{color:#64b1d8;color:rgba(255,255,255,0.4)}.bootstrap-select.btn-group .dropdown-menu li>dt small{font-weight:normal}.bootstrap-select.show-menu-arrow .dropdown-toggle:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #CCC;border-bottom-color:rgba(0,0,0,0.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid white;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before{bottom:auto;top:-3px;border-top:7px solid #ccc;border-bottom:0;border-top-color:rgba(0,0,0,0.2)}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after{bottom:auto;top:-3px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:before,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:after{display:block}.bootstrap-select.btn-group .no-results{padding:3px;background:#f5f5f5;margin:0 5px}.mobile-device{position:absolute;top:0;left:0;display:block !important;width:100%;height:100% !important;opacity:0}.bootstrap-select.fit-width{width:auto !important}.bootstrap-select.btn-group.fit-width .btn .filter-option{position:static}.bootstrap-select.btn-group.fit-width .btn .caret{position:static;top:auto;margin-top:-1px}.control-group.error .bootstrap-select .dropdown-toggle{border-color:#b94a48}.bootstrap-select-searchbox{padding:4px 8px}.bootstrap-select-searchbox input{margin-bottom:0}

View File

@@ -0,0 +1,565 @@
/*
** Fix css bug in the module configuration with bootstrap
*/
body {
font-size:12px!important;
}
*, *:before, *:after {
-webkit-box-sizing: inherit;
-moz-box-sizing: inherit;
box-sizing: inherit;
}
#content, #content:before, #content:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#content {
padding: 0;
}
/*
** Fix css bug in the module configuration with bootstrap
*/
#content .center-block {
display: table;
margin-left: auto;
margin-right: auto;
}
/****************************************************************/
/****************************************************************/
.bootstrap *, .bootstrap *:before, .bootstrap *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#content {
-webkit-transition-property: margin;
transition-property: margin;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
-webkit-transition-timing-function: ease-out;
-moz-transition-timing-function: ease-out;
-o-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.bootstrap .list-action-enable.action-enabled {
border: solid #79bd3c 1px;
background-color: #93cd60;
}
.bootstrap .list-action-enable.action-disabled {
border: solid #d9534f 1px;
background-color: #e27c79;
}
.bootstrap .list-action-enable {
font-size: 1.3em;
display: inline-block;
width: 30px;
text-align: center;
color: rgba(255, 255, 255, 0.8);
-webkit-border-radius: 3px;
border-radius: 3px;
height: 25px;
}
.bootstrap .list-action-enable i{
padding: 4px;
}
.bootstrap .page-head ul.page-breadcrumb {
position: absolute;
list-style: none;
margin: 0;
padding: 0;
left: 70px;
top: 4px;
height: 20px;
line-height: 20px;
color: black;
background: transparent;
font-size: 12px;
color: rgba(0, 0, 0, 0.5);
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
}
.bootstrap .page-head ul.page-breadcrumb li {
text-transform: capitalize;
}
.bootstrap .breadcrumb > li {
display: inline-block;
}
.bootstrap .page-head ul.page-breadcrumb li:first-child i {
width: 54px;
position: absolute;
left: -60px;
top: 2px;
font-size: 42px;
font-weight: 100;
padding-right: 5px;
color: rgba(0, 0, 0, 0.5);
border-right: solid 1px #73a232;
}
.bootstrap .page-head {
width: 100%;
height: 55px;
padding: 0 10px 0 0;
margin: 0 0 20px 0;
border-bottom: 4px solid #75a139;
position: relative;
left: 0px;
z-index: 499;
background-color: #8fc04d;
-webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 7px 0;
box-shadow: rgba(0, 0, 0, 0.15) 0 7px 0;
}
.bootstrap .page-head h2.page-title {
position: relative;
padding: 26px 0 0 70px;
margin: 0;
font-size: 20px;
line-height: 1em;
color: white;
}
.pull-left, .bootstrap .page-head h2.page-title {
float: left !important;
}
.bootstrap .page-head .btn-toolbar {
margin: 0;
padding: 3px 0 0 0;
}
.bootstrap .nav, .bootstrap #header_notifs_icon_wrapper, .bootstrap #header_employee_box, .bootstrap #header_quick {
margin-bottom: 0;
padding-left: 0;
list-style: none;
}
.pull-right, .panel-heading-action, .bootstrap .panel-heading:not(.modal-title) .panel-heading-action, .bootstrap .panel-heading .panel-heading-action, .bootstrap #header_notifs_icon_wrapper .notifs_panel .notifs_panel_header .panel-heading-action, #header_notifs_icon_wrapper .notifs_panel .bootstrap .notifs_panel_header .panel-heading-action {
float: right !important;
}
.bootstrap .toolbarBox {
background: none;
border: none;
border-radius: none;
margin-bottom: 10px;
padding: 0;
}
.bootstrap h3:not(.modal-title), .bootstrap .panel-heading:not(.modal-title) {
border: none;
padding: 0 5px;
margin: -16px -16px 15px -16px;
font-size: 1.2em;
line-height: 30px;
font-weight: 300;
text-transform: uppercase;
background-color: white;
}
.bootstrap h3:not(.modal-title) {
border-bottom: solid 1px #cccccc;
}
.bootstrap h3:not(.modal-title) .panel-heading-action a.list-toolbar-btn i, #content.bootstrap .panel .panel-heading:not(.modal-title) .panel-heading-action a.list-toolbar-btn i, #content.bootstrap #dash_version .panel-heading:not(.modal-title) .panel-heading-action a.list-toolbar-btn i, #content.bootstrap .message-item-initial .message-item-initial-body .panel-heading:not(.modal-title) .panel-heading-action a.list-toolbar-btn i, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel-heading:not(.modal-title) .panel-heading-action a.list-toolbar-btn i, #content.bootstrap .panel-heading .panel-heading-action a.list-toolbar-btn i {
text-align: center;
font-size: 1.4em;
line-height: 30px;
padding: 0 7px;
}
.bootstrap h3:not(.modal-title) .panel-heading-action a.list-toolbar-btn, #content.bootstrap .panel .panel-heading:not(.modal-title) .panel-heading-action a.list-toolbar-btn, #content.bootstrap #dash_version .panel-heading:not(.modal-title) .panel-heading-action a.list-toolbar-btn, #content.bootstrap .message-item-initial .message-item-initial-body .panel-heading:not(.modal-title) .panel-heading-action a.list-toolbar-btn, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel-heading:not(.modal-title) .panel-heading-action a.list-toolbar-btn, #content.bootstrap .panel-heading .panel-heading-action a.list-toolbar-btn {
float: left;
height: 30px;
color: #00aff0;
border-left: solid 1px #cccccc;
}
.bootstrap h3 a:not(.modal-title) {
padding: 0 5px 0;
/*margin: 0 15px 0;*/
}
.bootstrap .panel-group .panel+.panel {
margin-top: 2em;
}
.bootstrap .tab-pane .panel {
margin: 0;
}
.bootstrap .panel, .bootstrap #header_notifs_icon_wrapper .notifs_panel, #header_notifs_icon_wrapper .bootstrap .notifs_panel {
padding: 20px;
margin: 1.25em 1.25em 0.5em;
border: solid 1px #dfdfdf;
background-color: white;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 2px 0, white 0 0 0 3px inset;
box-shadow: rgba(0, 0, 0, 0.1) 0 2px 0, white 0 0 0 3px inset;
}
.bootstrap .form-control, .bootstrap input[type="text"], .bootstrap input[type="search"], .bootstrap input[type="password"], .bootstrap textarea, .bootstrap select {
display: block;
width: 100%;
height: 27px;
padding: 4px 8px;
font-size: 12px;
line-height: 1.42857;
color: #555555;
vertical-align: middle;
background-color: white;
background-image: none;
border: 1px solid #cccccc;
border-radius: 3px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.bootstrap [class^="process-icon-"], .bootstrap [class*=" process-icon-"] {
height: 25px!important;
min-width: 32px;
background-position: center;
background-repeat: no-repeat;
display: block;
font-family: FontAwesome;
font-weight: normal;
font-style: normal;
font-size: 25px;
line-height: 25px;
text-decoration: inherit;
-webkit-font-smoothing: antialiased;
}
.bootstrap .nav-pills > li {
float: left;
}
.bootstrap .nav > li, .bootstrap #header_notifs_icon_wrapper > li, .bootstrap #header_employee_box > li, .bootstrap #header_quick > li {
position: relative;
display: block;
}
.bootstrap .nav-pills > li > a {
border-radius: 3px;
}
.bootstrap .nav > li > a, .bootstrap #header_notifs_icon_wrapper > li > a, .bootstrap #header_employee_box > li > a, .bootstrap #header_quick > li > a {
position: relative;
display: block;
padding: 10px 15px;
}
.bootstrap .page-head a {
color: white;
text-decoration: none;
}
.bootstrap .toolbarBox a.toolbar_btn {
text-shadow: none;
border: none;
}
.bootstrap .toolbarBox .process-icon-back {
background-image: none;
}
.bootstrap .toolbarBox .process-icon-help-new {
background-image: none;
}
.bootstrap .toolbar_btn {
position: relative;
padding: 2px 5px !important;
margin-right: 3px;
font-size: 12px;
/*font-weight: 600;*/
color: white;
text-align: center;
text-shadow: none;
}
.bootstrap .nav > li > a:hover, .bootstrap #header_notifs_icon_wrapper > li > a:hover, .bootstrap #header_employee_box > li > a:hover, .bootstrap #header_quick > li > a:hover, .bootstrap .nav > li > a:focus, .bootstrap #header_notifs_icon_wrapper > li > a:focus, .bootstrap #header_employee_box > li > a:focus, .bootstrap #header_quick > li > a:focus {
text-decoration: none;
background-color: #eeeeee;
}
.bootstrap .toolbar_btn:hover {
color: #8fc04d;
border-color: white;
background-color: white !important;
}
.bootstrap-select.btn-group .dropdown-menu li:not(.disabled)>a:hover small, .bootstrap-select.btn-group .dropdown-menu li:not(.disabled)>a:focus small, .bootstrap-select.btn-group .dropdown-menu li.active:not(.disabled)>a small {
color: inherit;
}
.bootstrap .multishop_toolbar {
font-size: inherit;
}
.bootstrap label.required:before {
content: "*";
color: red;
font-size: 14px;
position: relative;
line-height: 12px;
}
.module_confirmation, .module_error
{
padding: 15px;
margin-bottom: 17px;
border-radius: 3px;
position: relative;
border: none;
padding-left: 50px;
}
.module_error
{
border-left: solid 3px #e17875;
background-color: #f2dede;
border-color: #ebccd1;
color: #a94442;
}
.module_confirmation
{
border-left: solid 3px #90cb5c;
background-color: #dff0d8;
border-color: #d6e9c6;
color: #3c763d;
}
.module_confirmation:before
{
position: absolute;
top: 6px;
display: block;
height: 25px;
width: 25px;
color: #90cb5c;
left: 7px;
}
.module_error:before
{
position: absolute;
top: 6px;
display: block;
height: 25px;
width: 25px;
color: #e17875;
left: 7px;
}
.nav-tabs>li>a {
background: #eeeeee;
}
.switch {
display: block;
height: 26px;
position: relative;
}
.switch input {
position: absolute;
opacity: 0;
}
.switch input:last-of-type:checked ~ a {
left: 50%;
border: solid 1px #d9534f;
background-color: #e27c79;
-webkit-box-shadow: #d9534f 0 -1px 0 inset;
box-shadow: #d9534f 0 -1px 0 inset;
}
.switch a {
display: block;
-webkit-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.switch a {
position: absolute;
top: 0;
left: 0;
padding: 0;
z-index: 1;
width: 50%;
height: 100%;
color: white;
border: solid 1px #5cb85c;
background-color: #80c780;
-webkit-box-shadow: #5cb85c 0 -1px 0 inset;
box-shadow: #5cb85c 0 -1px 0 inset;
}
.prestashop-switch * {
outline: 0 !important;
}
.switch label, .bootstrap .switch > span {
line-height: 26px;
vertical-align: middle;
}
.switch label {
position: relative;
z-index: 2;
float: left;
width: 50%;
height: 100%;
margin: 0;
text-align: center;
}
.prestashop-switch label {
text-transform: uppercase;
color: #bbbbbb;
font-weight: 400;
cursor: pointer;
-webkit-transition: color 0.2s ease-out;
transition: color 0.2s ease-out;
}
.bootstrap .prestashop-switch input:checked + label {
color: white;
}
#modulecontent .alert {
border: 1px solid #DF7B7B;
}
.prestashop-switch {
min-width: 150px;
background-color: #eeeeee;
border-radius: 3px;
color: #333333;
text-align: center;
font-weight: 400;
-webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 1px 3px 1px inset;
box-shadow: rgba(0, 0, 0, 0.15) 0 1px 3px 1px inset;
}
.input-group-addon {
padding: 4px 12px;
}
.bootstrap .btn-group-action .btn-group {
white-space: nowrap;
float: right;
}
.bootstrap .pull-right {
float: right !important;
}
.bootstrap .btn-group, .bootstrap .btn-group-vertical {
position: relative;
display: inline-block;
vertical-align: middle;
}
.bootstrap .dropdown-menu > li a {
padding: 5px 10px;
}
.bootstrap .dropdown-menu > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 1.42857;
color: #333333;
}
.bootstrap .pull-right > .dropdown-menu {
right: 0;
left: auto;
}
.bootstrap .dropdown-menu {
text-align: left;
padding: 5px;
}
.bootstrap .radio label, .bootstrap .checkbox label{
text-align: left;
}
.bootstrap .radio, .bootstrap .checkbox {
margin-top: 0px;
}
/* FONT AWESOME EXTRAS -------------------------- */
.icon-power-off:before, .icon-off:before, .bootstrap .process-icon-off:before { content: "\f011"; }
.icon-trash:before, .bootstrap .process-icon-delete:before, .bootstrap .process-icon-uninstall:before { content: "\f014"; }
.icon-rotate-left:before, .bootstrap .process-icon-reset:before, .icon-undo:before { content: "\f0e2"; }
.icon-anchor:before, .bootstrap .process-icon-anchor:before { content: "\f13d"; }
.icon-circle-arrow-left:before, .bootstrap .process-icon-back:before { content: "\f0a8"; }
.icon-question-circle:before, .bootstrap .process-icon-help-new:before { content: "\f059"; }
.icon-times:before, .icon-remove:before, #content .process-icon-cancel:before {content: "\f00d";}
.icon-save:before, #content .process-icon-save:before, #content .process-icon-save-and-stay:before, #content .process-icon-save-and-preview:before, .icon-floppy-o:before, .icon-save:before, #content .process-icon-save:before, #content .process-icon-save-and-stay:before, #content .process-icon-save-and-preview:before {
content: "\f0c7";
}
/* FORCE FONT AWESOME -------------------------- */
.conf:before {
display: inline-block;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
line-height: 1;
font-size: 3em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f058";
}
.alert:before {
display: inline-block;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
line-height: 1;
font-size: 3em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f071";
}
.panel-footer a:first-child {
margin: 0 5px;
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,248 @@
.tab-pane.panel {
margin: 0px;
}
.adv-table table tr td {
padding: 10px;
}
.adv-table table.display thead th {
border-bottom: 1px solid #DDDDDD;
padding: 10px;
}
.adv-table table.display tr.odd.gradeA {
background-color: #F9F9F9;
}
.adv-table table.display tr.even.gradeA {
background-color: #FFFFFF;
}
.adv-table .dataTables_filter label input {
float: right;
margin-left: 10px;
width: 78%;
}
.adv-table .dataTables_filter label {
line-height: 33px;
width: 100%;
}
.adv-table .dataTables_length select {
display: inline-block;
margin: 0 10px 0 0;
padding: 5px 8px;
width: 65px;
}
.adv-table .dataTables_info,.dataTables_paginate {
padding: 15px 0;
}
.adv-table .dataTables_length,.adv-table .dataTables_filter {
padding: 15px 0;
}
.hidden-table-info i {
border: 1px solid #dbdce4;
color: #1fb5ad;
padding: 5px;
}
.hidden-table-info i.icon-minus {
color: #DF7B7B;
}
.hidden-table-info {
width: 10px;
cursor: pointer;
}
.modal-footer {
clear: both;
}
/*
.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
background-color: transparent !important;
}
*/
.bootstrap-select.btn-group .dropdown-menu li:not(.disabled)>a:hover small, .bootstrap-select.btn-group .dropdown-menu li:not(.disabled)>a:focus small, .bootstrap-select.btn-group .dropdown-menu li.active:not(.disabled)>a small {
color:inherit!important;
}
.dataTableHidden td {
vertical-align: middle!important;
}
.swMain > ul {
display: table;
list-style: none;
margin: 0 0 20px 0;
padding: 0;
position: relative;
width: 100%;
}
.swMain > ul li {
display: table-cell;
text-align: center;
width: 1%;
}
.swMain > ul li > a:before {
content: "";
display: block;
font-size: 0;
height: 1px;
overflow: hidden;
position: relative;
top: 21px;
width: 100%;
z-index: 1;
}
.swMain > ul li:first-child > a:before {
left: 50%;
max-width: 51%;
}
.swMain > ul li:last-child > a:before {
max-width: 50%;
width: 50%;
}
.swMain > ul li > a.selected:before, .swMain li > a.done:before {
border-color: #5293C4;
}
.swMain > ul .stepNumber {
background-color: #e17875;
border: 5px solid #ebccd1;
border-radius: 100% 100% 100% 100%;
color: #fff;
display: inline-block;
font-size: 15px;
height: 40px;
line-height: 30px;
position: relative;
text-align: center;
width: 40px;
z-index: 2;
}
.swMain > ul li > a.selected .stepNumber {
border-color: #5293C4;
}
.swMain ul li > a.done .stepNumber {
border-color: #d6e9c6;
background-color: #90cb5c;
color: #fff;
text-indent: -9999px;
}
.swMain ul li > a.done .stepNumber:before {
content: "\f00c";
display: inline;
float: right;
font-family: FontAwesome;
font-weight: 300;
height: auto;
text-shadow: none;
margin-right: 7px;
text-indent: 0;
}
.swMain ul li > a .stepNumber:before {
content: "\f00d";
display: inline;
float: right;
font-family: FontAwesome;
font-weight: 300;
height: auto;
text-shadow: none;
margin-right: 9px;
text-indent: 0;
}
.swMain > ul li .stepDesc {
color: #949EA7;
display: block;
font-size: 14px;
max-width: 100%;
table-layout: fixed;
text-align: center;
word-wrap: break-word;
z-index: 104;
}
.swMain > ul li > a.selected .stepDesc, .swMain li > a.done .stepDesc {
color: #2B3D53;
}
.swMain > ul li > a:hover {
text-decoration: none;
}
.swMain > ul li > a.disabled {
cursor: default;
}
.swMain .progress {
margin-bottom: 30px;
}
.swMain .stepContainer {
height: auto !important;
}
.swMain .loader {
display: none;
}
.swMain [class^="button"], .swMain [class*=" button"] {
display: none;
}
.swMain .actionBar {
display: none;
}
.pattern-btn {cursor: pointer;}
#jstree {margin-bottom: 1.25em;}
#button_tree {margin-bottom: 1.25em;}
.modal-footer .btn:first-child {
margin-left:5px;
}
.process-icon-magic:before { content: "\f0d0"; }
#content.bootstrap .panel {margin: 0 5px 20px;}
.bootstrap .panel .panel-footer, .bootstrap #dash_version .panel-footer, .bootstrap .message-item-initial .message-item-initial-body .panel-footer, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel-footer
{
height: 72px;
border-color: #eeeeee;
background-color: #fcfdfe;
margin: 2px -20px -20px;
border-top: 1px solid #dddddd;
}
.tab-pane .alert.alert-warning {
margin: 0 5px 10px;
}
.hideOverflow
{
overflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;
}
#collapse4 .well {
min-height: 236px;
}

View File

@@ -0,0 +1,69 @@
.faq {
border-radius: 4px;
background-color: #DFF5F9;
border:1px solid #00aff0;
margin: 1px 5px
}
.faq-header {
font-size: 16px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
color: #00aff0;
font-weight: bold;
border-bottom:1px solid #00aff0;
}
.faq-content {
margin: 20px;
}
.caretRight {
float:right;
}
.caretLeft {
margin-right: 5px;
}
/* START ACCORDION STYLE */
.accordion {
list-style: none;
padding: 0;
}
.titleFaq {
color: #333333;
border-bottom:1px solid #00aff0;
}
.titleFaq:hover {
color: #00aff0;
}
.selected {
color: #00aff0;
}
.questionFaq {
}
.answerFaq {
}
.toggleFaq {
width: 100%;
font-weight: bold;
cursor:pointer;
display: block;
padding: .75em;
border-radius: 0.15em;
transition: background .3s ease;
/*margin-top: 10px;
margin-bottom: 10px;*/
}
.innerFaq {
list-style: none;
padding-left: 1em;
overflow: hidden;
display: none;
}
.innerFaq.showFaq {
/*display: block;*/
}
/* END ACCORDION STYLE */

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,24 @@
<?php
/**
* 2007-2014 PrestaShop
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2014 PrestaShop SA
* @license http://addons.prestashop.com/en/content/12-terms-and-conditions-of-use
* International Registered Trademark & Property of PrestaShop SA
*/
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', false);
header('Pragma: no-cache');
header('Location: ../');
exit;