348 lines
8.8 KiB
CSS
348 lines
8.8 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.
|
|
*/
|
|
#jason, #billy {
|
|
border-top: solid 1px lightgrey;
|
|
}
|
|
|
|
.api-redirect-url {
|
|
margin-top: 5px !important;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#myTab{
|
|
margin-left: 138px;
|
|
}
|
|
#image-preselection .tag-card {
|
|
width: 100%;
|
|
position: relative;
|
|
padding-top: 100%;
|
|
margin: 0 auto;
|
|
overflow: hidden;
|
|
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
|
|
margin-bottom: 30px;
|
|
}
|
|
#image-preselection .tag-card:hover > .card-detail {
|
|
transform: translateY(0);
|
|
}
|
|
#image-preselection .tag-card:hover > .card-add {
|
|
transform: translateY(-50px);
|
|
}
|
|
#image-preselection .tag-card:hover > .card-date {
|
|
transform: translateY(0px);
|
|
}
|
|
|
|
#image-preselection .card-image {
|
|
/*width: 100%;*/
|
|
background-size: cover;
|
|
background-position: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
top: 0;
|
|
border-radius: 3px 3px 0 0;
|
|
transition: opacity 0.2s;
|
|
-webkit-transition: opacity 0.2s;
|
|
}
|
|
#image-preselection .card-detail {
|
|
background-color: rgba(255, 255, 255, 1);
|
|
width: 100%;
|
|
padding: 15px;
|
|
height: 100px;
|
|
/*margin-bottom: 20px;*/
|
|
/*box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 3px 6px rgba(0,0,0,.23);*/
|
|
/*border-radius: 2px;*/
|
|
border: 0;
|
|
position: absolute;
|
|
/*z-index: 1;*/
|
|
bottom: 0;
|
|
-webkit-transform: translateY(calc(50px));
|
|
transform: translateY(calc(50px));
|
|
-webkit-transition: -webkit-transform 0.3s;
|
|
transition: -webkit-transform 0.3s;
|
|
transition: transform 0.3s;
|
|
transition: transform 0.3s, -webkit-transform 0.3s;
|
|
}
|
|
#image-preselection .card-date {
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
width: 100%;
|
|
padding: 7px;
|
|
height: 26px;
|
|
/* margin-bottom: 20px; */
|
|
/* box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 3px 6px rgba(0,0,0,.23); */
|
|
/* border-radius: 2px; */
|
|
border: 0;
|
|
position: absolute;
|
|
/* z-index: 1; */
|
|
bottom: 100px;
|
|
-webkit-transform: translateY(calc(50px));
|
|
transform: translateY(calc(50px));
|
|
-webkit-transition: -webkit-transform 0.3s;
|
|
transition: -webkit-transform 0.3s;
|
|
transition: transform 0.3s;
|
|
transition: transform 0.3s, -webkit-transform 0.3s;
|
|
}
|
|
#image-preselection .top-detail {
|
|
height: 50%;
|
|
width: 100%;
|
|
font-size: 20px;
|
|
}
|
|
#image-preselection .bot-detail {
|
|
height: 50%;
|
|
width: 100%;
|
|
font-size: 13px;
|
|
}
|
|
#image-preselection .detail-date {
|
|
font-size: 12px;
|
|
float: left;
|
|
margin-left: 0px;
|
|
color: white;
|
|
}
|
|
#image-preselection .detail-likes {
|
|
font-size: 20px;
|
|
float: left;
|
|
margin-left: 40px;
|
|
color: rgb(108, 134, 142);
|
|
}
|
|
#image-preselection .detail-comments {
|
|
font-size: 20px;
|
|
float: right;
|
|
margin-right: 40px;
|
|
color: rgb(108, 134, 142);
|
|
}
|
|
#image-preselection .card-add {
|
|
float: right;
|
|
margin-right: 10px;
|
|
z-index: 2;
|
|
position: relative;
|
|
margin-top: -97px;
|
|
-webkit-transform: translateY(calc(0px));
|
|
transform: translateY(calc(0px));
|
|
-webkit-transition: -webkit-transform 0.3s;
|
|
transition: -webkit-transform 0.3s;
|
|
transition: transform 0.3s;
|
|
transition: transform 0.3s, -webkit-transform 0.3s;
|
|
}
|
|
#image-preselection .card-add-icon {
|
|
display: inline-block;
|
|
width: 40px;
|
|
height: 40px;
|
|
line-height: 43px;
|
|
text-align: center;
|
|
border-radius: 50%;
|
|
background-color: #fff;
|
|
transition: all 0.3s ease;
|
|
color: white;
|
|
background-color: #3ED2F0;
|
|
cursor: pointer;
|
|
outline: 0;
|
|
box-shadow: 0 2px 4px rgba(0,0,0, 0.12), 0 2px 4px rgba(0,0,0, 0.24);
|
|
}
|
|
#image-preselection .card-add-icon:hover {
|
|
box-shadow: 0 3px 6px rgba(0,0,0, 0.12), 0 3px 6px rgba(0,0,0, 0.24);
|
|
-webkit-transform: scale(1.2);
|
|
-moz-transform: scale(1.2);
|
|
-ms-transform: scale(1.2);
|
|
-o-transform: scale(1.2);
|
|
transform: scale(1.2);
|
|
}
|
|
#image-preselection .card-remove-icon {
|
|
display: inline-block;
|
|
width: 40px;
|
|
height: 40px;
|
|
line-height: 43px;
|
|
text-align: center;
|
|
border-radius: 50%;
|
|
background-color: #fff;
|
|
transition: all 0.3s ease;
|
|
color: white;
|
|
background-color: #E08F95;
|
|
cursor: pointer;
|
|
outline: 0;
|
|
box-shadow: 0 2px 4px rgba(0,0,0, 0.12), 0 2px 4px rgba(0,0,0, 0.24);
|
|
}
|
|
#image-preselection .card-remove-icon:hover {
|
|
box-shadow: 0 3px 6px rgba(0,0,0, 0.12), 0 3px 6px rgba(0,0,0, 0.24);
|
|
-webkit-transform: scale(1.2);
|
|
-moz-transform: scale(1.2);
|
|
-ms-transform: scale(1.2);
|
|
-o-transform: scale(1.2);
|
|
transform: scale(1.2);
|
|
}
|
|
#image-preselection .paginate-image {
|
|
font-size: 15px;
|
|
text-align: center;
|
|
}
|
|
#image-preselection .pagination {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
|
|
#image-manager .card {
|
|
width: 100%;
|
|
height: 150px;
|
|
position: relative;
|
|
margin: 0 auto;
|
|
overflow: hidden;
|
|
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
|
|
border: 1px solid #E0E0E0;
|
|
margin-bottom: 20px;
|
|
}
|
|
#image-manager .card-image {
|
|
width:150px;
|
|
float: left;
|
|
}
|
|
#image-manager .card-content {
|
|
width: 66%;
|
|
float:right;
|
|
height: 100%;
|
|
/*padding: 20px;*/
|
|
}
|
|
#image-manager .action-bar {
|
|
/*border-top: 1px solid #E0E0E0;*/
|
|
padding: 10px;
|
|
position: absolute;
|
|
bottom:0;
|
|
right:0;
|
|
}
|
|
#image-manager .action-bar .configure {
|
|
display: inline-block;
|
|
float: right;
|
|
margin-right: 10px;
|
|
}
|
|
#image-manager .action-bar .button-card {
|
|
display: inline-block;
|
|
float: right;
|
|
}
|
|
#image-manager .detail-date {
|
|
font-size: 16px;
|
|
/*float: left;*/
|
|
/*margin-left: 0px;*/
|
|
/*color: white;*/
|
|
}
|
|
#image-manager .detail-likes {
|
|
font-size: 16px;
|
|
float: right;
|
|
/*margin-left: 40px;*/
|
|
/*color: rgb(108, 134, 142);*/
|
|
}
|
|
#image-manager .detail-comments {
|
|
font-size: 16px;
|
|
float: right;
|
|
margin-right: 30px;
|
|
/*margin-right: 40px;*/
|
|
/*color: rgb(108, 134, 142);*/
|
|
}
|
|
#image-manager .card-info {
|
|
padding: 20px;
|
|
}
|
|
#image-manager .hashtags {
|
|
padding: 10px;
|
|
font-style: italic;
|
|
font-weight: bold;
|
|
color: #00AFF0;
|
|
max-height: 60px;
|
|
overflow: hidden;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 3;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
|
|
.addons-right-panel {
|
|
float: right !important;
|
|
}
|
|
.addons-title {
|
|
margin: 1em 0;
|
|
padding-left: 20px;
|
|
/* background-color: #e8faff; */
|
|
border-left: 4px solid #2eacce;
|
|
font-size: 18px !important;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.addons-number-fields {
|
|
display: block;
|
|
width: 22%;
|
|
height: 31px;
|
|
padding: 6px 8px;
|
|
font-size: 12px;
|
|
line-height: 1.42857;
|
|
color: #555;
|
|
background-color: #F5F8F9;
|
|
background-image: none;
|
|
border: 1px solid #C7D6DB;
|
|
border-radius: 3px;
|
|
-webkit-transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
|
|
-o-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
|
|
}
|
|
|
|
.addons-inline-block {
|
|
display: inline-block;
|
|
}
|
|
|
|
.addons-text {
|
|
padding: 14px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.addons-hide {
|
|
display: none;
|
|
}
|
|
|
|
label > .input_img{ /* HIDE RADIO */
|
|
visibility: hidden; /* Makes input not-clickable */
|
|
position: absolute; /* Remove input from document flow */
|
|
}
|
|
label > .input_img + img{ /* IMAGE STYLES */
|
|
cursor:pointer;
|
|
border:2px solid transparent;
|
|
}
|
|
label > .input_img:checked + img{ /* (RADIO CHECKED) IMAGE STYLES */
|
|
border:4px solid #25B9D7;
|
|
}
|
|
.cookiebanner-number {
|
|
display: block;
|
|
width: 100%;
|
|
height: 31px;
|
|
padding: 6px 8px;
|
|
font-size: 12px;
|
|
line-height: 1.42857;
|
|
color: #555;
|
|
background-color: #F5F8F9;
|
|
background-image: none;
|
|
border: 1px solid #C7D6DB;
|
|
border-radius: 3px;
|
|
-webkit-transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
|
|
-o-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
|
|
}
|