Удалил googleshopping
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 7.3 KiB |
@@ -1,178 +0,0 @@
|
||||
@charset "UTF-8";
|
||||
:root {
|
||||
--s-width: 900px;
|
||||
--s-gutter: 2.5rem;
|
||||
--c-background: rgb(0, 0, 0);
|
||||
--c-accent: hsl(213, 74%, 58%);
|
||||
}
|
||||
|
||||
.stepper {
|
||||
--s-stepper-bullet: 2rem;
|
||||
--s-stepper-bullet-half: calc( var(--s-stepper-bullet) / 2 );
|
||||
--step-transition: background .5s, color .5s;
|
||||
--step-content: '✔︎';
|
||||
--step-color: hsl(0, 0%, 70%);
|
||||
--step-bar-bg: var(--c-accent);
|
||||
--step-bullet-bg: var(--step-bar-bg);
|
||||
--step-bullet-color: white;
|
||||
counter-reset: current-step;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(1px, 1fr));
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
margin: 20px 0;
|
||||
}
|
||||
.stepper__input {
|
||||
counter-increment: steps;
|
||||
display: none;
|
||||
}
|
||||
.stepper__step {
|
||||
counter-increment: current-step;
|
||||
}
|
||||
.stepper__input:checked ~ .stepper__step {
|
||||
--step-color: hsl(0, 0%, 30%);
|
||||
--step-bar-bg: hsl(0, 0%, 40%);
|
||||
--step-bullet-bg: var(--step-bar-bg);
|
||||
--step-bullet-color: white; /*hsl(0, 0%, 20%);*/
|
||||
--step-content: counter(current-step);
|
||||
}
|
||||
.stepper__input:checked ~ .stepper__step .stepper__content {
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.stepper__input:checked + .stepper__step {
|
||||
--step-bullet-bg: hsl(213, 70%, 50%);
|
||||
--step-bullet-color: white;
|
||||
--step-color: hsl(0, 0%, 30%);
|
||||
}
|
||||
.stepper__input:checked + .stepper__step .stepper__button::before {
|
||||
box-shadow: 0 0 0 2px var(--c-accent);
|
||||
}
|
||||
.stepper__input:checked + .stepper__step .stepper__content {
|
||||
opacity: 1;
|
||||
pointer-events: auto;
|
||||
-webkit-user-select: auto;
|
||||
-moz-user-select: auto;
|
||||
-ms-user-select: auto;
|
||||
user-select: auto;
|
||||
}
|
||||
.stepper__content {
|
||||
color: white;
|
||||
text-align: center;
|
||||
font-style: italic;
|
||||
font-weight: 300;
|
||||
color: var(--step-color);
|
||||
transition: opacity .5s .05s;
|
||||
padding: .5rem;
|
||||
}
|
||||
.stepper__content::-moz-selection {
|
||||
color: black;
|
||||
background: var(--step-bullet-color);
|
||||
}
|
||||
.stepper__content::selection {
|
||||
color: black;
|
||||
background: var(--step-bullet-color);
|
||||
}
|
||||
.stepper__button {
|
||||
position: relative;
|
||||
text-align: center;
|
||||
color: var(--step-color);
|
||||
display: block;
|
||||
}
|
||||
.stepper__button::before {
|
||||
content: var(--step-content);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin: 0 auto var(--s-stepper-bullet-half);
|
||||
height: var(--s-stepper-bullet);
|
||||
width: var(--s-stepper-bullet);
|
||||
border-radius: var(--s-stepper-bullet);
|
||||
transition: var(--step-transition);
|
||||
background: var(--step-bullet-bg);
|
||||
color: var(--step-bullet-color);
|
||||
}
|
||||
.stepper__button::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: calc( var(--s-stepper-bullet-half) / 2 );
|
||||
background: var(--step-bar-bg);
|
||||
transition: var(--step-transition);
|
||||
top: var(--s-stepper-bullet-half);
|
||||
left: 50%;
|
||||
-webkit-transform: translate(0, -50%);
|
||||
transform: translate(0, -50%);
|
||||
z-index: -1;
|
||||
}
|
||||
.stepper__step:last-child .stepper__button::after {
|
||||
display: none;
|
||||
}
|
||||
.stepper--flexbox {
|
||||
display: flex;
|
||||
}
|
||||
.stepper--flexbox .stepper__step {
|
||||
flex-grow: 1;
|
||||
flex-shrink: 0;
|
||||
flex-basis: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
grid-area: content;
|
||||
}
|
||||
|
||||
article {
|
||||
padding: var(--s-gutter) calc(50% - var(--s-width) / 2);
|
||||
background: #121212;
|
||||
color: #cccccc;
|
||||
}
|
||||
article h1 {
|
||||
font-weight: 100;
|
||||
font-size: 2rem;
|
||||
padding: 0 var(--s-gutter);
|
||||
margin: 0;
|
||||
}
|
||||
article ul,
|
||||
article li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
article li {
|
||||
padding-left: 1rem;
|
||||
text-indent: -.7rem;
|
||||
padding-top: .5rem;
|
||||
}
|
||||
article li::before {
|
||||
content: "• ";
|
||||
color: var(--c-accent);
|
||||
}
|
||||
article ul,
|
||||
article p {
|
||||
padding: calc( var(--s-gutter) / 2 ) var(--s-gutter) 0;
|
||||
}
|
||||
|
||||
.container, .container__item {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
.container__item {
|
||||
padding: var(--s-gutter) calc(50% - var(--s-width) / 2);
|
||||
border-bottom: 2px solid rgba(255, 255, 255, 0.15);
|
||||
}
|
||||
.container__item h2 {
|
||||
padding: calc(var(--s-gutter) / 2) var(--s-gutter) var(--s-gutter);
|
||||
margin: 0;
|
||||
text-transform: uppercase;
|
||||
font-weight: 100;
|
||||
color: #8a97a8;
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
@@ -1,88 +0,0 @@
|
||||
{{ header }}
|
||||
{{ column_left }}
|
||||
<div id="content">
|
||||
<div class="page-header">
|
||||
<div class="container-fluid">
|
||||
<div class="pull-right">
|
||||
<button type="submit" class="btn btn-primary" form="form" data-toggle="tooltip" title="{{ button_save }}"><i class="fa fa-save"></i></button>
|
||||
<a href="{{ mapping }}" class="btn btn-warning" data-toggle="tooltip" title="{{ button_mapping }}"><i class="fa fa-tags"></i></a>
|
||||
<a href="{{ shipping_taxes }}" class="btn btn-warning" data-toggle="tooltip" title="{{ button_shipping_taxes }}"><i class="fa fa-truck"></i></a>
|
||||
<a href="{{ campaign }}" class="btn btn-warning" data-toggle="tooltip" title="{{ button_campaign }}"><i class="fa fa-cogs"></i></a>
|
||||
<a href="{{ text_video_tutorial_url_setup }}" target="_blank" class="btn btn-info" data-toggle="tooltip" title="{{ button_video_tutorial_setup }}"><i class="fa fa-video-camera"></i></a>
|
||||
<a href="{{ cancel }}" class="btn btn-default" data-toggle="tooltip" title="{{ button_cancel }}"><i class="fa fa-reply"></i></a>
|
||||
</div>
|
||||
<h1>{{ heading_title }}</h1>
|
||||
<ul class="breadcrumb">
|
||||
{% for breadcrumb in breadcrumbs %}
|
||||
<li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container-fluid">
|
||||
{% if success %}
|
||||
<div class="alert alert-success alert-dismissible" role="alert">
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="{{ text_close }}"><i class="fa fa-close"></i></button>
|
||||
<i class="fa fa-check-circle"></i> {{ success }}
|
||||
</div>
|
||||
{% endif %}
|
||||
<div id="blockerError" style="display: none;" class="alert alert-danger">
|
||||
<i class="fa fa-exclamation-triangle"></i> {{ error_adblock }}
|
||||
</div>
|
||||
{% if error %}
|
||||
<div class="alert alert-danger alert-dismissible" role="alert">
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="{{ text_close }}"><i class="fa fa-close"></i></button>
|
||||
<i class="fa fa-exclamation-triangle"></i> {{ error }}
|
||||
</div>
|
||||
{% endif %}
|
||||
<div id="warning-container">
|
||||
{% if warning %}
|
||||
<div class="alert alert-warning alert-dismissible" role="alert">
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="{{ text_close }}"><i class="fa fa-close"></i></button>
|
||||
<i class="fa fa-info-circle"></i> {{ warning }}
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
<div id="alert-container"></div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title"><i class="fa fa-pencil"></i> <span>{{ text_panel_heading }}</span></h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<form action="{{ action }}" method="post" enctype="multipart/form-data" id="form">
|
||||
<div class="tabbable">
|
||||
<ul class="nav nav-tabs mainMenuTabs">
|
||||
<li class="active"><a href="#tab_ads" data-toggle="tab">{{ tab_text_ads }}</a></li>
|
||||
<li><a href="#tab_reports" data-toggle="tab">{{ tab_text_reports }}</a></li>
|
||||
<li><a href="#tab_settings" data-toggle="tab">{{ tab_text_settings }}</a></li>
|
||||
</ul>
|
||||
<div class="tab-content">
|
||||
<div class="tab-pane" id="tab_settings">{{ tab_settings }}</div>
|
||||
<div class="tab-pane active" id="tab_ads">{{ tab_ads }}</div>
|
||||
<div class="tab-pane" id="tab_reports">{{ tab_reports }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<style type="text/css">
|
||||
.adBanner {
|
||||
background-color: transparent;
|
||||
height: 1px;
|
||||
width: 1px;
|
||||
}
|
||||
</style>
|
||||
<div id="wrapTest">
|
||||
<div class="adBanner">
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
(function($) {
|
||||
$(document).ready(function() {
|
||||
$('#blockerError').toggle($("#wrapTest").height() == 0);
|
||||
});
|
||||
})(jQuery);
|
||||
</script>
|
||||
{{ footer }}
|
||||
@@ -1,59 +0,0 @@
|
||||
{{ header }}{{ column_left }}
|
||||
<div id="content">
|
||||
<div class="page-header">
|
||||
<div class="container-fluid">
|
||||
<div class="pull-right">
|
||||
<button type="submit" form="form-analytics" data-toggle="tooltip" title="{{ button_save }}" class="btn btn-primary"><i class="fa fa-save"></i></button>
|
||||
<a href="{{ cancel }}" data-toggle="tooltip" title="{{ button_cancel }}" class="btn btn-default"><i class="fa fa-reply"></i></a></div>
|
||||
<h1>{{ heading_title }}</h1>
|
||||
<ul class="breadcrumb">
|
||||
{% for breadcrumb in breadcrumbs %}
|
||||
<li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container-fluid">
|
||||
{% if error_warning %}
|
||||
<div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> {{ error_warning }}
|
||||
<button type="button" class="close" data-dismiss="alert">×</button>
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title"><i class="fa fa-pencil"></i> {{ text_edit }}</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<form action="{{ action }}" method="post" enctype="multipart/form-data" id="form-analytics" class="form-horizontal">
|
||||
<div class="alert alert-info"><i class="fa fa-info-circle"></i> {{ text_signup }}
|
||||
<button type="button" class="close" data-dismiss="alert">×</button>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label" for="input-code">{{ entry_code }}</label>
|
||||
<div class="col-sm-10">
|
||||
<textarea name="analytics_google_code" rows="5" placeholder="{{ entry_code }}" id="input-code" class="form-control">{{ analytics_google_code }}</textarea>
|
||||
{% if error_code %}
|
||||
<div class="text-danger">{{ error_code }}</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label" for="input-status">{{ entry_status }}</label>
|
||||
<div class="col-sm-10">
|
||||
<select name="analytics_google_status" id="input-status" class="form-control">
|
||||
{% if analytics_google_status %}
|
||||
<option value="1" selected="selected">{{ text_enabled }}</option>
|
||||
<option value="0">{{ text_disabled }}</option>
|
||||
{% else %}
|
||||
<option value="1">{{ text_enabled }}</option>
|
||||
<option value="0" selected="selected">{{ text_disabled }}</option>
|
||||
{% endif %}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ footer }}
|
||||
@@ -1,66 +0,0 @@
|
||||
{{ header }}{{ column_left }}
|
||||
<div id="content">
|
||||
<div class="page-header">
|
||||
<div class="container-fluid">
|
||||
<div class="pull-right">
|
||||
<button type="submit" form="form-captcha" data-toggle="tooltip" title="{{ button_save }}" class="btn btn-primary"><i class="fa fa-save"></i></button>
|
||||
<a href="{{ cancel }}" data-toggle="tooltip" title="{{ button_cancel }}" class="btn btn-default"><i class="fa fa-reply"></i></a></div>
|
||||
<h1>{{ heading_title }}</h1>
|
||||
<ul class="breadcrumb">
|
||||
{% for breadcrumb in breadcrumbs %}
|
||||
<li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container-fluid">
|
||||
{% if error_warning %}
|
||||
<div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> {{ error_warning }}
|
||||
<button type="button" class="close" data-dismiss="alert">×</button>
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title"><i class="fa fa-pencil"></i> {{ text_edit }}</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<form action="{{ action }}" method="post" enctype="multipart/form-data" id="form-captcha" class="form-horizontal">
|
||||
<div class="alert alert-info"><i class="fa fa-info-circle"></i> {{ text_signup }}</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label" for="input-key">{{ entry_key }}</label>
|
||||
<div class="col-sm-10">
|
||||
<input type="text" name="captcha_google_key" value="{{ captcha_google_key }}" placeholder="{{ entry_key }}" id="input-key" class="form-control" />
|
||||
{% if error_key %}
|
||||
<div class="text-danger">{{ error_key }}</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label" for="input-secret">{{ entry_secret }}</label>
|
||||
<div class="col-sm-10">
|
||||
<input type="text" name="captcha_google_secret" value="{{ captcha_google_secret }}" placeholder="{{ entry_secret }}" id="input-secret" class="form-control" />
|
||||
{% if error_secret %}
|
||||
<div class="text-danger">{{ error_secret }}</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label" for="input-status">{{ entry_status }}</label>
|
||||
<div class="col-sm-10">
|
||||
<select name="captcha_google_status" id="input-status" class="form-control">
|
||||
{% if captcha_google_status %}
|
||||
<option value="1" selected="selected">{{ text_enabled }}</option>
|
||||
<option value="0">{{ text_disabled }}</option>
|
||||
{% else %}
|
||||
<option value="1">{{ text_enabled }}</option>
|
||||
<option value="0" selected="selected">{{ text_disabled }}</option>
|
||||
{% endif %}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ footer }}
|
||||
Reference in New Issue
Block a user