Version Description
- Update: WordPress 6.0 compatibility check
- Fix: Improved security related to XSS [Thanks to WPScan team]
=
Download this release
Release Info
Developer | Icegram |
Plugin | Popups, Welcome Bar, Optins and Lead Generation Plugin – Icegram |
Version | 2.1.8 |
Comparing to | |
See all releases |
Code changes from version 2.1.7 to 2.1.8
- icegram.php +3 -3
- lite/classes/class-icegram-campaign-admin.php +6 -9
- lite/classes/class-icegram-message-admin.php +2 -2
- lite/message-types/action-bar/themes/action-bar.js +166 -0
- lite/message-types/action-bar/themes/action-bar.min.css +1 -1
- lite/message-types/action-bar/themes/air-mail.css +22 -31
- lite/message-types/action-bar/themes/bold.css +12 -12
- lite/message-types/action-bar/themes/default.css +64 -109
- lite/message-types/action-bar/themes/hello.css +12 -10
- lite/message-types/action-bar/themes/solid.css +10 -8
- lite/message-types/messenger/themes/canvas.css +9 -12
- lite/message-types/messenger/themes/clear.css +10 -14
- lite/message-types/messenger/themes/default.css +26 -46
- lite/message-types/messenger/themes/messenger.js +166 -0
- lite/message-types/messenger/themes/messenger.min.css +1 -1
- lite/message-types/messenger/themes/social.css +9 -16
- lite/message-types/messenger/themes/talk.css +10 -15
- lite/message-types/popup/themes/air-mail.css +9 -14
- lite/message-types/popup/themes/amaze.css +8 -10
- lite/message-types/popup/themes/compel.css +9 -11
- lite/message-types/popup/themes/convert.css +11 -14
- lite/message-types/popup/themes/default.css +32 -55
- lite/message-types/popup/themes/inspire.css +11 -17
- lite/message-types/popup/themes/persuade.css +9 -12
- lite/message-types/popup/themes/popup.js +188 -0
- lite/message-types/popup/themes/popup.min.css +1 -1
- lite/message-types/toast/themes/announce.css +4 -4
- lite/message-types/toast/themes/balance.css +2 -2
- lite/message-types/toast/themes/burnt.css +9 -20
- lite/message-types/toast/themes/clear.css +3 -3
- lite/message-types/toast/themes/default.css +12 -23
- lite/message-types/toast/themes/night-glow.css +3 -3
- lite/message-types/toast/themes/stand-out.css +6 -6
- lite/message-types/toast/themes/toast.js +188 -0
- lite/message-types/toast/themes/toast.min.css +1 -1
- readme.txt +10 -4
icegram.php
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
* Plugin Name: Icegram - Popups, Optins, CTAs & lot more...
|
4 |
* Plugin URI: https://www.icegram.com/
|
5 |
* Description: All in one solution to inspire, convert and engage your audiences. Action bars, Popup windows, Messengers, Toast notifications and more. Awesome themes and powerful rules.
|
6 |
-
* Version: 2.1.
|
7 |
-
* Tested up to:
|
8 |
* Author: icegram
|
9 |
* Author URI: https://www.icegram.com/
|
10 |
* Copyright (c) 2014-22 Icegram
|
@@ -122,7 +122,7 @@ if ( ! defined( 'IG_PLUGIN_FILE' ) ) {
|
|
122 |
}
|
123 |
|
124 |
if ( ! defined( 'IG_PLUGIN_VERSION' ) ) {
|
125 |
-
define( 'IG_PLUGIN_VERSION', '2.1.
|
126 |
}
|
127 |
|
128 |
if ( ! defined( 'IG_PRODUCT_ID' ) ) {
|
3 |
* Plugin Name: Icegram - Popups, Optins, CTAs & lot more...
|
4 |
* Plugin URI: https://www.icegram.com/
|
5 |
* Description: All in one solution to inspire, convert and engage your audiences. Action bars, Popup windows, Messengers, Toast notifications and more. Awesome themes and powerful rules.
|
6 |
+
* Version: 2.1.8
|
7 |
+
* Tested up to: 6.0
|
8 |
* Author: icegram
|
9 |
* Author URI: https://www.icegram.com/
|
10 |
* Copyright (c) 2014-22 Icegram
|
122 |
}
|
123 |
|
124 |
if ( ! defined( 'IG_PLUGIN_VERSION' ) ) {
|
125 |
+
define( 'IG_PLUGIN_VERSION', '2.1.8' );
|
126 |
}
|
127 |
|
128 |
if ( ! defined( 'IG_PRODUCT_ID' ) ) {
|
lite/classes/class-icegram-campaign-admin.php
CHANGED
@@ -717,21 +717,18 @@ public function campaign_data_tab_content($tabs) {
|
|
717 |
}
|
718 |
|
719 |
$sanitizing_fields = array( 'bg_color', 'text_color', 'cta_bg_color', 'cta_text_color', 'alt_cta_bg_color', 'alt_cta_text_color', 'form_bg_color', 'form_text_color' );
|
|
|
|
|
720 |
|
721 |
foreach ( $message_data as $index => $value ) {
|
722 |
if( in_array( $index, $sanitizing_fields) ) {
|
723 |
$message_data[ $index ] = sanitize_text_field( $message_data[ $index ] );
|
724 |
}
|
725 |
-
}
|
726 |
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
$message_data['headline'] = wp_kses_post( $message_data['headline'] );
|
732 |
-
}
|
733 |
-
if( isset( $message_data['label'] ) ) {
|
734 |
-
$message_data['label'] = wp_kses_post( $message_data['label'] );
|
735 |
}
|
736 |
|
737 |
if( empty( $message_data['rainmaker_form_code'] ) && ! empty( $message_data['form_html_original'] ) && strpos( $message_data['form_html_original'], 'rainmaker_form') ) {
|
717 |
}
|
718 |
|
719 |
$sanitizing_fields = array( 'bg_color', 'text_color', 'cta_bg_color', 'cta_text_color', 'alt_cta_bg_color', 'alt_cta_text_color', 'form_bg_color', 'form_text_color' );
|
720 |
+
|
721 |
+
$wpkses_fields_sanitization = array( 'post_title', 'title', 'headline', 'label', 'form_header', 'form_footer', 'response_text', 'alt_label' );
|
722 |
|
723 |
foreach ( $message_data as $index => $value ) {
|
724 |
if( in_array( $index, $sanitizing_fields) ) {
|
725 |
$message_data[ $index ] = sanitize_text_field( $message_data[ $index ] );
|
726 |
}
|
|
|
727 |
|
728 |
+
if( in_array( $index, $wpkses_fields_sanitization) ) {
|
729 |
+
$message_data[ $index ] = wp_kses_post( $message_data[ $index ] );
|
730 |
+
}
|
731 |
+
|
|
|
|
|
|
|
|
|
732 |
}
|
733 |
|
734 |
if( empty( $message_data['rainmaker_form_code'] ) && ! empty( $message_data['form_html_original'] ) && strpos( $message_data['form_html_original'], 'rainmaker_form') ) {
|
lite/classes/class-icegram-message-admin.php
CHANGED
@@ -291,7 +291,7 @@ if ( ! class_exists( 'Icegram_Message_Admin' ) ) {
|
|
291 |
|
292 |
<p class="message_row <?php echo "ig_" . implode( ' ig_', $settings['embed_form'] ) ?>">
|
293 |
<label class="message_label"> </label>
|
294 |
-
<textarea class="message_field message_form_header" rows="2" autocomplete="off" cols="65" name="message_data[<?php echo $message_id; ?>][form_header]" id="" value="" placeholder="<?php _e( 'Text / HTML to show before the form', 'icegram' ); ?>"><?php echo
|
295 |
</p>
|
296 |
<p class="message_row <?php echo "ig_" . implode( ' ig_', $settings['embed_form'] ) ?>">
|
297 |
<label class="message_label"> </label>
|
@@ -363,7 +363,7 @@ if ( ! class_exists( 'Icegram_Message_Admin' ) ) {
|
|
363 |
|
364 |
<p class="message_row <?php echo "ig_" . implode( ' ig_', $settings['embed_form'] ) ?>">
|
365 |
<label class="message_label"> </label>
|
366 |
-
<textarea class="message_field message_form_footer" rows="2" autocomplete="off" cols="65" name="message_data[<?php echo $message_id; ?>][form_footer]" id="" value="" placeholder="<?php _e( 'Text / HTML to show after the form', 'icegram' ); ?>"><?php echo
|
367 |
</p>
|
368 |
<div class="form_inline_shortcode campaign_shortcode light message_row <?php echo "ig_" . implode( ' ig_', $settings['embed_form'] ) ?>" style="font-size:.9em;display:inline;">
|
369 |
<?php echo __( 'Insert <code>[ig_form]</code> where you want to show this form in message body.', 'icegram' ); ?>
|
291 |
|
292 |
<p class="message_row <?php echo "ig_" . implode( ' ig_', $settings['embed_form'] ) ?>">
|
293 |
<label class="message_label"> </label>
|
294 |
+
<textarea class="message_field message_form_header" rows="2" autocomplete="off" cols="65" name="message_data[<?php echo $message_id; ?>][form_header]" id="" value="" placeholder="<?php _e( 'Text / HTML to show before the form', 'icegram' ); ?>"><?php echo esc_textarea(wp_kses_post( $form_header )); ?></textarea>
|
295 |
</p>
|
296 |
<p class="message_row <?php echo "ig_" . implode( ' ig_', $settings['embed_form'] ) ?>">
|
297 |
<label class="message_label"> </label>
|
363 |
|
364 |
<p class="message_row <?php echo "ig_" . implode( ' ig_', $settings['embed_form'] ) ?>">
|
365 |
<label class="message_label"> </label>
|
366 |
+
<textarea class="message_field message_form_footer" rows="2" autocomplete="off" cols="65" name="message_data[<?php echo $message_id; ?>][form_footer]" id="" value="" placeholder="<?php _e( 'Text / HTML to show after the form', 'icegram' ); ?>"><?php echo esc_textarea(wp_kses_post( $form_footer )); ?></textarea>
|
367 |
</p>
|
368 |
<div class="form_inline_shortcode campaign_shortcode light message_row <?php echo "ig_" . implode( ' ig_', $settings['embed_form'] ) ?>" style="font-size:.9em;display:inline;">
|
369 |
<?php echo __( 'Insert <code>[ig_form]</code> where you want to show this form in message body.', 'icegram' ); ?>
|
lite/message-types/action-bar/themes/action-bar.js
ADDED
@@ -0,0 +1,166 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/******/ (function(modules) { // webpackBootstrap
|
2 |
+
/******/ // The module cache
|
3 |
+
/******/ var installedModules = {};
|
4 |
+
/******/
|
5 |
+
/******/ // The require function
|
6 |
+
/******/ function __webpack_require__(moduleId) {
|
7 |
+
/******/
|
8 |
+
/******/ // Check if module is in cache
|
9 |
+
/******/ if(installedModules[moduleId]) {
|
10 |
+
/******/ return installedModules[moduleId].exports;
|
11 |
+
/******/ }
|
12 |
+
/******/ // Create a new module (and put it into the cache)
|
13 |
+
/******/ var module = installedModules[moduleId] = {
|
14 |
+
/******/ i: moduleId,
|
15 |
+
/******/ l: false,
|
16 |
+
/******/ exports: {}
|
17 |
+
/******/ };
|
18 |
+
/******/
|
19 |
+
/******/ // Execute the module function
|
20 |
+
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
21 |
+
/******/
|
22 |
+
/******/ // Flag the module as loaded
|
23 |
+
/******/ module.l = true;
|
24 |
+
/******/
|
25 |
+
/******/ // Return the exports of the module
|
26 |
+
/******/ return module.exports;
|
27 |
+
/******/ }
|
28 |
+
/******/
|
29 |
+
/******/
|
30 |
+
/******/ // expose the modules object (__webpack_modules__)
|
31 |
+
/******/ __webpack_require__.m = modules;
|
32 |
+
/******/
|
33 |
+
/******/ // expose the module cache
|
34 |
+
/******/ __webpack_require__.c = installedModules;
|
35 |
+
/******/
|
36 |
+
/******/ // define getter function for harmony exports
|
37 |
+
/******/ __webpack_require__.d = function(exports, name, getter) {
|
38 |
+
/******/ if(!__webpack_require__.o(exports, name)) {
|
39 |
+
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
40 |
+
/******/ }
|
41 |
+
/******/ };
|
42 |
+
/******/
|
43 |
+
/******/ // define __esModule on exports
|
44 |
+
/******/ __webpack_require__.r = function(exports) {
|
45 |
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
46 |
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
47 |
+
/******/ }
|
48 |
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
49 |
+
/******/ };
|
50 |
+
/******/
|
51 |
+
/******/ // create a fake namespace object
|
52 |
+
/******/ // mode & 1: value is a module id, require it
|
53 |
+
/******/ // mode & 2: merge all properties of value into the ns
|
54 |
+
/******/ // mode & 4: return value when already ns object
|
55 |
+
/******/ // mode & 8|1: behave like require
|
56 |
+
/******/ __webpack_require__.t = function(value, mode) {
|
57 |
+
/******/ if(mode & 1) value = __webpack_require__(value);
|
58 |
+
/******/ if(mode & 8) return value;
|
59 |
+
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
60 |
+
/******/ var ns = Object.create(null);
|
61 |
+
/******/ __webpack_require__.r(ns);
|
62 |
+
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
63 |
+
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
64 |
+
/******/ return ns;
|
65 |
+
/******/ };
|
66 |
+
/******/
|
67 |
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
68 |
+
/******/ __webpack_require__.n = function(module) {
|
69 |
+
/******/ var getter = module && module.__esModule ?
|
70 |
+
/******/ function getDefault() { return module['default']; } :
|
71 |
+
/******/ function getModuleExports() { return module; };
|
72 |
+
/******/ __webpack_require__.d(getter, 'a', getter);
|
73 |
+
/******/ return getter;
|
74 |
+
/******/ };
|
75 |
+
/******/
|
76 |
+
/******/ // Object.prototype.hasOwnProperty.call
|
77 |
+
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
78 |
+
/******/
|
79 |
+
/******/ // __webpack_public_path__
|
80 |
+
/******/ __webpack_require__.p = "";
|
81 |
+
/******/
|
82 |
+
/******/
|
83 |
+
/******/ // Load entry module and return exports
|
84 |
+
/******/ return __webpack_require__(__webpack_require__.s = 0);
|
85 |
+
/******/ })
|
86 |
+
/************************************************************************/
|
87 |
+
/******/ ({
|
88 |
+
|
89 |
+
/***/ "./lite/message-types/action-bar/default.css":
|
90 |
+
/*!***************************************************!*\
|
91 |
+
!*** ./lite/message-types/action-bar/default.css ***!
|
92 |
+
\***************************************************/
|
93 |
+
/*! no static exports found */
|
94 |
+
/***/ (function(module, exports, __webpack_require__) {
|
95 |
+
|
96 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/action-bar/default.css?");
|
97 |
+
|
98 |
+
/***/ }),
|
99 |
+
|
100 |
+
/***/ "./lite/message-types/action-bar/themes/air-mail.css":
|
101 |
+
/*!***********************************************************!*\
|
102 |
+
!*** ./lite/message-types/action-bar/themes/air-mail.css ***!
|
103 |
+
\***********************************************************/
|
104 |
+
/*! no static exports found */
|
105 |
+
/***/ (function(module, exports, __webpack_require__) {
|
106 |
+
|
107 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/action-bar/themes/air-mail.css?");
|
108 |
+
|
109 |
+
/***/ }),
|
110 |
+
|
111 |
+
/***/ "./lite/message-types/action-bar/themes/bold.css":
|
112 |
+
/*!*******************************************************!*\
|
113 |
+
!*** ./lite/message-types/action-bar/themes/bold.css ***!
|
114 |
+
\*******************************************************/
|
115 |
+
/*! no static exports found */
|
116 |
+
/***/ (function(module, exports, __webpack_require__) {
|
117 |
+
|
118 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/action-bar/themes/bold.css?");
|
119 |
+
|
120 |
+
/***/ }),
|
121 |
+
|
122 |
+
/***/ "./lite/message-types/action-bar/themes/default.css":
|
123 |
+
/*!**********************************************************!*\
|
124 |
+
!*** ./lite/message-types/action-bar/themes/default.css ***!
|
125 |
+
\**********************************************************/
|
126 |
+
/*! no static exports found */
|
127 |
+
/***/ (function(module, exports, __webpack_require__) {
|
128 |
+
|
129 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/action-bar/themes/default.css?");
|
130 |
+
|
131 |
+
/***/ }),
|
132 |
+
|
133 |
+
/***/ "./lite/message-types/action-bar/themes/hello.css":
|
134 |
+
/*!********************************************************!*\
|
135 |
+
!*** ./lite/message-types/action-bar/themes/hello.css ***!
|
136 |
+
\********************************************************/
|
137 |
+
/*! no static exports found */
|
138 |
+
/***/ (function(module, exports, __webpack_require__) {
|
139 |
+
|
140 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/action-bar/themes/hello.css?");
|
141 |
+
|
142 |
+
/***/ }),
|
143 |
+
|
144 |
+
/***/ "./lite/message-types/action-bar/themes/solid.css":
|
145 |
+
/*!********************************************************!*\
|
146 |
+
!*** ./lite/message-types/action-bar/themes/solid.css ***!
|
147 |
+
\********************************************************/
|
148 |
+
/*! no static exports found */
|
149 |
+
/***/ (function(module, exports, __webpack_require__) {
|
150 |
+
|
151 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/action-bar/themes/solid.css?");
|
152 |
+
|
153 |
+
/***/ }),
|
154 |
+
|
155 |
+
/***/ 0:
|
156 |
+
/*!******************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
157 |
+
!*** multi ./lite/message-types/action-bar/default.css ./lite/message-types/action-bar/themes/air-mail.css ./lite/message-types/action-bar/themes/bold.css ./lite/message-types/action-bar/themes/default.css ./lite/message-types/action-bar/themes/hello.css ./lite/message-types/action-bar/themes/solid.css ***!
|
158 |
+
\******************************************************************************************************************************************************************************************************************************************************************************************************************/
|
159 |
+
/*! no static exports found */
|
160 |
+
/***/ (function(module, exports, __webpack_require__) {
|
161 |
+
|
162 |
+
eval("__webpack_require__(/*! ./lite/message-types/action-bar/default.css */\"./lite/message-types/action-bar/default.css\");\n__webpack_require__(/*! ./lite/message-types/action-bar/themes/air-mail.css */\"./lite/message-types/action-bar/themes/air-mail.css\");\n__webpack_require__(/*! ./lite/message-types/action-bar/themes/bold.css */\"./lite/message-types/action-bar/themes/bold.css\");\n__webpack_require__(/*! ./lite/message-types/action-bar/themes/default.css */\"./lite/message-types/action-bar/themes/default.css\");\n__webpack_require__(/*! ./lite/message-types/action-bar/themes/hello.css */\"./lite/message-types/action-bar/themes/hello.css\");\nmodule.exports = __webpack_require__(/*! ./lite/message-types/action-bar/themes/solid.css */\"./lite/message-types/action-bar/themes/solid.css\");\n\n\n//# sourceURL=webpack:///multi_./lite/message-types/action-bar/default.css_./lite/message-types/action-bar/themes/air-mail.css_./lite/message-types/action-bar/themes/bold.css_./lite/message-types/action-bar/themes/default.css_./lite/message-types/action-bar/themes/hello.css_./lite/message-types/action-bar/themes/solid.css?");
|
163 |
+
|
164 |
+
/***/ })
|
165 |
+
|
166 |
+
/******/ });
|
lite/message-types/action-bar/themes/action-bar.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#ig_body_pushdown{display:none;position:relative;height:0;visibility:hidden;width:100%}.ig_action_bar,.ig_action_bar div{box-sizing:border-box}.ig_action_bar.ig_container{z-index:9999999;position:fixed;width:100%;padding:0;margin:0;display:none;left:0;line-height:1.5}.ig_action_bar.ig_container.ig_top{top:0}.ig_action_bar.ig_container.ig_bottom{position:fixed;bottom:0}.ig_action_bar.ig_hide.ig_bottom{-ms-transform:translateY(100%);-webkit-transform:translateY(100%);transform:translateY(100%)}.ig_action_bar.ig_hide.ig_top{-ms-transform:translateY(-100%);-webkit-transform:translateY(-100%);transform:translateY(-100%)}.ig_action_bar .ig_content{float:left;text-align:center;width:100%;padding:0 2.5em 0 0}.ig_action_bar .ig_data{text-align:center;padding:.3em 1em .3em .7em;display:inline-block;line-height:1.5;vertical-align:middle;margin:0}.ig_action_bar.ig_has_pwby .ig_data{padding-left:2.5em}.ig_action_bar .ig_headline{display:inline-block;font-size:1em;line-height:1.25;font-weight:700;padding:0}.ig_action_bar .ig_message{display:inline-block;font-size:.85em;line-height:1.2;padding:.2em 0 0}.ig_action_bar .ig_button,.ig_action_bar input[type=submit],.ig_action_bar input[type=button]{border:none;color:#FFF;cursor:pointer;display:inline-block;font-size:1em;font-weight:700;letter-spacing:.05em;vertical-align:middle;text-align:center;padding:.3em 1.5em;margin:.5em 0;float:none;background-image:none}.ig_action_bar .ig_powered_by{vertical-align:top;opacity:.5;display:inline-block;float:left;z-index:22;position:absolute;margin-top:0}.ig_action_bar .ig_powered_by img{width:1.5em;margin:.3em 0 0 .5em}.ig_action_bar .ig_close{z-index:1000000;cursor:pointer;position:absolute;right:0;width:36px;height:36px;box-sizing:border-box}.ig_action_bar .ig_close>span{background-image:url(../../../assets/images/sprite_1.png);background-repeat:no-repeat;width:30px;height:100%;opacity:.7;display:inline-block}.ig_action_bar .ig_close:hover>span{opacity:1}.ig_action_bar.ig_show .ig_close{background-color:transparent!important}.ig_action_bar.ig_hide .ig_close{position:fixed;border:none;right:.2em}.ig_action_bar.ig_hide.ig_top .ig_close{top:100%}.ig_action_bar.ig_hide.ig_bottom .ig_close{bottom:100%}.ig_action_bar.ig_hide.ig_bottom .ig_close>span,.ig_action_bar.ig_show.ig_top .ig_close>span{background-position:-80px center}.ig_action_bar.ig_hide.ig_top .ig_close>span,.ig_action_bar.ig_show.ig_bottom .ig_close>span{background-position:-120px center}@media only screen and (max-width:768px){.ig_action_bar .ig_content{padding-right:0}.ig_action_bar .ig_data{width:100%;max-width:100%!important;padding-right:2.5em}.ig_action_bar .ig_button,.ig_action_bar input[type=submit],.ig_action_bar input[type=button]{max-width:100%;margin:.3em 0}.ig_action_bar.ig_show .ig_close{top:0}.ig_action_bar{font-size:18px}.ig_action_bar .ig_form_container .ig_embed_form_container{width:80%;margin:0 auto;font-size:.85em}}.ig_action_bar .ig_form_container{width:20%;float:left}.ig_action_bar.ig_form_bottom .ig_content,.ig_action_bar.ig_form_inline .ig_content,.ig_action_bar.ig_form_left .ig_content,.ig_action_bar.ig_form_right .ig_content{padding:0}.ig_action_bar.ig_form_left .ig_data,.ig_action_bar.ig_form_right .ig_data{width:79%;max-width:79%!important;float:left}.ig_action_bar.ig_form_left.ig_has_pwby .ig_data{width:79%;max-width:79%!important;padding-left:1em}.ig_action_bar.ig_form_bottom.ig_has_pwby .ig_form_container.layout_bottom,.ig_action_bar.ig_form_left.ig_has_pwby .ig_form_container.layout_left{padding-left:2.5em}.ig_action_bar.ig_form_bottom .ig_data{float:left}.ig_action_bar.ig_form_bottom .ig_data,.ig_action_bar.ig_form_inline .ig_data{width:100%;max-width:100%!important;padding-right:2.5em}.ig_action_bar.ig_form_right .ig_form_container.layout_right{float:right;padding-right:2.5em}.ig_action_bar.ig_form_bottom .ig_form_container.layout_bottom{padding-right:2.5em}.ig_action_bar.ig_form_inline .ig_form_container.layout_inline{padding-right:0}.ig_action_bar.ig_form_bottom .ig_form_container.layout_bottom .ig_embed_form_container,.ig_action_bar.ig_form_bottom .ig_form_container.layout_bottom .ig_form_footer,.ig_action_bar.ig_form_bottom .ig_form_container.layout_bottom .ig_form_header,.ig_action_bar.ig_form_inline .ig_form_container.layout_inline .ig_embed_form_container,.ig_action_bar.ig_form_inline .ig_form_container.layout_inline .ig_form_footer,.ig_action_bar.ig_form_inline .ig_form_container.layout_inline .ig_form_header{text-align:center}.ig_action_bar.ig_form_left.ig_form_style_4 .ig_data{padding-left:2em}.ig_action_bar.ig_form_right.ig_form_style_4 .ig_data{padding-right:2em}.ig_action_bar.ig_form_bottom.ig_form_style_4 .ig_form_container.layout_bottom{padding-top:0;padding-bottom:0;margin-top:1em}.ig_action_bar.ig_form_style_4.ig_hide .ig_form_container:before{display:none}@media only screen and (max-width:768px){.ig_action_bar.ig_form_left .ig_form_container.layout_left,.ig_action_bar.ig_form_right .ig_form_container.layout_right{display:none}.ig_action_bar.ig_form_bottom .ig_form_container.layout_bottom,.ig_action_bar.ig_form_left .ig_form_container.layout_bottom,.ig_action_bar.ig_form_right .ig_form_container.layout_bottom{display:block;width:100%;padding:.7em 1em;height:auto!important}.ig_action_bar.ig_form_bottom.ig_has_pwby .ig_form_container.layout_bottom,.ig_action_bar.ig_form_left.ig_has_pwby .ig_form_container.layout_bottom,.ig_action_bar.ig_form_right.ig_has_pwby .ig_form_container.layout_bottom{padding:.7em 1em}.ig_action_bar.ig_form_bottom .ig_data,.ig_action_bar.ig_form_left .ig_data,.ig_action_bar.ig_form_right .ig_data{width:100%;max-width:100%!important;padding-right:2.3em}.ig_action_bar.ig_form_left.ig_has_pwby .ig_data,.ig_action_bar.ig_form_right.ig_has_pwby .ig_data{padding-left:2.3em}.ig_action_bar .ig_form_container .ig_embed_form_container{width:60%;margin:0 auto;font-size:.85em}.ig_action_bar .ig_form_container .ig_embed_form_container.ig_half{width:100%}.ig_action_bar .ig_form_container.layout_bottom .ig_full .ig_form_els,.ig_action_bar .ig_form_container.layout_bottom .ig_half .ig_form_els,.ig_action_bar .ig_form_container.layout_bottom .ig_quater .ig_form_els,.ig_action_bar .ig_form_container.layout_bottom .ig_third .ig_form_els,.ig_action_bar .ig_form_container.layout_inline .ig_full .ig_form_els,.ig_action_bar .ig_form_container.layout_inline .ig_half .ig_form_els,.ig_action_bar .ig_form_container.layout_inline .ig_quater .ig_form_els,.ig_action_bar .ig_form_container.layout_inline .ig_third .ig_form_els{width:99%;display:inline-block;float:left;margin:.25em auto}.ig_action_bar .ig_form_container.layout_bottom .ig_half .ig_form_els,.ig_action_bar .ig_form_container.layout_inline .ig_half .ig_form_els{width:49%}.ig_action_bar .ig_form_container.layout_bottom .ig_full .ig_button_label,.ig_action_bar .ig_form_container.layout_bottom .ig_half .ig_button_label,.ig_action_bar .ig_form_container.layout_bottom .ig_quater .ig_button_label,.ig_action_bar .ig_form_container.layout_bottom .ig_third .ig_button_label,.ig_action_bar .ig_form_container.layout_inline .ig_full .ig_button_label,.ig_action_bar .ig_form_container.layout_inline .ig_half .ig_button_label,.ig_action_bar .ig_form_container.layout_inline .ig_quater .ig_button_label,.ig_action_bar .ig_form_container.layout_inline .ig_third .ig_button_label{display:none}.ig_action_bar .ig_form_container.layout_bottom .ig_half .ig_button_label,.ig_action_bar .ig_form_container.layout_inline .ig_half .ig_button_label{display:block;visibility:hidden;opacity:0}.ig_action_bar .ig_form_container.layout_bottom .ig_button,.ig_action_bar .ig_form_container.layout_bottom input[type=submit],.ig_action_bar .ig_form_container.layout_bottom input[type=button],.ig_action_bar .ig_form_container.layout_inline .ig_button,.ig_action_bar .ig_form_container.layout_inline input[type=submit],.ig_action_bar .ig_form_container.layout_inline input[type=button]{margin:0 auto}.ig_action_bar.ig_form_left.ig_form_style_1 .ig_form_container.layout_bottom:before,.ig_action_bar.ig_form_right.ig_form_style_1 .ig_form_container.layout_bottom:before{width:100%;border-top-width:.2em}.ig_action_bar.ig_form_bottom.ig_form_style_1 .ig_form_container.layout_bottom:before{border-top-width:.2em}.ig_action_bar.ig_form_style_2 .ig_form_container .ig_form_els{margin-right:0;margin-left:0}.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els input,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_first input,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_last input,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els input,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_first input,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_last input{border-radius:2em;padding-left:1em;height:2.25em;line-height:2.2em}.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els input.ig_button,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els input.ig_button{padding:inherit}.ig_action_bar.ig_form_left.ig_form_style_4 .ig_data,.ig_action_bar.ig_form_style_2 .ig_form_container .ig_half .ig_form_els.ig_form_els_first label,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els label,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_first label,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_last label,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els label,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_first label,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_last label{padding-left:1em}.ig_action_bar.ig_form_style_2 .ig_form_container .ig_half .ig_form_els.ig_form_els_first input{border-radius:2em 0 0 2em;padding-left:1em;border-right-width:0}.ig_action_bar.ig_form_style_2 .ig_form_container .ig_half .ig_form_els.ig_form_els_last input{border-radius:0 2em 2em 0;border-left-width:0}.ig_action_bar.ig_form_style_2 .ig_form_container .ig_half .ig_form_els .ig_button,.ig_action_bar.ig_form_style_2 .ig_form_container .ig_half .ig_form_els input{width:100%}.ig_action_bar.ig_form_right.ig_form_style_4 .ig_data{padding-right:2.5em}.ig_action_bar.ig_form_left.ig_form_style_4 .ig_form_container,.ig_action_bar.ig_form_right.ig_form_style_4 .ig_form_container{margin-top:1em}.ig_action_bar.ig_form_bottom.ig_form_style_4 .ig_form_container,.ig_action_bar.ig_form_left.ig_form_style_4 .ig_form_container,.ig_action_bar.ig_form_right.ig_form_style_4 .ig_form_container{padding-top:0;padding-bottom:0}}@media only screen and (max-width:644px){.ig_action_bar .ig_form_container .ig_embed_form_container,.ig_action_bar.ig_form_inline .ig_form_container .ig_embed_form_container{width:70%}}@media only screen and (max-width:375px){.ig_action_bar.ig_form_inline .ig_form_container .ig_embed_form_container{width:100%}}.ig-test{@apply mt-4}.ig_action_bar.ig_air-mail.ig_container{border-style:solid;color:#707070;-moz-border-image:-moz-repeating-linear-gradient(45deg,#a83439,#a83439 10px,#fdfdfd 10px,#fdfdfd 20px,#2f4175 20px,#2f4175 30px,#fdfdfd 30px,#fdfdfd 40px) 8 round;-webkit-border-image:-webkit-repeating-linear-gradient(45deg,#a83439,#a83439 10px,#fdfdfd 10px,#fdfdfd 20px,#2f4175 20px,#2f4175 30px,#fdfdfd 30px,#fdfdfd 40px) 8 round;-o-border-image:-o-repeating-linear-gradient(45deg,#a83439,#a83439 10px,#fdfdfd 10px,#fdfdfd 20px,#2f4175 20px,#2f4175 30px,#fdfdfd 30px,#fdfdfd 40px) 8 round;border-image:repeating-linear-gradient(45deg,#a83439,#a83439 10px,#fdfdfd 10px,#fdfdfd 20px,#2f4175 20px,#2f4175 30px,#fdfdfd 30px,#fdfdfd 40px) 8 round;background-color:#fdfdfd}.ig_action_bar.ig_air-mail.ig_container.ig_top{border-width:0 0 8px}.ig_action_bar.ig_air-mail.ig_container.ig_bottom{border-width:8px 0 0}.ig_action_bar.ig_air-mail .ig_data{max-width:75%;float:left;text-align:left}.ig_action_bar.ig_air-mail .ig_headline{color:#2C4A9D}.ig_action_bar.ig_air-mail .ig_headline,.ig_action_bar.ig_air-mail .ig_message{display:block}.ig_action_bar.ig_air-mail .ig_button,.ig_action_bar.ig_air-mail input[type=submit],.ig_action_bar.ig_air-mail input[type=button]{float:right;background:#D82931;text-transform:uppercase;font-family:"Open Sans",sans-serif;font-weight:600;border-radius:4px;border:none}.ig_action_bar.ig_air-mail .ig_button:hover,.ig_action_bar.ig_air-mail input[type=submit]:hover,.ig_action_bar.ig_air-mail input[type=button]:hover{box-shadow:0 0 4px 0 rgba(0,0,0,.5)}.ig_action_bar.ig_air-mail .ig_button:active,.ig_action_bar.ig_air-mail input[type=submit]:active,.ig_action_bar.ig_air-mail input[type=button]:active{box-shadow:none}.ig_action_bar.ig_air-mail.ig_show.ig_bottom .ig_close>span,.ig_action_bar.ig_air-mail.ig_show.ig_top .ig_close>span{background-position:-520px center;opacity:.4}.ig_action_bar.ig_air-mail.ig_show.ig_bottom .ig_close:hover>span,.ig_action_bar.ig_air-mail.ig_show.ig_top .ig_close:hover>span{background-position:-520px center;opacity:.8}.ig_action_bar.ig_air-mail.ig_hide .ig_close{display:none}.ig_action_bar.ig_form_bottom.ig_air-mail .ig_form_container.layout_bottom .ig_embed_form_container,.ig_action_bar.ig_form_bottom.ig_air-mail .ig_form_container.layout_bottom .ig_form_footer,.ig_action_bar.ig_form_bottom.ig_air-mail .ig_form_container.layout_bottom .ig_form_header,.ig_action_bar.ig_form_inline.ig_air-mail .ig_form_container.layout_inline .ig_embed_form_container,.ig_action_bar.ig_form_inline.ig_air-mail .ig_form_container.layout_inline .ig_form_footer,.ig_action_bar.ig_form_inline.ig_air-mail .ig_form_container.layout_inline .ig_form_header{text-align:left}@media only screen and (max-width:768px){.ig_action_bar.ig_air-mail .ig_button,.ig_action_bar.ig_air-mail input[type=submit],.ig_action_bar.ig_air-mail input[type=button]{float:left;margin-left:.7em}.ig_action_bar.ig_air-mail.ig_has_pwby .ig_button,.ig_action_bar.ig_air-mail.ig_has_pwby input[type=submit],.ig_action_bar.ig_air-mail.ig_has_pwby input[type=button]{margin-left:2.5em}}.ig_action_bar.ig_bold.ig_container{background-color:#BC0933;color:#FFF;border-bottom:solid .2em #F3EEEE;box-shadow:0 0 .6em 0 rgba(0,0,0,.4)}.ig_action_bar.ig_bold.ig_container.ig_bottom{border-bottom:none;border-top:solid .2em #F3EEEE}.ig_action_bar.ig_bold .ig_data{max-width:75%;float:left;text-align:left}.ig_action_bar.ig_bold .ig_headline,.ig_action_bar.ig_bold .ig_message{display:block}.ig_action_bar.ig_bold .ig_button,.ig_action_bar.ig_bold input[type=submit],.ig_action_bar.ig_bold input[type=button]{float:right;background:#00BB58;border-radius:.2em;box-shadow:inset 0 -3px 1px rgba(0,0,0,.35),0 2px 2px rgba(0,0,0,.25);text-shadow:0 0 1px rgba(0,0,0,.1)}.ig_action_bar.ig_bold .ig_button:active,.ig_action_bar.ig_bold input[type=submit]:active,.ig_action_bar.ig_bold input[type=button]:active{position:relative;top:3px;box-shadow:none}.ig_action_bar.ig_bold.ig_hide .ig_close{background-color:#BC0933;border:.2em solid #FFF;border-bottom-width:0;box-shadow:0 0 .3em rgba(0,0,0,.35);border-radius:.3em .3em 0 0}.ig_action_bar.ig_bold.ig_hide.ig_top .ig_close{margin-top:.15em;border-bottom-width:.2em;border-top-width:0;border-radius:0 0 .3em .3em}.ig_action_bar.ig_bold.ig_hide.ig_bottom .ig_close{margin-bottom:.15em}.ig_action_bar.ig_form_bottom.ig_bold .ig_form_container.layout_bottom .ig_embed_form_container,.ig_action_bar.ig_form_bottom.ig_bold .ig_form_container.layout_bottom .ig_form_footer,.ig_action_bar.ig_form_bottom.ig_bold .ig_form_container.layout_bottom .ig_form_header,.ig_action_bar.ig_form_inline.ig_bold .ig_form_container.layout_inline .ig_embed_form_container,.ig_action_bar.ig_form_inline.ig_bold .ig_form_container.layout_inline .ig_form_footer,.ig_action_bar.ig_form_inline.ig_bold .ig_form_container.layout_inline .ig_form_header{text-align:left}@media only screen and (max-width:768px){.ig_action_bar.ig_bold .ig_button,.ig_action_bar.ig_bold input[type=submit],.ig_action_bar.ig_bold input[type=button]{float:left;margin:.3em 0 .3em .7em}.ig_action_bar.ig_bold.ig_has_pwby .ig_button,.ig_action_bar.ig_bold.ig_has_pwby input[type=submit],.ig_action_bar.ig_bold.ig_has_pwby input[type=button]{margin-left:2.5em}}.ig_action_bar.ig_hello.ig_container{background-color:#EB5B31;color:#FFF;line-height:1.5;border-bottom:.2em solid #fff;box-shadow:0 0 .6em 0 rgba(0,0,0,.4)}.ig_action_bar.ig_hello.ig_container.ig_bottom{border-bottom:none;border-top:.2em solid #fff}.ig_action_bar.ig_hello .ig_headline{font-weight:700;margin-right:.5em}.ig_action_bar.ig_hello .ig_message{margin-right:.5em}.ig_action_bar.ig_hello .ig_button,.ig_action_bar.ig_hello input[type=submit],.ig_action_bar.ig_hello input[type=button]{background-color:#4A4844;background-image:linear-gradient(top,transparent 0,rgba(51,51,51,.4) 100%);box-shadow:1px 1px 3px rgba(0,0,0,.28);font-weight:400;border-radius:.25em;float:none;padding:.2em 1.3em}.ig_action_bar.ig_hello .ig_button:hover,.ig_action_bar.ig_hello input[type=submit]:hover,.ig_action_bar.ig_hello input[type=button]:hover{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";filter:alpha(opacity=80);opacity:.8}.ig_action_bar.ig_hello.ig_hide .ig_close{background-color:#EB5B31;border:.2em solid #FFF;border-bottom-width:0;border-radius:.3em .3em 0 0;box-shadow:0 0 .3em rgba(0,0,0,.35)}.ig_action_bar.ig_hello.ig_hide.ig_top .ig_close{margin-top:.15em;border-bottom-width:.2em;border-top-width:0;border-radius:0 0 .3em .3em}.ig_action_bar.ig_hello.ig_hide.ig_bottom .ig_close{margin-bottom:.15em}.ig_action_bar.ig_form_inline.ig_hello .ig_form_container.layout_inline{padding:.2em}.ig_action_bar.ig_form_inline.ig_hello .ig_headline{vertical-align:middle;margin-right:.5em}.ig_action_bar.ig_form_inline.ig_hello .ig_message{vertical-align:middle}.ig_action_bar.ig_solid.ig_container{background-color:#4E3363;color:#FFF}.ig_action_bar.ig_solid .ig_data{max-width:75%;float:left;text-align:left}.ig_action_bar.ig_solid .ig_headline,.ig_action_bar.ig_solid .ig_message{display:block}.ig_action_bar.ig_solid .ig_button,.ig_action_bar.ig_solid input[type=submit],.ig_action_bar.ig_solid input[type=button]{background:#008010;float:right;border-radius:.1em}.ig_action_bar.ig_solid .ig_button:hover,.ig_action_bar.ig_solid input[type=submit]:hover,.ig_action_bar.ig_solid input[type=button]:hover{box-shadow:inset 0 -4em 0 rgba(255,255,255,.15)}.ig_action_bar.ig_solid.ig_hide .ig_close{background-color:#4E3363}.ig_action_bar.ig_form_bottom.ig_solid .ig_form_container.layout_bottom .ig_embed_form_container,.ig_action_bar.ig_form_bottom.ig_solid .ig_form_container.layout_bottom .ig_form_footer,.ig_action_bar.ig_form_bottom.ig_solid .ig_form_container.layout_bottom .ig_form_header,.ig_action_bar.ig_form_inline.ig_solid .ig_form_container.layout_inline .ig_embed_form_container,.ig_action_bar.ig_form_inline.ig_solid .ig_form_container.layout_inline .ig_form_footer,.ig_action_bar.ig_form_inline.ig_solid .ig_form_container.layout_inline .ig_form_header{text-align:left}@media only screen and (max-width:768px){.ig_action_bar.ig_solid .ig_button,.ig_action_bar.ig_solid input[type=submit],.ig_action_bar.ig_solid input[type=button]{float:left;margin:.3em 0 .3em .7em}.ig_action_bar.ig_solid.ig_has_pwby .ig_button,.ig_action_bar.ig_solid.ig_has_pwby input[type=submit],.ig_action_bar.ig_solid.ig_has_pwby input[type=button]{margin-left:2.5em}}
|
1 |
+
.ig_action_bar.ig_bold .ig_data,.ig_action_bar.ig_form_bottom.ig_air-mail .ig_form_container.layout_bottom .ig_embed_form_container,.ig_action_bar.ig_form_bottom.ig_air-mail .ig_form_container.layout_bottom .ig_form_footer,.ig_action_bar.ig_form_bottom.ig_air-mail .ig_form_container.layout_bottom .ig_form_header,.ig_action_bar.ig_form_bottom.ig_bold .ig_form_container.layout_bottom .ig_embed_form_container,.ig_action_bar.ig_form_bottom.ig_bold .ig_form_container.layout_bottom .ig_form_footer,.ig_action_bar.ig_form_bottom.ig_bold .ig_form_container.layout_bottom .ig_form_header,.ig_action_bar.ig_form_inline.ig_air-mail .ig_form_container.layout_inline .ig_embed_form_container,.ig_action_bar.ig_form_inline.ig_air-mail .ig_form_container.layout_inline .ig_form_footer,.ig_action_bar.ig_form_inline.ig_air-mail .ig_form_container.layout_inline .ig_form_header,.ig_action_bar.ig_form_inline.ig_bold .ig_form_container.layout_inline .ig_embed_form_container,.ig_action_bar.ig_form_inline.ig_bold .ig_form_container.layout_inline .ig_form_footer,.ig_action_bar.ig_form_inline.ig_bold .ig_form_container.layout_inline .ig_form_header{text-align:left}.ig_action_bar.ig_air-mail.ig_container{border-width:1px;border-style:solid;color:#707070;-o-border-image:repeating-linear-gradient(45deg,#a83439,#a83439 10px,#fdfdfd 10px,#fdfdfd 20px,#2f4175 20px,#2f4175 30px,#fdfdfd 30px,#fdfdfd 40px) 8 round;border-image:repeating-linear-gradient(45deg,#a83439,#a83439 10px,#fdfdfd 10px,#fdfdfd 20px,#2f4175 20px,#2f4175 30px,#fdfdfd 30px,#fdfdfd 40px) 8 round;background-color:#fdfdfd}.ig_action_bar.ig_air-mail.ig_container.ig_top{border-width:0 0 8px}.ig_action_bar.ig_air-mail.ig_container.ig_bottom{border-width:8px 0 0}.ig_action_bar.ig_air-mail .ig_data{max-width:75%;float:left;text-align:left}.ig_action_bar.ig_air-mail .ig_headline{color:#2C4A9D}.ig_action_bar.ig_air-mail .ig_headline,.ig_action_bar.ig_air-mail .ig_message{display:block}.ig_action_bar.ig_air-mail .ig_button,.ig_action_bar.ig_air-mail input[type=submit],.ig_action_bar.ig_air-mail input[type=button]{float:right;text-transform:uppercase;font-weight:600;border-style:none;font-family:"Open Sans",sans-serif;border-radius:4px;background:#D82931}.ig_action_bar.ig_air-mail .ig_button:hover,.ig_action_bar.ig_air-mail input[type=submit]:hover,.ig_action_bar.ig_air-mail input[type=button]:hover{-webkit-box-shadow:0 0 4px 0 rgba(0,0,0,.5);box-shadow:0 0 4px 0 rgba(0,0,0,.5)}.ig_action_bar.ig_air-mail .ig_button:active,.ig_action_bar.ig_air-mail input[type=submit]:active,.ig_action_bar.ig_air-mail input[type=button]:active{-webkit-box-shadow:none;box-shadow:none}.ig_action_bar.ig_air-mail.ig_show.ig_bottom .ig_close>span,.ig_action_bar.ig_air-mail.ig_show.ig_top .ig_close>span{opacity:.4;background-position:-520px center}.ig_action_bar.ig_air-mail.ig_show.ig_bottom .ig_close:hover>span,.ig_action_bar.ig_air-mail.ig_show.ig_top .ig_close:hover>span{opacity:.8;background-position:-520px center}.ig_action_bar.ig_air-mail.ig_hide .ig_close{display:none}@media only screen and (max-width:768px){.ig_action_bar.ig_air-mail .ig_button,.ig_action_bar.ig_air-mail input[type=submit],.ig_action_bar.ig_air-mail input[type=button]{float:left;margin-left:.7em}.ig_action_bar.ig_air-mail.ig_has_pwby .ig_button,.ig_action_bar.ig_air-mail.ig_has_pwby input[type=submit],.ig_action_bar.ig_air-mail.ig_has_pwby input[type=button]{margin-left:2.5em}}.ig_action_bar.ig_bold.ig_container{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));background-color:#BC0933;border-bottom:solid .2em #F3EEEE;-webkit-box-shadow:0 0 .6em 0 rgba(0,0,0,.4);box-shadow:0 0 .6em 0 rgba(0,0,0,.4)}.ig_action_bar.ig_bold.ig_container.ig_bottom{border-bottom-width:0;border-top:solid .2em #F3EEEE}.ig_action_bar.ig_bold .ig_data{max-width:75%;float:left}.ig_action_bar.ig_bold .ig_headline,.ig_action_bar.ig_bold .ig_message{display:block}.ig_action_bar.ig_bold .ig_button,.ig_action_bar.ig_bold input[type=submit],.ig_action_bar.ig_bold input[type=button]{float:right;background:#00BB58;border-radius:.2em;-webkit-box-shadow:inset 0 -3px 1px rgba(0,0,0,.35),0 2px 2px rgba(0,0,0,.25);box-shadow:inset 0 -3px 1px rgba(0,0,0,.35),0 2px 2px rgba(0,0,0,.25);text-shadow:0 0 1px rgba(0,0,0,.1)}.ig_action_bar.ig_bold .ig_button:active,.ig_action_bar.ig_bold input[type=submit]:active,.ig_action_bar.ig_bold input[type=button]:active{position:relative;-webkit-box-shadow:none;box-shadow:none;top:3px}.ig_action_bar.ig_bold.ig_hide .ig_close{background-color:#BC0933;border:.2em solid #FFF;-webkit-box-shadow:0 0 .3em rgba(0,0,0,.35);box-shadow:0 0 .3em rgba(0,0,0,.35);border-radius:.3em .3em 0 0}.ig_action_bar.ig_bold.ig_hide.ig_top .ig_close{border-top-width:0;margin-top:.15em;border-bottom-width:.2em;border-radius:0 0 .3em .3em}.ig_action_bar.ig_bold.ig_hide.ig_bottom .ig_close{margin-bottom:.15em}@media only screen and (max-width:768px){.ig_action_bar.ig_bold .ig_button,.ig_action_bar.ig_bold input[type=submit],.ig_action_bar.ig_bold input[type=button]{float:left;margin:.3em 0 .3em .7em}.ig_action_bar.ig_bold.ig_has_pwby .ig_button,.ig_action_bar.ig_bold.ig_has_pwby input[type=submit],.ig_action_bar.ig_bold.ig_has_pwby input[type=button]{margin-left:2.5em}}#ig_body_pushdown{display:none;position:relative;height:0;visibility:hidden;width:100%}.ig_action_bar,.ig_action_bar div{-webkit-box-sizing:border-box;box-sizing:border-box}.ig_action_bar.ig_container{position:fixed;width:100%;padding:0;margin:0;display:none;left:0;line-height:1.5;z-index:9999999}.ig_action_bar.ig_container.ig_top{top:0}.ig_action_bar.ig_container.ig_bottom{position:fixed;bottom:0}.ig_action_bar.ig_hide.ig_bottom{--transform-translate-x:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;-webkit-transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));--transform-translate-y:100%;-ms-transform:translateY(100%);-webkit-transform:translateY(100%)}.ig_action_bar.ig_hide.ig_top{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.ig_action_bar .ig_content{float:left;text-align:center;width:100%;padding:0 2.5em 0 0}.ig_action_bar .ig_data{text-align:center;display:inline-block;vertical-align:middle;margin:0;line-height:1.5;padding:.3em 1em .3em .7em}.ig_action_bar.ig_has_pwby .ig_data{padding-left:2.5em}.ig_action_bar .ig_headline{display:inline-block;font-weight:700;padding:0;line-height:1.25;font-size:1em}.ig_action_bar .ig_message{display:inline-block;padding:.2em 0 0;font-size:.85em;line-height:1.2}.ig_action_bar .ig_button,.ig_action_bar input[type=submit],.ig_action_bar input[type=button]{border-style:none;cursor:pointer;display:inline-block;font-weight:700;vertical-align:middle;text-align:center;float:none;--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));background-image:none;font-size:1em;letter-spacing:.05em;padding:.3em 1.5em;margin:.5em 0}.ig_action_bar .ig_powered_by{vertical-align:top;opacity:.5;display:inline-block;float:left;position:absolute;margin-top:0;z-index:22}.ig_action_bar .ig_powered_by img{width:1.5em;margin:.3em 0 0 .5em}.ig_action_bar .ig_close{cursor:pointer;position:absolute;right:0;-webkit-box-sizing:border-box;box-sizing:border-box;width:36px;height:36px;z-index:1000000}.ig_action_bar .ig_close>span{height:100%;display:inline-block;background-image:url(../../../assets/images/sprite_1.png);background-repeat:no-repeat;width:30px;opacity:.7}.ig_action_bar .ig_close:hover>span{opacity:1}.ig_action_bar.ig_show .ig_close{background-color:transparent!important}.ig_action_bar.ig_hide .ig_close{position:fixed;border-style:none;right:.2em}.ig_action_bar.ig_hide.ig_top .ig_close{top:100%}.ig_action_bar.ig_hide.ig_bottom .ig_close{bottom:100%}.ig_action_bar.ig_hide.ig_bottom .ig_close>span,.ig_action_bar.ig_show.ig_top .ig_close>span{background-position:-80px center}.ig_action_bar.ig_hide.ig_top .ig_close>span,.ig_action_bar.ig_show.ig_bottom .ig_close>span{background-position:-120px center}@media only screen and (max-width:768px){.ig_action_bar .ig_content{padding-right:0}.ig_action_bar .ig_data{width:100%;max-width:100%!important;padding-right:2.5em}.ig_action_bar .ig_button,.ig_action_bar input[type=submit],.ig_action_bar input[type=button]{max-width:100%;margin:.3em 0}.ig_action_bar.ig_show .ig_close{top:0}.ig_action_bar{font-size:18px}.ig_action_bar .ig_form_container .ig_embed_form_container{width:80%;font-size:.85em;margin:0 auto}}.ig_action_bar .ig_form_container{width:20%;float:left}.ig_action_bar.ig_form_bottom .ig_content,.ig_action_bar.ig_form_inline .ig_content,.ig_action_bar.ig_form_left .ig_content,.ig_action_bar.ig_form_right .ig_content{padding:0}.ig_action_bar.ig_form_left .ig_data,.ig_action_bar.ig_form_right .ig_data{float:left;width:79%;max-width:79%!important}.ig_action_bar.ig_form_left.ig_has_pwby .ig_data{width:79%;max-width:79%!important;padding-left:1em}.ig_action_bar.ig_form_bottom.ig_has_pwby .ig_form_container.layout_bottom,.ig_action_bar.ig_form_left.ig_has_pwby .ig_form_container.layout_left{padding-left:2.5em}.ig_action_bar.ig_form_bottom .ig_data{float:left}.ig_action_bar.ig_form_bottom .ig_data,.ig_action_bar.ig_form_inline .ig_data{width:100%;max-width:100%!important;padding-right:2.5em}.ig_action_bar.ig_form_right .ig_form_container.layout_right{float:right;padding-right:2.5em}.ig_action_bar.ig_form_bottom .ig_form_container.layout_bottom{padding-right:2.5em}.ig_action_bar.ig_form_inline .ig_form_container.layout_inline{padding-right:0}.ig_action_bar.ig_form_bottom .ig_form_container.layout_bottom .ig_embed_form_container,.ig_action_bar.ig_form_bottom .ig_form_container.layout_bottom .ig_form_footer,.ig_action_bar.ig_form_bottom .ig_form_container.layout_bottom .ig_form_header,.ig_action_bar.ig_form_inline .ig_form_container.layout_inline .ig_embed_form_container,.ig_action_bar.ig_form_inline .ig_form_container.layout_inline .ig_form_footer,.ig_action_bar.ig_form_inline .ig_form_container.layout_inline .ig_form_header{text-align:center}.ig_action_bar.ig_form_left.ig_form_style_4 .ig_data{padding-left:2em}.ig_action_bar.ig_form_right.ig_form_style_4 .ig_data{padding-right:2em}.ig_action_bar.ig_form_bottom.ig_form_style_4 .ig_form_container.layout_bottom{padding-top:0;padding-bottom:0;margin-top:1em}.ig_action_bar.ig_form_style_4.ig_hide .ig_form_container:before{display:none}@media only screen and (max-width:768px){.ig_action_bar.ig_form_left .ig_form_container.layout_left,.ig_action_bar.ig_form_right .ig_form_container.layout_right{display:none}.ig_action_bar.ig_form_bottom .ig_form_container.layout_bottom,.ig_action_bar.ig_form_left .ig_form_container.layout_bottom,.ig_action_bar.ig_form_right .ig_form_container.layout_bottom{display:block;width:100%;height:auto!important;padding:.7em 1em}.ig_action_bar.ig_form_bottom.ig_has_pwby .ig_form_container.layout_bottom,.ig_action_bar.ig_form_left.ig_has_pwby .ig_form_container.layout_bottom,.ig_action_bar.ig_form_right.ig_has_pwby .ig_form_container.layout_bottom{padding:.7em 1em}.ig_action_bar.ig_form_bottom .ig_data,.ig_action_bar.ig_form_left .ig_data,.ig_action_bar.ig_form_right .ig_data{width:100%;max-width:100%!important;padding-right:2.3em}.ig_action_bar.ig_form_left.ig_has_pwby .ig_data,.ig_action_bar.ig_form_right.ig_has_pwby .ig_data{padding-left:2.3em}.ig_action_bar .ig_form_container .ig_embed_form_container{width:60%;font-size:.85em;margin:0 auto}.ig_action_bar .ig_form_container .ig_embed_form_container.ig_half{width:100%}.ig_action_bar .ig_form_container.layout_bottom .ig_full .ig_form_els,.ig_action_bar .ig_form_container.layout_bottom .ig_half .ig_form_els,.ig_action_bar .ig_form_container.layout_bottom .ig_quater .ig_form_els,.ig_action_bar .ig_form_container.layout_bottom .ig_third .ig_form_els,.ig_action_bar .ig_form_container.layout_inline .ig_full .ig_form_els,.ig_action_bar .ig_form_container.layout_inline .ig_half .ig_form_els,.ig_action_bar .ig_form_container.layout_inline .ig_quater .ig_form_els,.ig_action_bar .ig_form_container.layout_inline .ig_third .ig_form_els{display:inline-block;float:left;width:99%;margin:.25em auto}.ig_action_bar .ig_form_container.layout_bottom .ig_half .ig_form_els,.ig_action_bar .ig_form_container.layout_inline .ig_half .ig_form_els{width:49%}.ig_action_bar .ig_form_container.layout_bottom .ig_full .ig_button_label,.ig_action_bar .ig_form_container.layout_bottom .ig_half .ig_button_label,.ig_action_bar .ig_form_container.layout_bottom .ig_quater .ig_button_label,.ig_action_bar .ig_form_container.layout_bottom .ig_third .ig_button_label,.ig_action_bar .ig_form_container.layout_inline .ig_full .ig_button_label,.ig_action_bar .ig_form_container.layout_inline .ig_half .ig_button_label,.ig_action_bar .ig_form_container.layout_inline .ig_quater .ig_button_label,.ig_action_bar .ig_form_container.layout_inline .ig_third .ig_button_label{display:none}.ig_action_bar .ig_form_container.layout_bottom .ig_half .ig_button_label,.ig_action_bar .ig_form_container.layout_inline .ig_half .ig_button_label{display:block;visibility:hidden;opacity:0}.ig_action_bar .ig_form_container.layout_bottom .ig_button,.ig_action_bar .ig_form_container.layout_bottom input[type=submit],.ig_action_bar .ig_form_container.layout_bottom input[type=button],.ig_action_bar .ig_form_container.layout_inline .ig_button,.ig_action_bar .ig_form_container.layout_inline input[type=submit],.ig_action_bar .ig_form_container.layout_inline input[type=button]{margin:0 auto}.ig_action_bar.ig_form_left.ig_form_style_1 .ig_form_container.layout_bottom:before,.ig_action_bar.ig_form_right.ig_form_style_1 .ig_form_container.layout_bottom:before{width:100%;border-top-width:.2em}.ig_action_bar.ig_form_bottom.ig_form_style_1 .ig_form_container.layout_bottom:before{border-top-width:.2em}.ig_action_bar.ig_form_style_2 .ig_form_container .ig_form_els{margin-left:0;margin-right:0}.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els input,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_first input,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_last input,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els input,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_first input,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_last input{border-radius:2em;padding-left:1em;height:2.25em;line-height:2.2em}.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els input.ig_button,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els input.ig_button{padding:inherit}.ig_action_bar.ig_form_left.ig_form_style_4 .ig_data,.ig_action_bar.ig_form_style_2 .ig_form_container .ig_half .ig_form_els.ig_form_els_first label,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els label,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_first label,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_last label,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els label,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_first label,.ig_action_bar.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_last label{padding-left:1em}.ig_action_bar.ig_form_style_2 .ig_form_container .ig_half .ig_form_els.ig_form_els_first input{border-right-width:0;border-radius:2em 0 0 2em;padding-left:1em}.ig_action_bar.ig_form_style_2 .ig_form_container .ig_half .ig_form_els.ig_form_els_last input{border-left-width:0;border-radius:0 2em 2em 0}.ig_action_bar.ig_form_style_2 .ig_form_container .ig_half .ig_form_els .ig_button,.ig_action_bar.ig_form_style_2 .ig_form_container .ig_half .ig_form_els input{width:100%}.ig_action_bar.ig_form_right.ig_form_style_4 .ig_data{padding-right:2.5em}.ig_action_bar.ig_form_left.ig_form_style_4 .ig_form_container,.ig_action_bar.ig_form_right.ig_form_style_4 .ig_form_container{margin-top:1em}.ig_action_bar.ig_form_bottom.ig_form_style_4 .ig_form_container,.ig_action_bar.ig_form_left.ig_form_style_4 .ig_form_container,.ig_action_bar.ig_form_right.ig_form_style_4 .ig_form_container{padding-top:0;padding-bottom:0}}@media only screen and (max-width:644px){.ig_action_bar .ig_form_container .ig_embed_form_container,.ig_action_bar.ig_form_inline .ig_form_container .ig_embed_form_container{width:70%}}@media only screen and (max-width:375px){.ig_action_bar.ig_form_inline .ig_form_container .ig_embed_form_container{width:100%}}.ig_action_bar.ig_hello.ig_container{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));line-height:1.5;background-color:#EB5B31;border-bottom:.2em solid #fff;-webkit-box-shadow:0 0 .6em 0 rgba(0,0,0,.4);box-shadow:0 0 .6em 0 rgba(0,0,0,.4)}.ig_action_bar.ig_hello.ig_container.ig_bottom{border-bottom-width:0;border-top:.2em solid #fff}.ig_action_bar.ig_hello .ig_headline{font-weight:700;margin-right:.5em}.ig_action_bar.ig_hello .ig_message{margin-right:.5em}.ig_action_bar.ig_hello .ig_button,.ig_action_bar.ig_hello input[type=submit],.ig_action_bar.ig_hello input[type=button]{font-weight:400;float:none;background-color:#4A4844;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(51,51,51,.4)));background-image:linear-gradient(top,transparent 0,rgba(51,51,51,.4) 100%);-webkit-box-shadow:1px 1px 3px rgba(0,0,0,.28);box-shadow:1px 1px 3px rgba(0,0,0,.28);border-radius:.25em;padding:.2em 1.3em}.ig_action_bar.ig_hello .ig_button:hover,.ig_action_bar.ig_hello input[type=submit]:hover,.ig_action_bar.ig_hello input[type=button]:hover{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";filter:alpha(opacity=80);opacity:.8}.ig_action_bar.ig_hello.ig_hide .ig_close{background-color:#EB5B31;border:.2em solid #FFF;border-bottom-width:0;border-radius:.3em .3em 0 0;-webkit-box-shadow:0 0 .3em rgba(0,0,0,.35);box-shadow:0 0 .3em rgba(0,0,0,.35)}.ig_action_bar.ig_hello.ig_hide.ig_top .ig_close{border-top-width:0;margin-top:.15em;border-bottom-width:.2em;border-radius:0 0 .3em .3em}.ig_action_bar.ig_hello.ig_hide.ig_bottom .ig_close{margin-bottom:.15em}.ig_action_bar.ig_form_inline.ig_hello .ig_form_container.layout_inline{padding:.2em}.ig_action_bar.ig_form_inline.ig_hello .ig_headline{vertical-align:middle;margin-right:.5em}.ig_action_bar.ig_form_inline.ig_hello .ig_message{vertical-align:middle}.ig_action_bar.ig_solid.ig_container{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));background-color:#4E3363}.ig_action_bar.ig_solid .ig_data{float:left;text-align:left;max-width:75%}.ig_action_bar.ig_solid .ig_headline,.ig_action_bar.ig_solid .ig_message{display:block}.ig_action_bar.ig_solid .ig_button,.ig_action_bar.ig_solid input[type=submit],.ig_action_bar.ig_solid input[type=button]{float:right;background:#008010;border-radius:.1em}.ig_action_bar.ig_solid .ig_button:hover,.ig_action_bar.ig_solid input[type=submit]:hover,.ig_action_bar.ig_solid input[type=button]:hover{-webkit-box-shadow:inset 0 -4em 0 rgba(255,255,255,.15);box-shadow:inset 0 -4em 0 rgba(255,255,255,.15)}.ig_action_bar.ig_solid.ig_hide .ig_close{background-color:#4E3363}.ig_action_bar.ig_form_bottom.ig_solid .ig_form_container.layout_bottom .ig_embed_form_container,.ig_action_bar.ig_form_bottom.ig_solid .ig_form_container.layout_bottom .ig_form_footer,.ig_action_bar.ig_form_bottom.ig_solid .ig_form_container.layout_bottom .ig_form_header,.ig_action_bar.ig_form_inline.ig_solid .ig_form_container.layout_inline .ig_embed_form_container,.ig_action_bar.ig_form_inline.ig_solid .ig_form_container.layout_inline .ig_form_footer,.ig_action_bar.ig_form_inline.ig_solid .ig_form_container.layout_inline .ig_form_header{text-align:left}@media only screen and (max-width:768px){.ig_action_bar.ig_solid .ig_button,.ig_action_bar.ig_solid input[type=submit],.ig_action_bar.ig_solid input[type=button]{float:left;margin:.3em 0 .3em .7em}.ig_action_bar.ig_solid.ig_has_pwby .ig_button,.ig_action_bar.ig_solid.ig_has_pwby input[type=submit],.ig_action_bar.ig_solid.ig_has_pwby input[type=button]{margin-left:2.5em}}
|
lite/message-types/action-bar/themes/air-mail.css
CHANGED
@@ -1,14 +1,8 @@
|
|
1 |
-
|
2 |
-
@apply mt-4;
|
3 |
-
}
|
4 |
-
|
5 |
.ig_action_bar.ig_air-mail.ig_container {
|
6 |
/*background-color: #F2F2F2;*/
|
7 |
-
border-
|
8 |
color: #707070;
|
9 |
-
-moz-border-image: -moz-repeating-linear-gradient(45deg, #a83439, #a83439 10px, #fdfdfd 10px, #fdfdfd 20px, #2f4175 20px, #2f4175 30px, #fdfdfd 30px, #fdfdfd 40px) 8 round;
|
10 |
-
-webkit-border-image: -webkit-repeating-linear-gradient(45deg, #a83439, #a83439 10px, #fdfdfd 10px, #fdfdfd 20px, #2f4175 20px, #2f4175 30px, #fdfdfd 30px, #fdfdfd 40px) 8 round;
|
11 |
-
-o-border-image: -o-repeating-linear-gradient(45deg, #a83439, #a83439 10px, #fdfdfd 10px, #fdfdfd 20px, #2f4175 20px, #2f4175 30px, #fdfdfd 30px, #fdfdfd 40px) 8 round;
|
12 |
border-image: repeating-linear-gradient(45deg, #a83439, #a83439 10px, #fdfdfd 10px, #fdfdfd 20px, #2f4175 20px, #2f4175 30px, #fdfdfd 30px, #fdfdfd 40px) 8 round;
|
13 |
background-color: #fdfdfd;
|
14 |
}
|
@@ -23,28 +17,24 @@
|
|
23 |
|
24 |
.ig_action_bar.ig_air-mail .ig_data {
|
25 |
max-width: 75%;
|
26 |
-
float
|
27 |
-
text-align: left;
|
28 |
}
|
29 |
.ig_action_bar.ig_air-mail .ig_headline{
|
30 |
color: #2C4A9D;
|
31 |
}
|
32 |
.ig_action_bar.ig_air-mail .ig_headline,
|
33 |
.ig_action_bar.ig_air-mail .ig_message {
|
34 |
-
|
35 |
}
|
36 |
|
37 |
.ig_action_bar.ig_air-mail .ig_button,
|
38 |
-
.ig_action_bar.ig_air-mail input[type="submit"],
|
39 |
.ig_action_bar.ig_air-mail input[type="button"]{
|
40 |
-
float
|
41 |
-
background: #D82931;
|
42 |
-
text-transform: uppercase;
|
43 |
font-family: "Open Sans", sans-serif;
|
44 |
-
font-weight: 600;
|
45 |
border-radius: 4px;
|
|
|
46 |
/*border-bottom: 3px solid #BF3A2B;*/
|
47 |
-
border: none;
|
48 |
}
|
49 |
|
50 |
.ig_action_bar.ig_air-mail .ig_button:hover,
|
@@ -56,15 +46,15 @@
|
|
56 |
.ig_action_bar.ig_air-mail .ig_button:active,
|
57 |
.ig_action_bar.ig_air-mail input[type="submit"]:active,
|
58 |
.ig_action_bar.ig_air-mail input[type="button"]:active{
|
59 |
-
|
60 |
}
|
61 |
|
62 |
/*Commented for now, as it disturbs the whole layout */
|
63 |
-
/*
|
64 |
.ig_action_bar.ig_air-mail .ig_button:hover,
|
65 |
-
.ig_action_bar.ig_air-mail input[type="submit"]:hover,
|
66 |
.ig_action_bar.ig_air-mail input[type="button"]:hover{
|
67 |
-
margin-top: -3px;
|
68 |
border-bottom: 6px solid #c0392b;
|
69 |
}
|
70 |
*/
|
@@ -74,18 +64,18 @@
|
|
74 |
}
|
75 |
.ig_action_bar.ig_air-mail.ig_show.ig_bottom .ig_close > span,
|
76 |
.ig_action_bar.ig_air-mail.ig_show.ig_top .ig_close > span{
|
77 |
-
background-position: -520px center;
|
78 |
opacity: .4;
|
|
|
79 |
}
|
80 |
|
81 |
.ig_action_bar.ig_air-mail.ig_show.ig_bottom .ig_close:hover > span,
|
82 |
.ig_action_bar.ig_air-mail.ig_show.ig_top .ig_close:hover > span{
|
83 |
-
background-position: -520px center;
|
84 |
opacity: .8;
|
|
|
85 |
}
|
86 |
|
87 |
.ig_action_bar.ig_air-mail.ig_hide .ig_close {
|
88 |
-
|
89 |
}
|
90 |
.ig_action_bar.ig_form_inline.ig_air-mail .ig_form_container.layout_inline .ig_form_header,
|
91 |
.ig_action_bar.ig_form_bottom.ig_air-mail .ig_form_container.layout_bottom .ig_form_header,
|
@@ -93,19 +83,20 @@
|
|
93 |
.ig_action_bar.ig_form_bottom.ig_air-mail .ig_form_container.layout_bottom .ig_form_footer,
|
94 |
.ig_action_bar.ig_form_bottom.ig_air-mail .ig_form_container.layout_bottom .ig_embed_form_container,
|
95 |
.ig_action_bar.ig_form_inline.ig_air-mail .ig_form_container.layout_inline .ig_embed_form_container{
|
96 |
-
text-
|
97 |
}
|
98 |
|
99 |
@media only screen and (max-width: 768px){
|
100 |
-
.ig_action_bar.ig_air-mail .ig_button,
|
101 |
-
.ig_action_bar.ig_air-mail input[type="submit"],
|
102 |
.ig_action_bar.ig_air-mail input[type="button"] {
|
103 |
-
float
|
104 |
margin-left: .7em;
|
105 |
}
|
106 |
-
.ig_action_bar.ig_air-mail.ig_has_pwby .ig_button,
|
107 |
-
.ig_action_bar.ig_air-mail.ig_has_pwby input[type="submit"],
|
108 |
.ig_action_bar.ig_air-mail.ig_has_pwby input[type="button"] {
|
109 |
margin-left: 2.5em;
|
110 |
-
}
|
111 |
}
|
|
1 |
+
/* purgecss start ignore */
|
|
|
|
|
|
|
2 |
.ig_action_bar.ig_air-mail.ig_container {
|
3 |
/*background-color: #F2F2F2;*/
|
4 |
+
@apply border border-solid;
|
5 |
color: #707070;
|
|
|
|
|
|
|
6 |
border-image: repeating-linear-gradient(45deg, #a83439, #a83439 10px, #fdfdfd 10px, #fdfdfd 20px, #2f4175 20px, #2f4175 30px, #fdfdfd 30px, #fdfdfd 40px) 8 round;
|
7 |
background-color: #fdfdfd;
|
8 |
}
|
17 |
|
18 |
.ig_action_bar.ig_air-mail .ig_data {
|
19 |
max-width: 75%;
|
20 |
+
@apply float-left text-left;
|
|
|
21 |
}
|
22 |
.ig_action_bar.ig_air-mail .ig_headline{
|
23 |
color: #2C4A9D;
|
24 |
}
|
25 |
.ig_action_bar.ig_air-mail .ig_headline,
|
26 |
.ig_action_bar.ig_air-mail .ig_message {
|
27 |
+
@apply block;
|
28 |
}
|
29 |
|
30 |
.ig_action_bar.ig_air-mail .ig_button,
|
31 |
+
.ig_action_bar.ig_air-mail input[type="submit"],
|
32 |
.ig_action_bar.ig_air-mail input[type="button"]{
|
33 |
+
@apply float-right uppercase font-semibold border-none;
|
|
|
|
|
34 |
font-family: "Open Sans", sans-serif;
|
|
|
35 |
border-radius: 4px;
|
36 |
+
background: #D82931;
|
37 |
/*border-bottom: 3px solid #BF3A2B;*/
|
|
|
38 |
}
|
39 |
|
40 |
.ig_action_bar.ig_air-mail .ig_button:hover,
|
46 |
.ig_action_bar.ig_air-mail .ig_button:active,
|
47 |
.ig_action_bar.ig_air-mail input[type="submit"]:active,
|
48 |
.ig_action_bar.ig_air-mail input[type="button"]:active{
|
49 |
+
@apply shadow-none;
|
50 |
}
|
51 |
|
52 |
/*Commented for now, as it disturbs the whole layout */
|
53 |
+
/*
|
54 |
.ig_action_bar.ig_air-mail .ig_button:hover,
|
55 |
+
.ig_action_bar.ig_air-mail input[type="submit"]:hover,
|
56 |
.ig_action_bar.ig_air-mail input[type="button"]:hover{
|
57 |
+
margin-top: -3px;
|
58 |
border-bottom: 6px solid #c0392b;
|
59 |
}
|
60 |
*/
|
64 |
}
|
65 |
.ig_action_bar.ig_air-mail.ig_show.ig_bottom .ig_close > span,
|
66 |
.ig_action_bar.ig_air-mail.ig_show.ig_top .ig_close > span{
|
|
|
67 |
opacity: .4;
|
68 |
+
background-position: -520px center;
|
69 |
}
|
70 |
|
71 |
.ig_action_bar.ig_air-mail.ig_show.ig_bottom .ig_close:hover > span,
|
72 |
.ig_action_bar.ig_air-mail.ig_show.ig_top .ig_close:hover > span{
|
|
|
73 |
opacity: .8;
|
74 |
+
background-position: -520px center;
|
75 |
}
|
76 |
|
77 |
.ig_action_bar.ig_air-mail.ig_hide .ig_close {
|
78 |
+
@apply hidden;
|
79 |
}
|
80 |
.ig_action_bar.ig_form_inline.ig_air-mail .ig_form_container.layout_inline .ig_form_header,
|
81 |
.ig_action_bar.ig_form_bottom.ig_air-mail .ig_form_container.layout_bottom .ig_form_header,
|
83 |
.ig_action_bar.ig_form_bottom.ig_air-mail .ig_form_container.layout_bottom .ig_form_footer,
|
84 |
.ig_action_bar.ig_form_bottom.ig_air-mail .ig_form_container.layout_bottom .ig_embed_form_container,
|
85 |
.ig_action_bar.ig_form_inline.ig_air-mail .ig_form_container.layout_inline .ig_embed_form_container{
|
86 |
+
@apply text-left;
|
87 |
}
|
88 |
|
89 |
@media only screen and (max-width: 768px){
|
90 |
+
.ig_action_bar.ig_air-mail .ig_button,
|
91 |
+
.ig_action_bar.ig_air-mail input[type="submit"],
|
92 |
.ig_action_bar.ig_air-mail input[type="button"] {
|
93 |
+
@apply float-left;
|
94 |
margin-left: .7em;
|
95 |
}
|
96 |
+
.ig_action_bar.ig_air-mail.ig_has_pwby .ig_button,
|
97 |
+
.ig_action_bar.ig_air-mail.ig_has_pwby input[type="submit"],
|
98 |
.ig_action_bar.ig_air-mail.ig_has_pwby input[type="button"] {
|
99 |
margin-left: 2.5em;
|
100 |
+
}
|
101 |
}
|
102 |
+
/* purgecss end ignore */
|
lite/message-types/action-bar/themes/bold.css
CHANGED
@@ -1,28 +1,28 @@
|
|
|
|
1 |
.ig_action_bar.ig_bold.ig_container {
|
|
|
2 |
background-color: #BC0933;
|
3 |
-
color: #FFF;
|
4 |
border-bottom: solid .2em #F3EEEE;
|
5 |
box-shadow: 0 0 .6em 0 rgba(0, 0, 0, .4);
|
6 |
}
|
7 |
|
8 |
.ig_action_bar.ig_bold.ig_container.ig_bottom {
|
9 |
-
border-
|
10 |
border-top: solid .2em #F3EEEE;
|
11 |
}
|
12 |
.ig_action_bar.ig_bold .ig_data {
|
13 |
max-width: 75%;
|
14 |
-
float
|
15 |
-
text-align: left;
|
16 |
}
|
17 |
.ig_action_bar.ig_bold .ig_headline,
|
18 |
.ig_action_bar.ig_bold .ig_message {
|
19 |
-
|
20 |
}
|
21 |
|
22 |
.ig_action_bar.ig_bold .ig_button,
|
23 |
.ig_action_bar.ig_bold input[type="submit"],
|
24 |
.ig_action_bar.ig_bold input[type="button"]{
|
25 |
-
float
|
26 |
background: #00BB58;
|
27 |
border-radius: .2em;
|
28 |
box-shadow: inset 0 -3px 1px rgba(0, 0, 0, 0.35), 0 2px 2px rgba(0, 0, 0, 0.25);
|
@@ -32,23 +32,22 @@
|
|
32 |
.ig_action_bar.ig_bold .ig_button:active,
|
33 |
.ig_action_bar.ig_bold input[type="submit"]:active,
|
34 |
.ig_action_bar.ig_bold input[type="button"]:active{
|
35 |
-
|
36 |
top: 3px;
|
37 |
-
box-shadow: none;
|
38 |
}
|
39 |
|
40 |
.ig_action_bar.ig_bold.ig_hide .ig_close {
|
|
|
41 |
background-color: #BC0933;
|
42 |
border: .2em solid #FFF;
|
43 |
-
border-bottom-width: 0;
|
44 |
box-shadow: 0 0 .3em rgba(0, 0, 0, 0.35);
|
45 |
border-radius: .3em .3em 0 0 ;
|
46 |
}
|
47 |
|
48 |
.ig_action_bar.ig_bold.ig_hide.ig_top .ig_close {
|
|
|
49 |
margin-top: .15em;
|
50 |
border-bottom-width: .2em;
|
51 |
-
border-top-width: 0;
|
52 |
border-radius: 0 0 .3em .3em;
|
53 |
}
|
54 |
.ig_action_bar.ig_bold.ig_hide.ig_bottom .ig_close {
|
@@ -61,7 +60,7 @@
|
|
61 |
.ig_action_bar.ig_form_bottom.ig_bold .ig_form_container.layout_bottom .ig_form_footer,
|
62 |
.ig_action_bar.ig_form_bottom.ig_bold .ig_form_container.layout_bottom .ig_embed_form_container,
|
63 |
.ig_action_bar.ig_form_inline.ig_bold .ig_form_container.layout_inline .ig_embed_form_container{
|
64 |
-
text-
|
65 |
}
|
66 |
/****************** Responsiveness: Start *******************/
|
67 |
|
@@ -69,7 +68,7 @@
|
|
69 |
.ig_action_bar.ig_bold .ig_button,
|
70 |
.ig_action_bar.ig_bold input[type="submit"],
|
71 |
.ig_action_bar.ig_bold input[type="button"] {
|
72 |
-
float
|
73 |
margin: 0.3em 0 0.3em .7em;
|
74 |
}
|
75 |
.ig_action_bar.ig_bold.ig_has_pwby .ig_button,
|
@@ -79,3 +78,4 @@
|
|
79 |
}
|
80 |
}
|
81 |
|
|
1 |
+
/* purgecss start ignore */
|
2 |
.ig_action_bar.ig_bold.ig_container {
|
3 |
+
@apply text-white;
|
4 |
background-color: #BC0933;
|
|
|
5 |
border-bottom: solid .2em #F3EEEE;
|
6 |
box-shadow: 0 0 .6em 0 rgba(0, 0, 0, .4);
|
7 |
}
|
8 |
|
9 |
.ig_action_bar.ig_bold.ig_container.ig_bottom {
|
10 |
+
@apply border-b-0;
|
11 |
border-top: solid .2em #F3EEEE;
|
12 |
}
|
13 |
.ig_action_bar.ig_bold .ig_data {
|
14 |
max-width: 75%;
|
15 |
+
@apply float-left text-left;
|
|
|
16 |
}
|
17 |
.ig_action_bar.ig_bold .ig_headline,
|
18 |
.ig_action_bar.ig_bold .ig_message {
|
19 |
+
@apply block;
|
20 |
}
|
21 |
|
22 |
.ig_action_bar.ig_bold .ig_button,
|
23 |
.ig_action_bar.ig_bold input[type="submit"],
|
24 |
.ig_action_bar.ig_bold input[type="button"]{
|
25 |
+
@apply float-right;
|
26 |
background: #00BB58;
|
27 |
border-radius: .2em;
|
28 |
box-shadow: inset 0 -3px 1px rgba(0, 0, 0, 0.35), 0 2px 2px rgba(0, 0, 0, 0.25);
|
32 |
.ig_action_bar.ig_bold .ig_button:active,
|
33 |
.ig_action_bar.ig_bold input[type="submit"]:active,
|
34 |
.ig_action_bar.ig_bold input[type="button"]:active{
|
35 |
+
@apply relative shadow-none;
|
36 |
top: 3px;
|
|
|
37 |
}
|
38 |
|
39 |
.ig_action_bar.ig_bold.ig_hide .ig_close {
|
40 |
+
@apply border-b-0;
|
41 |
background-color: #BC0933;
|
42 |
border: .2em solid #FFF;
|
|
|
43 |
box-shadow: 0 0 .3em rgba(0, 0, 0, 0.35);
|
44 |
border-radius: .3em .3em 0 0 ;
|
45 |
}
|
46 |
|
47 |
.ig_action_bar.ig_bold.ig_hide.ig_top .ig_close {
|
48 |
+
@apply border-t-0;
|
49 |
margin-top: .15em;
|
50 |
border-bottom-width: .2em;
|
|
|
51 |
border-radius: 0 0 .3em .3em;
|
52 |
}
|
53 |
.ig_action_bar.ig_bold.ig_hide.ig_bottom .ig_close {
|
60 |
.ig_action_bar.ig_form_bottom.ig_bold .ig_form_container.layout_bottom .ig_form_footer,
|
61 |
.ig_action_bar.ig_form_bottom.ig_bold .ig_form_container.layout_bottom .ig_embed_form_container,
|
62 |
.ig_action_bar.ig_form_inline.ig_bold .ig_form_container.layout_inline .ig_embed_form_container{
|
63 |
+
@apply text-left;
|
64 |
}
|
65 |
/****************** Responsiveness: Start *******************/
|
66 |
|
68 |
.ig_action_bar.ig_bold .ig_button,
|
69 |
.ig_action_bar.ig_bold input[type="submit"],
|
70 |
.ig_action_bar.ig_bold input[type="button"] {
|
71 |
+
@apply float-left;
|
72 |
margin: 0.3em 0 0.3em .7em;
|
73 |
}
|
74 |
.ig_action_bar.ig_bold.ig_has_pwby .ig_button,
|
78 |
}
|
79 |
}
|
80 |
|
81 |
+
/* purgecss end ignore */
|
lite/message-types/action-bar/themes/default.css
CHANGED
@@ -1,35 +1,26 @@
|
|
|
|
1 |
#ig_body_pushdown{
|
2 |
-
|
3 |
-
position: relative;
|
4 |
-
height: 0;
|
5 |
-
visibility: hidden;
|
6 |
-
width: 100%;
|
7 |
}
|
8 |
.ig_action_bar, .ig_action_bar div {
|
9 |
-
|
10 |
}
|
11 |
.ig_action_bar.ig_container {
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
padding: 0;
|
16 |
-
margin: 0;
|
17 |
-
display: none;
|
18 |
-
left: 0;
|
19 |
-
line-height: 1.5;
|
20 |
}
|
21 |
.ig_action_bar.ig_container.ig_top{
|
22 |
-
|
23 |
}
|
24 |
|
25 |
.ig_action_bar.ig_container.ig_bottom {
|
26 |
-
|
27 |
-
bottom: 0;
|
28 |
}
|
29 |
.ig_action_bar.ig_hide.ig_bottom {
|
|
|
30 |
-ms-transform: translateY(100%);
|
31 |
-webkit-transform: translateY(100%);
|
32 |
-
transform: translateY(100%);
|
33 |
}
|
34 |
.ig_action_bar.ig_hide.ig_top{
|
35 |
-ms-transform: translateY(-100%);
|
@@ -38,60 +29,45 @@
|
|
38 |
}
|
39 |
|
40 |
.ig_action_bar .ig_content {
|
41 |
-
float
|
42 |
-
text-align: center;
|
43 |
-
width: 100%;
|
44 |
-
padding: 0 ;
|
45 |
padding-right: 2.5em;
|
46 |
}
|
47 |
|
48 |
.ig_action_bar .ig_data{
|
49 |
-
text-align
|
50 |
-
padding: .3em 1em .3em .7em;
|
51 |
-
display: inline-block;
|
52 |
line-height: 1.5;
|
53 |
-
|
54 |
-
|
55 |
}
|
56 |
.ig_action_bar.ig_has_pwby .ig_data{
|
57 |
padding-left: 2.5em;
|
58 |
}
|
59 |
|
60 |
.ig_action_bar .ig_headline {
|
61 |
-
|
62 |
-
font-size: 1em;
|
63 |
line-height: 1.25;
|
64 |
-
font-
|
65 |
-
padding: 0;
|
66 |
}
|
67 |
|
68 |
.ig_action_bar .ig_message {
|
|
|
69 |
/*font-size: .9em;*/
|
70 |
-
display: inline-block;
|
71 |
font-size: .85em;
|
72 |
line-height: 1.2;
|
73 |
-
padding: 0;
|
74 |
padding-top: .2em;
|
75 |
}
|
76 |
|
77 |
.ig_action_bar .ig_button,
|
78 |
.ig_action_bar input[type="submit"],
|
79 |
.ig_action_bar input[type="button"] {
|
80 |
-
border
|
81 |
-
color: #FFF;
|
82 |
-
cursor: pointer;
|
83 |
-
display: inline-block;
|
84 |
font-size: 1em;
|
85 |
-
font-weight: 700;
|
86 |
letter-spacing: .05em;
|
87 |
/*vertical-align: text-bottom;*/
|
88 |
-
vertical-align: middle;
|
89 |
-
text-align: center;
|
90 |
padding: .3em 1.5em; /*test this accros themes*/
|
91 |
/*margin: 0.5em 3.5em .5em 0;*/
|
92 |
margin: 0.5em 0 .5em 0;
|
93 |
-
|
94 |
-
background-image: none;
|
95 |
}
|
96 |
.ig_action_bar .ig_button:hover,
|
97 |
.ig_action_bar input[type="submit"]:hover,
|
@@ -106,13 +82,8 @@
|
|
106 |
}
|
107 |
|
108 |
.ig_action_bar .ig_powered_by {
|
109 |
-
|
110 |
-
opacity: .5;
|
111 |
-
display: inline-block;
|
112 |
-
float: left;
|
113 |
z-index: 22;
|
114 |
-
position: absolute;
|
115 |
-
margin-top: 0;
|
116 |
}
|
117 |
|
118 |
.ig_action_bar .ig_powered_by img {
|
@@ -121,42 +92,36 @@
|
|
121 |
}
|
122 |
|
123 |
.ig_action_bar .ig_close {
|
124 |
-
|
125 |
-
cursor: pointer;
|
126 |
-
position: absolute;
|
127 |
-
/*right: .2em;*/
|
128 |
-
right: 0;
|
129 |
width: 36px;
|
130 |
height: 36px;
|
131 |
-
|
132 |
}
|
133 |
|
134 |
.ig_action_bar .ig_close > span{
|
|
|
135 |
background-image: url(../../../assets/images/sprite_1.png);
|
136 |
background-repeat: no-repeat;
|
137 |
width: 30px;
|
138 |
-
height: 100%;
|
139 |
opacity: .7;
|
140 |
-
display: inline-block;
|
141 |
}
|
142 |
|
143 |
.ig_action_bar .ig_close:hover > span{
|
144 |
-
opacity
|
145 |
}
|
146 |
.ig_action_bar.ig_show .ig_close {
|
147 |
/*top: .25em;*/
|
148 |
-
|
149 |
}
|
150 |
.ig_action_bar.ig_hide .ig_close {
|
151 |
-
|
152 |
-
border: none;
|
153 |
right: .2em;
|
154 |
}
|
155 |
.ig_action_bar.ig_hide.ig_top .ig_close {
|
156 |
-
top
|
157 |
}
|
158 |
.ig_action_bar.ig_hide.ig_bottom .ig_close {
|
159 |
-
bottom
|
160 |
}
|
161 |
.ig_action_bar.ig_show.ig_top .ig_close > span,
|
162 |
.ig_action_bar.ig_hide.ig_bottom .ig_close > span{
|
@@ -172,29 +137,28 @@
|
|
172 |
/****************** Responsiveness: Start *******************/
|
173 |
@media only screen and (max-width: 768px){
|
174 |
.ig_action_bar .ig_content {
|
175 |
-
|
176 |
}
|
177 |
.ig_action_bar .ig_data {
|
178 |
-
|
179 |
-
max-
|
180 |
padding-right: 2.5em;
|
181 |
}
|
182 |
.ig_action_bar .ig_button,
|
183 |
.ig_action_bar input[type="submit"],
|
184 |
.ig_action_bar input[type="button"] {
|
185 |
-
max-
|
186 |
margin: 0.3em 0;
|
187 |
}
|
188 |
.ig_action_bar.ig_show .ig_close {
|
189 |
/*top: initial;*/
|
190 |
-
top
|
191 |
}
|
192 |
.ig_action_bar{
|
193 |
font-size: 18px;
|
194 |
}
|
195 |
.ig_action_bar .ig_form_container .ig_embed_form_container{
|
196 |
-
|
197 |
-
margin: 0 auto;
|
198 |
font-size: .85em;
|
199 |
}
|
200 |
}
|
@@ -204,20 +168,19 @@
|
|
204 |
/****************** Embed Form: Start *******************/
|
205 |
|
206 |
.ig_action_bar .ig_form_container{
|
207 |
-
|
208 |
-
float: left;
|
209 |
}
|
210 |
.ig_action_bar.ig_form_left .ig_content,
|
211 |
.ig_action_bar.ig_form_right .ig_content,
|
212 |
.ig_action_bar.ig_form_bottom .ig_content,
|
213 |
.ig_action_bar.ig_form_inline .ig_content{
|
214 |
-
|
215 |
}
|
216 |
.ig_action_bar.ig_form_left .ig_data,
|
217 |
.ig_action_bar.ig_form_right .ig_data{
|
|
|
218 |
width: 79%;
|
219 |
max-width: 79% !important;
|
220 |
-
float: left;
|
221 |
}
|
222 |
.ig_action_bar.ig_form_left.ig_has_pwby .ig_data{
|
223 |
width: 79%;
|
@@ -226,16 +189,16 @@
|
|
226 |
}
|
227 |
|
228 |
.ig_action_bar.ig_form_bottom .ig_data{
|
229 |
-
float
|
230 |
}
|
231 |
.ig_action_bar.ig_form_bottom .ig_data,
|
232 |
.ig_action_bar.ig_form_inline .ig_data{
|
233 |
-
|
234 |
-
max-
|
235 |
padding-right: 2.5em;
|
236 |
}
|
237 |
.ig_action_bar.ig_form_right .ig_form_container.layout_right{
|
238 |
-
float
|
239 |
padding-right: 2.5em;
|
240 |
}
|
241 |
.ig_action_bar.ig_form_left.ig_has_pwby .ig_form_container.layout_left{
|
@@ -250,7 +213,7 @@
|
|
250 |
}
|
251 |
.ig_action_bar.ig_form_inline .ig_form_container.layout_inline{
|
252 |
/*padding-left: 0;*/
|
253 |
-
|
254 |
}
|
255 |
|
256 |
.ig_action_bar.ig_form_inline .ig_form_container.layout_inline .ig_form_header,
|
@@ -259,7 +222,7 @@
|
|
259 |
.ig_action_bar.ig_form_bottom .ig_form_container.layout_bottom .ig_form_footer,
|
260 |
.ig_action_bar.ig_form_bottom .ig_form_container.layout_bottom .ig_embed_form_container,
|
261 |
.ig_action_bar.ig_form_inline .ig_form_container.layout_inline .ig_embed_form_container{
|
262 |
-
text-
|
263 |
}
|
264 |
|
265 |
/****** Form Style: Style4 ******/
|
@@ -270,13 +233,12 @@
|
|
270 |
padding-right : 2em;
|
271 |
}
|
272 |
.ig_action_bar.ig_form_bottom.ig_form_style_4 .ig_form_container.layout_bottom{
|
273 |
-
|
274 |
-
padding-bottom: 0;
|
275 |
margin-top: 1em;
|
276 |
}
|
277 |
|
278 |
.ig_action_bar.ig_form_style_4.ig_hide .ig_form_container:before{
|
279 |
-
|
280 |
}
|
281 |
|
282 |
|
@@ -287,18 +249,17 @@
|
|
287 |
@media only screen and (max-width: 768px){
|
288 |
.ig_action_bar.ig_form_left .ig_form_container.layout_left,
|
289 |
.ig_action_bar.ig_form_right .ig_form_container.layout_right{
|
290 |
-
|
291 |
}
|
292 |
|
293 |
.ig_action_bar.ig_form_left .ig_form_container.layout_bottom,
|
294 |
.ig_action_bar.ig_form_right .ig_form_container.layout_bottom,
|
295 |
.ig_action_bar.ig_form_bottom .ig_form_container.layout_bottom{
|
296 |
-
|
297 |
-
|
298 |
/*font-size: 1.5em;*/
|
299 |
padding: .7em 1em;
|
300 |
/*padding-right: 1em;*/
|
301 |
-
height: auto !important;
|
302 |
}
|
303 |
.ig_action_bar.ig_form_left.ig_has_pwby .ig_form_container.layout_bottom,
|
304 |
.ig_action_bar.ig_form_right.ig_has_pwby .ig_form_container.layout_bottom,
|
@@ -309,8 +270,8 @@
|
|
309 |
.ig_action_bar.ig_form_left .ig_data,
|
310 |
.ig_action_bar.ig_form_bottom .ig_data,
|
311 |
.ig_action_bar.ig_form_right .ig_data{
|
312 |
-
|
313 |
-
max-
|
314 |
padding-right: 2.3em;
|
315 |
}
|
316 |
.ig_action_bar.ig_form_right.ig_has_pwby .ig_data,
|
@@ -321,13 +282,12 @@
|
|
321 |
}
|
322 |
|
323 |
.ig_action_bar .ig_form_container .ig_embed_form_container{
|
324 |
-
|
325 |
-
margin: 0 auto;
|
326 |
font-size: .85em;
|
327 |
}
|
328 |
/*.ig_action_bar.ig_form_inline .ig_form_container .ig_embed_form_container,*/
|
329 |
.ig_action_bar .ig_form_container .ig_embed_form_container.ig_half{
|
330 |
-
|
331 |
}
|
332 |
.ig_action_bar .ig_form_container.layout_bottom .ig_full .ig_form_els,
|
333 |
.ig_action_bar .ig_form_container.layout_inline .ig_full .ig_form_els,
|
@@ -337,9 +297,8 @@
|
|
337 |
.ig_action_bar .ig_form_container.layout_inline .ig_third .ig_form_els,
|
338 |
.ig_action_bar .ig_form_container.layout_bottom .ig_quater .ig_form_els,
|
339 |
.ig_action_bar .ig_form_container.layout_inline .ig_quater .ig_form_els{
|
|
|
340 |
width: 99%;
|
341 |
-
display: inline-block;
|
342 |
-
float: left;
|
343 |
margin: .25em auto;
|
344 |
/*margin: .5em auto 0 auto;*/
|
345 |
}
|
@@ -355,13 +314,11 @@
|
|
355 |
.ig_action_bar .ig_form_container.layout_inline .ig_third .ig_button_label,
|
356 |
.ig_action_bar .ig_form_container.layout_bottom .ig_quater .ig_button_label,
|
357 |
.ig_action_bar .ig_form_container.layout_inline .ig_quater .ig_button_label{
|
358 |
-
|
359 |
}
|
360 |
.ig_action_bar .ig_form_container.layout_bottom .ig_half .ig_button_label,
|
361 |
.ig_action_bar .ig_form_container.layout_inline .ig_half .ig_button_label{
|
362 |
-
|
363 |
-
visibility: hidden;
|
364 |
-
opacity: 0;
|
365 |
}
|
366 |
|
367 |
.ig_action_bar .ig_form_container.layout_inline .ig_button,
|
@@ -370,14 +327,14 @@
|
|
370 |
.ig_action_bar .ig_form_container.layout_bottom .ig_button,
|
371 |
.ig_action_bar .ig_form_container.layout_bottom input[type="submit"],
|
372 |
.ig_action_bar .ig_form_container.layout_bottom input[type="button"]{
|
373 |
-
|
374 |
}
|
375 |
/****** Form Style: Style 1 ******/
|
376 |
|
377 |
.ig_action_bar.ig_form_left.ig_form_style_1 .ig_form_container.layout_bottom:before,
|
378 |
.ig_action_bar.ig_form_right.ig_form_style_1 .ig_form_container.layout_bottom:before{
|
379 |
-
|
380 |
-
|
381 |
}
|
382 |
.ig_action_bar.ig_form_bottom.ig_form_style_1 .ig_form_container.layout_bottom:before{
|
383 |
border-top-width: .2em;
|
@@ -387,8 +344,7 @@
|
|
387 |
|
388 |
/*.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els,*/
|
389 |
.ig_action_bar.ig_form_style_2 .ig_form_container .ig_form_els{
|
390 |
-
|
391 |
-
margin-left: 0;
|
392 |
}
|
393 |
|
394 |
.ig_action_bar.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_first input,
|
@@ -417,9 +373,9 @@
|
|
417 |
}
|
418 |
/*.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_first input,*/
|
419 |
.ig_action_bar.ig_form_style_2 .ig_form_container .ig_half .ig_form_els.ig_form_els_first input{
|
|
|
420 |
border-radius: 2em 0 0 2em;
|
421 |
padding-left: 1em;
|
422 |
-
border-right-width: 0;
|
423 |
}
|
424 |
|
425 |
/*.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_first label,*/
|
@@ -429,12 +385,12 @@
|
|
429 |
|
430 |
/*.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_last input,*/
|
431 |
.ig_action_bar.ig_form_style_2 .ig_form_container .ig_half .ig_form_els.ig_form_els_last input{
|
|
|
432 |
border-radius: 0 2em 2em 0;
|
433 |
-
border-left-width: 0;
|
434 |
}
|
435 |
.ig_action_bar.ig_form_style_2 .ig_form_container .ig_half .ig_form_els .ig_button,
|
436 |
.ig_action_bar.ig_form_style_2 .ig_form_container .ig_half .ig_form_els input{
|
437 |
-
|
438 |
}
|
439 |
|
440 |
/****** Form Style: Style 4 ******/
|
@@ -453,8 +409,7 @@
|
|
453 |
.ig_action_bar.ig_form_left.ig_form_style_4 .ig_form_container,
|
454 |
.ig_action_bar.ig_form_right.ig_form_style_4 .ig_form_container,
|
455 |
.ig_action_bar.ig_form_bottom.ig_form_style_4 .ig_form_container{
|
456 |
-
|
457 |
-
padding-bottom: 0;
|
458 |
}
|
459 |
|
460 |
}
|
@@ -466,8 +421,8 @@
|
|
466 |
}
|
467 |
@media only screen and (max-width: 375px){
|
468 |
.ig_action_bar.ig_form_inline .ig_form_container .ig_embed_form_container{
|
469 |
-
|
470 |
}
|
471 |
}
|
472 |
|
473 |
-
|
1 |
+
/* purgecss start ignore */
|
2 |
#ig_body_pushdown{
|
3 |
+
@apply hidden relative h-0 invisible w-full;
|
|
|
|
|
|
|
|
|
4 |
}
|
5 |
.ig_action_bar, .ig_action_bar div {
|
6 |
+
@apply box-border;
|
7 |
}
|
8 |
.ig_action_bar.ig_container {
|
9 |
+
@apply fixed w-full p-0 m-0 hidden left-0;
|
10 |
+
line-height: 1.5;
|
11 |
+
z-index: 9999999;
|
|
|
|
|
|
|
|
|
|
|
12 |
}
|
13 |
.ig_action_bar.ig_container.ig_top{
|
14 |
+
@apply top-0;
|
15 |
}
|
16 |
|
17 |
.ig_action_bar.ig_container.ig_bottom {
|
18 |
+
@apply fixed bottom-0;
|
|
|
19 |
}
|
20 |
.ig_action_bar.ig_hide.ig_bottom {
|
21 |
+
@apply transform translate-y-full;
|
22 |
-ms-transform: translateY(100%);
|
23 |
-webkit-transform: translateY(100%);
|
|
|
24 |
}
|
25 |
.ig_action_bar.ig_hide.ig_top{
|
26 |
-ms-transform: translateY(-100%);
|
29 |
}
|
30 |
|
31 |
.ig_action_bar .ig_content {
|
32 |
+
@apply float-left text-center w-full p-0;
|
|
|
|
|
|
|
33 |
padding-right: 2.5em;
|
34 |
}
|
35 |
|
36 |
.ig_action_bar .ig_data{
|
37 |
+
@apply text-center inline-block align-middle m-0;
|
|
|
|
|
38 |
line-height: 1.5;
|
39 |
+
padding: .3em 1em .3em .7em;
|
40 |
+
|
41 |
}
|
42 |
.ig_action_bar.ig_has_pwby .ig_data{
|
43 |
padding-left: 2.5em;
|
44 |
}
|
45 |
|
46 |
.ig_action_bar .ig_headline {
|
47 |
+
@apply inline-block font-bold p-0;
|
|
|
48 |
line-height: 1.25;
|
49 |
+
font-size: 1em;
|
|
|
50 |
}
|
51 |
|
52 |
.ig_action_bar .ig_message {
|
53 |
+
@apply inline-block p-0;
|
54 |
/*font-size: .9em;*/
|
|
|
55 |
font-size: .85em;
|
56 |
line-height: 1.2;
|
|
|
57 |
padding-top: .2em;
|
58 |
}
|
59 |
|
60 |
.ig_action_bar .ig_button,
|
61 |
.ig_action_bar input[type="submit"],
|
62 |
.ig_action_bar input[type="button"] {
|
63 |
+
@apply border-none cursor-pointer inline-block font-bold align-middle text-center float-none text-white bg-none;
|
|
|
|
|
|
|
64 |
font-size: 1em;
|
|
|
65 |
letter-spacing: .05em;
|
66 |
/*vertical-align: text-bottom;*/
|
|
|
|
|
67 |
padding: .3em 1.5em; /*test this accros themes*/
|
68 |
/*margin: 0.5em 3.5em .5em 0;*/
|
69 |
margin: 0.5em 0 .5em 0;
|
70 |
+
/*background-image: none;*/
|
|
|
71 |
}
|
72 |
.ig_action_bar .ig_button:hover,
|
73 |
.ig_action_bar input[type="submit"]:hover,
|
82 |
}
|
83 |
|
84 |
.ig_action_bar .ig_powered_by {
|
85 |
+
@apply align-top opacity-50 inline-block float-left absolute mt-0;
|
|
|
|
|
|
|
86 |
z-index: 22;
|
|
|
|
|
87 |
}
|
88 |
|
89 |
.ig_action_bar .ig_powered_by img {
|
92 |
}
|
93 |
|
94 |
.ig_action_bar .ig_close {
|
95 |
+
@apply cursor-pointer absolute right-0 box-border;
|
|
|
|
|
|
|
|
|
96 |
width: 36px;
|
97 |
height: 36px;
|
98 |
+
z-index: 1000000;
|
99 |
}
|
100 |
|
101 |
.ig_action_bar .ig_close > span{
|
102 |
+
@apply h-full inline-block;
|
103 |
background-image: url(../../../assets/images/sprite_1.png);
|
104 |
background-repeat: no-repeat;
|
105 |
width: 30px;
|
|
|
106 |
opacity: .7;
|
|
|
107 |
}
|
108 |
|
109 |
.ig_action_bar .ig_close:hover > span{
|
110 |
+
@apply opacity-100;
|
111 |
}
|
112 |
.ig_action_bar.ig_show .ig_close {
|
113 |
/*top: .25em;*/
|
114 |
+
@apply bg-transparent !important;
|
115 |
}
|
116 |
.ig_action_bar.ig_hide .ig_close {
|
117 |
+
@apply fixed border-none;
|
|
|
118 |
right: .2em;
|
119 |
}
|
120 |
.ig_action_bar.ig_hide.ig_top .ig_close {
|
121 |
+
@apply top-full;
|
122 |
}
|
123 |
.ig_action_bar.ig_hide.ig_bottom .ig_close {
|
124 |
+
@apply bottom-full;
|
125 |
}
|
126 |
.ig_action_bar.ig_show.ig_top .ig_close > span,
|
127 |
.ig_action_bar.ig_hide.ig_bottom .ig_close > span{
|
137 |
/****************** Responsiveness: Start *******************/
|
138 |
@media only screen and (max-width: 768px){
|
139 |
.ig_action_bar .ig_content {
|
140 |
+
@apply pr-0;
|
141 |
}
|
142 |
.ig_action_bar .ig_data {
|
143 |
+
@apply w-full; /* default */
|
144 |
+
@apply max-w-full !important;
|
145 |
padding-right: 2.5em;
|
146 |
}
|
147 |
.ig_action_bar .ig_button,
|
148 |
.ig_action_bar input[type="submit"],
|
149 |
.ig_action_bar input[type="button"] {
|
150 |
+
@apply max-w-full;
|
151 |
margin: 0.3em 0;
|
152 |
}
|
153 |
.ig_action_bar.ig_show .ig_close {
|
154 |
/*top: initial;*/
|
155 |
+
@apply top-0;
|
156 |
}
|
157 |
.ig_action_bar{
|
158 |
font-size: 18px;
|
159 |
}
|
160 |
.ig_action_bar .ig_form_container .ig_embed_form_container{
|
161 |
+
@apply w-4/5 my-0 mx-auto;
|
|
|
162 |
font-size: .85em;
|
163 |
}
|
164 |
}
|
168 |
/****************** Embed Form: Start *******************/
|
169 |
|
170 |
.ig_action_bar .ig_form_container{
|
171 |
+
@apply w-1/5 float-left;
|
|
|
172 |
}
|
173 |
.ig_action_bar.ig_form_left .ig_content,
|
174 |
.ig_action_bar.ig_form_right .ig_content,
|
175 |
.ig_action_bar.ig_form_bottom .ig_content,
|
176 |
.ig_action_bar.ig_form_inline .ig_content{
|
177 |
+
@apply p-0;
|
178 |
}
|
179 |
.ig_action_bar.ig_form_left .ig_data,
|
180 |
.ig_action_bar.ig_form_right .ig_data{
|
181 |
+
@apply float-left;
|
182 |
width: 79%;
|
183 |
max-width: 79% !important;
|
|
|
184 |
}
|
185 |
.ig_action_bar.ig_form_left.ig_has_pwby .ig_data{
|
186 |
width: 79%;
|
189 |
}
|
190 |
|
191 |
.ig_action_bar.ig_form_bottom .ig_data{
|
192 |
+
@apply float-left;
|
193 |
}
|
194 |
.ig_action_bar.ig_form_bottom .ig_data,
|
195 |
.ig_action_bar.ig_form_inline .ig_data{
|
196 |
+
@apply w-full;
|
197 |
+
@apply max-w-full !important;
|
198 |
padding-right: 2.5em;
|
199 |
}
|
200 |
.ig_action_bar.ig_form_right .ig_form_container.layout_right{
|
201 |
+
@apply float-right;
|
202 |
padding-right: 2.5em;
|
203 |
}
|
204 |
.ig_action_bar.ig_form_left.ig_has_pwby .ig_form_container.layout_left{
|
213 |
}
|
214 |
.ig_action_bar.ig_form_inline .ig_form_container.layout_inline{
|
215 |
/*padding-left: 0;*/
|
216 |
+
@apply pr-0;
|
217 |
}
|
218 |
|
219 |
.ig_action_bar.ig_form_inline .ig_form_container.layout_inline .ig_form_header,
|
222 |
.ig_action_bar.ig_form_bottom .ig_form_container.layout_bottom .ig_form_footer,
|
223 |
.ig_action_bar.ig_form_bottom .ig_form_container.layout_bottom .ig_embed_form_container,
|
224 |
.ig_action_bar.ig_form_inline .ig_form_container.layout_inline .ig_embed_form_container{
|
225 |
+
@apply text-center;
|
226 |
}
|
227 |
|
228 |
/****** Form Style: Style4 ******/
|
233 |
padding-right : 2em;
|
234 |
}
|
235 |
.ig_action_bar.ig_form_bottom.ig_form_style_4 .ig_form_container.layout_bottom{
|
236 |
+
@apply py-0;
|
|
|
237 |
margin-top: 1em;
|
238 |
}
|
239 |
|
240 |
.ig_action_bar.ig_form_style_4.ig_hide .ig_form_container:before{
|
241 |
+
@apply hidden;
|
242 |
}
|
243 |
|
244 |
|
249 |
@media only screen and (max-width: 768px){
|
250 |
.ig_action_bar.ig_form_left .ig_form_container.layout_left,
|
251 |
.ig_action_bar.ig_form_right .ig_form_container.layout_right{
|
252 |
+
@apply hidden;
|
253 |
}
|
254 |
|
255 |
.ig_action_bar.ig_form_left .ig_form_container.layout_bottom,
|
256 |
.ig_action_bar.ig_form_right .ig_form_container.layout_bottom,
|
257 |
.ig_action_bar.ig_form_bottom .ig_form_container.layout_bottom{
|
258 |
+
@apply block w-full;
|
259 |
+
@apply h-auto !important;
|
260 |
/*font-size: 1.5em;*/
|
261 |
padding: .7em 1em;
|
262 |
/*padding-right: 1em;*/
|
|
|
263 |
}
|
264 |
.ig_action_bar.ig_form_left.ig_has_pwby .ig_form_container.layout_bottom,
|
265 |
.ig_action_bar.ig_form_right.ig_has_pwby .ig_form_container.layout_bottom,
|
270 |
.ig_action_bar.ig_form_left .ig_data,
|
271 |
.ig_action_bar.ig_form_bottom .ig_data,
|
272 |
.ig_action_bar.ig_form_right .ig_data{
|
273 |
+
@apply w-full;
|
274 |
+
@apply max-w-full !important;
|
275 |
padding-right: 2.3em;
|
276 |
}
|
277 |
.ig_action_bar.ig_form_right.ig_has_pwby .ig_data,
|
282 |
}
|
283 |
|
284 |
.ig_action_bar .ig_form_container .ig_embed_form_container{
|
285 |
+
@apply w-3/5 my-0 mx-auto;
|
|
|
286 |
font-size: .85em;
|
287 |
}
|
288 |
/*.ig_action_bar.ig_form_inline .ig_form_container .ig_embed_form_container,*/
|
289 |
.ig_action_bar .ig_form_container .ig_embed_form_container.ig_half{
|
290 |
+
@apply w-full;
|
291 |
}
|
292 |
.ig_action_bar .ig_form_container.layout_bottom .ig_full .ig_form_els,
|
293 |
.ig_action_bar .ig_form_container.layout_inline .ig_full .ig_form_els,
|
297 |
.ig_action_bar .ig_form_container.layout_inline .ig_third .ig_form_els,
|
298 |
.ig_action_bar .ig_form_container.layout_bottom .ig_quater .ig_form_els,
|
299 |
.ig_action_bar .ig_form_container.layout_inline .ig_quater .ig_form_els{
|
300 |
+
@apply inline-block float-left;
|
301 |
width: 99%;
|
|
|
|
|
302 |
margin: .25em auto;
|
303 |
/*margin: .5em auto 0 auto;*/
|
304 |
}
|
314 |
.ig_action_bar .ig_form_container.layout_inline .ig_third .ig_button_label,
|
315 |
.ig_action_bar .ig_form_container.layout_bottom .ig_quater .ig_button_label,
|
316 |
.ig_action_bar .ig_form_container.layout_inline .ig_quater .ig_button_label{
|
317 |
+
@apply hidden;
|
318 |
}
|
319 |
.ig_action_bar .ig_form_container.layout_bottom .ig_half .ig_button_label,
|
320 |
.ig_action_bar .ig_form_container.layout_inline .ig_half .ig_button_label{
|
321 |
+
@apply block invisible opacity-0;
|
|
|
|
|
322 |
}
|
323 |
|
324 |
.ig_action_bar .ig_form_container.layout_inline .ig_button,
|
327 |
.ig_action_bar .ig_form_container.layout_bottom .ig_button,
|
328 |
.ig_action_bar .ig_form_container.layout_bottom input[type="submit"],
|
329 |
.ig_action_bar .ig_form_container.layout_bottom input[type="button"]{
|
330 |
+
@apply my-0 mx-auto;
|
331 |
}
|
332 |
/****** Form Style: Style 1 ******/
|
333 |
|
334 |
.ig_action_bar.ig_form_left.ig_form_style_1 .ig_form_container.layout_bottom:before,
|
335 |
.ig_action_bar.ig_form_right.ig_form_style_1 .ig_form_container.layout_bottom:before{
|
336 |
+
@apply w-full;
|
337 |
+
border-top-width: .2em;
|
338 |
}
|
339 |
.ig_action_bar.ig_form_bottom.ig_form_style_1 .ig_form_container.layout_bottom:before{
|
340 |
border-top-width: .2em;
|
344 |
|
345 |
/*.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els,*/
|
346 |
.ig_action_bar.ig_form_style_2 .ig_form_container .ig_form_els{
|
347 |
+
@apply mx-0;
|
|
|
348 |
}
|
349 |
|
350 |
.ig_action_bar.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_first input,
|
373 |
}
|
374 |
/*.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_first input,*/
|
375 |
.ig_action_bar.ig_form_style_2 .ig_form_container .ig_half .ig_form_els.ig_form_els_first input{
|
376 |
+
@apply border-r-0;
|
377 |
border-radius: 2em 0 0 2em;
|
378 |
padding-left: 1em;
|
|
|
379 |
}
|
380 |
|
381 |
/*.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_first label,*/
|
385 |
|
386 |
/*.ig_action_bar.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_last input,*/
|
387 |
.ig_action_bar.ig_form_style_2 .ig_form_container .ig_half .ig_form_els.ig_form_els_last input{
|
388 |
+
@apply border-l-0;
|
389 |
border-radius: 0 2em 2em 0;
|
|
|
390 |
}
|
391 |
.ig_action_bar.ig_form_style_2 .ig_form_container .ig_half .ig_form_els .ig_button,
|
392 |
.ig_action_bar.ig_form_style_2 .ig_form_container .ig_half .ig_form_els input{
|
393 |
+
@apply w-full;
|
394 |
}
|
395 |
|
396 |
/****** Form Style: Style 4 ******/
|
409 |
.ig_action_bar.ig_form_left.ig_form_style_4 .ig_form_container,
|
410 |
.ig_action_bar.ig_form_right.ig_form_style_4 .ig_form_container,
|
411 |
.ig_action_bar.ig_form_bottom.ig_form_style_4 .ig_form_container{
|
412 |
+
@apply py-0;
|
|
|
413 |
}
|
414 |
|
415 |
}
|
421 |
}
|
422 |
@media only screen and (max-width: 375px){
|
423 |
.ig_action_bar.ig_form_inline .ig_form_container .ig_embed_form_container{
|
424 |
+
@apply w-full;
|
425 |
}
|
426 |
}
|
427 |
|
428 |
+
/* purgecss end ignore */
|
lite/message-types/action-bar/themes/hello.css
CHANGED
@@ -1,7 +1,8 @@
|
|
|
|
1 |
.ig_action_bar.ig_hello.ig_container {
|
2 |
-
|
3 |
-
color: #FFF;
|
4 |
line-height: 1.5;
|
|
|
5 |
}
|
6 |
|
7 |
.ig_action_bar.ig_hello.ig_container {
|
@@ -10,12 +11,12 @@
|
|
10 |
}
|
11 |
|
12 |
.ig_action_bar.ig_hello.ig_container.ig_bottom {
|
13 |
-
border-
|
14 |
border-top: .2em solid #fff;
|
15 |
}
|
16 |
|
17 |
.ig_action_bar.ig_hello .ig_headline {
|
18 |
-
font-
|
19 |
margin-right: .5em;
|
20 |
}
|
21 |
|
@@ -26,12 +27,11 @@
|
|
26 |
.ig_action_bar.ig_hello .ig_button,
|
27 |
.ig_action_bar.ig_hello input[type="submit"],
|
28 |
.ig_action_bar.ig_hello input[type="button"] {
|
|
|
29 |
background-color: #4A4844;
|
30 |
background-image: linear-gradient(top, transparent 0%, rgba(51, 51, 51, 0.4) 100%);
|
31 |
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.28);
|
32 |
-
font-weight: 400;
|
33 |
border-radius: .25em;
|
34 |
-
float: none;
|
35 |
padding: .2em 1.3em;
|
36 |
}
|
37 |
|
@@ -51,9 +51,9 @@
|
|
51 |
box-shadow: 0 0 .3em rgba(0, 0, 0, 0.35);
|
52 |
}
|
53 |
.ig_action_bar.ig_hello.ig_hide.ig_top .ig_close {
|
|
|
54 |
margin-top: .15em;
|
55 |
border-bottom-width: .2em;
|
56 |
-
border-top-width: 0;
|
57 |
border-radius: 0 0 .3em .3em;
|
58 |
}
|
59 |
.ig_action_bar.ig_hello.ig_hide.ig_bottom .ig_close {
|
@@ -67,10 +67,12 @@
|
|
67 |
}
|
68 |
|
69 |
.ig_action_bar.ig_form_inline.ig_hello .ig_headline{
|
70 |
-
|
71 |
margin-right: .5em;
|
72 |
}
|
73 |
.ig_action_bar.ig_form_inline.ig_hello .ig_message{
|
74 |
-
|
75 |
}
|
76 |
-
/****************** Embed Form: End *******************/
|
|
|
|
1 |
+
/* purgecss start ignore */
|
2 |
.ig_action_bar.ig_hello.ig_container {
|
3 |
+
@apply text-white;
|
|
|
4 |
line-height: 1.5;
|
5 |
+
background-color:#EB5B31;
|
6 |
}
|
7 |
|
8 |
.ig_action_bar.ig_hello.ig_container {
|
11 |
}
|
12 |
|
13 |
.ig_action_bar.ig_hello.ig_container.ig_bottom {
|
14 |
+
@apply border-b-0;
|
15 |
border-top: .2em solid #fff;
|
16 |
}
|
17 |
|
18 |
.ig_action_bar.ig_hello .ig_headline {
|
19 |
+
@apply font-bold;
|
20 |
margin-right: .5em;
|
21 |
}
|
22 |
|
27 |
.ig_action_bar.ig_hello .ig_button,
|
28 |
.ig_action_bar.ig_hello input[type="submit"],
|
29 |
.ig_action_bar.ig_hello input[type="button"] {
|
30 |
+
@apply font-normal float-none;
|
31 |
background-color: #4A4844;
|
32 |
background-image: linear-gradient(top, transparent 0%, rgba(51, 51, 51, 0.4) 100%);
|
33 |
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.28);
|
|
|
34 |
border-radius: .25em;
|
|
|
35 |
padding: .2em 1.3em;
|
36 |
}
|
37 |
|
51 |
box-shadow: 0 0 .3em rgba(0, 0, 0, 0.35);
|
52 |
}
|
53 |
.ig_action_bar.ig_hello.ig_hide.ig_top .ig_close {
|
54 |
+
@apply border-t-0;
|
55 |
margin-top: .15em;
|
56 |
border-bottom-width: .2em;
|
|
|
57 |
border-radius: 0 0 .3em .3em;
|
58 |
}
|
59 |
.ig_action_bar.ig_hello.ig_hide.ig_bottom .ig_close {
|
67 |
}
|
68 |
|
69 |
.ig_action_bar.ig_form_inline.ig_hello .ig_headline{
|
70 |
+
@apply align-middle;
|
71 |
margin-right: .5em;
|
72 |
}
|
73 |
.ig_action_bar.ig_form_inline.ig_hello .ig_message{
|
74 |
+
@apply align-middle;
|
75 |
}
|
76 |
+
/****************** Embed Form: End *******************/
|
77 |
+
|
78 |
+
/* purgecss end ignore */
|
lite/message-types/action-bar/themes/solid.css
CHANGED
@@ -1,22 +1,22 @@
|
|
|
|
1 |
.ig_action_bar.ig_solid.ig_container {
|
|
|
2 |
background-color:#4E3363;
|
3 |
-
color: #FFF;
|
4 |
}
|
5 |
|
6 |
.ig_action_bar.ig_solid .ig_data {
|
|
|
7 |
max-width: 75%;
|
8 |
-
float: left;
|
9 |
-
text-align: left;
|
10 |
}
|
11 |
.ig_action_bar.ig_solid .ig_headline,
|
12 |
.ig_action_bar.ig_solid .ig_message {
|
13 |
-
|
14 |
}
|
15 |
.ig_action_bar.ig_solid .ig_button,
|
16 |
.ig_action_bar.ig_solid input[type="submit"],
|
17 |
.ig_action_bar.ig_solid input[type="button"] {
|
|
|
18 |
background: #008010;
|
19 |
-
float: right;
|
20 |
border-radius: 0.1em;
|
21 |
}
|
22 |
|
@@ -36,14 +36,14 @@
|
|
36 |
.ig_action_bar.ig_form_bottom.ig_solid .ig_form_container.layout_bottom .ig_form_footer,
|
37 |
.ig_action_bar.ig_form_bottom.ig_solid .ig_form_container.layout_bottom .ig_embed_form_container,
|
38 |
.ig_action_bar.ig_form_inline.ig_solid .ig_form_container.layout_inline .ig_embed_form_container{
|
39 |
-
|
40 |
}
|
41 |
|
42 |
@media only screen and (max-width: 768px){
|
43 |
.ig_action_bar.ig_solid .ig_button,
|
44 |
.ig_action_bar.ig_solid input[type="submit"],
|
45 |
.ig_action_bar.ig_solid input[type="button"] {
|
46 |
-
float
|
47 |
margin: 0.3em 0 0.3em .7em;
|
48 |
}
|
49 |
.ig_action_bar.ig_solid.ig_has_pwby .ig_button,
|
@@ -51,4 +51,6 @@
|
|
51 |
.ig_action_bar.ig_solid.ig_has_pwby input[type="button"] {
|
52 |
margin-left: 2.5em;
|
53 |
}
|
54 |
-
}
|
|
|
|
1 |
+
/* purgecss start ignore */
|
2 |
.ig_action_bar.ig_solid.ig_container {
|
3 |
+
@apply text-white;
|
4 |
background-color:#4E3363;
|
|
|
5 |
}
|
6 |
|
7 |
.ig_action_bar.ig_solid .ig_data {
|
8 |
+
@apply float-left text-left;
|
9 |
max-width: 75%;
|
|
|
|
|
10 |
}
|
11 |
.ig_action_bar.ig_solid .ig_headline,
|
12 |
.ig_action_bar.ig_solid .ig_message {
|
13 |
+
@apply block;
|
14 |
}
|
15 |
.ig_action_bar.ig_solid .ig_button,
|
16 |
.ig_action_bar.ig_solid input[type="submit"],
|
17 |
.ig_action_bar.ig_solid input[type="button"] {
|
18 |
+
@apply float-right;
|
19 |
background: #008010;
|
|
|
20 |
border-radius: 0.1em;
|
21 |
}
|
22 |
|
36 |
.ig_action_bar.ig_form_bottom.ig_solid .ig_form_container.layout_bottom .ig_form_footer,
|
37 |
.ig_action_bar.ig_form_bottom.ig_solid .ig_form_container.layout_bottom .ig_embed_form_container,
|
38 |
.ig_action_bar.ig_form_inline.ig_solid .ig_form_container.layout_inline .ig_embed_form_container{
|
39 |
+
@apply text-left;
|
40 |
}
|
41 |
|
42 |
@media only screen and (max-width: 768px){
|
43 |
.ig_action_bar.ig_solid .ig_button,
|
44 |
.ig_action_bar.ig_solid input[type="submit"],
|
45 |
.ig_action_bar.ig_solid input[type="button"] {
|
46 |
+
@apply float-left;
|
47 |
margin: 0.3em 0 0.3em .7em;
|
48 |
}
|
49 |
.ig_action_bar.ig_solid.ig_has_pwby .ig_button,
|
51 |
.ig_action_bar.ig_solid.ig_has_pwby input[type="button"] {
|
52 |
margin-left: 2.5em;
|
53 |
}
|
54 |
+
}
|
55 |
+
|
56 |
+
/* purgecss end ignore */
|
lite/message-types/messenger/themes/canvas.css
CHANGED
@@ -5,24 +5,24 @@
|
|
5 |
}
|
6 |
|
7 |
.ig_messenger.ig_canvas .ig_content {
|
|
|
|
|
8 |
border: 1px solid #BFBFBF;
|
9 |
margin: .6em .6em .1em .6em;
|
10 |
padding: .6em;
|
11 |
-
overflow: hidden;
|
12 |
box-shadow: 0 0.15em 0.35em 0 rgba(0, 0, 0, 0.13);
|
13 |
-
background-color: #FFF !important;
|
14 |
}
|
15 |
.ig_messenger.ig_canvas .ig_headline {
|
|
|
16 |
color: #111;
|
17 |
-
width: 100%;
|
18 |
font-size: 1.5em;
|
19 |
line-height: 1em;
|
20 |
padding: 0 1em .1em 0.2em;
|
21 |
}
|
22 |
|
23 |
.ig_messenger.ig_canvas .ig_body{
|
|
|
24 |
max-height: 21em;
|
25 |
-
overflow-y: auto;
|
26 |
padding: 0 .5em 0 .5em;
|
27 |
margin-top: .5em;
|
28 |
line-height: 1.3em;
|
@@ -30,32 +30,29 @@
|
|
30 |
}
|
31 |
|
32 |
.ig_messenger.ig_canvas .ig_icon {
|
33 |
-
float
|
34 |
-
|
35 |
border-radius: 5%;
|
36 |
/*max-width: 100px;*/
|
37 |
max-width: 6em;
|
38 |
margin: .3em;
|
39 |
-
height: auto !important;
|
40 |
-
width: auto !important;
|
41 |
}
|
42 |
|
43 |
.ig_messenger.ig_canvas .ig_message {
|
|
|
44 |
color: #444;
|
45 |
-
display: inline;
|
46 |
}
|
47 |
|
48 |
.ig_messenger.ig_canvas .ig_close {
|
|
|
49 |
/*right: .5em;
|
50 |
top: .5em;*/
|
51 |
-
right: 0;
|
52 |
top: .5em;
|
53 |
}
|
54 |
|
55 |
.ig_messenger.ig_canvas .ig_powered_by {
|
56 |
-
bottom
|
57 |
padding-left: 1em;
|
58 |
-
text-align: left;
|
59 |
}
|
60 |
@media only screen and (max-width: 850px) {
|
61 |
.ig_messenger.ig_canvas.ig_container {
|
5 |
}
|
6 |
|
7 |
.ig_messenger.ig_canvas .ig_content {
|
8 |
+
@apply overflow-hidden;
|
9 |
+
@apply bg-white !important;
|
10 |
border: 1px solid #BFBFBF;
|
11 |
margin: .6em .6em .1em .6em;
|
12 |
padding: .6em;
|
|
|
13 |
box-shadow: 0 0.15em 0.35em 0 rgba(0, 0, 0, 0.13);
|
|
|
14 |
}
|
15 |
.ig_messenger.ig_canvas .ig_headline {
|
16 |
+
@apply w-full;
|
17 |
color: #111;
|
|
|
18 |
font-size: 1.5em;
|
19 |
line-height: 1em;
|
20 |
padding: 0 1em .1em 0.2em;
|
21 |
}
|
22 |
|
23 |
.ig_messenger.ig_canvas .ig_body{
|
24 |
+
@apply overflow-y-auto;
|
25 |
max-height: 21em;
|
|
|
26 |
padding: 0 .5em 0 .5em;
|
27 |
margin-top: .5em;
|
28 |
line-height: 1.3em;
|
30 |
}
|
31 |
|
32 |
.ig_messenger.ig_canvas .ig_icon {
|
33 |
+
@apply float-right relative;
|
34 |
+
@apply h-auto w-auto !important;
|
35 |
border-radius: 5%;
|
36 |
/*max-width: 100px;*/
|
37 |
max-width: 6em;
|
38 |
margin: .3em;
|
|
|
|
|
39 |
}
|
40 |
|
41 |
.ig_messenger.ig_canvas .ig_message {
|
42 |
+
@apply inline;
|
43 |
color: #444;
|
|
|
44 |
}
|
45 |
|
46 |
.ig_messenger.ig_canvas .ig_close {
|
47 |
+
@apply right-0;
|
48 |
/*right: .5em;
|
49 |
top: .5em;*/
|
|
|
50 |
top: .5em;
|
51 |
}
|
52 |
|
53 |
.ig_messenger.ig_canvas .ig_powered_by {
|
54 |
+
@apply bottom-0 text-left;
|
55 |
padding-left: 1em;
|
|
|
56 |
}
|
57 |
@media only screen and (max-width: 850px) {
|
58 |
.ig_messenger.ig_canvas.ig_container {
|
lite/message-types/messenger/themes/clear.css
CHANGED
@@ -10,11 +10,11 @@
|
|
10 |
|
11 |
.ig_messenger.ig_clear .ig_headline:after,
|
12 |
.ig_messenger.ig_clear .ig_headline:before {
|
13 |
-
|
14 |
}
|
15 |
|
16 |
.ig_messenger.ig_clear .ig_headline:before {
|
17 |
-
|
18 |
background-image: url(../../../assets/images/clear-header.png);
|
19 |
top: .6em;
|
20 |
left: .6em;
|
@@ -23,9 +23,9 @@
|
|
23 |
}
|
24 |
|
25 |
.ig_messenger.ig_clear .ig_headline {
|
26 |
-
|
|
|
27 |
color: #333;
|
28 |
-
width: 100%;
|
29 |
height: 2.38em;
|
30 |
line-height: 2.58em;
|
31 |
font-size: 1em;
|
@@ -35,30 +35,28 @@
|
|
35 |
}
|
36 |
|
37 |
.ig_messenger.ig_clear .ig_headline:after {
|
38 |
-
|
39 |
height: 2.12em;
|
40 |
top: 2.38em;
|
41 |
background-image: url(../../../assets/images/clear-option.png);
|
42 |
}
|
43 |
|
44 |
.ig_messenger.ig_clear .ig_body {
|
45 |
-
|
46 |
color: #222;
|
47 |
font-size: 1em;
|
48 |
font-family: Arial, Helvetica, sans-serif;
|
49 |
-
position: relative;
|
50 |
height: 13.35em;
|
51 |
top: 2.12em;
|
52 |
border-top: 1px solid #BFBFBF;
|
53 |
-
right: 0;
|
54 |
line-height: 1.25em;
|
55 |
padding: .5em .9em 0 .5em;
|
56 |
box-shadow: inset 0 0 .25em 0 #FFF;
|
57 |
}
|
58 |
|
59 |
.ig_messenger.ig_clear .ig_message {
|
|
|
60 |
color: #3E454C;
|
61 |
-
width: 100%;
|
62 |
padding-left: 3em;
|
63 |
}
|
64 |
|
@@ -67,28 +65,26 @@
|
|
67 |
}
|
68 |
|
69 |
.ig_messenger.ig_clear .ig_footer {
|
70 |
-
|
71 |
background-color: inherit;
|
72 |
height: 2.76em;
|
73 |
margin-top: 2.12em;
|
74 |
border-top: 1px solid #BFBFBF;
|
75 |
background-image: url(../../../assets/images/clear-footer.png);
|
76 |
-
background-size: cover;
|
77 |
}
|
78 |
|
79 |
.ig_messenger.ig_clear .ig_close {
|
80 |
top: .3em;
|
81 |
-
right
|
82 |
}
|
83 |
|
84 |
.ig_messenger.ig_clear .ig_close:before {
|
85 |
-
|
86 |
background-image: url(../../../assets/images/clear-header.png);
|
87 |
background-position: 0 -181px;
|
88 |
top: 6px;
|
89 |
height: 13px;
|
90 |
width: 13px;
|
91 |
-
padding: 0;
|
92 |
right: 1.7em;
|
93 |
}
|
94 |
|
10 |
|
11 |
.ig_messenger.ig_clear .ig_headline:after,
|
12 |
.ig_messenger.ig_clear .ig_headline:before {
|
13 |
+
@apply bg-cover;
|
14 |
}
|
15 |
|
16 |
.ig_messenger.ig_clear .ig_headline:before {
|
17 |
+
@apply block;
|
18 |
background-image: url(../../../assets/images/clear-header.png);
|
19 |
top: .6em;
|
20 |
left: .6em;
|
23 |
}
|
24 |
|
25 |
.ig_messenger.ig_clear .ig_headline {
|
26 |
+
@apply w-full;
|
27 |
+
background: #F9F9F9
|
28 |
color: #333;
|
|
|
29 |
height: 2.38em;
|
30 |
line-height: 2.58em;
|
31 |
font-size: 1em;
|
35 |
}
|
36 |
|
37 |
.ig_messenger.ig_clear .ig_headline:after {
|
38 |
+
@apply block;
|
39 |
height: 2.12em;
|
40 |
top: 2.38em;
|
41 |
background-image: url(../../../assets/images/clear-option.png);
|
42 |
}
|
43 |
|
44 |
.ig_messenger.ig_clear .ig_body {
|
45 |
+
@apply relative right-0 bg-white;
|
46 |
color: #222;
|
47 |
font-size: 1em;
|
48 |
font-family: Arial, Helvetica, sans-serif;
|
|
|
49 |
height: 13.35em;
|
50 |
top: 2.12em;
|
51 |
border-top: 1px solid #BFBFBF;
|
|
|
52 |
line-height: 1.25em;
|
53 |
padding: .5em .9em 0 .5em;
|
54 |
box-shadow: inset 0 0 .25em 0 #FFF;
|
55 |
}
|
56 |
|
57 |
.ig_messenger.ig_clear .ig_message {
|
58 |
+
@apply w-full;
|
59 |
color: #3E454C;
|
|
|
60 |
padding-left: 3em;
|
61 |
}
|
62 |
|
65 |
}
|
66 |
|
67 |
.ig_messenger.ig_clear .ig_footer {
|
68 |
+
@apply block bg-cover;
|
69 |
background-color: inherit;
|
70 |
height: 2.76em;
|
71 |
margin-top: 2.12em;
|
72 |
border-top: 1px solid #BFBFBF;
|
73 |
background-image: url(../../../assets/images/clear-footer.png);
|
|
|
74 |
}
|
75 |
|
76 |
.ig_messenger.ig_clear .ig_close {
|
77 |
top: .3em;
|
78 |
+
@apply right-0;
|
79 |
}
|
80 |
|
81 |
.ig_messenger.ig_clear .ig_close:before {
|
82 |
+
@apply block p-0;
|
83 |
background-image: url(../../../assets/images/clear-header.png);
|
84 |
background-position: 0 -181px;
|
85 |
top: 6px;
|
86 |
height: 13px;
|
87 |
width: 13px;
|
|
|
88 |
right: 1.7em;
|
89 |
}
|
90 |
|
lite/message-types/messenger/themes/default.css
CHANGED
@@ -1,21 +1,15 @@
|
|
1 |
.ig_messenger.ig_container {
|
2 |
-
|
3 |
-
|
4 |
-
cursor: pointer;
|
5 |
-
background-color: transparent !important;
|
6 |
z-index: 100000;
|
7 |
-
margin: 0;
|
8 |
-
padding: 0;
|
9 |
font-family: "Lucida Grande", Arial, sans-serif;
|
10 |
font-size: 16px;
|
11 |
-
overflow: hidden;
|
12 |
-
text-align: left;
|
13 |
bottom: 0.2em;
|
14 |
}
|
15 |
|
16 |
.ig_messenger.ig_container,
|
17 |
.ig_messenger.ig_container div{
|
18 |
-
box-
|
19 |
}
|
20 |
.ig_messenger.ig_container.ig_left {
|
21 |
left: 0.2em
|
@@ -26,8 +20,8 @@
|
|
26 |
|
27 |
.ig_messenger .ig_data,
|
28 |
.ig_messenger .ig_content {
|
29 |
-
|
30 |
-
|
31 |
}
|
32 |
.ig_messenger .ig_message:after,
|
33 |
.ig_messenger .ig_message:before,
|
@@ -38,55 +32,45 @@
|
|
38 |
.ig_messenger .ig_footer:after,
|
39 |
.ig_messenger .ig_headline:after,
|
40 |
.ig_messenger .ig_headline:before {
|
|
|
41 |
content: '';
|
42 |
-
position: absolute;
|
43 |
-
display: none;
|
44 |
-
padding: 0;
|
45 |
-
width: 100%;
|
46 |
-
z-index: 10;
|
47 |
background-position: 0 0;
|
48 |
background-repeat:no-repeat;
|
49 |
-
box-sizing: border-box;
|
50 |
}
|
51 |
|
52 |
.ig_messenger .ig_headline {
|
53 |
-
|
54 |
-
font-
|
55 |
-
text-decoration: none;
|
56 |
-
overflow: hidden;
|
57 |
-
white-space: nowrap;
|
58 |
-
-ms-text-overflow: ellipsis;
|
59 |
text-overflow: ellipsis;
|
|
|
60 |
}
|
61 |
|
62 |
.ig_messenger .ig_headline:after {
|
63 |
-
left
|
64 |
}
|
65 |
|
66 |
.ig_messenger .ig_body {
|
67 |
-
overflow-x
|
68 |
-
display: block;
|
69 |
-
border-bottom: none;
|
70 |
-ms-text-overflow: ellipsis;
|
71 |
text-overflow: ellipsis;
|
72 |
z-index: 9;
|
73 |
}
|
74 |
|
75 |
.ig_messenger .ig_icon {
|
|
|
76 |
/*height: 28px;*/
|
77 |
/*width: 28px;*/
|
78 |
height: 2.5em;
|
79 |
width: 2.5em;
|
80 |
-
position: absolute;
|
81 |
/*vertical-align: top;*/
|
82 |
/*display: inline-block;*/
|
83 |
}
|
84 |
.ig_messenger.ig_no_icon .ig_icon {
|
85 |
-
|
86 |
}
|
87 |
|
88 |
.ig_messenger .ig_message {
|
89 |
-
text-
|
90 |
word-wrap: break-word;
|
91 |
/*display: inline-block;*/
|
92 |
}
|
@@ -96,22 +80,20 @@
|
|
96 |
}
|
97 |
|
98 |
.ig_messenger .ig_footer {
|
99 |
-
|
100 |
}
|
101 |
|
102 |
.ig_messenger .ig_powered_by {
|
|
|
103 |
font-size: .62em;
|
104 |
-
z-index: 10;
|
105 |
-
position: relative;
|
106 |
-
text-align: right;
|
107 |
/*line-height: 1.2;*/
|
108 |
}
|
109 |
|
110 |
.ig_messenger .ig_button,
|
111 |
.ig_messenger input[type="submit"],
|
112 |
.ig_messenger input[type="button"] {
|
|
|
113 |
border-bottom : none;
|
114 |
-
cursor: pointer;
|
115 |
}
|
116 |
.ig_messenger .ig_button:active,
|
117 |
.ig_messenger input[type="submit"]:active,
|
@@ -120,21 +102,20 @@
|
|
120 |
}
|
121 |
|
122 |
.ig_messenger .ig_close {
|
123 |
-
|
124 |
-
z-index: 10;
|
125 |
height: 25px;
|
126 |
width: 25px;
|
127 |
}
|
128 |
|
129 |
.ig_messenger .ig_close:after{
|
|
|
|
|
|
|
130 |
top: 6px;
|
131 |
left: 6px;
|
132 |
background-image: url(../../../assets/images/clear-header.png);
|
133 |
background-repeat: no-repeat;
|
134 |
background-position: 0 -195px;
|
135 |
-
display: block;
|
136 |
-
height: 13px;
|
137 |
-
width: 13px;
|
138 |
}
|
139 |
|
140 |
/****************** Embed Form: Start *******************/
|
@@ -142,16 +123,16 @@
|
|
142 |
.ig_messenger.ig_form_left .ig_form_container.layout_left,
|
143 |
.ig_messenger.ig_form_right .ig_form_container.layout_right,
|
144 |
.ig_messenger.ig_form_bottom .ig_form_container.layout_bottom{
|
145 |
-
|
146 |
}
|
147 |
|
148 |
.ig_messenger.ig_form_inline .ig_form_container.layout_inline{
|
149 |
-
float
|
150 |
padding: .5em 0;
|
151 |
}
|
152 |
|
153 |
.ig_messenger.ig_form_inline .ig_message p {
|
154 |
-
|
155 |
}
|
156 |
|
157 |
.ig_messenger.ig_form_inline .ig_form_container.layout_inline .ig_full .ig_form_els,
|
@@ -163,14 +144,13 @@
|
|
163 |
}
|
164 |
|
165 |
.ig_messenger.ig_form_inline .ig_form_container.layout_inline .ig_button_label{
|
166 |
-
|
167 |
}
|
168 |
|
169 |
/****** Form Style: Style 2 ******/
|
170 |
|
171 |
.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els{
|
172 |
-
|
173 |
-
margin-left: 0;
|
174 |
}
|
175 |
|
176 |
.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_first input,
|
1 |
.ig_messenger.ig_container {
|
2 |
+
@apply hidden fixed cursor-pointer m-0 p-0 overflow-hidden text-left;
|
3 |
+
@apply bg-transparent !important;
|
|
|
|
|
4 |
z-index: 100000;
|
|
|
|
|
5 |
font-family: "Lucida Grande", Arial, sans-serif;
|
6 |
font-size: 16px;
|
|
|
|
|
7 |
bottom: 0.2em;
|
8 |
}
|
9 |
|
10 |
.ig_messenger.ig_container,
|
11 |
.ig_messenger.ig_container div{
|
12 |
+
@apply box-border;
|
13 |
}
|
14 |
.ig_messenger.ig_container.ig_left {
|
15 |
left: 0.2em
|
20 |
|
21 |
.ig_messenger .ig_data,
|
22 |
.ig_messenger .ig_content {
|
23 |
+
@apply bg-transparent !important;
|
24 |
+
@apply relative;
|
25 |
}
|
26 |
.ig_messenger .ig_message:after,
|
27 |
.ig_messenger .ig_message:before,
|
32 |
.ig_messenger .ig_footer:after,
|
33 |
.ig_messenger .ig_headline:after,
|
34 |
.ig_messenger .ig_headline:before {
|
35 |
+
@apply absolute hidden p-0 w-full z-10 box-border;
|
36 |
content: '';
|
|
|
|
|
|
|
|
|
|
|
37 |
background-position: 0 0;
|
38 |
background-repeat:no-repeat;
|
|
|
39 |
}
|
40 |
|
41 |
.ig_messenger .ig_headline {
|
42 |
+
@apply block !important;
|
43 |
+
@apply font-bold no-underline overflow-hidden whitespace-no-wrap;
|
|
|
|
|
|
|
|
|
44 |
text-overflow: ellipsis;
|
45 |
+
-ms-text-overflow: ellipsis;
|
46 |
}
|
47 |
|
48 |
.ig_messenger .ig_headline:after {
|
49 |
+
@apply left-0;
|
50 |
}
|
51 |
|
52 |
.ig_messenger .ig_body {
|
53 |
+
@apply overflow-x-hidden block border-b-0;
|
|
|
|
|
54 |
-ms-text-overflow: ellipsis;
|
55 |
text-overflow: ellipsis;
|
56 |
z-index: 9;
|
57 |
}
|
58 |
|
59 |
.ig_messenger .ig_icon {
|
60 |
+
@apply absolute;
|
61 |
/*height: 28px;*/
|
62 |
/*width: 28px;*/
|
63 |
height: 2.5em;
|
64 |
width: 2.5em;
|
|
|
65 |
/*vertical-align: top;*/
|
66 |
/*display: inline-block;*/
|
67 |
}
|
68 |
.ig_messenger.ig_no_icon .ig_icon {
|
69 |
+
@apply hidden;
|
70 |
}
|
71 |
|
72 |
.ig_messenger .ig_message {
|
73 |
+
@apply text-left;
|
74 |
word-wrap: break-word;
|
75 |
/*display: inline-block;*/
|
76 |
}
|
80 |
}
|
81 |
|
82 |
.ig_messenger .ig_footer {
|
83 |
+
@apply hidden;
|
84 |
}
|
85 |
|
86 |
.ig_messenger .ig_powered_by {
|
87 |
+
@apply z-10 relative text-right;
|
88 |
font-size: .62em;
|
|
|
|
|
|
|
89 |
/*line-height: 1.2;*/
|
90 |
}
|
91 |
|
92 |
.ig_messenger .ig_button,
|
93 |
.ig_messenger input[type="submit"],
|
94 |
.ig_messenger input[type="button"] {
|
95 |
+
@apply cursor-pointer;
|
96 |
border-bottom : none;
|
|
|
97 |
}
|
98 |
.ig_messenger .ig_button:active,
|
99 |
.ig_messenger input[type="submit"]:active,
|
102 |
}
|
103 |
|
104 |
.ig_messenger .ig_close {
|
105 |
+
@apply absolute z-10;
|
|
|
106 |
height: 25px;
|
107 |
width: 25px;
|
108 |
}
|
109 |
|
110 |
.ig_messenger .ig_close:after{
|
111 |
+
@apply bg-no-repeat block;
|
112 |
+
height: 13px;
|
113 |
+
width: 13px;
|
114 |
top: 6px;
|
115 |
left: 6px;
|
116 |
background-image: url(../../../assets/images/clear-header.png);
|
117 |
background-repeat: no-repeat;
|
118 |
background-position: 0 -195px;
|
|
|
|
|
|
|
119 |
}
|
120 |
|
121 |
/****************** Embed Form: Start *******************/
|
123 |
.ig_messenger.ig_form_left .ig_form_container.layout_left,
|
124 |
.ig_messenger.ig_form_right .ig_form_container.layout_right,
|
125 |
.ig_messenger.ig_form_bottom .ig_form_container.layout_bottom{
|
126 |
+
@apply hidden;
|
127 |
}
|
128 |
|
129 |
.ig_messenger.ig_form_inline .ig_form_container.layout_inline{
|
130 |
+
@apply float-left;
|
131 |
padding: .5em 0;
|
132 |
}
|
133 |
|
134 |
.ig_messenger.ig_form_inline .ig_message p {
|
135 |
+
@apply mb-0;
|
136 |
}
|
137 |
|
138 |
.ig_messenger.ig_form_inline .ig_form_container.layout_inline .ig_full .ig_form_els,
|
144 |
}
|
145 |
|
146 |
.ig_messenger.ig_form_inline .ig_form_container.layout_inline .ig_button_label{
|
147 |
+
@apply hidden;
|
148 |
}
|
149 |
|
150 |
/****** Form Style: Style 2 ******/
|
151 |
|
152 |
.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els{
|
153 |
+
@apply mx-0;
|
|
|
154 |
}
|
155 |
|
156 |
.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_first input,
|
lite/message-types/messenger/themes/messenger.js
ADDED
@@ -0,0 +1,166 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/******/ (function(modules) { // webpackBootstrap
|
2 |
+
/******/ // The module cache
|
3 |
+
/******/ var installedModules = {};
|
4 |
+
/******/
|
5 |
+
/******/ // The require function
|
6 |
+
/******/ function __webpack_require__(moduleId) {
|
7 |
+
/******/
|
8 |
+
/******/ // Check if module is in cache
|
9 |
+
/******/ if(installedModules[moduleId]) {
|
10 |
+
/******/ return installedModules[moduleId].exports;
|
11 |
+
/******/ }
|
12 |
+
/******/ // Create a new module (and put it into the cache)
|
13 |
+
/******/ var module = installedModules[moduleId] = {
|
14 |
+
/******/ i: moduleId,
|
15 |
+
/******/ l: false,
|
16 |
+
/******/ exports: {}
|
17 |
+
/******/ };
|
18 |
+
/******/
|
19 |
+
/******/ // Execute the module function
|
20 |
+
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
21 |
+
/******/
|
22 |
+
/******/ // Flag the module as loaded
|
23 |
+
/******/ module.l = true;
|
24 |
+
/******/
|
25 |
+
/******/ // Return the exports of the module
|
26 |
+
/******/ return module.exports;
|
27 |
+
/******/ }
|
28 |
+
/******/
|
29 |
+
/******/
|
30 |
+
/******/ // expose the modules object (__webpack_modules__)
|
31 |
+
/******/ __webpack_require__.m = modules;
|
32 |
+
/******/
|
33 |
+
/******/ // expose the module cache
|
34 |
+
/******/ __webpack_require__.c = installedModules;
|
35 |
+
/******/
|
36 |
+
/******/ // define getter function for harmony exports
|
37 |
+
/******/ __webpack_require__.d = function(exports, name, getter) {
|
38 |
+
/******/ if(!__webpack_require__.o(exports, name)) {
|
39 |
+
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
40 |
+
/******/ }
|
41 |
+
/******/ };
|
42 |
+
/******/
|
43 |
+
/******/ // define __esModule on exports
|
44 |
+
/******/ __webpack_require__.r = function(exports) {
|
45 |
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
46 |
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
47 |
+
/******/ }
|
48 |
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
49 |
+
/******/ };
|
50 |
+
/******/
|
51 |
+
/******/ // create a fake namespace object
|
52 |
+
/******/ // mode & 1: value is a module id, require it
|
53 |
+
/******/ // mode & 2: merge all properties of value into the ns
|
54 |
+
/******/ // mode & 4: return value when already ns object
|
55 |
+
/******/ // mode & 8|1: behave like require
|
56 |
+
/******/ __webpack_require__.t = function(value, mode) {
|
57 |
+
/******/ if(mode & 1) value = __webpack_require__(value);
|
58 |
+
/******/ if(mode & 8) return value;
|
59 |
+
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
60 |
+
/******/ var ns = Object.create(null);
|
61 |
+
/******/ __webpack_require__.r(ns);
|
62 |
+
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
63 |
+
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
64 |
+
/******/ return ns;
|
65 |
+
/******/ };
|
66 |
+
/******/
|
67 |
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
68 |
+
/******/ __webpack_require__.n = function(module) {
|
69 |
+
/******/ var getter = module && module.__esModule ?
|
70 |
+
/******/ function getDefault() { return module['default']; } :
|
71 |
+
/******/ function getModuleExports() { return module; };
|
72 |
+
/******/ __webpack_require__.d(getter, 'a', getter);
|
73 |
+
/******/ return getter;
|
74 |
+
/******/ };
|
75 |
+
/******/
|
76 |
+
/******/ // Object.prototype.hasOwnProperty.call
|
77 |
+
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
78 |
+
/******/
|
79 |
+
/******/ // __webpack_public_path__
|
80 |
+
/******/ __webpack_require__.p = "";
|
81 |
+
/******/
|
82 |
+
/******/
|
83 |
+
/******/ // Load entry module and return exports
|
84 |
+
/******/ return __webpack_require__(__webpack_require__.s = 0);
|
85 |
+
/******/ })
|
86 |
+
/************************************************************************/
|
87 |
+
/******/ ({
|
88 |
+
|
89 |
+
/***/ "./lite/message-types/messenger/default.css":
|
90 |
+
/*!**************************************************!*\
|
91 |
+
!*** ./lite/message-types/messenger/default.css ***!
|
92 |
+
\**************************************************/
|
93 |
+
/*! no static exports found */
|
94 |
+
/***/ (function(module, exports, __webpack_require__) {
|
95 |
+
|
96 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/messenger/default.css?");
|
97 |
+
|
98 |
+
/***/ }),
|
99 |
+
|
100 |
+
/***/ "./lite/message-types/messenger/themes/canvas.css":
|
101 |
+
/*!********************************************************!*\
|
102 |
+
!*** ./lite/message-types/messenger/themes/canvas.css ***!
|
103 |
+
\********************************************************/
|
104 |
+
/*! no static exports found */
|
105 |
+
/***/ (function(module, exports, __webpack_require__) {
|
106 |
+
|
107 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/messenger/themes/canvas.css?");
|
108 |
+
|
109 |
+
/***/ }),
|
110 |
+
|
111 |
+
/***/ "./lite/message-types/messenger/themes/clear.css":
|
112 |
+
/*!*******************************************************!*\
|
113 |
+
!*** ./lite/message-types/messenger/themes/clear.css ***!
|
114 |
+
\*******************************************************/
|
115 |
+
/*! no static exports found */
|
116 |
+
/***/ (function(module, exports) {
|
117 |
+
|
118 |
+
eval("throw new Error(\"Module build failed (from ./node_modules/mini-css-extract-plugin/dist/loader.js):\\nModuleBuildError: Module build failed (from ./node_modules/postcss-loader/lib/index.js):\\nSyntax Error \\n\\n(27:17) Missed semicolon\\n\\n \\u001b[90m 25 | \\u001b[39m\\u001b[33m.ig_messenger.ig_clear\\u001b[39m \\u001b[33m.ig_headline\\u001b[39m \\u001b[33m{\\u001b[39m\\n \\u001b[90m 26 | \\u001b[39m \\u001b[36m@apply\\u001b[39m w-full\\u001b[33m;\\u001b[39m\\n\\u001b[31m\\u001b[1m>\\u001b[22m\\u001b[39m\\u001b[90m 27 | \\u001b[39m background\\u001b[33m:\\u001b[39m \\u001b[35m#F9F9F9\\u001b[39m\\n \\u001b[90m | \\u001b[39m \\u001b[31m\\u001b[1m^\\u001b[22m\\u001b[39m\\n \\u001b[90m 28 | \\u001b[39m color\\u001b[33m:\\u001b[39m \\u001b[35m#333\\u001b[39m\\u001b[33m;\\u001b[39m\\n \\u001b[90m 29 | \\u001b[39m height\\u001b[33m:\\u001b[39m 2.38em\\u001b[33m;\\u001b[39m\\n\\n at C:\\\\gitlab\\\\icegram\\\\node_modules\\\\webpack\\\\lib\\\\NormalModule.js:316:20\\n at C:\\\\gitlab\\\\icegram\\\\node_modules\\\\loader-runner\\\\lib\\\\LoaderRunner.js:367:11\\n at C:\\\\gitlab\\\\icegram\\\\node_modules\\\\loader-runner\\\\lib\\\\LoaderRunner.js:233:18\\n at context.callback (C:\\\\gitlab\\\\icegram\\\\node_modules\\\\loader-runner\\\\lib\\\\LoaderRunner.js:111:13)\\n at C:\\\\gitlab\\\\icegram\\\\node_modules\\\\postcss-loader\\\\lib\\\\index.js:194:44\");\n\n//# sourceURL=webpack:///./lite/message-types/messenger/themes/clear.css?");
|
119 |
+
|
120 |
+
/***/ }),
|
121 |
+
|
122 |
+
/***/ "./lite/message-types/messenger/themes/default.css":
|
123 |
+
/*!*********************************************************!*\
|
124 |
+
!*** ./lite/message-types/messenger/themes/default.css ***!
|
125 |
+
\*********************************************************/
|
126 |
+
/*! no static exports found */
|
127 |
+
/***/ (function(module, exports, __webpack_require__) {
|
128 |
+
|
129 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/messenger/themes/default.css?");
|
130 |
+
|
131 |
+
/***/ }),
|
132 |
+
|
133 |
+
/***/ "./lite/message-types/messenger/themes/social.css":
|
134 |
+
/*!********************************************************!*\
|
135 |
+
!*** ./lite/message-types/messenger/themes/social.css ***!
|
136 |
+
\********************************************************/
|
137 |
+
/*! no static exports found */
|
138 |
+
/***/ (function(module, exports, __webpack_require__) {
|
139 |
+
|
140 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/messenger/themes/social.css?");
|
141 |
+
|
142 |
+
/***/ }),
|
143 |
+
|
144 |
+
/***/ "./lite/message-types/messenger/themes/talk.css":
|
145 |
+
/*!******************************************************!*\
|
146 |
+
!*** ./lite/message-types/messenger/themes/talk.css ***!
|
147 |
+
\******************************************************/
|
148 |
+
/*! no static exports found */
|
149 |
+
/***/ (function(module, exports, __webpack_require__) {
|
150 |
+
|
151 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/messenger/themes/talk.css?");
|
152 |
+
|
153 |
+
/***/ }),
|
154 |
+
|
155 |
+
/***/ 0:
|
156 |
+
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
157 |
+
!*** multi ./lite/message-types/messenger/default.css ./lite/message-types/messenger/themes/canvas.css ./lite/message-types/messenger/themes/clear.css ./lite/message-types/messenger/themes/default.css ./lite/message-types/messenger/themes/social.css ./lite/message-types/messenger/themes/talk.css ***!
|
158 |
+
\***********************************************************************************************************************************************************************************************************************************************************************************************************/
|
159 |
+
/*! no static exports found */
|
160 |
+
/***/ (function(module, exports, __webpack_require__) {
|
161 |
+
|
162 |
+
eval("__webpack_require__(/*! ./lite/message-types/messenger/default.css */\"./lite/message-types/messenger/default.css\");\n__webpack_require__(/*! ./lite/message-types/messenger/themes/canvas.css */\"./lite/message-types/messenger/themes/canvas.css\");\n__webpack_require__(/*! ./lite/message-types/messenger/themes/clear.css */\"./lite/message-types/messenger/themes/clear.css\");\n__webpack_require__(/*! ./lite/message-types/messenger/themes/default.css */\"./lite/message-types/messenger/themes/default.css\");\n__webpack_require__(/*! ./lite/message-types/messenger/themes/social.css */\"./lite/message-types/messenger/themes/social.css\");\nmodule.exports = __webpack_require__(/*! ./lite/message-types/messenger/themes/talk.css */\"./lite/message-types/messenger/themes/talk.css\");\n\n\n//# sourceURL=webpack:///multi_./lite/message-types/messenger/default.css_./lite/message-types/messenger/themes/canvas.css_./lite/message-types/messenger/themes/clear.css_./lite/message-types/messenger/themes/default.css_./lite/message-types/messenger/themes/social.css_./lite/message-types/messenger/themes/talk.css?");
|
163 |
+
|
164 |
+
/***/ })
|
165 |
+
|
166 |
+
/******/ });
|
lite/message-types/messenger/themes/messenger.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.ig_messenger .ig_body,.ig_messenger .ig_headline{-ms-text-overflow:ellipsis;text-overflow:ellipsis}.ig_messenger.ig_container{display:none;position:fixed;cursor:pointer;background-color:transparent!important;z-index:100000;margin:0;padding:0;font-family:"Lucida Grande",Arial,sans-serif;font-size:16px;overflow:hidden;text-align:left;bottom:.2em}.ig_messenger.ig_container,.ig_messenger.ig_container div{box-sizing:border-box}.ig_messenger.ig_container.ig_left{left:.2em}.ig_messenger.ig_container.ig_right{right:.2em}.ig_messenger .ig_content,.ig_messenger .ig_data{background:0 0!important;position:relative}.ig_messenger .ig_close:after,.ig_messenger .ig_close:before,.ig_messenger .ig_content:before,.ig_messenger .ig_data:after,.ig_messenger .ig_footer:after,.ig_messenger .ig_headline:after,.ig_messenger .ig_headline:before,.ig_messenger .ig_message:after,.ig_messenger .ig_message:before{content:'';position:absolute;display:none;padding:0;width:100%;z-index:10;background-position:0 0;background-repeat:no-repeat;box-sizing:border-box}.ig_messenger .ig_headline{display:block!important;font-weight:700;text-decoration:none;overflow:hidden;white-space:nowrap}.ig_messenger .ig_headline:after{left:0}.ig_messenger .ig_body{overflow-x:hidden;display:block;border-bottom:none;z-index:9}.ig_messenger .ig_footer,.ig_messenger.ig_no_icon .ig_icon{display:none}.ig_messenger .ig_icon{height:2.5em;width:2.5em;position:absolute}.ig_messenger .ig_message{text-align:left;word-wrap:break-word}.ig_messenger .ig_message p{margin-bottom:.25em}.ig_messenger .ig_powered_by{font-size:.62em;z-index:10;position:relative;text-align:right}.ig_messenger .ig_button,.ig_messenger input[type=submit],.ig_messenger input[type=button]{border-bottom:none;cursor:pointer}.ig_messenger .ig_button:active,.ig_messenger input[type=submit]:active,.ig_messenger input[type=button]:active{border-top:none}.ig_messenger .ig_close{position:absolute;z-index:10;height:25px;width:25px}.ig_messenger .ig_close:after{top:6px;left:6px;background-image:url(../../../assets/images/clear-header.png);background-repeat:no-repeat;background-position:0 -195px;display:block;height:13px;width:13px}.ig_messenger.ig_form_bottom .ig_form_container.layout_bottom,.ig_messenger.ig_form_inline .ig_form_container.layout_inline .ig_button_label,.ig_messenger.ig_form_left .ig_form_container.layout_left,.ig_messenger.ig_form_right .ig_form_container.layout_right{display:none}.ig_messenger.ig_form_inline .ig_form_container.layout_inline{float:left;padding:.5em 0}.ig_messenger.ig_form_inline .ig_message p{margin-bottom:0}.ig_messenger.ig_form_inline .ig_form_container.layout_inline .ig_full .ig_form_els,.ig_messenger.ig_form_inline .ig_form_container.layout_inline .ig_half .ig_form_els,.ig_messenger.ig_form_inline .ig_form_container.layout_inline .ig_quater .ig_form_els,.ig_messenger.ig_form_inline .ig_form_container.layout_inline .ig_third .ig_form_els{width:99%;margin:.3em auto}.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els{margin-right:0;margin-left:0}.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els input,.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_first input,.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_last input{padding-left:1em;border-width:2px;border-radius:2em}.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els input.ig_button{padding:inherit}.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els label,.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_first label,.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_last label{padding-left:1em}.ig_messenger.ig_canvas.ig_container{max-width:33%}.ig_messenger.ig_canvas .ig_content{border:1px solid #BFBFBF;margin:.6em .6em .1em;padding:.6em;overflow:hidden;box-shadow:0 .15em .35em 0 rgba(0,0,0,.13);background-color:#FFF!important}.ig_messenger.ig_canvas .ig_headline{color:#111;width:100%;font-size:1.5em;line-height:1em;padding:0 1em .1em .2em}.ig_messenger.ig_canvas .ig_body{max-height:21em;overflow-y:auto;padding:0 .5em;margin-top:.5em;line-height:1.3em}.ig_messenger.ig_canvas .ig_icon{float:right;position:relative;border-radius:5%;max-width:6em;margin:.3em;height:auto!important;width:auto!important}.ig_messenger.ig_canvas .ig_message{color:#444;display:inline}.ig_messenger.ig_canvas .ig_close{right:0;top:.5em}.ig_messenger.ig_canvas .ig_powered_by{bottom:0;padding-left:1em;text-align:left}@media only screen and (max-width:850px){.ig_messenger.ig_canvas.ig_container{max-width:50%}}@media only screen and (max-width:644px){.ig_messenger.ig_canvas.ig_container{max-width:70%}}@media only screen and (max-width:415px){.ig_messenger.ig_canvas.ig_container{max-width:90%}}.ig_messenger.ig_clear.ig_container{font-size:13px;width:19.25em;height:20.75em;border-radius:.23em .23em 0 0;border:1px solid #BFBFBF}.ig_messenger.ig_clear .ig_headline:after,.ig_messenger.ig_clear .ig_headline:before{background-size:cover}.ig_messenger.ig_clear .ig_headline:before{display:block;background-image:url(../../../assets/images/clear-header.png);top:.6em;left:.6em;height:1.25em;width:1.25em}.ig_messenger.ig_clear .ig_headline{background:#F9F9F9;color:#333;width:100%;height:2.38em;line-height:2.58em;font-size:1em;padding:0 2.9em 0 2em;border-bottom:1px solid #BFBFBF;box-shadow:inset 0 0 .25em 0 #FFF}.ig_messenger.ig_clear .ig_headline:after{display:block;height:2.12em;top:2.38em;background-image:url(../../../assets/images/clear-option.png)}.ig_messenger.ig_clear .ig_body{background:#FFF;color:#222;font-size:1em;font-family:Arial,Helvetica,sans-serif;position:relative;height:13.35em;top:2.12em;border-top:1px solid #BFBFBF;right:0;line-height:1.25em;padding:.5em .9em 0 .5em;box-shadow:inset 0 0 .25em 0 #FFF}.ig_messenger.ig_clear .ig_message{color:#3E454C;width:100%;padding-left:3em}.ig_messenger.ig_clear.ig_no_icon .ig_message{padding-left:.5em}.ig_messenger.ig_clear .ig_footer{display:block;background-color:inherit;height:2.76em;margin-top:2.12em;border-top:1px solid #BFBFBF;background-image:url(../../../assets/images/clear-footer.png);background-size:cover}.ig_messenger.ig_clear .ig_close{top:.3em;right:0}.ig_messenger.ig_clear .ig_close:before{display:block;background-image:url(../../../assets/images/clear-header.png);background-position:0 -181px;top:6px;height:13px;width:13px;padding:0;right:1.7em}.ig_messenger.ig_clear .ig_powered_by{bottom:1.8em;padding-right:3em;font-size:.8em}@media only screen and (max-width:992px){.ig_messenger.ig_clear.ig_container{font-size:14px}}.ig_messenger.ig_social.ig_container{font-size:11px;width:22.8em;height:23.6em}.ig_messenger.ig_social .ig_headline{background-color:#627BAE;color:#FFF;width:100%;height:2.45em;line-height:2.65em;font-size:1em;padding:0 3.4em 0 .7em;border:1px solid rgba(0,39,121,.3);border-bottom:none}.ig_messenger.ig_social .ig_body{display:block;background-color:#edeff4;color:#3e454c;font-family:"lucida grande",tahoma,verdana,arial,sans-serif;position:relative;height:18em;border:1px solid rgba(0,0,0,.3);border-top:none;border-bottom:none;right:0;padding:5px .5em 0 3.8em}.ig_messenger.ig_social.ig_no_icon .ig_body{padding-left:.5em;line-height:1.37em}.ig_messenger.ig_social .ig_message:before{display:block;width:0;top:11px;margin:0 0 0 -18px;border:8px solid #DFDFDF;border-color:transparent #DFDFDF transparent transparent;z-index:-1}.ig_messenger.ig_social .ig_message:after{display:block;width:0;top:13px;margin:0 0 0 -15px;border:6px solid #FAFAFA;border-color:transparent #FAFAFA transparent transparent}.ig_messenger.ig_social .ig_message{background-color:#F7F7F7;color:#3E454C;background-image:-webkit-linear-gradient(bottom,#F2F2F2,#FFF);width:90%;font-size:1.09em;padding:.3em;border:1px solid rgba(0,0,0,.18);border-bottom-color:rgba(0,0,0,.29);border-radius:.4em;box-shadow:0 1px 0 #DCE0E6}.ig_messenger.ig_social.ig_no_icon .ig_message{margin:0 auto .5em}.ig_messenger.ig_social.ig_no_icon .ig_message:after,.ig_messenger.ig_social.ig_no_icon .ig_message:before{display:none}.ig_messenger.ig_social .ig_icon{margin-left:-3.3em;height:2.54em;width:2.54em}.ig_messenger.ig_social .ig_footer{display:block;height:3em;background-color:#FFF;border:1px solid rgba(0,0,0,.3)}.ig_messenger.ig_social .ig_footer:after{display:block;background-image:url(../../../assets/images/social-img.png);background-position:-269px -137px;width:22px;height:18px;margin-top:.8em;right:.3em}.ig_messenger.ig_social .ig_close{background-image:url(../../../assets/images/social-img.png);background-position:-137px -332px;top:.25em;right:.15em;height:25px;width:21px}.ig_messenger.ig_social .ig_close:before{display:block;background-image:url(../../../assets/images/social-img.png);background-position:-92px -332px;height:100%;width:100%;padding:0;right:1.5em}.ig_messenger.ig_social .ig_close:after{display:none}.ig_messenger.ig_social .ig_powered_by{bottom:1.8em;padding-right:3em;font-size:.9em}@media only screen and (max-width:992px){.ig_messenger.ig_social.ig_container{font-size:13px}}@media only screen and (max-width:320px){.ig_messenger.ig_social.ig_container{font-size:12px;width:20em}}.ig_messenger.ig_talk.ig_container{font-size:12px;width:17.5em;height:21em;border:.1em solid #BFBFBF;border-radius:.5em .5em 0 0}.ig_messenger.ig_talk .ig_body,.ig_messenger.ig_talk .ig_headline{font-size:1em;border-bottom:.1em solid #BFBFBF;box-shadow:inset 0 0 .25em 0 #FFF}.ig_messenger.ig_talk .ig_close,.ig_messenger.ig_talk .ig_close:before,.ig_messenger.ig_talk .ig_data:after,.ig_messenger.ig_talk .ig_headline:after,.ig_messenger.ig_talk .ig_headline:before{background-size:cover}.ig_messenger.ig_talk .ig_headline:before{display:block;background-image:url(../../../assets/images/clear-header.png);top:.5em;left:.6em;height:1.25em;width:1.25em}.ig_messenger.ig_talk .ig_headline{background-color:#F5FAFF;color:#00008B;width:100%;height:2.2em;line-height:2.4em;padding:0 2.9em 0 2em;border-radius:.5em .5em 0 0}.ig_messenger.ig_talk .ig_headline:after{display:block;height:2.5em;top:2.2em;background-image:url(../../../assets/images/talk-header-2.png)}.ig_messenger.ig_talk .ig_body{background:#FFF;color:#222;font-family:Arial,Helvetica,sans-serif;position:relative;height:13.48em;border-top:.1em solid #BFBFBF;top:2.5em;right:0;line-height:1.25em;padding:.5em .8em 0 .5em}.ig_messenger.ig_talk .ig_message{color:#3E454C;width:100%;padding-left:3em}.ig_messenger.ig_talk.ig_no_icon .ig_message{padding-left:.5em}.ig_messenger.ig_talk .ig_footer{display:block;height:2.66em;margin-top:2.5em;background-image:url(../../../assets/images/talk-footer-1.png);background-size:cover}.ig_messenger.ig_talk .ig_close{background-image:url(../../../assets/images/talk-close.png);background-position:0 0;top:.5em;right:.33em;height:1.25em;width:1.25em;z-index:10}.ig_messenger.ig_talk .ig_close:before{display:block;background-image:url(../../../assets/images/talk-header-1.png);height:100%;width:100%;padding:0;right:1.5em}.ig_messenger.ig_talk .ig_close:after{display:none}.ig_messenger.ig_talk .ig_powered_by{bottom:2em;padding-right:2em;font-size:.8em}@media only screen and (max-width:992px){.ig_messenger.ig_talk.ig_container{font-size:14px}}
|
1 |
+
.ig_messenger .ig_body,.ig_messenger .ig_headline{-ms-text-overflow:ellipsis;text-overflow:ellipsis}.ig_messenger.ig_canvas.ig_container{max-width:33%}.ig_messenger.ig_canvas .ig_content{overflow:hidden;--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important;border:1px solid #BFBFBF;margin:.6em .6em .1em;padding:.6em;-webkit-box-shadow:0 .15em .35em 0 rgba(0,0,0,.13);box-shadow:0 .15em .35em 0 rgba(0,0,0,.13)}.ig_messenger.ig_canvas .ig_headline{width:100%;color:#111;font-size:1.5em;line-height:1em;padding:0 1em .1em .2em}.ig_messenger.ig_canvas .ig_body{overflow-y:auto;max-height:21em;padding:0 .5em;margin-top:.5em;line-height:1.3em}.ig_messenger.ig_canvas .ig_icon{float:right;position:relative;height:auto!important;width:auto!important;border-radius:5%;max-width:6em;margin:.3em}.ig_messenger.ig_canvas .ig_message{display:inline;color:#444}.ig_messenger.ig_canvas .ig_close{right:0;top:.5em}.ig_messenger.ig_canvas .ig_powered_by{bottom:0;text-align:left;padding-left:1em}@media only screen and (max-width:850px){.ig_messenger.ig_canvas.ig_container{max-width:50%}}@media only screen and (max-width:644px){.ig_messenger.ig_canvas.ig_container{max-width:70%}}@media only screen and (max-width:415px){.ig_messenger.ig_canvas.ig_container{max-width:90%}}.ig_messenger.ig_container{display:none;position:fixed;cursor:pointer;margin:0;padding:0;overflow:hidden;text-align:left;background-color:transparent!important;z-index:100000;font-family:"Lucida Grande",Arial,sans-serif;font-size:16px;bottom:.2em}.ig_messenger.ig_container,.ig_messenger.ig_container div{-webkit-box-sizing:border-box;box-sizing:border-box}.ig_messenger.ig_container.ig_left{left:.2em}.ig_messenger.ig_container.ig_right{right:.2em}.ig_messenger .ig_content,.ig_messenger .ig_data{background-color:transparent!important;position:relative}.ig_messenger .ig_close:after,.ig_messenger .ig_close:before,.ig_messenger .ig_content:before,.ig_messenger .ig_data:after,.ig_messenger .ig_footer:after,.ig_messenger .ig_headline:after,.ig_messenger .ig_headline:before,.ig_messenger .ig_message:after,.ig_messenger .ig_message:before{position:absolute;display:none;padding:0;width:100%;z-index:10;-webkit-box-sizing:border-box;box-sizing:border-box;content:'';background-position:0 0;background-repeat:no-repeat}.ig_messenger .ig_headline{display:block!important;font-weight:700;text-decoration:none;overflow:hidden;white-space:nowrap}.ig_messenger .ig_headline:after{left:0}.ig_messenger .ig_body{overflow-x:hidden;display:block;border-bottom-width:0;z-index:9}.ig_messenger .ig_footer,.ig_messenger.ig_no_icon .ig_icon{display:none}.ig_messenger .ig_icon{position:absolute;height:2.5em;width:2.5em}.ig_messenger .ig_message{text-align:left;word-wrap:break-word}.ig_messenger .ig_message p{margin-bottom:.25em}.ig_messenger .ig_powered_by{z-index:10;position:relative;text-align:right;font-size:.62em}.ig_messenger .ig_button,.ig_messenger input[type=submit],.ig_messenger input[type=button]{cursor:pointer;border-bottom:none}.ig_messenger .ig_button:active,.ig_messenger input[type=submit]:active,.ig_messenger input[type=button]:active{border-top:none}.ig_messenger .ig_close{position:absolute;z-index:10;height:25px;width:25px}.ig_messenger .ig_close:after{display:block;height:13px;width:13px;top:6px;left:6px;background-image:url(../../../assets/images/clear-header.png);background-repeat:no-repeat;background-position:0 -195px}.ig_messenger.ig_form_bottom .ig_form_container.layout_bottom,.ig_messenger.ig_form_inline .ig_form_container.layout_inline .ig_button_label,.ig_messenger.ig_form_left .ig_form_container.layout_left,.ig_messenger.ig_form_right .ig_form_container.layout_right{display:none}.ig_messenger.ig_form_inline .ig_form_container.layout_inline{float:left;padding:.5em 0}.ig_messenger.ig_form_inline .ig_message p{margin-bottom:0}.ig_messenger.ig_form_inline .ig_form_container.layout_inline .ig_full .ig_form_els,.ig_messenger.ig_form_inline .ig_form_container.layout_inline .ig_half .ig_form_els,.ig_messenger.ig_form_inline .ig_form_container.layout_inline .ig_quater .ig_form_els,.ig_messenger.ig_form_inline .ig_form_container.layout_inline .ig_third .ig_form_els{width:99%;margin:.3em auto}.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els{margin-left:0;margin-right:0}.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els input,.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_first input,.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_last input{padding-left:1em;border-width:2px;border-radius:2em}.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els input.ig_button{padding:inherit}.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els label,.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_first label,.ig_messenger.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_last label{padding-left:1em}.ig_messenger.ig_social.ig_container{font-size:11px;width:22.8em;height:23.6em}.ig_messenger.ig_social .ig_headline{width:100%;background-color:#627BAE;color:#FFF;height:2.45em;line-height:2.65em;font-size:1em;padding:0 3.4em 0 .7em;border:1px solid rgba(0,39,121,.3);border-bottom:none}.ig_messenger.ig_social .ig_body{display:block;position:relative;right:0;background-color:#edeff4;color:#3e454c;font-family:"lucida grande",tahoma,verdana,arial,sans-serif;height:18em;border:1px solid rgba(0,0,0,.3);border-top:none;border-bottom:none;padding:5px .5em 0 3.8em}.ig_messenger.ig_social.ig_no_icon .ig_body{padding-left:.5em;line-height:1.37em}.ig_messenger.ig_social .ig_message:before{display:block;width:0;top:11px;margin:0 0 0 -18px;border:8px solid #DFDFDF;border-color:transparent #DFDFDF transparent transparent;z-index:-1}.ig_messenger.ig_social .ig_message:after{display:block;width:0;top:13px;margin:0 0 0 -15px;border:6px solid #FAFAFA;border-color:transparent #FAFAFA transparent transparent}.ig_messenger.ig_social .ig_message{background-color:#F7F7F7;color:#3E454C;background-image:-webkit-linear-gradient(bottom,#F2F2F2,#FFF);width:90%;font-size:1.09em;padding:.3em;border:1px solid rgba(0,0,0,.18);border-bottom-color:rgba(0,0,0,.29);border-radius:.4em;-webkit-box-shadow:0 1px 0 #DCE0E6;box-shadow:0 1px 0 #DCE0E6}.ig_messenger.ig_social.ig_no_icon .ig_message{margin:0 auto .5em}.ig_messenger.ig_social.ig_no_icon .ig_message:after,.ig_messenger.ig_social.ig_no_icon .ig_message:before{display:none}.ig_messenger.ig_social .ig_icon{margin-left:-3.3em;height:2.54em;width:2.54em}.ig_messenger.ig_social .ig_footer{display:block;height:3em;background-color:#FFF;border:1px solid rgba(0,0,0,.3)}.ig_messenger.ig_social .ig_footer:after{display:block;background-image:url(../../../assets/images/social-img.png);background-position:-269px -137px;width:22px;height:18px;margin-top:.8em;right:.3em}.ig_messenger.ig_social .ig_close{background-image:url(../../../assets/images/social-img.png);background-position:-137px -332px;top:.25em;right:.15em;height:25px;width:21px}.ig_messenger.ig_social .ig_close:before{display:block;height:100%;width:100%;padding:0;background-image:url(../../../assets/images/social-img.png);background-position:-92px -332px;right:1.5em}.ig_messenger.ig_social .ig_close:after{display:none}.ig_messenger.ig_social .ig_powered_by{bottom:1.8em;padding-right:3em;font-size:.9em}@media only screen and (max-width:992px){.ig_messenger.ig_social.ig_container{font-size:13px}}@media only screen and (max-width:320px){.ig_messenger.ig_social.ig_container{font-size:12px;width:20em}}.ig_messenger.ig_talk.ig_container{font-size:12px;width:17.5em;height:21em;border:.1em solid #BFBFBF;border-radius:.5em .5em 0 0}.ig_messenger.ig_talk .ig_close,.ig_messenger.ig_talk .ig_close:before,.ig_messenger.ig_talk .ig_data:after,.ig_messenger.ig_talk .ig_headline:after,.ig_messenger.ig_talk .ig_headline:before{background-size:cover}.ig_messenger.ig_talk .ig_headline:before{display:block;background-image:url(../../../assets/images/clear-header.png);top:.5em;left:.6em;height:1.25em;width:1.25em}.ig_messenger.ig_talk .ig_headline{@appky w-full;background-color:#F5FAFF;color:#00008B;height:2.2em;line-height:2.4em;font-size:1em;padding:0 2.9em 0 2em;border-bottom:.1em solid #BFBFBF;-webkit-box-shadow:inset 0 0 .25em 0 #FFF;box-shadow:inset 0 0 .25em 0 #FFF;border-radius:.5em .5em 0 0}.ig_messenger.ig_talk .ig_headline:after{display:block;height:2.5em;top:2.2em;background-image:url(../../../assets/images/talk-header-2.png)}.ig_messenger.ig_talk .ig_body{position:relative;right:0;background:#FFF;color:#222;font-size:1em;font-family:Arial,Helvetica,sans-serif;height:13.48em;border-top:.1em solid #BFBFBF;border-bottom:.1em solid #BFBFBF;top:2.5em;line-height:1.25em;padding:.5em .8em 0 .5em;-webkit-box-shadow:inset 0 0 .25em 0 #FFF;box-shadow:inset 0 0 .25em 0 #FFF}.ig_messenger.ig_talk .ig_message{width:100%;color:#3E454C;padding-left:3em}.ig_messenger.ig_talk.ig_no_icon .ig_message{padding-left:.5em}.ig_messenger.ig_talk .ig_footer{display:block;background-size:cover;height:2.66em;margin-top:2.5em;background-image:url(../../../assets/images/talk-footer-1.png)}.ig_messenger.ig_talk .ig_close{z-index:10;background-image:url(../../../assets/images/talk-close.png);background-position:0 0;top:.5em;right:.33em;height:1.25em;width:1.25em}.ig_messenger.ig_talk .ig_close:before{display:block;height:100%;width:100%;padding:0;background-image:url(../../../assets/images/talk-header-1.png);right:1.5em}.ig_messenger.ig_talk .ig_close:after{display:none}.ig_messenger.ig_talk .ig_powered_by{bottom:2em;padding-right:2em;font-size:.8em}@media only screen and (max-width:992px){.ig_messenger.ig_talk.ig_container{font-size:14px}}
|
lite/message-types/messenger/themes/social.css
CHANGED
@@ -7,9 +7,9 @@
|
|
7 |
}
|
8 |
|
9 |
.ig_messenger.ig_social .ig_headline {
|
|
|
10 |
background-color: #627BAE;
|
11 |
color: #FFF;
|
12 |
-
width: 100%;
|
13 |
height: 2.45em;
|
14 |
line-height: 2.65em;
|
15 |
font-size: 1em;
|
@@ -19,17 +19,15 @@
|
|
19 |
}
|
20 |
|
21 |
.ig_messenger.ig_social .ig_body {
|
22 |
-
|
23 |
background-color: #edeff4;
|
24 |
color: #3e454c;
|
25 |
font-family: "lucida grande", tahoma, verdana, arial, sans-serif;
|
26 |
-
position: relative;
|
27 |
/*height: 13.35em;*/
|
28 |
height: 18em;
|
29 |
border: 1px solid rgba(0, 0, 0, 0.3);
|
30 |
border-top: none;
|
31 |
border-bottom: none;
|
32 |
-
right: 0;
|
33 |
padding: 5px .5em 0;
|
34 |
padding-left: 3.8em;
|
35 |
}
|
@@ -40,8 +38,7 @@
|
|
40 |
}
|
41 |
|
42 |
.ig_messenger.ig_social .ig_message:before {
|
43 |
-
|
44 |
-
width: 0;
|
45 |
top: 11px;
|
46 |
/*left: 2.25em;*/
|
47 |
margin: 0 0 0 -18px;
|
@@ -50,8 +47,7 @@
|
|
50 |
z-index: -1;
|
51 |
}
|
52 |
.ig_messenger.ig_social .ig_message:after {
|
53 |
-
|
54 |
-
width: 0;
|
55 |
top: 13px;
|
56 |
/*left: 2.6em;*/
|
57 |
margin: 0 0 0 -15px;
|
@@ -78,7 +74,7 @@
|
|
78 |
}
|
79 |
.ig_messenger.ig_social.ig_no_icon .ig_message:after,
|
80 |
.ig_messenger.ig_social.ig_no_icon .ig_message:before {
|
81 |
-
|
82 |
}
|
83 |
.ig_messenger.ig_social .ig_icon {
|
84 |
margin-left: -3.3em;
|
@@ -86,7 +82,7 @@
|
|
86 |
width: 2.54em;
|
87 |
}
|
88 |
.ig_messenger.ig_social .ig_footer {
|
89 |
-
|
90 |
height: 3em;
|
91 |
/*top: 20.5em;*/
|
92 |
background-color: #FFF;
|
@@ -94,7 +90,7 @@
|
|
94 |
}
|
95 |
|
96 |
.ig_messenger.ig_social .ig_footer:after {
|
97 |
-
|
98 |
background-image: url(../../../assets/images/social-img.png);
|
99 |
background-position: -269px -137px;
|
100 |
width: 22px;
|
@@ -113,16 +109,13 @@
|
|
113 |
}
|
114 |
|
115 |
.ig_messenger.ig_social .ig_close:before {
|
116 |
-
|
117 |
background-image: url(../../../assets/images/social-img.png);
|
118 |
background-position: -92px -332px;
|
119 |
-
height: 100%;
|
120 |
-
width: 100%;
|
121 |
-
padding: 0;
|
122 |
right: 1.5em;
|
123 |
}
|
124 |
.ig_messenger.ig_social .ig_close:after{
|
125 |
-
|
126 |
}
|
127 |
|
128 |
.ig_messenger.ig_social .ig_powered_by {
|
7 |
}
|
8 |
|
9 |
.ig_messenger.ig_social .ig_headline {
|
10 |
+
@apply w-full;
|
11 |
background-color: #627BAE;
|
12 |
color: #FFF;
|
|
|
13 |
height: 2.45em;
|
14 |
line-height: 2.65em;
|
15 |
font-size: 1em;
|
19 |
}
|
20 |
|
21 |
.ig_messenger.ig_social .ig_body {
|
22 |
+
@apply block relative right-0;
|
23 |
background-color: #edeff4;
|
24 |
color: #3e454c;
|
25 |
font-family: "lucida grande", tahoma, verdana, arial, sans-serif;
|
|
|
26 |
/*height: 13.35em;*/
|
27 |
height: 18em;
|
28 |
border: 1px solid rgba(0, 0, 0, 0.3);
|
29 |
border-top: none;
|
30 |
border-bottom: none;
|
|
|
31 |
padding: 5px .5em 0;
|
32 |
padding-left: 3.8em;
|
33 |
}
|
38 |
}
|
39 |
|
40 |
.ig_messenger.ig_social .ig_message:before {
|
41 |
+
@apply block w-0;
|
|
|
42 |
top: 11px;
|
43 |
/*left: 2.25em;*/
|
44 |
margin: 0 0 0 -18px;
|
47 |
z-index: -1;
|
48 |
}
|
49 |
.ig_messenger.ig_social .ig_message:after {
|
50 |
+
@apply block w-0;
|
|
|
51 |
top: 13px;
|
52 |
/*left: 2.6em;*/
|
53 |
margin: 0 0 0 -15px;
|
74 |
}
|
75 |
.ig_messenger.ig_social.ig_no_icon .ig_message:after,
|
76 |
.ig_messenger.ig_social.ig_no_icon .ig_message:before {
|
77 |
+
@apply hidden;
|
78 |
}
|
79 |
.ig_messenger.ig_social .ig_icon {
|
80 |
margin-left: -3.3em;
|
82 |
width: 2.54em;
|
83 |
}
|
84 |
.ig_messenger.ig_social .ig_footer {
|
85 |
+
@apply block;
|
86 |
height: 3em;
|
87 |
/*top: 20.5em;*/
|
88 |
background-color: #FFF;
|
90 |
}
|
91 |
|
92 |
.ig_messenger.ig_social .ig_footer:after {
|
93 |
+
@apply block;
|
94 |
background-image: url(../../../assets/images/social-img.png);
|
95 |
background-position: -269px -137px;
|
96 |
width: 22px;
|
109 |
}
|
110 |
|
111 |
.ig_messenger.ig_social .ig_close:before {
|
112 |
+
@apply block h-full w-full p-0;
|
113 |
background-image: url(../../../assets/images/social-img.png);
|
114 |
background-position: -92px -332px;
|
|
|
|
|
|
|
115 |
right: 1.5em;
|
116 |
}
|
117 |
.ig_messenger.ig_social .ig_close:after{
|
118 |
+
@apply hidden;
|
119 |
}
|
120 |
|
121 |
.ig_messenger.ig_social .ig_powered_by {
|
lite/message-types/messenger/themes/talk.css
CHANGED
@@ -13,11 +13,11 @@
|
|
13 |
.ig_messenger.ig_talk .ig_data:after,
|
14 |
.ig_messenger.ig_talk .ig_headline:after,
|
15 |
.ig_messenger.ig_talk .ig_headline:before {
|
16 |
-
|
17 |
}
|
18 |
|
19 |
.ig_messenger.ig_talk .ig_headline:before {
|
20 |
-
|
21 |
background-image: url(../../../assets/images/clear-header.png);
|
22 |
top: .5em;
|
23 |
left: .6em;
|
@@ -26,9 +26,9 @@
|
|
26 |
}
|
27 |
|
28 |
.ig_messenger.ig_talk .ig_headline {
|
|
|
29 |
background-color: #F5FAFF;
|
30 |
color: #00008B;
|
31 |
-
width: 100%;
|
32 |
height: 2.2em;
|
33 |
line-height: 2.4em;
|
34 |
font-size: 1em;
|
@@ -39,31 +39,30 @@
|
|
39 |
}
|
40 |
|
41 |
.ig_messenger.ig_talk .ig_headline:after {
|
42 |
-
|
43 |
height: 2.5em;
|
44 |
top: 2.2em;
|
45 |
background-image: url(../../../assets/images/talk-header-2.png);
|
46 |
}
|
47 |
|
48 |
.ig_messenger.ig_talk .ig_body {
|
|
|
49 |
background: #FFF;
|
50 |
color: #222;
|
51 |
font-size: 1em;
|
52 |
font-family: Arial, Helvetica, sans-serif;
|
53 |
-
position: relative;
|
54 |
height: 13.48em;
|
55 |
border-top: .1em solid #BFBFBF;
|
56 |
border-bottom: .1em solid #BFBFBF;
|
57 |
top: 2.5em;
|
58 |
-
right: 0;
|
59 |
line-height: 1.25em;
|
60 |
padding: .5em .8em 0 .5em;
|
61 |
box-shadow: inset 0 0 .25em 0 #FFF;
|
62 |
}
|
63 |
|
64 |
.ig_messenger.ig_talk .ig_message {
|
|
|
65 |
color: #3E454C;
|
66 |
-
width: 100%;
|
67 |
padding-left: 3em;
|
68 |
}
|
69 |
|
@@ -72,33 +71,29 @@
|
|
72 |
}
|
73 |
|
74 |
.ig_messenger.ig_talk .ig_footer {
|
75 |
-
|
76 |
height: 2.66em;
|
77 |
margin-top: 2.5em;
|
78 |
background-image: url(../../../assets/images/talk-footer-1.png);
|
79 |
-
background-size: cover;
|
80 |
}
|
81 |
|
82 |
.ig_messenger.ig_talk .ig_close {
|
|
|
83 |
background-image: url(../../../assets/images/talk-close.png);
|
84 |
background-position: 0 0;
|
85 |
top: .5em;
|
86 |
right: .33em;
|
87 |
height: 1.25em;
|
88 |
width: 1.25em;
|
89 |
-
z-index: 10;
|
90 |
}
|
91 |
|
92 |
.ig_messenger.ig_talk .ig_close:before {
|
93 |
-
|
94 |
background-image: url(../../../assets/images/talk-header-1.png);
|
95 |
-
height: 100%;
|
96 |
-
width: 100%;
|
97 |
-
padding: 0;
|
98 |
right: 1.5em;
|
99 |
}
|
100 |
.ig_messenger.ig_talk .ig_close:after {
|
101 |
-
|
102 |
}
|
103 |
|
104 |
.ig_messenger.ig_talk .ig_powered_by {
|
13 |
.ig_messenger.ig_talk .ig_data:after,
|
14 |
.ig_messenger.ig_talk .ig_headline:after,
|
15 |
.ig_messenger.ig_talk .ig_headline:before {
|
16 |
+
@apply bg-cover;
|
17 |
}
|
18 |
|
19 |
.ig_messenger.ig_talk .ig_headline:before {
|
20 |
+
@apply block;
|
21 |
background-image: url(../../../assets/images/clear-header.png);
|
22 |
top: .5em;
|
23 |
left: .6em;
|
26 |
}
|
27 |
|
28 |
.ig_messenger.ig_talk .ig_headline {
|
29 |
+
@appky w-full;
|
30 |
background-color: #F5FAFF;
|
31 |
color: #00008B;
|
|
|
32 |
height: 2.2em;
|
33 |
line-height: 2.4em;
|
34 |
font-size: 1em;
|
39 |
}
|
40 |
|
41 |
.ig_messenger.ig_talk .ig_headline:after {
|
42 |
+
@apply block;
|
43 |
height: 2.5em;
|
44 |
top: 2.2em;
|
45 |
background-image: url(../../../assets/images/talk-header-2.png);
|
46 |
}
|
47 |
|
48 |
.ig_messenger.ig_talk .ig_body {
|
49 |
+
@apply relative right-0;
|
50 |
background: #FFF;
|
51 |
color: #222;
|
52 |
font-size: 1em;
|
53 |
font-family: Arial, Helvetica, sans-serif;
|
|
|
54 |
height: 13.48em;
|
55 |
border-top: .1em solid #BFBFBF;
|
56 |
border-bottom: .1em solid #BFBFBF;
|
57 |
top: 2.5em;
|
|
|
58 |
line-height: 1.25em;
|
59 |
padding: .5em .8em 0 .5em;
|
60 |
box-shadow: inset 0 0 .25em 0 #FFF;
|
61 |
}
|
62 |
|
63 |
.ig_messenger.ig_talk .ig_message {
|
64 |
+
@apply w-full;
|
65 |
color: #3E454C;
|
|
|
66 |
padding-left: 3em;
|
67 |
}
|
68 |
|
71 |
}
|
72 |
|
73 |
.ig_messenger.ig_talk .ig_footer {
|
74 |
+
@apply block bg-cover;
|
75 |
height: 2.66em;
|
76 |
margin-top: 2.5em;
|
77 |
background-image: url(../../../assets/images/talk-footer-1.png);
|
|
|
78 |
}
|
79 |
|
80 |
.ig_messenger.ig_talk .ig_close {
|
81 |
+
@apply z-10;
|
82 |
background-image: url(../../../assets/images/talk-close.png);
|
83 |
background-position: 0 0;
|
84 |
top: .5em;
|
85 |
right: .33em;
|
86 |
height: 1.25em;
|
87 |
width: 1.25em;
|
|
|
88 |
}
|
89 |
|
90 |
.ig_messenger.ig_talk .ig_close:before {
|
91 |
+
@apply block h-full w-full p-0;
|
92 |
background-image: url(../../../assets/images/talk-header-1.png);
|
|
|
|
|
|
|
93 |
right: 1.5em;
|
94 |
}
|
95 |
.ig_messenger.ig_talk .ig_close:after {
|
96 |
+
@apply hidden;
|
97 |
}
|
98 |
|
99 |
.ig_messenger.ig_talk .ig_powered_by {
|
lite/message-types/popup/themes/air-mail.css
CHANGED
@@ -1,7 +1,7 @@
|
|
|
|
1 |
.ig_popup.ig_air-mail {
|
2 |
-
|
3 |
border-width: 8px;
|
4 |
-
border-style: solid;
|
5 |
/*white/blue/red border*/
|
6 |
-moz-border-image: -moz-repeating-linear-gradient(45deg, #a83439, #a83439 10px, #fdfdfd 10px, #fdfdfd 20px, #2f4175 20px, #2f4175 30px, #fdfdfd 30px, #fdfdfd 40px) 8 round;
|
7 |
-webkit-border-image: -webkit-repeating-linear-gradient(45deg, #a83439, #a83439 10px, #fdfdfd 10px, #fdfdfd 20px, #2f4175 20px, #2f4175 30px, #fdfdfd 30px, #fdfdfd 40px) 8 round;
|
@@ -22,16 +22,16 @@
|
|
22 |
}*/
|
23 |
|
24 |
.ig_popup.ig_air-mail .ig_headline {
|
|
|
25 |
padding: .5em;
|
26 |
font-size: 2.5em;
|
27 |
-
text-align: center;
|
28 |
color: #2C4A9D;
|
29 |
/*font-weight: 400;*/
|
30 |
/*text-shadow: 0 1px 0 rgba(0, 0, 0, .5);*/
|
31 |
}
|
32 |
|
33 |
.ig_popup.ig_air-mail .ig_image {
|
34 |
-
float
|
35 |
}
|
36 |
|
37 |
.ig_popup.ig_air-mail .ig_message {
|
@@ -41,30 +41,24 @@
|
|
41 |
}
|
42 |
|
43 |
.ig_popup.ig_air-mail .ig_close {
|
|
|
44 |
background-position: -520px center;
|
45 |
-
margin: 0;
|
46 |
-
top: 0;
|
47 |
-
right: 0;
|
48 |
opacity: .35;
|
49 |
}
|
50 |
.ig_popup.ig_air-mail .ig_close:hover {
|
|
|
51 |
background-position: -520px center;
|
52 |
-
opacity: .75;
|
53 |
}
|
54 |
|
55 |
.ig_popup.ig_air-mail .ig_button,
|
56 |
.ig_popup.ig_air-mail input[type="submit"],
|
57 |
.ig_popup.ig_air-mail input[type="button"] {
|
|
|
58 |
/*background: #e74d3c;*/
|
59 |
background: #D82931;
|
60 |
color: #FFF;
|
61 |
-
width: 50%;
|
62 |
border-radius: 4px;
|
63 |
-
border: none;
|
64 |
font-size: 1.5em;
|
65 |
-
text-transform: uppercase;
|
66 |
-
font-weight: 600;
|
67 |
-
text-align: center;
|
68 |
margin: .8em auto 1.2em auto;
|
69 |
padding: .5em .15em;
|
70 |
/*border-top: 3px solid #c0392b;*/ /*replacement for hover*/
|
@@ -84,9 +78,9 @@
|
|
84 |
.ig_popup.ig_air-mail .ig_button:active,
|
85 |
.ig_popup.ig_air-mail input[type="submit"]:active,
|
86 |
.ig_popup.ig_air-mail input[type="button"]:active{
|
|
|
87 |
/*margin: 10px auto 20px auto;*/
|
88 |
/*border: none;*/
|
89 |
-
box-shadow: none;
|
90 |
}
|
91 |
|
92 |
|
@@ -114,3 +108,4 @@
|
|
114 |
padding-top: 1em;
|
115 |
}
|
116 |
}
|
|
1 |
+
/* purgecss start ignore */
|
2 |
.ig_popup.ig_air-mail {
|
3 |
+
@apply relative border-solid;
|
4 |
border-width: 8px;
|
|
|
5 |
/*white/blue/red border*/
|
6 |
-moz-border-image: -moz-repeating-linear-gradient(45deg, #a83439, #a83439 10px, #fdfdfd 10px, #fdfdfd 20px, #2f4175 20px, #2f4175 30px, #fdfdfd 30px, #fdfdfd 40px) 8 round;
|
7 |
-webkit-border-image: -webkit-repeating-linear-gradient(45deg, #a83439, #a83439 10px, #fdfdfd 10px, #fdfdfd 20px, #2f4175 20px, #2f4175 30px, #fdfdfd 30px, #fdfdfd 40px) 8 round;
|
22 |
}*/
|
23 |
|
24 |
.ig_popup.ig_air-mail .ig_headline {
|
25 |
+
@apply text-center;
|
26 |
padding: .5em;
|
27 |
font-size: 2.5em;
|
|
|
28 |
color: #2C4A9D;
|
29 |
/*font-weight: 400;*/
|
30 |
/*text-shadow: 0 1px 0 rgba(0, 0, 0, .5);*/
|
31 |
}
|
32 |
|
33 |
.ig_popup.ig_air-mail .ig_image {
|
34 |
+
@apply float-right;
|
35 |
}
|
36 |
|
37 |
.ig_popup.ig_air-mail .ig_message {
|
41 |
}
|
42 |
|
43 |
.ig_popup.ig_air-mail .ig_close {
|
44 |
+
@apply m-0 top-0 right-0;
|
45 |
background-position: -520px center;
|
|
|
|
|
|
|
46 |
opacity: .35;
|
47 |
}
|
48 |
.ig_popup.ig_air-mail .ig_close:hover {
|
49 |
+
@apply opacity-75;
|
50 |
background-position: -520px center;
|
|
|
51 |
}
|
52 |
|
53 |
.ig_popup.ig_air-mail .ig_button,
|
54 |
.ig_popup.ig_air-mail input[type="submit"],
|
55 |
.ig_popup.ig_air-mail input[type="button"] {
|
56 |
+
@apply w-1/2 uppercase font-semibold text-center border-none;
|
57 |
/*background: #e74d3c;*/
|
58 |
background: #D82931;
|
59 |
color: #FFF;
|
|
|
60 |
border-radius: 4px;
|
|
|
61 |
font-size: 1.5em;
|
|
|
|
|
|
|
62 |
margin: .8em auto 1.2em auto;
|
63 |
padding: .5em .15em;
|
64 |
/*border-top: 3px solid #c0392b;*/ /*replacement for hover*/
|
78 |
.ig_popup.ig_air-mail .ig_button:active,
|
79 |
.ig_popup.ig_air-mail input[type="submit"]:active,
|
80 |
.ig_popup.ig_air-mail input[type="button"]:active{
|
81 |
+
@apply shadow-none;
|
82 |
/*margin: 10px auto 20px auto;*/
|
83 |
/*border: none;*/
|
|
|
84 |
}
|
85 |
|
86 |
|
108 |
padding-top: 1em;
|
109 |
}
|
110 |
}
|
111 |
+
/* purgecss end ignore */
|
lite/message-types/popup/themes/amaze.css
CHANGED
@@ -1,24 +1,24 @@
|
|
|
|
1 |
.ig_popup.ig_amaze {
|
2 |
border: .3em solid #444;
|
3 |
background-color: #444;
|
4 |
color: #FFF;
|
5 |
}
|
6 |
.ig_popup.ig_amaze .ig_bg_overlay{
|
7 |
-
|
8 |
background-image: url(../../../assets/images/popup-amaze-bg.jpg);
|
9 |
-
opacity: .5;
|
10 |
}
|
11 |
|
12 |
.ig_popup.ig_amaze .ig_headline {
|
|
|
13 |
padding: .5em;
|
14 |
-
text-align: center;
|
15 |
/*color: #fff;*/
|
16 |
text-shadow: 0 1px 0 rgba(0, 0, 0, .5);
|
17 |
font-size: 2em;
|
18 |
}
|
19 |
|
20 |
.ig_popup.ig_amaze .ig_image {
|
21 |
-
|
22 |
}
|
23 |
|
24 |
.ig_popup.ig_amaze .ig_message {
|
@@ -32,21 +32,17 @@
|
|
32 |
.ig_popup.ig_amaze .ig_button,
|
33 |
.ig_popup.ig_amaze input[type="submit"],
|
34 |
.ig_popup.ig_amaze input[type="button"] {
|
|
|
35 |
/*background: hsl(145, 63%, 49%);*/
|
36 |
background: #2ecc70;
|
37 |
-
color: #FFF;
|
38 |
font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
|
39 |
font-size: 1.3em;
|
40 |
letter-spacing: 1px;
|
41 |
-
vertical-align: top;
|
42 |
-
font-weight: 700;
|
43 |
-
text-align: center;
|
44 |
line-height: 1.8em;
|
45 |
border-radius: 3px;
|
46 |
border-bottom: .2em solid rgba(63, 63, 63, 0.6);
|
47 |
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
|
48 |
margin: .5em auto 1.2em auto;
|
49 |
-
width: 40%;
|
50 |
padding: 0.3em 1em;
|
51 |
}
|
52 |
.ig_popup.ig_amaze .ig_button:hover,
|
@@ -76,4 +72,6 @@
|
|
76 |
width: 98%;
|
77 |
}*/
|
78 |
|
79 |
-
/****************** Embed Form: End *******************/
|
|
|
|
1 |
+
/* purgecss start ignore */
|
2 |
.ig_popup.ig_amaze {
|
3 |
border: .3em solid #444;
|
4 |
background-color: #444;
|
5 |
color: #FFF;
|
6 |
}
|
7 |
.ig_popup.ig_amaze .ig_bg_overlay{
|
8 |
+
@apply block opacity-50;
|
9 |
background-image: url(../../../assets/images/popup-amaze-bg.jpg);
|
|
|
10 |
}
|
11 |
|
12 |
.ig_popup.ig_amaze .ig_headline {
|
13 |
+
@apply text-center;
|
14 |
padding: .5em;
|
|
|
15 |
/*color: #fff;*/
|
16 |
text-shadow: 0 1px 0 rgba(0, 0, 0, .5);
|
17 |
font-size: 2em;
|
18 |
}
|
19 |
|
20 |
.ig_popup.ig_amaze .ig_image {
|
21 |
+
@apply float-left;
|
22 |
}
|
23 |
|
24 |
.ig_popup.ig_amaze .ig_message {
|
32 |
.ig_popup.ig_amaze .ig_button,
|
33 |
.ig_popup.ig_amaze input[type="submit"],
|
34 |
.ig_popup.ig_amaze input[type="button"] {
|
35 |
+
@apply align-top font-bold text-center rounded-sm w-2/5 text-white;
|
36 |
/*background: hsl(145, 63%, 49%);*/
|
37 |
background: #2ecc70;
|
|
|
38 |
font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
|
39 |
font-size: 1.3em;
|
40 |
letter-spacing: 1px;
|
|
|
|
|
|
|
41 |
line-height: 1.8em;
|
42 |
border-radius: 3px;
|
43 |
border-bottom: .2em solid rgba(63, 63, 63, 0.6);
|
44 |
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
|
45 |
margin: .5em auto 1.2em auto;
|
|
|
46 |
padding: 0.3em 1em;
|
47 |
}
|
48 |
.ig_popup.ig_amaze .ig_button:hover,
|
72 |
width: 98%;
|
73 |
}*/
|
74 |
|
75 |
+
/****************** Embed Form: End *******************/
|
76 |
+
|
77 |
+
/* purgecss end ignore */
|
lite/message-types/popup/themes/compel.css
CHANGED
@@ -1,20 +1,21 @@
|
|
|
|
1 |
.ig_popup.ig_compel {
|
2 |
-
|
3 |
color: #707070;
|
4 |
border: 4px dashed #c0392b;
|
5 |
}
|
6 |
|
7 |
.ig_popup.ig_compel .ig_headline {
|
|
|
8 |
padding: .5em;
|
9 |
padding-right: 1em;
|
10 |
font-size: 2em;
|
11 |
text-shadow: 0 1px 0 rgba(0, 0, 0, .2);
|
12 |
margin-bottom: 0.2em;
|
13 |
-
text-align: center;
|
14 |
}
|
15 |
|
16 |
.ig_popup.ig_compel .ig_image {
|
17 |
-
float
|
18 |
padding-right: 1em;
|
19 |
}
|
20 |
|
@@ -26,30 +27,25 @@
|
|
26 |
}
|
27 |
|
28 |
.ig_popup.ig_compel .ig_close {
|
|
|
29 |
background-position: -520px center;
|
30 |
-
margin: 0;
|
31 |
-
top: 0;
|
32 |
-
right: 0;
|
33 |
opacity: .35;
|
34 |
}
|
35 |
.ig_popup.ig_compel .ig_close:hover {
|
|
|
36 |
background-position: -520px center;
|
37 |
-
opacity: .75;
|
38 |
}
|
39 |
|
40 |
.ig_popup.ig_compel .ig_button,
|
41 |
.ig_popup.ig_compel input[type="submit"],
|
42 |
.ig_popup.ig_compel input[type="button"] {
|
|
|
43 |
background: #e74d3c;
|
44 |
color: #FFF;
|
45 |
-
width: 50%;
|
46 |
border-radius: 5px;
|
47 |
/*border-bottom: 3px solid #bf3a2b;*/
|
48 |
border-bottom: .18em solid #bf3a2b;
|
49 |
font-size: 1.2em;
|
50 |
-
text-transform: uppercase;
|
51 |
-
font-weight: 600;
|
52 |
-
text-align: center;
|
53 |
/*padding: .8em .15em;*/
|
54 |
padding: .8em .15em .62em .15em;
|
55 |
margin: .5em auto 1.2em auto;
|
@@ -92,3 +88,5 @@
|
|
92 |
|
93 |
|
94 |
/****************** Embed Form: End *******************/
|
|
|
|
1 |
+
/* purgecss start ignore */
|
2 |
.ig_popup.ig_compel {
|
3 |
+
@apply bg-white;
|
4 |
color: #707070;
|
5 |
border: 4px dashed #c0392b;
|
6 |
}
|
7 |
|
8 |
.ig_popup.ig_compel .ig_headline {
|
9 |
+
@apply text-center;
|
10 |
padding: .5em;
|
11 |
padding-right: 1em;
|
12 |
font-size: 2em;
|
13 |
text-shadow: 0 1px 0 rgba(0, 0, 0, .2);
|
14 |
margin-bottom: 0.2em;
|
|
|
15 |
}
|
16 |
|
17 |
.ig_popup.ig_compel .ig_image {
|
18 |
+
@apply float-left;
|
19 |
padding-right: 1em;
|
20 |
}
|
21 |
|
27 |
}
|
28 |
|
29 |
.ig_popup.ig_compel .ig_close {
|
30 |
+
@apply m-0 top-0 right-0;
|
31 |
background-position: -520px center;
|
|
|
|
|
|
|
32 |
opacity: .35;
|
33 |
}
|
34 |
.ig_popup.ig_compel .ig_close:hover {
|
35 |
+
@apply opacity-75;
|
36 |
background-position: -520px center;
|
|
|
37 |
}
|
38 |
|
39 |
.ig_popup.ig_compel .ig_button,
|
40 |
.ig_popup.ig_compel input[type="submit"],
|
41 |
.ig_popup.ig_compel input[type="button"] {
|
42 |
+
@apply w-1/2 uppercase font-semibold text-center;
|
43 |
background: #e74d3c;
|
44 |
color: #FFF;
|
|
|
45 |
border-radius: 5px;
|
46 |
/*border-bottom: 3px solid #bf3a2b;*/
|
47 |
border-bottom: .18em solid #bf3a2b;
|
48 |
font-size: 1.2em;
|
|
|
|
|
|
|
49 |
/*padding: .8em .15em;*/
|
50 |
padding: .8em .15em .62em .15em;
|
51 |
margin: .5em auto 1.2em auto;
|
88 |
|
89 |
|
90 |
/****************** Embed Form: End *******************/
|
91 |
+
|
92 |
+
/* purgecss end ignore */
|
lite/message-types/popup/themes/convert.css
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
/* google Font */
|
2 |
/* latin */
|
3 |
@font-face {
|
@@ -8,54 +9,48 @@
|
|
8 |
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
9 |
}
|
10 |
.ig_popup.ig_convert {
|
|
|
11 |
background-color: #fffdcc;
|
12 |
color: #484747;
|
13 |
-
box-shadow: none;
|
14 |
-
width: 50%;
|
15 |
border-radius: .3em;
|
16 |
}
|
17 |
|
18 |
.ig_popup.ig_convert .ig_headline {
|
|
|
19 |
font-size: 2.5em;
|
20 |
padding: .8em 1.2em .3em;
|
21 |
/*letter-spacing: 0;*/
|
22 |
/*text-align: left;*/
|
23 |
-
text-align: center;
|
24 |
font-family: 'Goudy Bookletter 1911', serif;
|
25 |
}
|
26 |
|
27 |
.ig_popup.ig_convert .ig_image {
|
28 |
-
float
|
29 |
}
|
30 |
|
31 |
.ig_popup.ig_convert .ig_message {
|
|
|
32 |
font-size: 1.2em;
|
33 |
padding: 0.8em 1.5em;
|
34 |
font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
|
35 |
-
vertical-align: baseline;
|
36 |
-
text-align: center;
|
37 |
}
|
38 |
|
39 |
.ig_popup.ig_convert .ig_button,
|
40 |
.ig_popup.ig_convert input[type="submit"],
|
41 |
.ig_popup.ig_convert input[type="button"] {
|
|
|
42 |
background: #cb0606;
|
43 |
color: #fcf8f8;
|
44 |
/*text-transform: uppercase;*/
|
45 |
-
font-weight: 700;
|
46 |
-
text-decoration: none;
|
47 |
font-size: 1.75em;
|
48 |
/*border: .25em solid #b9b1b1 !important; */
|
49 |
border: .2em solid rgba(0, 0, 0, .2) !important;
|
50 |
-
width: 60%;
|
51 |
/*font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;*/
|
52 |
font-family: 'Goudy Bookletter 1911', serif;
|
53 |
-
border-radius: 3em;
|
54 |
text-align: center;
|
55 |
line-height: 1.5em;
|
56 |
padding: 0.3em 1em;
|
57 |
margin: .5em auto 1.2em auto;
|
58 |
-
clear: both;
|
59 |
}
|
60 |
.ig_popup.ig_convert .ig_button:hover,
|
61 |
.ig_popup.ig_convert input[type="submit"]:hover,
|
@@ -65,7 +60,7 @@
|
|
65 |
.ig_popup.ig_convert .ig_button:active,
|
66 |
.ig_popup.ig_convert input[type="submit"]:active,
|
67 |
.ig_popup.ig_convert input[type="button"]:active{
|
68 |
-
|
69 |
}
|
70 |
|
71 |
.ig_popup.ig_convert .ig_close {
|
@@ -105,11 +100,13 @@
|
|
105 |
}
|
106 |
@media only screen and (max-width: 644px) {
|
107 |
.ig_popup.ig_convert {
|
108 |
-
|
109 |
}
|
110 |
}
|
111 |
@media only screen and (max-width: 375px) {
|
112 |
.ig_popup.ig_convert {
|
113 |
width: 90%;
|
114 |
}
|
115 |
-
}
|
|
|
|
1 |
+
/* purgecss start ignore */
|
2 |
/* google Font */
|
3 |
/* latin */
|
4 |
@font-face {
|
9 |
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
|
10 |
}
|
11 |
.ig_popup.ig_convert {
|
12 |
+
@apply shadow-none w-1/2;
|
13 |
background-color: #fffdcc;
|
14 |
color: #484747;
|
|
|
|
|
15 |
border-radius: .3em;
|
16 |
}
|
17 |
|
18 |
.ig_popup.ig_convert .ig_headline {
|
19 |
+
@apply text-center;
|
20 |
font-size: 2.5em;
|
21 |
padding: .8em 1.2em .3em;
|
22 |
/*letter-spacing: 0;*/
|
23 |
/*text-align: left;*/
|
|
|
24 |
font-family: 'Goudy Bookletter 1911', serif;
|
25 |
}
|
26 |
|
27 |
.ig_popup.ig_convert .ig_image {
|
28 |
+
@apply float-right;
|
29 |
}
|
30 |
|
31 |
.ig_popup.ig_convert .ig_message {
|
32 |
+
@apply align-baseline text-center;
|
33 |
font-size: 1.2em;
|
34 |
padding: 0.8em 1.5em;
|
35 |
font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
|
|
|
|
|
36 |
}
|
37 |
|
38 |
.ig_popup.ig_convert .ig_button,
|
39 |
.ig_popup.ig_convert input[type="submit"],
|
40 |
.ig_popup.ig_convert input[type="button"] {
|
41 |
+
@apply font-bold no-underline w-3/5 text-center clear-both;
|
42 |
background: #cb0606;
|
43 |
color: #fcf8f8;
|
44 |
/*text-transform: uppercase;*/
|
|
|
|
|
45 |
font-size: 1.75em;
|
46 |
/*border: .25em solid #b9b1b1 !important; */
|
47 |
border: .2em solid rgba(0, 0, 0, .2) !important;
|
|
|
48 |
/*font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;*/
|
49 |
font-family: 'Goudy Bookletter 1911', serif;
|
|
|
50 |
text-align: center;
|
51 |
line-height: 1.5em;
|
52 |
padding: 0.3em 1em;
|
53 |
margin: .5em auto 1.2em auto;
|
|
|
54 |
}
|
55 |
.ig_popup.ig_convert .ig_button:hover,
|
56 |
.ig_popup.ig_convert input[type="submit"]:hover,
|
60 |
.ig_popup.ig_convert .ig_button:active,
|
61 |
.ig_popup.ig_convert input[type="submit"]:active,
|
62 |
.ig_popup.ig_convert input[type="button"]:active{
|
63 |
+
@apply shadow-none;
|
64 |
}
|
65 |
|
66 |
.ig_popup.ig_convert .ig_close {
|
100 |
}
|
101 |
@media only screen and (max-width: 644px) {
|
102 |
.ig_popup.ig_convert {
|
103 |
+
@apply w-9/12;
|
104 |
}
|
105 |
}
|
106 |
@media only screen and (max-width: 375px) {
|
107 |
.ig_popup.ig_convert {
|
108 |
width: 90%;
|
109 |
}
|
110 |
+
}
|
111 |
+
|
112 |
+
/* purgecss end ignore */
|
lite/message-types/popup/themes/default.css
CHANGED
@@ -1,46 +1,35 @@
|
|
|
|
1 |
/* Magnific popup css */
|
2 |
.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8;filter:alpha(opacity=80)}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:999999;position:fixed;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-preloader a:hover{color:#FFF}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;filter:alpha(opacity=65);padding:0 0 18px 10px;color:#FFF;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1;filter:alpha(opacity=100)}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;filter:alpha(opacity=65);margin:-55px 0 0;top:50%;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1;filter:alpha(opacity=100)}.mfp-arrow .mfp-a,.mfp-arrow .mfp-b,.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:inset transparent}.mfp-arrow .mfp-a,.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow .mfp-b,.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left .mfp-b,.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3F3F3F}.mfp-arrow-right{right:0}.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right .mfp-b,.mfp-arrow-right:before{border-left:27px solid #3F3F3F}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#BDBDBD;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#F3F3F3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;-ms-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;-ms-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-ie7 .mfp-img{padding:0}.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px}.mfp-ie7 .mfp-container{padding:0}.mfp-ie7 .mfp-content{padding-top:44px}.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0}
|
3 |
.mfp-bg{z-index:999999;}
|
4 |
|
5 |
.ig_popup{
|
6 |
-
opacity
|
7 |
-
display: block;
|
8 |
z-index: 100000;
|
9 |
-
background-color: transparent;
|
10 |
/*background-color: transparent !important;*/
|
11 |
/*color: transparent !important;*/
|
12 |
/*width: 60%;*/
|
13 |
width: 58%;
|
14 |
margin: 32px auto 20px auto !important;
|
15 |
-
position: relative;
|
16 |
font-size: 1em;
|
17 |
}
|
18 |
|
19 |
.ig_popup .ig_content {
|
20 |
-
|
21 |
}
|
22 |
.ig_popup .ig_bg_overlay{
|
23 |
-
|
24 |
-
width: 100%;
|
25 |
-
height: 100%;
|
26 |
-
top: 0;
|
27 |
-
left: 0;
|
28 |
-
margin: 0;
|
29 |
-
padding: 0;
|
30 |
-
position: absolute;
|
31 |
-
display: none;
|
32 |
}
|
33 |
|
34 |
.ig_popup .ig_headline {
|
35 |
-
|
36 |
-
font-weight: 800;
|
37 |
font-size: 2em;
|
38 |
line-height: 1.2em;
|
39 |
}
|
40 |
|
41 |
.ig_popup .ig_data {
|
42 |
/*overflow: hidden;*/
|
43 |
-
|
44 |
}
|
45 |
|
46 |
.ig_popup .ig_image {
|
@@ -52,17 +41,13 @@
|
|
52 |
font-size: 1.2em;
|
53 |
}
|
54 |
.ig_popup .ig_close {
|
|
|
55 |
background-image: url(../../../assets/images/sprite_1.png);
|
56 |
-
background-position: -600px center;
|
57 |
-
background-repeat: no-repeat;
|
58 |
height: 30px;
|
59 |
width: 30px;
|
|
|
60 |
top: -15px;
|
61 |
right: -15px;
|
62 |
-
margin: 0;
|
63 |
-
cursor: pointer;
|
64 |
-
position: absolute;
|
65 |
-
z-index: 20;
|
66 |
}
|
67 |
|
68 |
.ig_popup .ig_close:hover {
|
@@ -72,13 +57,7 @@
|
|
72 |
.ig_popup .ig_button,
|
73 |
.ig_popup input[type="submit"],
|
74 |
.ig_popup input[type="button"] {
|
75 |
-
cursor
|
76 |
-
display: block;
|
77 |
-
background-image: none;
|
78 |
-
border: none;
|
79 |
-
border-radius: 0;
|
80 |
-
box-shadow:none;
|
81 |
-
position: relative;
|
82 |
}
|
83 |
|
84 |
.ig_popup .ig_button:hover,
|
@@ -92,7 +71,7 @@
|
|
92 |
}
|
93 |
|
94 |
.mfp-wrap .ig_powered_by {
|
95 |
-
|
96 |
bottom: 1em;
|
97 |
left: 1em;
|
98 |
font-size: 14px;
|
@@ -123,22 +102,22 @@ div.icegram .ig_popup input[type="button"] {
|
|
123 |
}
|
124 |
@media only screen and (max-width: 644px) {
|
125 |
.ig_popup {
|
126 |
-
|
|
|
127 |
/*top: 8% !important;*/
|
128 |
/*margin: 10px auto !important;*/
|
129 |
-
font-size: 13px;
|
130 |
}
|
131 |
.ig_popup .ig_button,
|
132 |
.ig_popup input[type="submit"],
|
133 |
.ig_popup input[type="button"] {
|
134 |
-
|
135 |
}
|
136 |
}
|
137 |
@media only screen and (max-width: 425px) {
|
138 |
.ig_popup .ig_button,
|
139 |
.ig_popup input[type="submit"],
|
140 |
.ig_popup input[type="button"] {
|
141 |
-
|
142 |
}
|
143 |
|
144 |
}
|
@@ -158,19 +137,19 @@ div.icegram .ig_popup input[type="button"] {
|
|
158 |
/****************** Embed Form: Start *******************/
|
159 |
|
160 |
.ig_popup .ig_form_container{
|
|
|
161 |
width: 30%;
|
162 |
-
float: left;
|
163 |
/*padding-top: 2em;*/
|
164 |
}
|
165 |
|
166 |
.ig_popup.ig_form_left .ig_data{
|
167 |
-
|
168 |
}
|
169 |
|
170 |
.ig_popup.ig_form_left .ig_data,
|
171 |
.ig_popup.ig_form_right .ig_data{
|
|
|
172 |
width: 70%;
|
173 |
-
float: left;
|
174 |
}
|
175 |
|
176 |
.ig_popup.ig_form_right.ig_form_style_4 .ig_close,
|
@@ -185,16 +164,15 @@ div.icegram .ig_popup input[type="button"] {
|
|
185 |
@media only screen and (max-width: 850px){
|
186 |
.ig_popup.ig_form_left .ig_form_container.layout_left,
|
187 |
.ig_popup.ig_form_right .ig_form_container.layout_right{
|
188 |
-
|
189 |
}
|
190 |
|
191 |
.ig_popup.ig_form_left .ig_form_container.layout_bottom,
|
192 |
.ig_popup.ig_form_right .ig_form_container.layout_bottom,
|
193 |
.ig_popup.ig_form_bottom .ig_form_container.layout_bottom{
|
194 |
-
|
195 |
-
|
196 |
font-size: 1.3em;
|
197 |
-
height: auto !important;
|
198 |
}
|
199 |
.ig_popup.ig_form_inline .ig_form_container.layout_inline{
|
200 |
padding: .6em 0;
|
@@ -202,7 +180,7 @@ div.icegram .ig_popup input[type="button"] {
|
|
202 |
|
203 |
.ig_popup.ig_form_left .ig_data,
|
204 |
.ig_popup.ig_form_right .ig_data{
|
205 |
-
|
206 |
}
|
207 |
|
208 |
.ig_popup .ig_form_container.layout_bottom .ig_full .ig_form_els,
|
@@ -219,7 +197,7 @@ div.icegram .ig_popup input[type="button"] {
|
|
219 |
|
220 |
.ig_popup .ig_form_container.layout_inline .ig_button_label,
|
221 |
.ig_popup .ig_form_container.layout_bottom .ig_button_label{
|
222 |
-
|
223 |
}
|
224 |
|
225 |
.ig_popup .ig_form_container.layout_inline .ig_button,
|
@@ -235,26 +213,24 @@ div.icegram .ig_popup input[type="button"] {
|
|
235 |
|
236 |
.ig_popup.ig_form_bottom .ig_form_container.layout_bottom .ig_form_els.ig_form_el_radio,
|
237 |
.ig_popup.ig_form_inline .ig_form_container.layout_inline .ig_form_els.ig_form_el_radio{
|
238 |
-
|
239 |
}
|
240 |
.ig_popup.ig_form_bottom .ig_form_container.layout_bottom .ig_form_els.ig_form_el_radio label,
|
241 |
.ig_popup.ig_form_inline .ig_form_container.layout_inline .ig_form_els.ig_form_el_radio label{
|
242 |
-
|
243 |
}
|
244 |
|
245 |
/****** Form Style: Style 1 ******/
|
246 |
|
247 |
.ig_popup.ig_form_style_1 .ig_form_container:before{
|
248 |
-
border-
|
249 |
-
border-
|
250 |
-
border-color: #000 !important;
|
251 |
opacity: .3;
|
252 |
-
top: 0;
|
253 |
}
|
254 |
|
255 |
.ig_popup.ig_form_left.ig_form_style_1 .ig_form_container.layout_bottom:before,
|
256 |
.ig_popup.ig_form_right.ig_form_style_1 .ig_form_container.layout_bottom:before{
|
257 |
-
|
258 |
border-top-width: .2em;
|
259 |
}
|
260 |
.ig_popup.ig_form_bottom.ig_form_style_1 .ig_form_container.layout_bottom:before{
|
@@ -265,8 +241,7 @@ div.icegram .ig_popup input[type="button"] {
|
|
265 |
|
266 |
.ig_popup.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els,
|
267 |
.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els{
|
268 |
-
|
269 |
-
margin-left: 0;
|
270 |
}
|
271 |
|
272 |
.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_first input,
|
@@ -297,10 +272,10 @@ div.icegram .ig_popup input[type="button"] {
|
|
297 |
|
298 |
.ig_popup.ig_form_right.ig_form_style_4 .ig_close,
|
299 |
.ig_popup.ig_form_right.ig_form_style_4 .ig_close:hover{
|
|
|
300 |
/*margin: -2em -1em 0 0;*/
|
301 |
/*top: 1em;*/
|
302 |
/*margin: -16px -16px 0 0;*/
|
303 |
-
margin: 0;
|
304 |
}
|
305 |
|
306 |
.ig_popup.ig_form_left.ig_form_style_4 .ig_form_container:before,
|
@@ -321,4 +296,6 @@ div.icegram .ig_popup input[type="button"] {
|
|
321 |
font-size: 1.1em;
|
322 |
}
|
323 |
}
|
324 |
-
/****************** Embed Form: End *******************/
|
|
|
|
1 |
+
/* purgecss start ignore */
|
2 |
/* Magnific popup css */
|
3 |
.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8;filter:alpha(opacity=80)}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:999999;position:fixed;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-preloader a:hover{color:#FFF}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;filter:alpha(opacity=65);padding:0 0 18px 10px;color:#FFF;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1;filter:alpha(opacity=100)}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;filter:alpha(opacity=65);margin:-55px 0 0;top:50%;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1;filter:alpha(opacity=100)}.mfp-arrow .mfp-a,.mfp-arrow .mfp-b,.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:inset transparent}.mfp-arrow .mfp-a,.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow .mfp-b,.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left .mfp-b,.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3F3F3F}.mfp-arrow-right{right:0}.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right .mfp-b,.mfp-arrow-right:before{border-left:27px solid #3F3F3F}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#BDBDBD;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#F3F3F3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;-ms-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;-ms-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-ie7 .mfp-img{padding:0}.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px}.mfp-ie7 .mfp-container{padding:0}.mfp-ie7 .mfp-content{padding-top:44px}.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0}
|
4 |
.mfp-bg{z-index:999999;}
|
5 |
|
6 |
.ig_popup{
|
7 |
+
@apply opacity-100 block bg-transparent relative;
|
|
|
8 |
z-index: 100000;
|
|
|
9 |
/*background-color: transparent !important;*/
|
10 |
/*color: transparent !important;*/
|
11 |
/*width: 60%;*/
|
12 |
width: 58%;
|
13 |
margin: 32px auto 20px auto !important;
|
|
|
14 |
font-size: 1em;
|
15 |
}
|
16 |
|
17 |
.ig_popup .ig_content {
|
18 |
+
@apply bg-transparent;
|
19 |
}
|
20 |
.ig_popup .ig_bg_overlay{
|
21 |
+
@apply bg-transparent w-full h-full top-0 left-0 m-0 p-0 absolute hidden;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
}
|
23 |
|
24 |
.ig_popup .ig_headline {
|
25 |
+
@apply no-underline font-extrabold;
|
|
|
26 |
font-size: 2em;
|
27 |
line-height: 1.2em;
|
28 |
}
|
29 |
|
30 |
.ig_popup .ig_data {
|
31 |
/*overflow: hidden;*/
|
32 |
+
@apply relative;
|
33 |
}
|
34 |
|
35 |
.ig_popup .ig_image {
|
41 |
font-size: 1.2em;
|
42 |
}
|
43 |
.ig_popup .ig_close {
|
44 |
+
@apply bg-no-repeat m-0 cursor-pointer absolute z-20;
|
45 |
background-image: url(../../../assets/images/sprite_1.png);
|
|
|
|
|
46 |
height: 30px;
|
47 |
width: 30px;
|
48 |
+
background-position: -600px center;
|
49 |
top: -15px;
|
50 |
right: -15px;
|
|
|
|
|
|
|
|
|
51 |
}
|
52 |
|
53 |
.ig_popup .ig_close:hover {
|
57 |
.ig_popup .ig_button,
|
58 |
.ig_popup input[type="submit"],
|
59 |
.ig_popup input[type="button"] {
|
60 |
+
@apply cursor-pointer block bg-none rounded-none shadow-none relative rounded-none;
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
}
|
62 |
|
63 |
.ig_popup .ig_button:hover,
|
71 |
}
|
72 |
|
73 |
.mfp-wrap .ig_powered_by {
|
74 |
+
@apply fixed;
|
75 |
bottom: 1em;
|
76 |
left: 1em;
|
77 |
font-size: 14px;
|
102 |
}
|
103 |
@media only screen and (max-width: 644px) {
|
104 |
.ig_popup {
|
105 |
+
@apply w-9/12;
|
106 |
+
font-size: 13px;
|
107 |
/*top: 8% !important;*/
|
108 |
/*margin: 10px auto !important;*/
|
|
|
109 |
}
|
110 |
.ig_popup .ig_button,
|
111 |
.ig_popup input[type="submit"],
|
112 |
.ig_popup input[type="button"] {
|
113 |
+
@apply w-3/5 !important;
|
114 |
}
|
115 |
}
|
116 |
@media only screen and (max-width: 425px) {
|
117 |
.ig_popup .ig_button,
|
118 |
.ig_popup input[type="submit"],
|
119 |
.ig_popup input[type="button"] {
|
120 |
+
@apply w-4/5 !important;
|
121 |
}
|
122 |
|
123 |
}
|
137 |
/****************** Embed Form: Start *******************/
|
138 |
|
139 |
.ig_popup .ig_form_container{
|
140 |
+
@apply float-left;
|
141 |
width: 30%;
|
|
|
142 |
/*padding-top: 2em;*/
|
143 |
}
|
144 |
|
145 |
.ig_popup.ig_form_left .ig_data{
|
146 |
+
@apply relative;
|
147 |
}
|
148 |
|
149 |
.ig_popup.ig_form_left .ig_data,
|
150 |
.ig_popup.ig_form_right .ig_data{
|
151 |
+
@apply float-left;
|
152 |
width: 70%;
|
|
|
153 |
}
|
154 |
|
155 |
.ig_popup.ig_form_right.ig_form_style_4 .ig_close,
|
164 |
@media only screen and (max-width: 850px){
|
165 |
.ig_popup.ig_form_left .ig_form_container.layout_left,
|
166 |
.ig_popup.ig_form_right .ig_form_container.layout_right{
|
167 |
+
@apply hidden;
|
168 |
}
|
169 |
|
170 |
.ig_popup.ig_form_left .ig_form_container.layout_bottom,
|
171 |
.ig_popup.ig_form_right .ig_form_container.layout_bottom,
|
172 |
.ig_popup.ig_form_bottom .ig_form_container.layout_bottom{
|
173 |
+
@apply block w-full;
|
174 |
+
@apply h-auto !important;
|
175 |
font-size: 1.3em;
|
|
|
176 |
}
|
177 |
.ig_popup.ig_form_inline .ig_form_container.layout_inline{
|
178 |
padding: .6em 0;
|
180 |
|
181 |
.ig_popup.ig_form_left .ig_data,
|
182 |
.ig_popup.ig_form_right .ig_data{
|
183 |
+
@apply w-full;
|
184 |
}
|
185 |
|
186 |
.ig_popup .ig_form_container.layout_bottom .ig_full .ig_form_els,
|
197 |
|
198 |
.ig_popup .ig_form_container.layout_inline .ig_button_label,
|
199 |
.ig_popup .ig_form_container.layout_bottom .ig_button_label{
|
200 |
+
@apply hidden;
|
201 |
}
|
202 |
|
203 |
.ig_popup .ig_form_container.layout_inline .ig_button,
|
213 |
|
214 |
.ig_popup.ig_form_bottom .ig_form_container.layout_bottom .ig_form_els.ig_form_el_radio,
|
215 |
.ig_popup.ig_form_inline .ig_form_container.layout_inline .ig_form_els.ig_form_el_radio{
|
216 |
+
@apply block;
|
217 |
}
|
218 |
.ig_popup.ig_form_bottom .ig_form_container.layout_bottom .ig_form_els.ig_form_el_radio label,
|
219 |
.ig_popup.ig_form_inline .ig_form_container.layout_inline .ig_form_els.ig_form_el_radio label{
|
220 |
+
@apply block;
|
221 |
}
|
222 |
|
223 |
/****** Form Style: Style 1 ******/
|
224 |
|
225 |
.ig_popup.ig_form_style_1 .ig_form_container:before{
|
226 |
+
@apply border-0 border-solid top-0;
|
227 |
+
@apply border-black !important;
|
|
|
228 |
opacity: .3;
|
|
|
229 |
}
|
230 |
|
231 |
.ig_popup.ig_form_left.ig_form_style_1 .ig_form_container.layout_bottom:before,
|
232 |
.ig_popup.ig_form_right.ig_form_style_1 .ig_form_container.layout_bottom:before{
|
233 |
+
@apply w-full;
|
234 |
border-top-width: .2em;
|
235 |
}
|
236 |
.ig_popup.ig_form_bottom.ig_form_style_1 .ig_form_container.layout_bottom:before{
|
241 |
|
242 |
.ig_popup.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els,
|
243 |
.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els{
|
244 |
+
@apply mx-0;
|
|
|
245 |
}
|
246 |
|
247 |
.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_first input,
|
272 |
|
273 |
.ig_popup.ig_form_right.ig_form_style_4 .ig_close,
|
274 |
.ig_popup.ig_form_right.ig_form_style_4 .ig_close:hover{
|
275 |
+
@apply m-0;
|
276 |
/*margin: -2em -1em 0 0;*/
|
277 |
/*top: 1em;*/
|
278 |
/*margin: -16px -16px 0 0;*/
|
|
|
279 |
}
|
280 |
|
281 |
.ig_popup.ig_form_left.ig_form_style_4 .ig_form_container:before,
|
296 |
font-size: 1.1em;
|
297 |
}
|
298 |
}
|
299 |
+
/****************** Embed Form: End *******************/
|
300 |
+
|
301 |
+
/* purgecss end ignore */
|
lite/message-types/popup/themes/inspire.css
CHANGED
@@ -1,43 +1,38 @@
|
|
|
|
1 |
.ig_popup.ig_inspire {
|
2 |
-
|
3 |
color: #444;
|
4 |
}
|
5 |
|
6 |
.ig_popup.ig_inspire .ig_headline {
|
|
|
7 |
color: #82AD23;
|
8 |
-
text-align: center;
|
9 |
padding: .8em .8em .3em .8em;
|
10 |
font-size: 2.5em;
|
11 |
}
|
12 |
|
13 |
.ig_popup.ig_inspire .ig_image {
|
14 |
-
float
|
15 |
}
|
16 |
|
17 |
.ig_popup.ig_inspire .ig_message {
|
|
|
18 |
padding: 0.8em 2em;
|
19 |
font-size: 1.25em;
|
20 |
/*font-weight: 400;*/
|
21 |
-
text-align: justify;
|
22 |
/*text-align: center;*/
|
23 |
}
|
24 |
|
25 |
.ig_popup.ig_inspire .ig_button,
|
26 |
.ig_popup.ig_inspire input[type="submit"],
|
27 |
.ig_popup.ig_inspire input[type="button"] {
|
|
|
28 |
/*background: #78ac06;*/
|
29 |
background: #82AD23;
|
30 |
-
color: #fff;
|
31 |
-
vertical-align: middle;
|
32 |
font-size: 2em;
|
33 |
/*font-weight: 100;*/
|
34 |
-
font-weight: 700;
|
35 |
-
font-style: normal;
|
36 |
-
text-decoration: none;
|
37 |
-
text-align: center;
|
38 |
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
39 |
filter: alpha(opacity=100);
|
40 |
-
opacity: 1;
|
41 |
width: 55%;
|
42 |
line-height: 1.2em;
|
43 |
padding: 0.5em;
|
@@ -54,16 +49,13 @@
|
|
54 |
.ig_popup.ig_inspire .ig_button:active,
|
55 |
.ig_popup.ig_inspire input[type="submit"]:active,
|
56 |
.ig_popup.ig_inspire input[type="button"]:active{
|
|
|
57 |
border-top: none;
|
58 |
-
font-weight: 400;
|
59 |
-
box-shadow: none;
|
60 |
}
|
61 |
|
62 |
.ig_popup.ig_inspire .ig_close {
|
|
|
63 |
background-position: -763px center;
|
64 |
-
margin: 0;
|
65 |
-
top: 0;
|
66 |
-
right: 0;
|
67 |
opacity: .4;
|
68 |
height: 24px;
|
69 |
width: 24px;
|
@@ -88,4 +80,6 @@
|
|
88 |
.ig_popup.ig_form_right.ig_inspire .ig_form_container.layout_right{
|
89 |
padding-top: 1em;
|
90 |
}
|
91 |
-
}
|
|
|
|
1 |
+
/* purgecss start ignore */
|
2 |
.ig_popup.ig_inspire {
|
3 |
+
@apply bg-white;
|
4 |
color: #444;
|
5 |
}
|
6 |
|
7 |
.ig_popup.ig_inspire .ig_headline {
|
8 |
+
@apply text-center;
|
9 |
color: #82AD23;
|
|
|
10 |
padding: .8em .8em .3em .8em;
|
11 |
font-size: 2.5em;
|
12 |
}
|
13 |
|
14 |
.ig_popup.ig_inspire .ig_image {
|
15 |
+
@apply float-left;
|
16 |
}
|
17 |
|
18 |
.ig_popup.ig_inspire .ig_message {
|
19 |
+
@apply text-justify;
|
20 |
padding: 0.8em 2em;
|
21 |
font-size: 1.25em;
|
22 |
/*font-weight: 400;*/
|
|
|
23 |
/*text-align: center;*/
|
24 |
}
|
25 |
|
26 |
.ig_popup.ig_inspire .ig_button,
|
27 |
.ig_popup.ig_inspire input[type="submit"],
|
28 |
.ig_popup.ig_inspire input[type="button"] {
|
29 |
+
@apply text-white align-middle font-bold not-italic no-underline text-center opacity-100;
|
30 |
/*background: #78ac06;*/
|
31 |
background: #82AD23;
|
|
|
|
|
32 |
font-size: 2em;
|
33 |
/*font-weight: 100;*/
|
|
|
|
|
|
|
|
|
34 |
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
35 |
filter: alpha(opacity=100);
|
|
|
36 |
width: 55%;
|
37 |
line-height: 1.2em;
|
38 |
padding: 0.5em;
|
49 |
.ig_popup.ig_inspire .ig_button:active,
|
50 |
.ig_popup.ig_inspire input[type="submit"]:active,
|
51 |
.ig_popup.ig_inspire input[type="button"]:active{
|
52 |
+
@apply font-normal shadow-none;
|
53 |
border-top: none;
|
|
|
|
|
54 |
}
|
55 |
|
56 |
.ig_popup.ig_inspire .ig_close {
|
57 |
+
@apply m-0 top-0 right-0;
|
58 |
background-position: -763px center;
|
|
|
|
|
|
|
59 |
opacity: .4;
|
60 |
height: 24px;
|
61 |
width: 24px;
|
80 |
.ig_popup.ig_form_right.ig_inspire .ig_form_container.layout_right{
|
81 |
padding-top: 1em;
|
82 |
}
|
83 |
+
}
|
84 |
+
|
85 |
+
/* purgecss end ignore */
|
lite/message-types/popup/themes/persuade.css
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
.ig_popup.ig_persuade {
|
2 |
background: #ef504e;
|
3 |
color: #FFF;
|
@@ -6,48 +7,42 @@
|
|
6 |
}
|
7 |
|
8 |
.ig_popup.ig_persuade .ig_headline {
|
|
|
9 |
letter-spacing: 0;
|
10 |
/*color: #FFF;*/
|
11 |
font-size: 2.8em;
|
12 |
-
text-align: center;
|
13 |
-webkit-font-smoothing: antialiased;
|
14 |
line-height: 1em;
|
15 |
padding: .7em .7em 0.5em;
|
16 |
}
|
17 |
|
18 |
.ig_popup.ig_persuade .ig_image {
|
19 |
-
|
20 |
}
|
21 |
|
22 |
.ig_popup.ig_persuade .ig_message {
|
|
|
23 |
padding: 0.5em 1.5em .8em;
|
24 |
font-size: 1.5em;
|
25 |
-
font-weight: 300;
|
26 |
-
text-align: center;
|
27 |
-webkit-font-smoothing: antialiased;
|
28 |
}
|
29 |
|
30 |
.ig_popup.ig_persuade .ig_button,
|
31 |
.ig_popup.ig_persuade input[type="submit"],
|
32 |
.ig_popup.ig_persuade input[type="button"] {
|
|
|
33 |
background: #424242;
|
34 |
-
color: #FFF;
|
35 |
-
text-decoration: none;
|
36 |
-
text-align: center;
|
37 |
/*font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;*/
|
38 |
font-size: 2em;
|
39 |
-
font-weight: 400;
|
40 |
line-height: 1.2em;
|
41 |
width: 55%;
|
42 |
/*margin: .8em auto .5em auto;*/
|
43 |
margin: .5em auto 1em auto;
|
44 |
padding: 0.4em;
|
45 |
-
border: none;
|
46 |
border-radius: .4em;
|
47 |
border-bottom: .28em solid #333;
|
48 |
border-bottom: .2em solid rgba(0, 0, 0, .3) !important;
|
49 |
box-shadow: 0 .15em .1em rgba(0, 0, 0, 0.3) !important;
|
50 |
-
clear: both;
|
51 |
border-bottom: .28em solid #333;
|
52 |
box-shadow: 0 .3em 1.5em rgba(0, 0, 0, 0.6) !important;
|
53 |
}
|
@@ -64,7 +59,7 @@
|
|
64 |
.ig_popup.ig_persuade .ig_button:active,
|
65 |
.ig_popup.ig_persuade input[type="submit"]:active,
|
66 |
.ig_popup.ig_persuade input[type="button"]:active {
|
67 |
-
|
68 |
/*border-top: none;*/
|
69 |
/*margin: .4em auto .5em auto;*/
|
70 |
/* box-shadow: 0 0 .2em rgba(0, 0, 0, 0.3) !important;*/
|
@@ -81,4 +76,6 @@
|
|
81 |
top: -.14em !important;
|
82 |
}*/
|
83 |
|
84 |
-
/****************** Embed Form: End *******************/
|
|
|
|
1 |
+
/* purgecss start ignore */
|
2 |
.ig_popup.ig_persuade {
|
3 |
background: #ef504e;
|
4 |
color: #FFF;
|
7 |
}
|
8 |
|
9 |
.ig_popup.ig_persuade .ig_headline {
|
10 |
+
@apply text-center;
|
11 |
letter-spacing: 0;
|
12 |
/*color: #FFF;*/
|
13 |
font-size: 2.8em;
|
|
|
14 |
-webkit-font-smoothing: antialiased;
|
15 |
line-height: 1em;
|
16 |
padding: .7em .7em 0.5em;
|
17 |
}
|
18 |
|
19 |
.ig_popup.ig_persuade .ig_image {
|
20 |
+
@apply float-left;
|
21 |
}
|
22 |
|
23 |
.ig_popup.ig_persuade .ig_message {
|
24 |
+
@apply font-light text-center;
|
25 |
padding: 0.5em 1.5em .8em;
|
26 |
font-size: 1.5em;
|
|
|
|
|
27 |
-webkit-font-smoothing: antialiased;
|
28 |
}
|
29 |
|
30 |
.ig_popup.ig_persuade .ig_button,
|
31 |
.ig_popup.ig_persuade input[type="submit"],
|
32 |
.ig_popup.ig_persuade input[type="button"] {
|
33 |
+
@apply no-underline text-center font-normal clear-both text-white border-none;
|
34 |
background: #424242;
|
|
|
|
|
|
|
35 |
/*font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;*/
|
36 |
font-size: 2em;
|
|
|
37 |
line-height: 1.2em;
|
38 |
width: 55%;
|
39 |
/*margin: .8em auto .5em auto;*/
|
40 |
margin: .5em auto 1em auto;
|
41 |
padding: 0.4em;
|
|
|
42 |
border-radius: .4em;
|
43 |
border-bottom: .28em solid #333;
|
44 |
border-bottom: .2em solid rgba(0, 0, 0, .3) !important;
|
45 |
box-shadow: 0 .15em .1em rgba(0, 0, 0, 0.3) !important;
|
|
|
46 |
border-bottom: .28em solid #333;
|
47 |
box-shadow: 0 .3em 1.5em rgba(0, 0, 0, 0.6) !important;
|
48 |
}
|
59 |
.ig_popup.ig_persuade .ig_button:active,
|
60 |
.ig_popup.ig_persuade input[type="submit"]:active,
|
61 |
.ig_popup.ig_persuade input[type="button"]:active {
|
62 |
+
@apply shadow-none !important;
|
63 |
/*border-top: none;*/
|
64 |
/*margin: .4em auto .5em auto;*/
|
65 |
/* box-shadow: 0 0 .2em rgba(0, 0, 0, 0.3) !important;*/
|
76 |
top: -.14em !important;
|
77 |
}*/
|
78 |
|
79 |
+
/****************** Embed Form: End *******************/
|
80 |
+
|
81 |
+
/* purgecss end ignore */
|
lite/message-types/popup/themes/popup.js
ADDED
@@ -0,0 +1,188 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/******/ (function(modules) { // webpackBootstrap
|
2 |
+
/******/ // The module cache
|
3 |
+
/******/ var installedModules = {};
|
4 |
+
/******/
|
5 |
+
/******/ // The require function
|
6 |
+
/******/ function __webpack_require__(moduleId) {
|
7 |
+
/******/
|
8 |
+
/******/ // Check if module is in cache
|
9 |
+
/******/ if(installedModules[moduleId]) {
|
10 |
+
/******/ return installedModules[moduleId].exports;
|
11 |
+
/******/ }
|
12 |
+
/******/ // Create a new module (and put it into the cache)
|
13 |
+
/******/ var module = installedModules[moduleId] = {
|
14 |
+
/******/ i: moduleId,
|
15 |
+
/******/ l: false,
|
16 |
+
/******/ exports: {}
|
17 |
+
/******/ };
|
18 |
+
/******/
|
19 |
+
/******/ // Execute the module function
|
20 |
+
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
21 |
+
/******/
|
22 |
+
/******/ // Flag the module as loaded
|
23 |
+
/******/ module.l = true;
|
24 |
+
/******/
|
25 |
+
/******/ // Return the exports of the module
|
26 |
+
/******/ return module.exports;
|
27 |
+
/******/ }
|
28 |
+
/******/
|
29 |
+
/******/
|
30 |
+
/******/ // expose the modules object (__webpack_modules__)
|
31 |
+
/******/ __webpack_require__.m = modules;
|
32 |
+
/******/
|
33 |
+
/******/ // expose the module cache
|
34 |
+
/******/ __webpack_require__.c = installedModules;
|
35 |
+
/******/
|
36 |
+
/******/ // define getter function for harmony exports
|
37 |
+
/******/ __webpack_require__.d = function(exports, name, getter) {
|
38 |
+
/******/ if(!__webpack_require__.o(exports, name)) {
|
39 |
+
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
40 |
+
/******/ }
|
41 |
+
/******/ };
|
42 |
+
/******/
|
43 |
+
/******/ // define __esModule on exports
|
44 |
+
/******/ __webpack_require__.r = function(exports) {
|
45 |
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
46 |
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
47 |
+
/******/ }
|
48 |
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
49 |
+
/******/ };
|
50 |
+
/******/
|
51 |
+
/******/ // create a fake namespace object
|
52 |
+
/******/ // mode & 1: value is a module id, require it
|
53 |
+
/******/ // mode & 2: merge all properties of value into the ns
|
54 |
+
/******/ // mode & 4: return value when already ns object
|
55 |
+
/******/ // mode & 8|1: behave like require
|
56 |
+
/******/ __webpack_require__.t = function(value, mode) {
|
57 |
+
/******/ if(mode & 1) value = __webpack_require__(value);
|
58 |
+
/******/ if(mode & 8) return value;
|
59 |
+
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
60 |
+
/******/ var ns = Object.create(null);
|
61 |
+
/******/ __webpack_require__.r(ns);
|
62 |
+
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
63 |
+
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
64 |
+
/******/ return ns;
|
65 |
+
/******/ };
|
66 |
+
/******/
|
67 |
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
68 |
+
/******/ __webpack_require__.n = function(module) {
|
69 |
+
/******/ var getter = module && module.__esModule ?
|
70 |
+
/******/ function getDefault() { return module['default']; } :
|
71 |
+
/******/ function getModuleExports() { return module; };
|
72 |
+
/******/ __webpack_require__.d(getter, 'a', getter);
|
73 |
+
/******/ return getter;
|
74 |
+
/******/ };
|
75 |
+
/******/
|
76 |
+
/******/ // Object.prototype.hasOwnProperty.call
|
77 |
+
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
78 |
+
/******/
|
79 |
+
/******/ // __webpack_public_path__
|
80 |
+
/******/ __webpack_require__.p = "";
|
81 |
+
/******/
|
82 |
+
/******/
|
83 |
+
/******/ // Load entry module and return exports
|
84 |
+
/******/ return __webpack_require__(__webpack_require__.s = 0);
|
85 |
+
/******/ })
|
86 |
+
/************************************************************************/
|
87 |
+
/******/ ({
|
88 |
+
|
89 |
+
/***/ "./lite/message-types/popup/default.css":
|
90 |
+
/*!**********************************************!*\
|
91 |
+
!*** ./lite/message-types/popup/default.css ***!
|
92 |
+
\**********************************************/
|
93 |
+
/*! no static exports found */
|
94 |
+
/***/ (function(module, exports, __webpack_require__) {
|
95 |
+
|
96 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/popup/default.css?");
|
97 |
+
|
98 |
+
/***/ }),
|
99 |
+
|
100 |
+
/***/ "./lite/message-types/popup/themes/air-mail.css":
|
101 |
+
/*!******************************************************!*\
|
102 |
+
!*** ./lite/message-types/popup/themes/air-mail.css ***!
|
103 |
+
\******************************************************/
|
104 |
+
/*! no static exports found */
|
105 |
+
/***/ (function(module, exports, __webpack_require__) {
|
106 |
+
|
107 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/popup/themes/air-mail.css?");
|
108 |
+
|
109 |
+
/***/ }),
|
110 |
+
|
111 |
+
/***/ "./lite/message-types/popup/themes/amaze.css":
|
112 |
+
/*!***************************************************!*\
|
113 |
+
!*** ./lite/message-types/popup/themes/amaze.css ***!
|
114 |
+
\***************************************************/
|
115 |
+
/*! no static exports found */
|
116 |
+
/***/ (function(module, exports, __webpack_require__) {
|
117 |
+
|
118 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/popup/themes/amaze.css?");
|
119 |
+
|
120 |
+
/***/ }),
|
121 |
+
|
122 |
+
/***/ "./lite/message-types/popup/themes/compel.css":
|
123 |
+
/*!****************************************************!*\
|
124 |
+
!*** ./lite/message-types/popup/themes/compel.css ***!
|
125 |
+
\****************************************************/
|
126 |
+
/*! no static exports found */
|
127 |
+
/***/ (function(module, exports, __webpack_require__) {
|
128 |
+
|
129 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/popup/themes/compel.css?");
|
130 |
+
|
131 |
+
/***/ }),
|
132 |
+
|
133 |
+
/***/ "./lite/message-types/popup/themes/convert.css":
|
134 |
+
/*!*****************************************************!*\
|
135 |
+
!*** ./lite/message-types/popup/themes/convert.css ***!
|
136 |
+
\*****************************************************/
|
137 |
+
/*! no static exports found */
|
138 |
+
/***/ (function(module, exports, __webpack_require__) {
|
139 |
+
|
140 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/popup/themes/convert.css?");
|
141 |
+
|
142 |
+
/***/ }),
|
143 |
+
|
144 |
+
/***/ "./lite/message-types/popup/themes/default.css":
|
145 |
+
/*!*****************************************************!*\
|
146 |
+
!*** ./lite/message-types/popup/themes/default.css ***!
|
147 |
+
\*****************************************************/
|
148 |
+
/*! no static exports found */
|
149 |
+
/***/ (function(module, exports, __webpack_require__) {
|
150 |
+
|
151 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/popup/themes/default.css?");
|
152 |
+
|
153 |
+
/***/ }),
|
154 |
+
|
155 |
+
/***/ "./lite/message-types/popup/themes/inspire.css":
|
156 |
+
/*!*****************************************************!*\
|
157 |
+
!*** ./lite/message-types/popup/themes/inspire.css ***!
|
158 |
+
\*****************************************************/
|
159 |
+
/*! no static exports found */
|
160 |
+
/***/ (function(module, exports, __webpack_require__) {
|
161 |
+
|
162 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/popup/themes/inspire.css?");
|
163 |
+
|
164 |
+
/***/ }),
|
165 |
+
|
166 |
+
/***/ "./lite/message-types/popup/themes/persuade.css":
|
167 |
+
/*!******************************************************!*\
|
168 |
+
!*** ./lite/message-types/popup/themes/persuade.css ***!
|
169 |
+
\******************************************************/
|
170 |
+
/*! no static exports found */
|
171 |
+
/***/ (function(module, exports, __webpack_require__) {
|
172 |
+
|
173 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/popup/themes/persuade.css?");
|
174 |
+
|
175 |
+
/***/ }),
|
176 |
+
|
177 |
+
/***/ 0:
|
178 |
+
/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
179 |
+
!*** multi ./lite/message-types/popup/default.css ./lite/message-types/popup/themes/air-mail.css ./lite/message-types/popup/themes/amaze.css ./lite/message-types/popup/themes/compel.css ./lite/message-types/popup/themes/convert.css ./lite/message-types/popup/themes/default.css ./lite/message-types/popup/themes/inspire.css ./lite/message-types/popup/themes/persuade.css ***!
|
180 |
+
\*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
181 |
+
/*! no static exports found */
|
182 |
+
/***/ (function(module, exports, __webpack_require__) {
|
183 |
+
|
184 |
+
eval("__webpack_require__(/*! ./lite/message-types/popup/default.css */\"./lite/message-types/popup/default.css\");\n__webpack_require__(/*! ./lite/message-types/popup/themes/air-mail.css */\"./lite/message-types/popup/themes/air-mail.css\");\n__webpack_require__(/*! ./lite/message-types/popup/themes/amaze.css */\"./lite/message-types/popup/themes/amaze.css\");\n__webpack_require__(/*! ./lite/message-types/popup/themes/compel.css */\"./lite/message-types/popup/themes/compel.css\");\n__webpack_require__(/*! ./lite/message-types/popup/themes/convert.css */\"./lite/message-types/popup/themes/convert.css\");\n__webpack_require__(/*! ./lite/message-types/popup/themes/default.css */\"./lite/message-types/popup/themes/default.css\");\n__webpack_require__(/*! ./lite/message-types/popup/themes/inspire.css */\"./lite/message-types/popup/themes/inspire.css\");\nmodule.exports = __webpack_require__(/*! ./lite/message-types/popup/themes/persuade.css */\"./lite/message-types/popup/themes/persuade.css\");\n\n\n//# sourceURL=webpack:///multi_./lite/message-types/popup/default.css_./lite/message-types/popup/themes/air-mail.css_./lite/message-types/popup/themes/amaze.css_./lite/message-types/popup/themes/compel.css_./lite/message-types/popup/themes/convert.css_./lite/message-types/popup/themes/default.css_./lite/message-types/popup/themes/inspire.css_./lite/message-types/popup/themes/persuade.css?");
|
185 |
+
|
186 |
+
/***/ })
|
187 |
+
|
188 |
+
/******/ });
|
lite/message-types/popup/themes/popup.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.mfp-bg,.mfp-wrap{z-index:999999;position:fixed;left:0;top:0}.mfp-bg,.mfp-container,.mfp-wrap{height:100%;width:100%}.mfp-container:before,.mfp-figure:after{content:''}.mfp-bg{overflow:hidden;background:#0b0b0b;opacity:.8;filter:alpha(opacity=80)}.mfp-wrap{outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-close,.mfp-preloader{text-align:center;position:absolute}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#CCC;top:50%;width:auto;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-close,.mfp-preloader a:hover{color:#FFF}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;right:0;top:0;text-decoration:none;opacity:.65;filter:alpha(opacity=65);padding:0 0 18px 10px;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1;filter:alpha(opacity=100)}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-figure,img.mfp-img{line-height:0}.mfp-arrow{position:absolute;opacity:.65;filter:alpha(opacity=65);margin:-55px 0 0;top:50%;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1;filter:alpha(opacity=100)}.mfp-arrow .mfp-a,.mfp-arrow .mfp-b,.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:inset transparent}.mfp-arrow .mfp-a,.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow .mfp-b,.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left .mfp-b,.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3F3F3F}.mfp-arrow-right{right:0}.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right .mfp-b,.mfp-arrow-right:before{border-left:27px solid #3F3F3F}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-image-holder .mfp-content,img.mfp-img{max-width:100%}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}.mfp-figure:after,img.mfp-img{width:auto;height:auto;display:block}img.mfp-img{box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure:after{position:absolute;left:0;top:40px;bottom:40px;right:0;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#BDBDBD;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#F3F3F3;word-wrap:break-word;padding-right:36px}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}.ig_popup,.ig_popup .ig_bg_overlay,.ig_popup .ig_content{background-color:transparent}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;-ms-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;-ms-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-ie7 .mfp-img{padding:0}.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px}.mfp-ie7 .mfp-container{padding:0}.mfp-ie7 .mfp-content{padding-top:44px}.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0}.ig_popup{opacity:1;display:block;z-index:100000;width:58%;margin:32px auto 20px!important;position:relative;font-size:1em}.ig_popup .ig_bg_overlay{width:100%;height:100%;top:0;left:0;margin:0;padding:0;position:absolute;display:none}.ig_popup .ig_headline{text-decoration:none;font-weight:800;font-size:2em;line-height:1.2em}.ig_popup .ig_data{position:relative}.ig_popup .ig_image{margin:0 1em}.ig_popup .ig_message{line-height:1.2em;font-size:1.2em}.ig_popup .ig_close{background-image:url(../../../assets/images/sprite_1.png);background-position:-600px center;background-repeat:no-repeat;height:30px;width:30px;top:-15px;right:-15px;margin:0;cursor:pointer;position:absolute;z-index:20}.ig_popup .ig_close:hover{background-position:-640px center}.ig_popup .ig_button,.ig_popup input[type=submit],.ig_popup input[type=button]{cursor:pointer;display:block;background-image:none;border:none;border-radius:0;box-shadow:none;position:relative}.mfp-wrap .ig_powered_by{position:fixed;bottom:1em;left:1em;font-size:14px;padding:.1em}@media only screen and (min-width:1440px){.ig_popup{max-width:835px}}@media only screen and (max-width:850px){.ig_popup{font-size:14px}.ig_popup .ig_button,.ig_popup input[type=submit],.ig_popup input[type=button]{width:70%!important}}@media only screen and (max-width:644px){.ig_popup{width:75%;font-size:13px}.ig_popup .ig_button,.ig_popup input[type=submit],.ig_popup input[type=button]{width:60%!important}}@media only screen and (max-width:425px){.ig_popup .ig_button,.ig_popup input[type=submit],.ig_popup input[type=button]{width:80%!important}}@media only screen and (max-width:375px){.ig_popup{width:90%}.ig_popup .ig_button,.ig_popup input[type=submit],.ig_popup input[type=button]{width:90%!important}}.ig_popup .ig_form_container{width:30%;float:left}.ig_popup.ig_form_left .ig_data{position:relative}.ig_popup.ig_form_left .ig_data,.ig_popup.ig_form_right .ig_data{width:70%;float:left}.ig_popup.ig_form_right.ig_form_style_4 .ig_close,.ig_popup.ig_form_right.ig_form_style_4 .ig_close:hover{margin:-15px -15px 0 0}@media only screen and (max-width:850px){.ig_popup.ig_form_left .ig_form_container.layout_left,.ig_popup.ig_form_right .ig_form_container.layout_right{display:none}.ig_popup.ig_form_bottom .ig_form_container.layout_bottom,.ig_popup.ig_form_left .ig_form_container.layout_bottom,.ig_popup.ig_form_right .ig_form_container.layout_bottom{display:block;width:100%;font-size:1.3em;height:auto!important}.ig_popup.ig_form_inline .ig_form_container.layout_inline{padding:.6em 0}.ig_popup.ig_form_left .ig_data,.ig_popup.ig_form_right .ig_data{width:100%}.ig_popup .ig_form_container.layout_bottom .ig_full .ig_form_els,.ig_popup .ig_form_container.layout_bottom .ig_half .ig_form_els,.ig_popup .ig_form_container.layout_bottom .ig_quater .ig_form_els,.ig_popup .ig_form_container.layout_bottom .ig_third .ig_form_els,.ig_popup .ig_form_container.layout_inline .ig_full .ig_form_els,.ig_popup .ig_form_container.layout_inline .ig_half .ig_form_els,.ig_popup .ig_form_container.layout_inline .ig_quater .ig_form_els,.ig_popup .ig_form_container.layout_inline .ig_third .ig_form_els{width:99%;margin:.5em auto 0}.ig_popup .ig_form_container.layout_bottom .ig_button_label,.ig_popup .ig_form_container.layout_inline .ig_button_label{display:none}.ig_popup .ig_form_container.layout_bottom .ig_button,.ig_popup .ig_form_container.layout_bottom input[type=submit],.ig_popup .ig_form_container.layout_bottom input[type=button],.ig_popup .ig_form_container.layout_inline .ig_button,.ig_popup .ig_form_container.layout_inline input[type=submit],.ig_popup .ig_form_container.layout_inline input[type=button]{width:99%!important;font-size:1em}.ig_popup.ig_form_bottom .ig_form_container.layout_bottom .ig_form_els.ig_form_el_radio,.ig_popup.ig_form_bottom .ig_form_container.layout_bottom .ig_form_els.ig_form_el_radio label,.ig_popup.ig_form_inline .ig_form_container.layout_inline .ig_form_els.ig_form_el_radio,.ig_popup.ig_form_inline .ig_form_container.layout_inline .ig_form_els.ig_form_el_radio label{display:block}.ig_popup.ig_form_style_1 .ig_form_container:before{border-width:0;border-style:solid;border-color:#000!important;opacity:.3;top:0}.ig_popup.ig_form_left.ig_form_style_1 .ig_form_container.layout_bottom:before,.ig_popup.ig_form_right.ig_form_style_1 .ig_form_container.layout_bottom:before{width:100%;border-top-width:.2em}.ig_popup.ig_form_bottom.ig_form_style_1 .ig_form_container.layout_bottom:before{border-top-width:.2em}.ig_popup.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els,.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els{margin-right:0;margin-left:0}.ig_popup.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els input,.ig_popup.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_first input,.ig_popup.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_last input,.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els input,.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_first input,.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_last input{border-radius:2em;padding-left:1em}.ig_popup.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els input.ig_button,.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els input.ig_button{padding:inherit}.ig_popup.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els label,.ig_popup.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_first label,.ig_popup.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_last label,.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els label,.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_first label,.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_last label{padding-left:1em}.ig_popup.ig_form_right.ig_form_style_4 .ig_close,.ig_popup.ig_form_right.ig_form_style_4 .ig_close:hover{margin:0}.ig_popup.ig_form_bottom.ig_form_style_4 .ig_message,.ig_popup.ig_form_left.ig_form_style_4 .ig_message,.ig_popup.ig_form_right.ig_form_style_4 .ig_message{padding-bottom:1.5em}}@media only screen and (min-width:645px) and (max-width:850px){.ig_popup.ig_form_bottom .ig_form_container.layout_bottom,.ig_popup.ig_form_left .ig_form_container.layout_bottom,.ig_popup.ig_form_right .ig_form_container.layout_bottom{font-size:1.1em}}.ig_popup.ig_air-mail{position:relative;border-width:8px;border-style:solid;-moz-border-image:-moz-repeating-linear-gradient(45deg,#a83439,#a83439 10px,#fdfdfd 10px,#fdfdfd 20px,#2f4175 20px,#2f4175 30px,#fdfdfd 30px,#fdfdfd 40px) 8 round;-webkit-border-image:-webkit-repeating-linear-gradient(45deg,#a83439,#a83439 10px,#fdfdfd 10px,#fdfdfd 20px,#2f4175 20px,#2f4175 30px,#fdfdfd 30px,#fdfdfd 40px) 8 round;-o-border-image:-o-repeating-linear-gradient(45deg,#a83439,#a83439 10px,#fdfdfd 10px,#fdfdfd 20px,#2f4175 20px,#2f4175 30px,#fdfdfd 30px,#fdfdfd 40px) 8 round;border-image:repeating-linear-gradient(45deg,#a83439,#a83439 10px,#fdfdfd 10px,#fdfdfd 20px,#2f4175 20px,#2f4175 30px,#fdfdfd 30px,#fdfdfd 40px) 8 round;background-color:#fdfdfd;color:#707070}.ig_popup.ig_air-mail .ig_headline{padding:.5em;font-size:2.5em;text-align:center;color:#2C4A9D}.ig_popup.ig_air-mail .ig_image{float:right}.ig_popup.ig_air-mail .ig_message{padding:.2em 2em .8em;font-size:1.2em}.ig_popup.ig_air-mail .ig_close{background-position:-520px center;margin:0;top:0;right:0;opacity:.35}.ig_popup.ig_air-mail .ig_close:hover{background-position:-520px center;opacity:.75}.ig_popup.ig_air-mail .ig_button,.ig_popup.ig_air-mail input[type=submit],.ig_popup.ig_air-mail input[type=button]{background:#D82931;color:#FFF;width:50%;border-radius:4px;border:none;font-size:1.5em;text-transform:uppercase;font-weight:600;text-align:center;margin:.8em auto 1.2em;padding:.5em .15em}.ig_popup.ig_air-mail .ig_button:hover,.ig_popup.ig_air-mail input[type=submit]:hover,.ig_popup.ig_air-mail input[type=button]:hover{box-shadow:0 0 5px 0 rgba(0,0,0,.5)}.ig_popup.ig_air-mail .ig_button:active,.ig_popup.ig_air-mail input[type=submit]:active,.ig_popup.ig_air-mail input[type=button]:active{box-shadow:none}.ig_popup.ig_form_right.ig_air-mail .ig_form_container.layout_right{padding-top:1.5em}@media only screen and (max-width:850px){.ig_popup.ig_form_right.ig_air-mail .ig_form_container.layout_right{padding-top:1em}}.ig_popup.ig_amaze{border:.3em solid #444;background-color:#444;color:#FFF}.ig_popup.ig_amaze .ig_bg_overlay{display:block;background-image:url(../../../assets/images/popup-amaze-bg.jpg);opacity:.5}.ig_popup.ig_amaze .ig_headline{padding:.5em;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,.5);font-size:2em}.ig_popup.ig_amaze .ig_image{float:left}.ig_popup.ig_amaze .ig_message{font-size:1.2em;padding:.5em 1.2em .8em;font-family:Georgia,Times,"Times New Roman",serif;margin:0 2em}.ig_popup.ig_amaze .ig_button,.ig_popup.ig_amaze input[type=submit],.ig_popup.ig_amaze input[type=button]{background:#2ecc70;color:#FFF;font-family:Calibri,Candara,Segoe,"Segoe UI",Optima,Arial,sans-serif;font-size:1.3em;letter-spacing:1px;vertical-align:top;font-weight:700;text-align:center;line-height:1.8em;border-radius:3px;border-bottom:.2em solid rgba(63,63,63,.6);text-shadow:1px 1px 0 rgba(0,0,0,.5);margin:.5em auto 1.2em;width:40%;padding:.3em 1em}.ig_popup.ig_amaze .ig_button:hover,.ig_popup.ig_amaze input[type=submit]:hover,.ig_popup.ig_amaze input[type=button]:hover{box-shadow:0 0 5px 0 rgba(0,0,0,.5)}@media only screen and (max-width:850px){.ig_popup.ig_amaze .ig_message{margin:0 1em}}.ig_popup.ig_compel{background:#FFF;color:#707070;border:4px dashed #c0392b}.ig_popup.ig_compel .ig_headline{padding:.5em 1em .5em .5em;font-size:2em;text-shadow:0 1px 0 rgba(0,0,0,.2);margin-bottom:.2em;text-align:center}.ig_popup.ig_compel .ig_image{float:left;padding-right:1em}.ig_popup.ig_compel .ig_message{padding:.5em 1.25em .8em;font-size:1.25em;font-family:"Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Verdana,sans-serif;margin:0 .5em .5em}.ig_popup.ig_compel .ig_close{background-position:-520px center;margin:0;top:0;right:0;opacity:.35}.ig_popup.ig_compel .ig_close:hover{background-position:-520px center;opacity:.75}.ig_popup.ig_compel .ig_button,.ig_popup.ig_compel input[type=submit],.ig_popup.ig_compel input[type=button]{background:#e74d3c;color:#FFF;width:50%;border-radius:5px;border-bottom:.18em solid #bf3a2b;font-size:1.2em;text-transform:uppercase;font-weight:600;text-align:center;padding:.8em .15em .62em;margin:.5em auto 1.2em}.ig_popup.ig_compel .ig_button:hover,.ig_popup.ig_compel input[type=submit]:hover,.ig_popup.ig_compel input[type=button]:hover{box-shadow:0 0 5px 0 rgba(0,0,0,.5)}@font-face{font-family:'Goudy Bookletter 1911';font-style:normal;font-weight:400;src:local('Goudy Bookletter 1911'),local('GoudyBookletter1911'),url(https://fonts.gstatic.com/s/goudybookletter1911/v6/l5lwlGTN3pEY5Bf-rQEuIAQibyVIKv8boZ0oFv0g-Lo.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215,U+E0FF,U+EFFD,U+F000}.ig_popup.ig_convert{background-color:#fffdcc;color:#484747;box-shadow:none;width:50%;border-radius:.3em}.ig_popup.ig_convert .ig_headline{font-size:2.5em;padding:.8em 1.2em .3em;text-align:center;font-family:'Goudy Bookletter 1911',serif}.ig_popup.ig_convert .ig_image{float:right}.ig_popup.ig_convert .ig_message{font-size:1.2em;padding:.8em 1.5em;font-family:Calibri,Candara,Segoe,"Segoe UI",Optima,Arial,sans-serif;vertical-align:baseline;text-align:center}.ig_popup.ig_convert .ig_button,.ig_popup.ig_convert input[type=submit],.ig_popup.ig_convert input[type=button]{background:#cb0606;color:#fcf8f8;font-weight:700;text-decoration:none;font-size:1.75em;border:.2em solid rgba(0,0,0,.2)!important;width:60%;font-family:'Goudy Bookletter 1911',serif;border-radius:3em;text-align:center;line-height:1.5em;padding:.3em 1em;margin:.5em auto 1.2em;clear:both}.ig_popup.ig_convert .ig_button:hover,.ig_popup.ig_convert input[type=submit]:hover,.ig_popup.ig_convert input[type=button]:hover{box-shadow:0 0 8px 0 rgba(0,0,0,.4)}.ig_popup.ig_convert .ig_button:active,.ig_popup.ig_convert input[type=submit]:active,.ig_popup.ig_convert input[type=button]:active{box-shadow:none}.ig_popup.ig_convert .ig_close{background-position:0 center;top:6px;right:6px;opacity:.4}.ig_popup.ig_convert .ig_close:hover{background-position:0 center;opacity:.7}.ig_popup.ig_form_right.ig_convert .ig_form_container.layout_right{padding-top:2.2em}@media only screen and (min-width:1440px){.ig_popup.ig_convert{max-width:600px}}@media only screen and (max-width:850px){.ig_popup.ig_convert{width:65%}.ig_popup.ig_form_right.ig_convert .ig_form_container.layout_right{padding-top:1em}}@media only screen and (max-width:644px){.ig_popup.ig_convert{width:75%}}@media only screen and (max-width:375px){.ig_popup.ig_convert{width:90%}}.ig_popup.ig_inspire{background:#FFF;color:#444}.ig_popup.ig_inspire .ig_headline{color:#82AD23;text-align:center;padding:.8em .8em .3em;font-size:2.5em}.ig_popup.ig_inspire .ig_image{float:left}.ig_popup.ig_inspire .ig_message{padding:.8em 2em;font-size:1.25em;text-align:justify}.ig_popup.ig_inspire .ig_button,.ig_popup.ig_inspire input[type=submit],.ig_popup.ig_inspire input[type=button]{background:#82AD23;color:#fff;vertical-align:middle;font-size:2em;font-weight:700;font-style:normal;text-decoration:none;text-align:center;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);opacity:1;width:55%;line-height:1.2em;padding:.5em;margin:.5em auto 1em;border-top:none}.ig_popup.ig_inspire .ig_button:hover,.ig_popup.ig_inspire input[type=submit]:hover,.ig_popup.ig_inspire input[type=button]:hover{border-top:none;box-shadow:0 0 8px 0 rgba(0,0,0,.4)}.ig_popup.ig_inspire .ig_button:active,.ig_popup.ig_inspire input[type=submit]:active,.ig_popup.ig_inspire input[type=button]:active{border-top:none;font-weight:400;box-shadow:none}.ig_popup.ig_inspire .ig_close{background-position:-763px center;margin:0;top:0;right:0;opacity:.4;height:24px;width:24px;background-color:rgba(0,0,0,.45)}.ig_popup.ig_inspire .ig_close:hover{opacity:.7}.ig_popup.ig_form_right.ig_inspire .ig_form_container.layout_right{padding-top:2.5em}@media only screen and (max-width:850px){.ig_popup.ig_form_right.ig_inspire .ig_form_container.layout_right{padding-top:1em}}.ig_popup.ig_persuade{background:#ef504e;color:#FFF;border:.4em dashed #FFF;padding-bottom:.1em}.ig_popup.ig_persuade .ig_headline{letter-spacing:0;font-size:2.8em;text-align:center;-webkit-font-smoothing:antialiased;line-height:1em;padding:.7em .7em .5em}.ig_popup.ig_persuade .ig_image{float:left}.ig_popup.ig_persuade .ig_message{padding:.5em 1.5em .8em;font-size:1.5em;font-weight:300;text-align:center;-webkit-font-smoothing:antialiased}.ig_popup.ig_persuade .ig_button,.ig_popup.ig_persuade input[type=submit],.ig_popup.ig_persuade input[type=button]{background:#424242;color:#FFF;text-decoration:none;text-align:center;font-size:2em;font-weight:400;line-height:1.2em;width:55%;margin:.5em auto 1em;padding:.4em;border:none;border-radius:.4em;border-bottom:.28em solid #333;border-bottom:.2em solid rgba(0,0,0,.3)!important;clear:both;box-shadow:0 .3em 1.5em rgba(0,0,0,.6)!important}.ig_popup.ig_persuade .ig_button:hover,.ig_popup.ig_persuade input[type=submit]:hover,.ig_popup.ig_persuade input[type=button]:hover{box-shadow:0 .1em .1em rgba(0,0,0,.3)!important}.ig_popup.ig_persuade .ig_button:active,.ig_popup.ig_persuade input[type=submit]:active,.ig_popup.ig_persuade input[type=button]:active{box-shadow:none!important}
|
1 |
+
.mfp-bg,.mfp-wrap{z-index:999999}.mfp-container:before,.mfp-figure:after{content:''}.ig_popup.ig_air-mail{position:relative;border-style:solid;border-width:8px;-o-border-image:repeating-linear-gradient(45deg,#a83439,#a83439 10px,#fdfdfd 10px,#fdfdfd 20px,#2f4175 20px,#2f4175 30px,#fdfdfd 30px,#fdfdfd 40px) 8 round;border-image:repeating-linear-gradient(45deg,#a83439,#a83439 10px,#fdfdfd 10px,#fdfdfd 20px,#2f4175 20px,#2f4175 30px,#fdfdfd 30px,#fdfdfd 40px) 8 round;background-color:#fdfdfd;color:#707070}.ig_popup.ig_air-mail .ig_headline{text-align:center;padding:.5em;font-size:2.5em;color:#2C4A9D}.ig_popup.ig_air-mail .ig_image{float:right}.ig_popup.ig_air-mail .ig_message{padding:.2em 2em .8em;font-size:1.2em}.ig_popup.ig_air-mail .ig_close{margin:0;top:0;right:0;background-position:-520px center;opacity:.35}.ig_popup.ig_air-mail .ig_close:hover{opacity:.75;background-position:-520px center}.ig_popup.ig_air-mail .ig_button,.ig_popup.ig_air-mail input[type=submit],.ig_popup.ig_air-mail input[type=button]{width:50%;text-transform:uppercase;font-weight:600;text-align:center;border-style:none;background:#D82931;color:#FFF;border-radius:4px;font-size:1.5em;margin:.8em auto 1.2em;padding:.5em .15em}.ig_popup.ig_air-mail .ig_button:hover,.ig_popup.ig_air-mail input[type=submit]:hover,.ig_popup.ig_air-mail input[type=button]:hover{-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5)}.ig_popup.ig_air-mail .ig_button:active,.ig_popup.ig_air-mail input[type=submit]:active,.ig_popup.ig_air-mail input[type=button]:active{-webkit-box-shadow:none;box-shadow:none}.ig_popup.ig_form_right.ig_air-mail .ig_form_container.layout_right{padding-top:1.5em}@media only screen and (max-width:850px){.ig_popup.ig_form_right.ig_air-mail .ig_form_container.layout_right{padding-top:1em}}.ig_popup.ig_amaze{border:.3em solid #444;background-color:#444;color:#FFF}.ig_popup.ig_amaze .ig_bg_overlay{display:block;opacity:.5;background-image:url(../../../assets/images/popup-amaze-bg.jpg)}.ig_popup.ig_amaze .ig_headline{text-align:center;padding:.5em;text-shadow:0 1px 0 rgba(0,0,0,.5);font-size:2em}.ig_popup.ig_amaze .ig_image{float:left}.ig_popup.ig_amaze .ig_message{font-size:1.2em;padding:.5em 1.2em .8em;font-family:Georgia,Times,"Times New Roman",serif;margin:0 2em}.ig_popup.ig_amaze .ig_button,.ig_popup.ig_amaze input[type=submit],.ig_popup.ig_amaze input[type=button]{vertical-align:top;font-weight:700;text-align:center;width:40%;--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));background:#2ecc70;font-family:Calibri,Candara,Segoe,"Segoe UI",Optima,Arial,sans-serif;font-size:1.3em;letter-spacing:1px;line-height:1.8em;border-radius:3px;border-bottom:.2em solid rgba(63,63,63,.6);text-shadow:1px 1px 0 rgba(0,0,0,.5);margin:.5em auto 1.2em;padding:.3em 1em}.ig_popup.ig_amaze .ig_button:hover,.ig_popup.ig_amaze input[type=submit]:hover,.ig_popup.ig_amaze input[type=button]:hover{-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5)}@media only screen and (max-width:850px){.ig_popup.ig_amaze .ig_message{margin:0 1em}}.ig_popup.ig_compel{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));color:#707070;border:4px dashed #c0392b}.ig_popup.ig_compel .ig_headline{text-align:center;padding:.5em 1em .5em .5em;font-size:2em;text-shadow:0 1px 0 rgba(0,0,0,.2);margin-bottom:.2em}.ig_popup.ig_compel .ig_image{float:left;padding-right:1em}.ig_popup.ig_compel .ig_message{padding:.5em 1.25em .8em;font-size:1.25em;font-family:"Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Verdana,sans-serif;margin:0 .5em .5em}.ig_popup.ig_compel .ig_close{margin:0;top:0;right:0;background-position:-520px center;opacity:.35}.ig_popup.ig_compel .ig_close:hover{opacity:.75;background-position:-520px center}.ig_popup.ig_compel .ig_button,.ig_popup.ig_compel input[type=submit],.ig_popup.ig_compel input[type=button]{width:50%;text-transform:uppercase;font-weight:600;text-align:center;background:#e74d3c;color:#FFF;border-radius:5px;border-bottom:.18em solid #bf3a2b;font-size:1.2em;padding:.8em .15em .62em;margin:.5em auto 1.2em}.ig_popup.ig_compel .ig_button:hover,.ig_popup.ig_compel input[type=submit]:hover,.ig_popup.ig_compel input[type=button]:hover{-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5)}@font-face{font-family:'Goudy Bookletter 1911';font-style:normal;font-weight:400;src:local('Goudy Bookletter 1911'),local('GoudyBookletter1911'),url(https://fonts.gstatic.com/s/goudybookletter1911/v6/l5lwlGTN3pEY5Bf-rQEuIAQibyVIKv8boZ0oFv0g-Lo.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215,U+E0FF,U+EFFD,U+F000}.ig_popup.ig_convert{-webkit-box-shadow:none;box-shadow:none;width:50%;background-color:#fffdcc;color:#484747;border-radius:.3em}.ig_popup.ig_convert .ig_headline{text-align:center;font-size:2.5em;padding:.8em 1.2em .3em;font-family:'Goudy Bookletter 1911',serif}.ig_popup.ig_convert .ig_image{float:right}.ig_popup.ig_convert .ig_message{vertical-align:baseline;text-align:center;font-size:1.2em;padding:.8em 1.5em;font-family:Calibri,Candara,Segoe,"Segoe UI",Optima,Arial,sans-serif}.ig_popup.ig_convert .ig_button,.ig_popup.ig_convert input[type=submit],.ig_popup.ig_convert input[type=button]{font-weight:700;text-decoration:none;width:60%;clear:both;background:#cb0606;color:#fcf8f8;font-size:1.75em;border:.2em solid rgba(0,0,0,.2)!important;font-family:'Goudy Bookletter 1911',serif;text-align:center;line-height:1.5em;padding:.3em 1em;margin:.5em auto 1.2em}.ig_popup.ig_convert .ig_button:hover,.ig_popup.ig_convert input[type=submit]:hover,.ig_popup.ig_convert input[type=button]:hover{-webkit-box-shadow:0 0 8px 0 rgba(0,0,0,.4);box-shadow:0 0 8px 0 rgba(0,0,0,.4)}.ig_popup.ig_convert .ig_button:active,.ig_popup.ig_convert input[type=submit]:active,.ig_popup.ig_convert input[type=button]:active{-webkit-box-shadow:none;box-shadow:none}.ig_popup.ig_convert .ig_close{background-position:0 center;top:6px;right:6px;opacity:.4}.mfp-bg,.mfp-container,.mfp-wrap{left:0;top:0;height:100%}.ig_popup.ig_convert .ig_close:hover{background-position:0 center;opacity:.7}.ig_popup.ig_form_right.ig_convert .ig_form_container.layout_right{padding-top:2.2em}@media only screen and (min-width:1440px){.ig_popup.ig_convert{max-width:600px}}@media only screen and (max-width:850px){.ig_popup.ig_convert{width:65%}.ig_popup.ig_form_right.ig_convert .ig_form_container.layout_right{padding-top:1em}}@media only screen and (max-width:644px){.ig_popup.ig_convert{width:75%}}@media only screen and (max-width:375px){.ig_popup.ig_convert{width:90%}}.mfp-bg{width:100%;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8;filter:alpha(opacity=80)}.mfp-wrap{width:100%;position:fixed;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;padding:0 8px;-webkit-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-close,.mfp-preloader{text-align:center;position:absolute}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#CCC;top:50%;width:auto;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-close,.mfp-preloader a:hover{color:#FFF}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;right:0;top:0;text-decoration:none;opacity:.65;filter:alpha(opacity=65);padding:0 0 18px 10px;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1;filter:alpha(opacity=100)}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-figure,img.mfp-img{line-height:0}.mfp-arrow{position:absolute;opacity:.65;filter:alpha(opacity=65);margin:-55px 0 0;top:50%;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1;filter:alpha(opacity=100)}.mfp-arrow .mfp-a,.mfp-arrow .mfp-b,.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:inset transparent}.mfp-arrow .mfp-a,.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow .mfp-b,.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left .mfp-b,.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3F3F3F}.mfp-arrow-right{right:0}.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right .mfp-b,.mfp-arrow-right:before{border-left:27px solid #3F3F3F}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-image-holder .mfp-content,img.mfp-img{max-width:100%}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}.mfp-figure:after,img.mfp-img{width:auto;height:auto;display:block}img.mfp-img{-webkit-box-sizing:border-box;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure:after{position:absolute;left:0;top:40px;bottom:40px;right:0;z-index:-1;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#BDBDBD;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#F3F3F3;word-wrap:break-word;padding-right:36px}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}.ig_popup,.ig_popup .ig_bg_overlay,.ig_popup .ig_content{background-color:transparent}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-ie7 .mfp-img{padding:0}.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px}.mfp-ie7 .mfp-container{padding:0}.mfp-ie7 .mfp-content{padding-top:44px}.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0}.ig_popup{opacity:1;display:block;position:relative;z-index:100000;width:58%;margin:32px auto 20px!important;font-size:1em}.ig_popup .ig_bg_overlay{width:100%;height:100%;top:0;left:0;margin:0;padding:0;position:absolute;display:none}.ig_popup .ig_headline{text-decoration:none;font-weight:800;font-size:2em;line-height:1.2em}.ig_popup .ig_data{position:relative}.ig_popup .ig_image{margin:0 1em}.ig_popup .ig_message{line-height:1.2em;font-size:1.2em}.ig_popup .ig_close{background-repeat:no-repeat;margin:0;cursor:pointer;position:absolute;z-index:20;background-image:url(../../../assets/images/sprite_1.png);height:30px;width:30px;background-position:-600px center;top:-15px;right:-15px}.ig_popup .ig_close:hover{background-position:-640px center}.ig_popup .ig_button,.ig_popup input[type=submit],.ig_popup input[type=button]{cursor:pointer;display:block;background-image:none;-webkit-box-shadow:none;box-shadow:none;position:relative;border-radius:0}.mfp-wrap .ig_powered_by{position:fixed;bottom:1em;left:1em;font-size:14px;padding:.1em}@media only screen and (min-width:1440px){.ig_popup{max-width:835px}}@media only screen and (max-width:850px){.ig_popup{font-size:14px}.ig_popup .ig_button,.ig_popup input[type=submit],.ig_popup input[type=button]{width:70%!important}}@media only screen and (max-width:644px){.ig_popup{width:75%;font-size:13px}.ig_popup .ig_button,.ig_popup input[type=submit],.ig_popup input[type=button]{width:60%!important}}@media only screen and (max-width:425px){.ig_popup .ig_button,.ig_popup input[type=submit],.ig_popup input[type=button]{width:80%!important}}@media only screen and (max-width:375px){.ig_popup{width:90%}.ig_popup .ig_button,.ig_popup input[type=submit],.ig_popup input[type=button]{width:90%!important}}.ig_popup .ig_form_container{float:left;width:30%}.ig_popup.ig_form_left .ig_data{position:relative}.ig_popup.ig_form_left .ig_data,.ig_popup.ig_form_right .ig_data{float:left;width:70%}.ig_popup.ig_form_right.ig_form_style_4 .ig_close,.ig_popup.ig_form_right.ig_form_style_4 .ig_close:hover{margin:-15px -15px 0 0}@media only screen and (max-width:850px){.ig_popup.ig_form_left .ig_form_container.layout_left,.ig_popup.ig_form_right .ig_form_container.layout_right{display:none}.ig_popup.ig_form_bottom .ig_form_container.layout_bottom,.ig_popup.ig_form_left .ig_form_container.layout_bottom,.ig_popup.ig_form_right .ig_form_container.layout_bottom{display:block;width:100%;height:auto!important;font-size:1.3em}.ig_popup.ig_form_inline .ig_form_container.layout_inline{padding:.6em 0}.ig_popup.ig_form_left .ig_data,.ig_popup.ig_form_right .ig_data{width:100%}.ig_popup .ig_form_container.layout_bottom .ig_full .ig_form_els,.ig_popup .ig_form_container.layout_bottom .ig_half .ig_form_els,.ig_popup .ig_form_container.layout_bottom .ig_quater .ig_form_els,.ig_popup .ig_form_container.layout_bottom .ig_third .ig_form_els,.ig_popup .ig_form_container.layout_inline .ig_full .ig_form_els,.ig_popup .ig_form_container.layout_inline .ig_half .ig_form_els,.ig_popup .ig_form_container.layout_inline .ig_quater .ig_form_els,.ig_popup .ig_form_container.layout_inline .ig_third .ig_form_els{width:99%;margin:.5em auto 0}.ig_popup .ig_form_container.layout_bottom .ig_button_label,.ig_popup .ig_form_container.layout_inline .ig_button_label{display:none}.ig_popup .ig_form_container.layout_bottom .ig_button,.ig_popup .ig_form_container.layout_bottom input[type=submit],.ig_popup .ig_form_container.layout_bottom input[type=button],.ig_popup .ig_form_container.layout_inline .ig_button,.ig_popup .ig_form_container.layout_inline input[type=submit],.ig_popup .ig_form_container.layout_inline input[type=button]{width:99%!important;font-size:1em}.ig_popup.ig_form_bottom .ig_form_container.layout_bottom .ig_form_els.ig_form_el_radio,.ig_popup.ig_form_bottom .ig_form_container.layout_bottom .ig_form_els.ig_form_el_radio label,.ig_popup.ig_form_inline .ig_form_container.layout_inline .ig_form_els.ig_form_el_radio,.ig_popup.ig_form_inline .ig_form_container.layout_inline .ig_form_els.ig_form_el_radio label{display:block}.ig_popup.ig_form_style_1 .ig_form_container:before{border-width:0;border-style:solid;top:0;--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important;opacity:.3}.ig_popup.ig_form_left.ig_form_style_1 .ig_form_container.layout_bottom:before,.ig_popup.ig_form_right.ig_form_style_1 .ig_form_container.layout_bottom:before{width:100%;border-top-width:.2em}.ig_popup.ig_form_bottom.ig_form_style_1 .ig_form_container.layout_bottom:before{border-top-width:.2em}.ig_popup.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els,.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els{margin-left:0;margin-right:0}.ig_popup.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els input,.ig_popup.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_first input,.ig_popup.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_last input,.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els input,.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_first input,.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_last input{border-radius:2em;padding-left:1em}.ig_popup.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els input.ig_button,.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els input.ig_button{padding:inherit}.ig_popup.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els label,.ig_popup.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_first label,.ig_popup.ig_form_style_2 .ig_form_container.layout_bottom .ig_form_els.ig_form_els_last label,.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els label,.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_first label,.ig_popup.ig_form_style_2 .ig_form_container.layout_inline .ig_form_els.ig_form_els_last label{padding-left:1em}.ig_popup.ig_form_right.ig_form_style_4 .ig_close,.ig_popup.ig_form_right.ig_form_style_4 .ig_close:hover{margin:0}.ig_popup.ig_form_bottom.ig_form_style_4 .ig_message,.ig_popup.ig_form_left.ig_form_style_4 .ig_message,.ig_popup.ig_form_right.ig_form_style_4 .ig_message{padding-bottom:1.5em}}@media only screen and (min-width:645px) and (max-width:850px){.ig_popup.ig_form_bottom .ig_form_container.layout_bottom,.ig_popup.ig_form_left .ig_form_container.layout_bottom,.ig_popup.ig_form_right .ig_form_container.layout_bottom{font-size:1.1em}}.ig_popup.ig_inspire{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));color:#444}.ig_popup.ig_inspire .ig_headline{text-align:center;color:#82AD23;padding:.8em .8em .3em;font-size:2.5em}.ig_popup.ig_inspire .ig_image{float:left}.ig_popup.ig_inspire .ig_message{text-align:justify;padding:.8em 2em;font-size:1.25em}.ig_popup.ig_inspire .ig_button,.ig_popup.ig_inspire input[type=submit],.ig_popup.ig_inspire input[type=button]{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));vertical-align:middle;font-weight:700;font-style:normal;text-decoration:none;text-align:center;opacity:1;background:#82AD23;font-size:2em;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);width:55%;line-height:1.2em;padding:.5em;margin:.5em auto 1em;border-top:none}.ig_popup.ig_inspire .ig_button:hover,.ig_popup.ig_inspire input[type=submit]:hover,.ig_popup.ig_inspire input[type=button]:hover{border-top:none;-webkit-box-shadow:0 0 8px 0 rgba(0,0,0,.4);box-shadow:0 0 8px 0 rgba(0,0,0,.4)}.ig_popup.ig_inspire .ig_button:active,.ig_popup.ig_inspire input[type=submit]:active,.ig_popup.ig_inspire input[type=button]:active{font-weight:400;-webkit-box-shadow:none;box-shadow:none;border-top:none}.ig_popup.ig_inspire .ig_close{margin:0;top:0;right:0;background-position:-763px center;opacity:.4;height:24px;width:24px;background-color:rgba(0,0,0,.45)}.ig_popup.ig_inspire .ig_close:hover{opacity:.7}.ig_popup.ig_form_right.ig_inspire .ig_form_container.layout_right{padding-top:2.5em}@media only screen and (max-width:850px){.ig_popup.ig_form_right.ig_inspire .ig_form_container.layout_right{padding-top:1em}}.ig_popup.ig_persuade{background:#ef504e;color:#FFF;border:.4em dashed #FFF;padding-bottom:.1em}.ig_popup.ig_persuade .ig_headline{text-align:center;letter-spacing:0;font-size:2.8em;-webkit-font-smoothing:antialiased;line-height:1em;padding:.7em .7em .5em}.ig_popup.ig_persuade .ig_image{float:left}.ig_popup.ig_persuade .ig_message{font-weight:300;text-align:center;padding:.5em 1.5em .8em;font-size:1.5em;-webkit-font-smoothing:antialiased}.ig_popup.ig_persuade .ig_button,.ig_popup.ig_persuade input[type=submit],.ig_popup.ig_persuade input[type=button]{text-decoration:none;text-align:center;font-weight:400;clear:both;--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));border-style:none;background:#424242;font-size:2em;line-height:1.2em;width:55%;margin:.5em auto 1em;padding:.4em;border-radius:.4em;border-bottom:.28em solid #333;border-bottom:.2em solid rgba(0,0,0,.3)!important;-webkit-box-shadow:0 .3em 1.5em rgba(0,0,0,.6)!important;box-shadow:0 .3em 1.5em rgba(0,0,0,.6)!important}.ig_popup.ig_persuade .ig_button:hover,.ig_popup.ig_persuade input[type=submit]:hover,.ig_popup.ig_persuade input[type=button]:hover{-webkit-box-shadow:0 .1em .1em rgba(0,0,0,.3)!important;box-shadow:0 .1em .1em rgba(0,0,0,.3)!important}.ig_popup.ig_persuade .ig_button:active,.ig_popup.ig_persuade input[type=submit]:active,.ig_popup.ig_persuade input[type=button]:active{-webkit-box-shadow:none!important;box-shadow:none!important}
|
lite/message-types/toast/themes/announce.css
CHANGED
@@ -14,16 +14,16 @@
|
|
14 |
}
|
15 |
|
16 |
.ig_toast.ig_announce .ig_wrapper {
|
17 |
-
border
|
18 |
border-radius: 4px;
|
19 |
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
|
20 |
}
|
21 |
|
22 |
.ig_toast.ig_announce .ig_content {
|
23 |
-
border
|
24 |
-
|
25 |
-
background-color: transparent !important;
|
26 |
border-radius: 4px;
|
|
|
27 |
box-shadow: inset 0 -3px 2px rgba(58, 71, 89, 0.04);
|
28 |
}
|
29 |
|
14 |
}
|
15 |
|
16 |
.ig_toast.ig_announce .ig_wrapper {
|
17 |
+
@apply border-none;
|
18 |
border-radius: 4px;
|
19 |
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
|
20 |
}
|
21 |
|
22 |
.ig_toast.ig_announce .ig_content {
|
23 |
+
@apply border-none;
|
24 |
+
@apply bg-transparent !important;
|
|
|
25 |
border-radius: 4px;
|
26 |
+
color: rgba(67, 76, 89, 0.9) !important;
|
27 |
box-shadow: inset 0 -3px 2px rgba(58, 71, 89, 0.04);
|
28 |
}
|
29 |
|
lite/message-types/toast/themes/balance.css
CHANGED
@@ -9,11 +9,11 @@
|
|
9 |
-webkit-font-smoothing: antialiased;
|
10 |
}
|
11 |
.ig_toast.ig_balance .ig_content {
|
12 |
-
|
13 |
}
|
14 |
.ig_toast.ig_balance .ig_headline {
|
|
|
15 |
border-bottom: 1px solid #777;
|
16 |
-
width: 100%;
|
17 |
}
|
18 |
.ig_toast.ig_balance .ig_message {
|
19 |
margin-top: 5px;
|
9 |
-webkit-font-smoothing: antialiased;
|
10 |
}
|
11 |
.ig_toast.ig_balance .ig_content {
|
12 |
+
@apply bg-transparent !important;
|
13 |
}
|
14 |
.ig_toast.ig_balance .ig_headline {
|
15 |
+
@apply w-full;
|
16 |
border-bottom: 1px solid #777;
|
|
|
17 |
}
|
18 |
.ig_toast.ig_balance .ig_message {
|
19 |
margin-top: 5px;
|
lite/message-types/toast/themes/burnt.css
CHANGED
@@ -1,12 +1,11 @@
|
|
1 |
.ig_toast.ig_burnt.ig_container {
|
|
|
|
|
2 |
min-height: 64px;
|
3 |
-
position: relative;
|
4 |
-
box-sizing: border-box;
|
5 |
-
background-color: transparent !important;
|
6 |
}
|
7 |
|
8 |
.ig_toast.ig_burnt .ig_content {
|
9 |
-
|
10 |
}
|
11 |
|
12 |
.ig_toast.ig_burnt .ig_wrapper {
|
@@ -14,26 +13,18 @@
|
|
14 |
}
|
15 |
|
16 |
.ig_toast.ig_burnt .ig_base {
|
17 |
-
|
18 |
-
top: 0;
|
19 |
-
left: 0;
|
20 |
-
bottom: 0;
|
21 |
-
right: 0;
|
22 |
-
background-color: transparent;
|
23 |
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.88));
|
24 |
background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.88));
|
25 |
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.88));
|
26 |
border: 1px solid #000;
|
27 |
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
|
28 |
border-radius: 4px;
|
29 |
-
overflow: hidden;
|
30 |
-
z-index: 0
|
31 |
}
|
32 |
|
33 |
.ig_toast.ig_burnt .ig_line {
|
34 |
-
|
35 |
height: 27px;
|
36 |
-
position: absolute;
|
37 |
top: 1px;
|
38 |
left: 58px;
|
39 |
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
|
@@ -42,12 +33,10 @@
|
|
42 |
}
|
43 |
|
44 |
.ig_toast.ig_burnt .ig_line:after {
|
|
|
45 |
content: "";
|
46 |
-
display: block;
|
47 |
-
width: 1px;
|
48 |
-
height: 26px;
|
49 |
-
position: absolute;
|
50 |
top: 1px;
|
|
|
51 |
left: -1px;
|
52 |
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
53 |
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
@@ -55,7 +44,7 @@
|
|
55 |
}
|
56 |
|
57 |
.ig_toast.ig_burnt .ig_headline {
|
58 |
-
|
59 |
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
|
60 |
z-index: 1;
|
61 |
}
|
@@ -74,7 +63,7 @@
|
|
74 |
}
|
75 |
|
76 |
.ig_toast.ig_burnt .ig_message {
|
|
|
77 |
color: rgba(255, 255, 255, 0.83);
|
78 |
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.7);
|
79 |
-
position: relative;
|
80 |
}
|
1 |
.ig_toast.ig_burnt.ig_container {
|
2 |
+
@apply relative box-border;
|
3 |
+
@apply bg-transparent !important;
|
4 |
min-height: 64px;
|
|
|
|
|
|
|
5 |
}
|
6 |
|
7 |
.ig_toast.ig_burnt .ig_content {
|
8 |
+
@apply bg-transparent !important;
|
9 |
}
|
10 |
|
11 |
.ig_toast.ig_burnt .ig_wrapper {
|
13 |
}
|
14 |
|
15 |
.ig_toast.ig_burnt .ig_base {
|
16 |
+
@apply absolute top-0 left-0 bottom-0 right-0 bg-transparent overflow-hidden z-0;
|
|
|
|
|
|
|
|
|
|
|
17 |
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.88));
|
18 |
background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.88));
|
19 |
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.88));
|
20 |
border: 1px solid #000;
|
21 |
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
|
22 |
border-radius: 4px;
|
|
|
|
|
23 |
}
|
24 |
|
25 |
.ig_toast.ig_burnt .ig_line {
|
26 |
+
@apply w-px absolute;
|
27 |
height: 27px;
|
|
|
28 |
top: 1px;
|
29 |
left: 58px;
|
30 |
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
|
33 |
}
|
34 |
|
35 |
.ig_toast.ig_burnt .ig_line:after {
|
36 |
+
@apply block w-px absolute;
|
37 |
content: "";
|
|
|
|
|
|
|
|
|
38 |
top: 1px;
|
39 |
+
height: 26px;
|
40 |
left: -1px;
|
41 |
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
42 |
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
44 |
}
|
45 |
|
46 |
.ig_toast.ig_burnt .ig_headline {
|
47 |
+
@apply text-white;
|
48 |
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
|
49 |
z-index: 1;
|
50 |
}
|
63 |
}
|
64 |
|
65 |
.ig_toast.ig_burnt .ig_message {
|
66 |
+
@apply relative;
|
67 |
color: rgba(255, 255, 255, 0.83);
|
68 |
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.7);
|
|
|
69 |
}
|
lite/message-types/toast/themes/clear.css
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
background: #fff !important;
|
5 |
}
|
6 |
.ig_toast.ig_clear .ig_content {
|
7 |
-
|
8 |
}
|
9 |
.ig_toast.ig_clear .ig_headline {
|
10 |
color: #222;
|
@@ -13,8 +13,8 @@
|
|
13 |
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
|
14 |
}
|
15 |
.ig_toast.ig_clear .ig_message {
|
|
|
16 |
color: #444;
|
17 |
-
text-align: left;
|
18 |
-
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
|
19 |
line-height: 15px;
|
|
|
20 |
}
|
4 |
background: #fff !important;
|
5 |
}
|
6 |
.ig_toast.ig_clear .ig_content {
|
7 |
+
@apply bg-transparent !important;
|
8 |
}
|
9 |
.ig_toast.ig_clear .ig_headline {
|
10 |
color: #222;
|
13 |
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
|
14 |
}
|
15 |
.ig_toast.ig_clear .ig_message {
|
16 |
+
@apply text-left;
|
17 |
color: #444;
|
|
|
|
|
18 |
line-height: 15px;
|
19 |
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
|
20 |
}
|
lite/message-types/toast/themes/default.css
CHANGED
@@ -1,40 +1,33 @@
|
|
1 |
.ig_toast.ig_container {
|
2 |
-
|
3 |
}
|
4 |
|
5 |
.ig_toast .ig_wrapper {
|
6 |
-
overflow
|
7 |
padding: 5px 5px 5px 50px;
|
8 |
-
position: relative;
|
9 |
min-height: 34px;
|
10 |
}
|
11 |
|
12 |
.ig_toast .ig_content {
|
13 |
-
overflow
|
14 |
}
|
15 |
|
16 |
.ig_toast .ig_headline {
|
17 |
-
|
18 |
-
margin: 0;
|
19 |
-
text-align: left;
|
20 |
-
position: relative;
|
21 |
}
|
22 |
|
23 |
.ig_toast .ig_icon {
|
24 |
-
overflow
|
25 |
-
display: block;
|
26 |
max-height: 32px;
|
27 |
max-width: 32px;
|
28 |
left: 10px;
|
29 |
top: 10px;
|
30 |
-
position: absolute;
|
31 |
}
|
32 |
|
33 |
.ig_toast .ig_icon img {
|
|
|
34 |
max-width: 32px;
|
35 |
max-height: 32px;
|
36 |
-
margin: 0;
|
37 |
-
padding: 0;
|
38 |
}
|
39 |
|
40 |
.ig_toast .ig_message {
|
@@ -46,17 +39,15 @@
|
|
46 |
}
|
47 |
|
48 |
.ig_toast_block {
|
49 |
-
|
50 |
-
|
51 |
z-index: 999999;
|
52 |
-ms-word-wrap: break-word;
|
53 |
word-wrap: break-word;
|
54 |
-
padding: 0;
|
55 |
-
margin: 5px;
|
56 |
}
|
57 |
|
58 |
.ig_toast_block * {
|
59 |
-
box-
|
60 |
text-transform: none;
|
61 |
}
|
62 |
|
@@ -65,13 +56,11 @@
|
|
65 |
}
|
66 |
|
67 |
.ig_toast_block .ig_headline {
|
68 |
-
font-
|
69 |
-
clear: none;
|
70 |
-
padding: 0;
|
71 |
}
|
72 |
|
73 |
.ig_toast_block .ig_message {
|
74 |
-
|
75 |
-
text-align: left;
|
76 |
line-height: 15px;
|
|
|
77 |
}
|
1 |
.ig_toast.ig_container {
|
2 |
+
@apply hidden;
|
3 |
}
|
4 |
|
5 |
.ig_toast .ig_wrapper {
|
6 |
+
@apply overflow-hidden relative;
|
7 |
padding: 5px 5px 5px 50px;
|
|
|
8 |
min-height: 34px;
|
9 |
}
|
10 |
|
11 |
.ig_toast .ig_content {
|
12 |
+
@apply overflow-hidden;
|
13 |
}
|
14 |
|
15 |
.ig_toast .ig_headline {
|
16 |
+
@apply inline-block m-0 text-left relative;
|
|
|
|
|
|
|
17 |
}
|
18 |
|
19 |
.ig_toast .ig_icon {
|
20 |
+
@apply overflow-hidden block absolute;
|
|
|
21 |
max-height: 32px;
|
22 |
max-width: 32px;
|
23 |
left: 10px;
|
24 |
top: 10px;
|
|
|
25 |
}
|
26 |
|
27 |
.ig_toast .ig_icon img {
|
28 |
+
@apply m-0 p-0;
|
29 |
max-width: 32px;
|
30 |
max-height: 32px;
|
|
|
|
|
31 |
}
|
32 |
|
33 |
.ig_toast .ig_message {
|
39 |
}
|
40 |
|
41 |
.ig_toast_block {
|
42 |
+
@apply fixed p-0 list-none;
|
43 |
+
margin: 5px;
|
44 |
z-index: 999999;
|
45 |
-ms-word-wrap: break-word;
|
46 |
word-wrap: break-word;
|
|
|
|
|
47 |
}
|
48 |
|
49 |
.ig_toast_block * {
|
50 |
+
@apply box-content;
|
51 |
text-transform: none;
|
52 |
}
|
53 |
|
56 |
}
|
57 |
|
58 |
.ig_toast_block .ig_headline {
|
59 |
+
@apply font-bold clear-none p-0;
|
|
|
|
|
60 |
}
|
61 |
|
62 |
.ig_toast_block .ig_message {
|
63 |
+
@apply text-left;
|
|
|
64 |
line-height: 15px;
|
65 |
+
font-size: 12px;
|
66 |
}
|
lite/message-types/toast/themes/night-glow.css
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
.ig_toast.ig_night-glow.ig_container {
|
|
|
2 |
border-radius: 5px;
|
3 |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
|
4 |
-webkit-font-smoothing: antialiased;
|
5 |
-
background-color: transparent !important;
|
6 |
background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.83)), to(rgba(51, 51, 51, 0.73)), color-stop(0.5, rgba(0, 0, 0, 0.83))) !important;
|
7 |
background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.83)0%, rgba(0, 0, 0, 0.83)50%, rgba(51, 51, 51, 0.73)100%) !important;
|
8 |
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.83)0%, rgba(0, 0, 0, 0.83)50%, rgba(51, 51, 51, 0.73)100%) !important;
|
@@ -12,15 +12,15 @@
|
|
12 |
}
|
13 |
|
14 |
.ig_toast.ig_night-glow .ig_wrapper {
|
|
|
15 |
border-radius: 3px;
|
16 |
background-image: url(../../../assets/images/toast-glow.png);
|
17 |
-
background-repeat: no-repeat;
|
18 |
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
19 |
}
|
20 |
|
21 |
.ig_toast.ig_night-glow .ig_content {
|
|
|
22 |
padding-left: 8px;
|
23 |
border-radius: 3px;
|
24 |
border-left: 1px solid rgba(255, 255, 255, 0.1);
|
25 |
-
background-color: transparent !important;
|
26 |
}
|
1 |
.ig_toast.ig_night-glow.ig_container {
|
2 |
+
@apply bg-transparent !important;
|
3 |
border-radius: 5px;
|
4 |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
|
5 |
-webkit-font-smoothing: antialiased;
|
|
|
6 |
background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.83)), to(rgba(51, 51, 51, 0.73)), color-stop(0.5, rgba(0, 0, 0, 0.83))) !important;
|
7 |
background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.83)0%, rgba(0, 0, 0, 0.83)50%, rgba(51, 51, 51, 0.73)100%) !important;
|
8 |
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.83)0%, rgba(0, 0, 0, 0.83)50%, rgba(51, 51, 51, 0.73)100%) !important;
|
12 |
}
|
13 |
|
14 |
.ig_toast.ig_night-glow .ig_wrapper {
|
15 |
+
@apply bg-no-repeat;
|
16 |
border-radius: 3px;
|
17 |
background-image: url(../../../assets/images/toast-glow.png);
|
|
|
18 |
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
19 |
}
|
20 |
|
21 |
.ig_toast.ig_night-glow .ig_content {
|
22 |
+
@apply bg-transparent !important;
|
23 |
padding-left: 8px;
|
24 |
border-radius: 3px;
|
25 |
border-left: 1px solid rgba(255, 255, 255, 0.1);
|
|
|
26 |
}
|
lite/message-types/toast/themes/stand-out.css
CHANGED
@@ -3,9 +3,9 @@
|
|
3 |
}
|
4 |
.ig_toast.ig_stand-out.ig_container {
|
5 |
background-color: #1f1f1f !important;
|
6 |
-
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(0, 0, 0, 0.1)), color-stop(1, rgba(255, 255, 255, 0.1))), url(
|
7 |
-
background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), url(
|
8 |
-
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), url(
|
9 |
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 -1px 0 rgba(255, 255, 255, 0.1) inset, 0 1px 4px rgba(0, 0, 0, 0.7);
|
10 |
border-radius: 5px;
|
11 |
color: rgba(255, 255, 255, 0.7);
|
@@ -13,12 +13,12 @@
|
|
13 |
border: 1px solid #111;
|
14 |
}
|
15 |
.ig_toast.ig_stand-out .ig_content {
|
16 |
-
|
17 |
}
|
18 |
.ig_toast.ig_stand-out .ig_icon {
|
19 |
-
|
20 |
-
left: auto;
|
21 |
border-radius: 3px;
|
|
|
22 |
}
|
23 |
.ig_toast.ig_stand-out .ig_message, .ig_toast.ig_stand-out .ig_headline {
|
24 |
line-height: 15px;
|
3 |
}
|
4 |
.ig_toast.ig_stand-out.ig_container {
|
5 |
background-color: #1f1f1f !important;
|
6 |
+
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(0, 0, 0, 0.1)), color-stop(1, rgba(255, 255, 255, 0.1))), url(/assets/images/stand-out.png) !important;
|
7 |
+
background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), url(/assets/images/stand-out.png) !important;
|
8 |
+
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), url(/assets/images/stand-out.png) !important;
|
9 |
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 -1px 0 rgba(255, 255, 255, 0.1) inset, 0 1px 4px rgba(0, 0, 0, 0.7);
|
10 |
border-radius: 5px;
|
11 |
color: rgba(255, 255, 255, 0.7);
|
13 |
border: 1px solid #111;
|
14 |
}
|
15 |
.ig_toast.ig_stand-out .ig_content {
|
16 |
+
@apply bg-transparent !important;
|
17 |
}
|
18 |
.ig_toast.ig_stand-out .ig_icon {
|
19 |
+
@apply left-auto;
|
|
|
20 |
border-radius: 3px;
|
21 |
+
right: 10px;
|
22 |
}
|
23 |
.ig_toast.ig_stand-out .ig_message, .ig_toast.ig_stand-out .ig_headline {
|
24 |
line-height: 15px;
|
lite/message-types/toast/themes/toast.js
ADDED
@@ -0,0 +1,188 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/******/ (function(modules) { // webpackBootstrap
|
2 |
+
/******/ // The module cache
|
3 |
+
/******/ var installedModules = {};
|
4 |
+
/******/
|
5 |
+
/******/ // The require function
|
6 |
+
/******/ function __webpack_require__(moduleId) {
|
7 |
+
/******/
|
8 |
+
/******/ // Check if module is in cache
|
9 |
+
/******/ if(installedModules[moduleId]) {
|
10 |
+
/******/ return installedModules[moduleId].exports;
|
11 |
+
/******/ }
|
12 |
+
/******/ // Create a new module (and put it into the cache)
|
13 |
+
/******/ var module = installedModules[moduleId] = {
|
14 |
+
/******/ i: moduleId,
|
15 |
+
/******/ l: false,
|
16 |
+
/******/ exports: {}
|
17 |
+
/******/ };
|
18 |
+
/******/
|
19 |
+
/******/ // Execute the module function
|
20 |
+
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
21 |
+
/******/
|
22 |
+
/******/ // Flag the module as loaded
|
23 |
+
/******/ module.l = true;
|
24 |
+
/******/
|
25 |
+
/******/ // Return the exports of the module
|
26 |
+
/******/ return module.exports;
|
27 |
+
/******/ }
|
28 |
+
/******/
|
29 |
+
/******/
|
30 |
+
/******/ // expose the modules object (__webpack_modules__)
|
31 |
+
/******/ __webpack_require__.m = modules;
|
32 |
+
/******/
|
33 |
+
/******/ // expose the module cache
|
34 |
+
/******/ __webpack_require__.c = installedModules;
|
35 |
+
/******/
|
36 |
+
/******/ // define getter function for harmony exports
|
37 |
+
/******/ __webpack_require__.d = function(exports, name, getter) {
|
38 |
+
/******/ if(!__webpack_require__.o(exports, name)) {
|
39 |
+
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
40 |
+
/******/ }
|
41 |
+
/******/ };
|
42 |
+
/******/
|
43 |
+
/******/ // define __esModule on exports
|
44 |
+
/******/ __webpack_require__.r = function(exports) {
|
45 |
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
46 |
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
47 |
+
/******/ }
|
48 |
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
49 |
+
/******/ };
|
50 |
+
/******/
|
51 |
+
/******/ // create a fake namespace object
|
52 |
+
/******/ // mode & 1: value is a module id, require it
|
53 |
+
/******/ // mode & 2: merge all properties of value into the ns
|
54 |
+
/******/ // mode & 4: return value when already ns object
|
55 |
+
/******/ // mode & 8|1: behave like require
|
56 |
+
/******/ __webpack_require__.t = function(value, mode) {
|
57 |
+
/******/ if(mode & 1) value = __webpack_require__(value);
|
58 |
+
/******/ if(mode & 8) return value;
|
59 |
+
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
60 |
+
/******/ var ns = Object.create(null);
|
61 |
+
/******/ __webpack_require__.r(ns);
|
62 |
+
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
63 |
+
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
64 |
+
/******/ return ns;
|
65 |
+
/******/ };
|
66 |
+
/******/
|
67 |
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
68 |
+
/******/ __webpack_require__.n = function(module) {
|
69 |
+
/******/ var getter = module && module.__esModule ?
|
70 |
+
/******/ function getDefault() { return module['default']; } :
|
71 |
+
/******/ function getModuleExports() { return module; };
|
72 |
+
/******/ __webpack_require__.d(getter, 'a', getter);
|
73 |
+
/******/ return getter;
|
74 |
+
/******/ };
|
75 |
+
/******/
|
76 |
+
/******/ // Object.prototype.hasOwnProperty.call
|
77 |
+
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
78 |
+
/******/
|
79 |
+
/******/ // __webpack_public_path__
|
80 |
+
/******/ __webpack_require__.p = "";
|
81 |
+
/******/
|
82 |
+
/******/
|
83 |
+
/******/ // Load entry module and return exports
|
84 |
+
/******/ return __webpack_require__(__webpack_require__.s = 0);
|
85 |
+
/******/ })
|
86 |
+
/************************************************************************/
|
87 |
+
/******/ ({
|
88 |
+
|
89 |
+
/***/ "./lite/message-types/toast/default.css":
|
90 |
+
/*!**********************************************!*\
|
91 |
+
!*** ./lite/message-types/toast/default.css ***!
|
92 |
+
\**********************************************/
|
93 |
+
/*! no static exports found */
|
94 |
+
/***/ (function(module, exports, __webpack_require__) {
|
95 |
+
|
96 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/toast/default.css?");
|
97 |
+
|
98 |
+
/***/ }),
|
99 |
+
|
100 |
+
/***/ "./lite/message-types/toast/themes/announce.css":
|
101 |
+
/*!******************************************************!*\
|
102 |
+
!*** ./lite/message-types/toast/themes/announce.css ***!
|
103 |
+
\******************************************************/
|
104 |
+
/*! no static exports found */
|
105 |
+
/***/ (function(module, exports, __webpack_require__) {
|
106 |
+
|
107 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/toast/themes/announce.css?");
|
108 |
+
|
109 |
+
/***/ }),
|
110 |
+
|
111 |
+
/***/ "./lite/message-types/toast/themes/balance.css":
|
112 |
+
/*!*****************************************************!*\
|
113 |
+
!*** ./lite/message-types/toast/themes/balance.css ***!
|
114 |
+
\*****************************************************/
|
115 |
+
/*! no static exports found */
|
116 |
+
/***/ (function(module, exports, __webpack_require__) {
|
117 |
+
|
118 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/toast/themes/balance.css?");
|
119 |
+
|
120 |
+
/***/ }),
|
121 |
+
|
122 |
+
/***/ "./lite/message-types/toast/themes/burnt.css":
|
123 |
+
/*!***************************************************!*\
|
124 |
+
!*** ./lite/message-types/toast/themes/burnt.css ***!
|
125 |
+
\***************************************************/
|
126 |
+
/*! no static exports found */
|
127 |
+
/***/ (function(module, exports, __webpack_require__) {
|
128 |
+
|
129 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/toast/themes/burnt.css?");
|
130 |
+
|
131 |
+
/***/ }),
|
132 |
+
|
133 |
+
/***/ "./lite/message-types/toast/themes/clear.css":
|
134 |
+
/*!***************************************************!*\
|
135 |
+
!*** ./lite/message-types/toast/themes/clear.css ***!
|
136 |
+
\***************************************************/
|
137 |
+
/*! no static exports found */
|
138 |
+
/***/ (function(module, exports, __webpack_require__) {
|
139 |
+
|
140 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/toast/themes/clear.css?");
|
141 |
+
|
142 |
+
/***/ }),
|
143 |
+
|
144 |
+
/***/ "./lite/message-types/toast/themes/default.css":
|
145 |
+
/*!*****************************************************!*\
|
146 |
+
!*** ./lite/message-types/toast/themes/default.css ***!
|
147 |
+
\*****************************************************/
|
148 |
+
/*! no static exports found */
|
149 |
+
/***/ (function(module, exports, __webpack_require__) {
|
150 |
+
|
151 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/toast/themes/default.css?");
|
152 |
+
|
153 |
+
/***/ }),
|
154 |
+
|
155 |
+
/***/ "./lite/message-types/toast/themes/night-glow.css":
|
156 |
+
/*!********************************************************!*\
|
157 |
+
!*** ./lite/message-types/toast/themes/night-glow.css ***!
|
158 |
+
\********************************************************/
|
159 |
+
/*! no static exports found */
|
160 |
+
/***/ (function(module, exports, __webpack_require__) {
|
161 |
+
|
162 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/toast/themes/night-glow.css?");
|
163 |
+
|
164 |
+
/***/ }),
|
165 |
+
|
166 |
+
/***/ "./lite/message-types/toast/themes/stand-out.css":
|
167 |
+
/*!*******************************************************!*\
|
168 |
+
!*** ./lite/message-types/toast/themes/stand-out.css ***!
|
169 |
+
\*******************************************************/
|
170 |
+
/*! no static exports found */
|
171 |
+
/***/ (function(module, exports, __webpack_require__) {
|
172 |
+
|
173 |
+
eval("// extracted by mini-css-extract-plugin\n\n//# sourceURL=webpack:///./lite/message-types/toast/themes/stand-out.css?");
|
174 |
+
|
175 |
+
/***/ }),
|
176 |
+
|
177 |
+
/***/ 0:
|
178 |
+
/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
179 |
+
!*** multi ./lite/message-types/toast/default.css ./lite/message-types/toast/themes/announce.css ./lite/message-types/toast/themes/balance.css ./lite/message-types/toast/themes/burnt.css ./lite/message-types/toast/themes/clear.css ./lite/message-types/toast/themes/default.css ./lite/message-types/toast/themes/night-glow.css ./lite/message-types/toast/themes/stand-out.css ***!
|
180 |
+
\****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
181 |
+
/*! no static exports found */
|
182 |
+
/***/ (function(module, exports, __webpack_require__) {
|
183 |
+
|
184 |
+
eval("__webpack_require__(/*! ./lite/message-types/toast/default.css */\"./lite/message-types/toast/default.css\");\n__webpack_require__(/*! ./lite/message-types/toast/themes/announce.css */\"./lite/message-types/toast/themes/announce.css\");\n__webpack_require__(/*! ./lite/message-types/toast/themes/balance.css */\"./lite/message-types/toast/themes/balance.css\");\n__webpack_require__(/*! ./lite/message-types/toast/themes/burnt.css */\"./lite/message-types/toast/themes/burnt.css\");\n__webpack_require__(/*! ./lite/message-types/toast/themes/clear.css */\"./lite/message-types/toast/themes/clear.css\");\n__webpack_require__(/*! ./lite/message-types/toast/themes/default.css */\"./lite/message-types/toast/themes/default.css\");\n__webpack_require__(/*! ./lite/message-types/toast/themes/night-glow.css */\"./lite/message-types/toast/themes/night-glow.css\");\nmodule.exports = __webpack_require__(/*! ./lite/message-types/toast/themes/stand-out.css */\"./lite/message-types/toast/themes/stand-out.css\");\n\n\n//# sourceURL=webpack:///multi_./lite/message-types/toast/default.css_./lite/message-types/toast/themes/announce.css_./lite/message-types/toast/themes/balance.css_./lite/message-types/toast/themes/burnt.css_./lite/message-types/toast/themes/clear.css_./lite/message-types/toast/themes/default.css_./lite/message-types/toast/themes/night-glow.css_./lite/message-types/toast/themes/stand-out.css?");
|
185 |
+
|
186 |
+
/***/ })
|
187 |
+
|
188 |
+
/******/ });
|
lite/message-types/toast/themes/toast.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.ig_toast.ig_container{
|
1 |
+
.ig_toast.ig_announce.ig_container{border-radius:4px;-webkit-box-shadow:0 2px 5px rgba(0,0,0,.1),inset 0 -1px 0 rgba(255,255,255,.15),0 0 6px rgba(0,0,0,.08),0 0 0 1px rgba(35,47,64,.2);box-shadow:0 2px 5px rgba(0,0,0,.1),inset 0 -1px 0 rgba(255,255,255,.15),0 0 6px rgba(0,0,0,.08),0 0 0 1px rgba(35,47,64,.2);background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(255,255,255,.95)),to(rgba(255,255,105,0)));background-image:linear-gradient(180deg,rgba(255,255,255,.95) 0,rgba(255,255,105,0) 100%);background-color:rgba(255,255,105,.95)!important;color:rgba(67,76,89,.9)!important;text-shadow:0 1px 0 rgba(255,255,255,.85)}.ig_toast.ig_announce.ig_container:hover{border-color:rgba(0,0,0,1)}.ig_toast.ig_announce .ig_wrapper{border-style:none;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.55);box-shadow:inset 0 1px 0 rgba(255,255,255,.55)}.ig_toast.ig_announce .ig_content{border-style:none;background-color:transparent!important;border-radius:4px;color:rgba(67,76,89,.9)!important;-webkit-box-shadow:inset 0 -3px 2px rgba(58,71,89,.04);box-shadow:inset 0 -3px 2px rgba(58,71,89,.04)}.ig_toast.ig_announce .ig_headline{color:rgba(67,76,89,.9)}.ig_toast.ig_balance.ig_container{border:1px solid #777;color:#141414;text-shadow:0 1px 0 rgba(255,255,255,.7);background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(204,204,204,.75)),color-stop(40%,rgba(139,139,139,.5)),to(rgba(240,240,240,1)))!important;background-image:linear-gradient(to bottom,rgba(204,204,204,.75) 0,rgba(139,139,139,.5) 40%,rgba(240,240,240,1) 100%)!important;background-color:rgba(204,204,204,.8)!important;-webkit-font-smoothing:antialiased}.ig_toast.ig_balance .ig_content,.ig_toast.ig_burnt .ig_content,.ig_toast.ig_burnt.ig_container{background-color:transparent!important}.ig_toast.ig_balance .ig_headline{width:100%;border-bottom:1px solid #777}.ig_toast.ig_balance .ig_message{margin-top:5px}.ig_toast.ig_burnt.ig_container{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;min-height:64px}.ig_toast.ig_burnt .ig_wrapper{padding:5px 5px 5px 65px}.ig_toast.ig_burnt .ig_base{position:absolute;top:0;left:0;bottom:0;right:0;background-color:transparent;overflow:hidden;z-index:0;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.8)),to(rgba(0,0,0,.88)));background-image:linear-gradient(to bottom,rgba(0,0,0,.8),rgba(0,0,0,.88));border:1px solid #000;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.07),inset 0 0 0 1px rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.07),inset 0 0 0 1px rgba(255,255,255,.1);border-radius:4px}.ig_toast.ig_burnt .ig_line{width:1px;position:absolute;height:27px;top:1px;left:58px;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.3)),to(rgba(0,0,0,0)));background-image:linear-gradient(to bottom,rgba(0,0,0,.3),rgba(0,0,0,0))}.ig_toast.ig_burnt .ig_line:after{display:block;width:1px;position:absolute;content:"";top:1px;height:26px;left:-1px;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(255,255,255,.15)),to(rgba(255,255,255,0)));background-image:linear-gradient(to bottom,rgba(255,255,255,.15),rgba(255,255,255,0))}.ig_toast.ig_burnt .ig_headline{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));text-shadow:0 -1px 0 rgba(0,0,0,.5);z-index:1}.ig_toast.ig_burnt .ig_icon{max-height:42px;max-width:42px;left:8px;top:5px}.ig_toast.ig_burnt .ig_icon img{width:40px;height:40px;border-radius:3px}.ig_toast.ig_burnt .ig_message{position:relative;color:rgba(255,255,255,.83);text-shadow:0 -1px 0 rgba(0,0,0,.7)}.ig_toast.ig_clear.ig_container{border:3px solid rgba(0,0,0,.4);border-radius:.5em;background:#fff!important}.ig_toast.ig_clear .ig_content,.ig_toast.ig_night-glow.ig_container{background-color:transparent!important}.ig_toast.ig_clear .ig_headline{color:#222;letter-spacing:.7pt;line-height:16px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.ig_toast.ig_clear .ig_message{text-align:left;color:#444;line-height:15px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.ig_toast.ig_container{display:none}.ig_toast .ig_wrapper{overflow:hidden;position:relative;padding:5px 5px 5px 50px;min-height:34px}.ig_toast .ig_content{overflow:hidden}.ig_toast .ig_headline{display:inline-block;margin:0;text-align:left;position:relative}.ig_toast .ig_icon{overflow:hidden;display:block;position:absolute;max-height:32px;max-width:32px;left:10px;top:10px}.ig_toast .ig_icon img{margin:0;padding:0;max-width:32px;max-height:32px}.ig_toast .ig_message{margin:-3px 0 0 -2px}.ig_toast .ig_message p{margin:.15em}.ig_toast_block{position:fixed;padding:0;list-style-type:none;margin:5px;z-index:999999;-ms-word-wrap:break-word;word-wrap:break-word}.ig_toast_block *{-webkit-box-sizing:content-box;box-sizing:content-box;text-transform:none}.ig_toast_block .ig_container{margin:10px 0}.ig_toast_block .ig_headline{font-weight:700;clear:none;padding:0}.ig_toast_block .ig_message{text-align:left;line-height:15px;font-size:12px}.ig_toast.ig_night-glow.ig_container{border-radius:5px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.6);box-shadow:0 1px 3px rgba(0,0,0,.6);-webkit-font-smoothing:antialiased;background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.83)),color-stop(50%,rgba(0,0,0,.83)),to(rgba(51,51,51,.73)))!important;background:linear-gradient(to bottom,rgba(0,0,0,.83) 0,rgba(0,0,0,.83) 50%,rgba(51,51,51,.73) 100%)!important;border:1px solid rgba(0,0,0,.6);color:rgba(255,255,255,.9);text-shadow:0 -1px 0 #000}.ig_toast.ig_night-glow .ig_wrapper{background-repeat:no-repeat;border-radius:3px;background-image:url(../../../assets/images/toast-glow.png);border-bottom:1px solid rgba(255,255,255,.05)}.ig_toast.ig_night-glow .ig_content{background-color:transparent!important;padding-left:8px;border-radius:3px;border-left:1px solid rgba(255,255,255,.1)}.ig_toast.ig_stand-out .ig_wrapper{padding:5px 50px 5px 10px}.ig_toast.ig_stand-out.ig_container{background-color:#1f1f1f!important;background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.1)),to(rgba(255,255,255,.1))),url(/assets/images/stand-out.png)!important;background-image:linear-gradient(to top,rgba(0,0,0,.1) 0,rgba(255,255,255,.1) 100%),url(/assets/images/stand-out.png)!important;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3) inset,0 -1px 0 rgba(255,255,255,.1) inset,0 1px 4px rgba(0,0,0,.7);box-shadow:0 1px 0 rgba(255,255,255,.3) inset,0 -1px 0 rgba(255,255,255,.1) inset,0 1px 4px rgba(0,0,0,.7);border-radius:5px;color:rgba(255,255,255,.7);text-shadow:0 1px 0 rgba(0,0,0,.75);border:1px solid #111}.ig_toast.ig_stand-out .ig_content{background-color:transparent!important}.ig_toast.ig_stand-out .ig_icon{left:auto;border-radius:3px;right:10px}.ig_toast.ig_stand-out .ig_headline,.ig_toast.ig_stand-out .ig_message{line-height:15px}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.icegram.com/
|
|
4 |
Tags: popup, optin, hellobar, lead capture, form
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 5.9.3
|
7 |
-
Stable tag: 2.1.
|
8 |
License: GPLv3
|
9 |
|
10 |
The best WordPress popup plugin that lets you create popups and action bars within seconds. Customize exit-intent popup campaigns, action bars, badges, stickies, inline optin, fullscreen overlay, ribbons, sidebar panel and more in no time.
|
@@ -458,12 +458,18 @@ Contact Us, provide as much detail of the problem as you can. We will try to sol
|
|
458 |
|
459 |
== Upgrade Notice ==
|
460 |
|
461 |
-
= 2.1.
|
462 |
|
463 |
-
* Update:
|
|
|
464 |
|
465 |
== Changelog ==
|
466 |
|
|
|
|
|
|
|
|
|
|
|
467 |
**2.1.7 (18.05.2022)**
|
468 |
|
469 |
* Update: UI/UX improvements
|
@@ -1072,4 +1078,4 @@ Contact Us, provide as much detail of the problem as you can. We will try to sol
|
|
1072 |
|
1073 |
**1.0**
|
1074 |
|
1075 |
-
* Initial Release
|
4 |
Tags: popup, optin, hellobar, lead capture, form
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 5.9.3
|
7 |
+
Stable tag: 2.1.8
|
8 |
License: GPLv3
|
9 |
|
10 |
The best WordPress popup plugin that lets you create popups and action bars within seconds. Customize exit-intent popup campaigns, action bars, badges, stickies, inline optin, fullscreen overlay, ribbons, sidebar panel and more in no time.
|
458 |
|
459 |
== Upgrade Notice ==
|
460 |
|
461 |
+
= 2.1.8 =
|
462 |
|
463 |
+
* Update: WordPress 6.0 compatibility check
|
464 |
+
* Fix: Improved security related to XSS [Thanks to WPScan team]
|
465 |
|
466 |
== Changelog ==
|
467 |
|
468 |
+
**2.1.8 (30.05.2022)**
|
469 |
+
|
470 |
+
* Update: WordPress 6.0 compatibility check
|
471 |
+
* Fix: Improved security related to XSS [Thanks to WPScan team]
|
472 |
+
|
473 |
**2.1.7 (18.05.2022)**
|
474 |
|
475 |
* Update: UI/UX improvements
|
1078 |
|
1079 |
**1.0**
|
1080 |
|
1081 |
+
* Initial Release
|