Files
2019-11-17 19:14:07 +01:00

115 lines
2.6 KiB
CSS

/**
* 2007-2018 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* 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-2018 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
.checkAll.btn-check {
margin-left: -7px!important;
}
.html-sitemap-position ul{
list-style: none;
}
.html-sitemap-position li{
display: inline-block;
}
.select > input{
visibility: hidden;
}
.select > input:checked + img{
border:3px solid #e72655;
border-radius: 3px;
padding: 1px;
}
/* Vue js modal */
.addons-ps-modal-mask {
position: fixed;
z-index: 9998;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, .5);
display: table;
transition: opacity .3s ease;
}
.addons-ps-modal-wrapper {
display: table-cell;
vertical-align: middle;
}
.addons-ps-modal-container {
width: 300px;
margin: 0px auto;
padding: 20px 30px;
background-color: #fff;
border-radius: 2px;
box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
transition: all .3s ease;
font-family: Helvetica, Arial, sans-serif;
}
.addons-ps-modal-header h3 {
margin-top: 0;
color: #42b983;
}
.addons-ps-modal-body {
margin: 20px 0;
}
.addons-ps-modal-default-button {
float: right;
}
/*
* The following styles are auto-applied to elements with
* transition="modal" when their visibility is toggled
* by Vue.js.
*
* You can easily play with the modal transition by editing
* these styles.
*/
.addons-ps-modal-enter {
opacity: 0;
}
.addons-ps-modal-leave-active {
opacity: 0;
}
.addons-ps-modal-enter .addons-ps-modal-container,
.addons-ps-modal-leave-active .addons-ps-modal-container {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}