Version Description
Current Version of Popup Builder is 3.63
Download this release
Release Info
Developer | Sygnoos |
Plugin | Popup Builder – Responsive WordPress Pop up |
Version | 3.63 |
Comparing to | |
See all releases |
Code changes from version 3.62.1 to 3.63
- com/classes/Actions.php +2 -2
- com/classes/Filters.php +0 -0
- com/classes/NotificationCenter.php +7 -7
- com/classes/popups/SGPopup.php +0 -0
- com/config/configPackage.php +1 -1
- com/config/dataConfig.php +6 -8
- com/helpers/AdminHelper.php +0 -0
- com/libs/EDD_SL_Plugin_Updater.php +1 -1
- popup-builder.php +1 -1
- public/css/ResetFormStyle.css +13 -125
- public/css/SubscriptionForm.css +19 -143
- public/css/popupAdminStyles.css +105 -2527
- public/css/sgPopupRangeSlider.css +17 -1
- public/css/sgbp-bootstrap.css +786 -6385
- public/css/theme.css +0 -0
- public/js/Backend.js +190 -1824
- public/js/Banner.js +4 -40
- public/js/ExtensionsNotification.js +13 -92
- public/js/Newsletter.js +9 -78
- public/js/NotificationCenter.js +11 -127
- public/js/PopupBuilder.js +0 -0
- public/js/Subscribers.js +38 -421
- readme.txt +7 -2
com/classes/Actions.php
CHANGED
@@ -37,7 +37,7 @@ class Actions
|
|
37 |
add_action('add_meta_boxes', array($this, 'popupMetaboxes'), 100);
|
38 |
add_filter('post_updated_messages', array($this, 'popupPublishedMessage'), 1, 1);
|
39 |
add_action('before_delete_post', array($this, 'deleteSubscribersWithPopup'), 1, 1);
|
40 |
-
add_action('
|
41 |
add_filter('get_sample_permalink_html', array($this, 'removePostPermalink'), 1, 1);
|
42 |
add_action('manage_'.SG_POPUP_POST_TYPE.'_posts_custom_column' , array($this, 'popupsTableColumnsValues'), 10, 2);
|
43 |
add_action('media_buttons', array($this, 'popupMediaButton'));
|
@@ -1053,7 +1053,7 @@ class Actions
|
|
1053 |
do_action('dp_duplicate_page', $newPostId, $post, $status);
|
1054 |
}
|
1055 |
else {
|
1056 |
-
do_action('
|
1057 |
}
|
1058 |
|
1059 |
delete_post_meta($newPostId, '_sgpb_original');
|
37 |
add_action('add_meta_boxes', array($this, 'popupMetaboxes'), 100);
|
38 |
add_filter('post_updated_messages', array($this, 'popupPublishedMessage'), 1, 1);
|
39 |
add_action('before_delete_post', array($this, 'deleteSubscribersWithPopup'), 1, 1);
|
40 |
+
add_action('sgpb_duplicate_post', array($this, 'popupCopyPostMetaInfo'), 10, 2);
|
41 |
add_filter('get_sample_permalink_html', array($this, 'removePostPermalink'), 1, 1);
|
42 |
add_action('manage_'.SG_POPUP_POST_TYPE.'_posts_custom_column' , array($this, 'popupsTableColumnsValues'), 10, 2);
|
43 |
add_action('media_buttons', array($this, 'popupMediaButton'));
|
1053 |
do_action('dp_duplicate_page', $newPostId, $post, $status);
|
1054 |
}
|
1055 |
else {
|
1056 |
+
do_action('sgpb_duplicate_post', $newPostId, $post, $status);
|
1057 |
}
|
1058 |
|
1059 |
delete_post_meta($newPostId, '_sgpb_original');
|
com/classes/Filters.php
CHANGED
File without changes
|
com/classes/NotificationCenter.php
CHANGED
@@ -122,13 +122,13 @@ class SGPBNotificationCenter
|
|
122 |
}
|
123 |
$removedNotifications = get_option('sgpb-all-removed-notifications');
|
124 |
$removedNotifications = json_decode($removedNotifications, true);
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
}
|
133 |
}
|
134 |
}
|
122 |
}
|
123 |
$removedNotifications = get_option('sgpb-all-removed-notifications');
|
124 |
$removedNotifications = json_decode($removedNotifications, true);
|
125 |
+
if (empty($removedNotifications)) {
|
126 |
+
return $activeNotifications;
|
127 |
+
}
|
128 |
+
foreach ($removedNotifications as $removedNotificationId) {
|
129 |
+
foreach ($activeNotifications as $key => $activeNotification) {
|
130 |
+
if ($activeNotification['id'] == $removedNotificationId) {
|
131 |
+
unset($activeNotifications[$key]);
|
132 |
}
|
133 |
}
|
134 |
}
|
com/classes/popups/SGPopup.php
CHANGED
File without changes
|
com/config/configPackage.php
CHANGED
@@ -3,6 +3,6 @@ if (!defined('ABSPATH')) {
|
|
3 |
exit();
|
4 |
}
|
5 |
|
6 |
-
define('SG_POPUP_VERSION', '3.
|
7 |
define('SGPB_POPUP_PKG', SGPB_POPUP_PKG_FREE);
|
8 |
define('POPUP_BUILDER_BASENAME', 'popupbuilder-platinum/popup-builder.php');
|
3 |
exit();
|
4 |
}
|
5 |
|
6 |
+
define('SG_POPUP_VERSION', '3.63');
|
7 |
define('SGPB_POPUP_PKG', SGPB_POPUP_PKG_FREE);
|
8 |
define('POPUP_BUILDER_BASENAME', 'popupbuilder-platinum/popup-builder.php');
|
com/config/dataConfig.php
CHANGED
@@ -485,14 +485,6 @@ class SgpbDataConfig
|
|
485 |
{
|
486 |
$keys = array();
|
487 |
|
488 |
-
$keys[] = array(
|
489 |
-
'label' => __('PDF', SG_POPUP_TEXT_DOMAIN),
|
490 |
-
'pluginKey' => 'popupbuilder-pdf/PopupBuilderPdf.php',
|
491 |
-
'key' => 'pdf',
|
492 |
-
'url' => SGPB_PDF_PLUGIN_URL,
|
493 |
-
'availability' => 'free'
|
494 |
-
);
|
495 |
-
|
496 |
return $keys;
|
497 |
}
|
498 |
|
@@ -512,6 +504,12 @@ class SgpbDataConfig
|
|
512 |
'key' => 'gamification',
|
513 |
'url' => SGPB_GAMIFICATION_PLUGIN_URL
|
514 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
515 |
$keys[] = array(
|
516 |
'label' => __('Push Notification', SG_POPUP_TEXT_DOMAIN),
|
517 |
'pluginKey' => 'popupbuilder-push-notification/PopupBuilderPushNotification.php',
|
485 |
{
|
486 |
$keys = array();
|
487 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
488 |
return $keys;
|
489 |
}
|
490 |
|
504 |
'key' => 'gamification',
|
505 |
'url' => SGPB_GAMIFICATION_PLUGIN_URL
|
506 |
);
|
507 |
+
$keys[] = array(
|
508 |
+
'label' => __('PDF', SG_POPUP_TEXT_DOMAIN),
|
509 |
+
'pluginKey' => 'popupbuilder-pdf/PopupBuilderPdf.php',
|
510 |
+
'key' => 'pdf',
|
511 |
+
'url' => SGPB_PDF_PLUGIN_URL
|
512 |
+
);
|
513 |
$keys[] = array(
|
514 |
'label' => __('Push Notification', SG_POPUP_TEXT_DOMAIN),
|
515 |
'pluginKey' => 'popupbuilder-push-notification/PopupBuilderPushNotification.php',
|
com/helpers/AdminHelper.php
CHANGED
File without changes
|
com/libs/EDD_SL_Plugin_Updater.php
CHANGED
@@ -71,7 +71,7 @@ class EDD_SL_Plugin_Updater {
|
|
71 |
public function check_update( $_transient_data ) {
|
72 |
global $pagenow;
|
73 |
if ( ! is_object( $_transient_data ) ) {
|
74 |
-
$_transient_data = new stdClass;
|
75 |
}
|
76 |
if ( 'plugins.php' == $pagenow && is_multisite() ) {
|
77 |
return $_transient_data;
|
71 |
public function check_update( $_transient_data ) {
|
72 |
global $pagenow;
|
73 |
if ( ! is_object( $_transient_data ) ) {
|
74 |
+
$_transient_data = new \stdClass;
|
75 |
}
|
76 |
if ( 'plugins.php' == $pagenow && is_multisite() ) {
|
77 |
return $_transient_data;
|
popup-builder.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Popup Builder
|
4 |
* Plugin URI: https://popup-builder.com
|
5 |
* Description: The most complete popup plugin. Html, image, iframe, shortcode, video and many other popup types. Manage popup dimensions, effects, themes and more.
|
6 |
-
* Version: 3.
|
7 |
* Author: Sygnoos
|
8 |
* Author URI: https://sygnoos.com
|
9 |
* License: GPLv2
|
3 |
* Plugin Name: Popup Builder
|
4 |
* Plugin URI: https://popup-builder.com
|
5 |
* Description: The most complete popup plugin. Html, image, iframe, shortcode, video and many other popup types. Manage popup dimensions, effects, themes and more.
|
6 |
+
* Version: 3.63
|
7 |
* Author: Sygnoos
|
8 |
* Author URI: https://sygnoos.com
|
9 |
* License: GPLv2
|
public/css/ResetFormStyle.css
CHANGED
@@ -1,140 +1,28 @@
|
|
1 |
-
/* ----------------------------------------------------------------------------------------------------
|
2 |
-
Super Form Reset
|
3 |
-
----------------------------------------------------------------------------------------------------*/
|
4 |
-
|
5 |
.sgpb-form-wrapper input,
|
6 |
.sgpb-form-wrapper label,
|
7 |
.sgpb-form-wrapper select,
|
8 |
.sgpb-form-wrapper button,
|
9 |
-
.sgpb-form-wrapper
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
display: inline-block;
|
14 |
-
vertical-align: middle;
|
15 |
-
white-space: normal;
|
16 |
-
background: none;
|
17 |
-
line-height: 1;
|
18 |
-
max-width: 100% !important;
|
19 |
-
/* Browsers have different default form fonts */
|
20 |
-
font-size: 13px;
|
21 |
-
font-family: Arial;
|
22 |
-
}
|
23 |
-
|
24 |
-
/* Remove the stupid outer glow in Webkit */
|
25 |
-
.sgpb-form-wrapper input:focus {
|
26 |
-
outline: 0;
|
27 |
-
}
|
28 |
-
|
29 |
-
/* Box Sizing Reset
|
30 |
-
-----------------------------------------------*/
|
31 |
-
|
32 |
-
/* All of our custom controls should be what we expect them to be */
|
33 |
-
.sgpb-form-wrapper input,
|
34 |
-
.sgpb-form-wrapper textarea {
|
35 |
-
-webkit-box-sizing: content-box;
|
36 |
-
-moz-box-sizing: content-box;
|
37 |
-
box-sizing: content-box;
|
38 |
-
}
|
39 |
-
|
40 |
-
/* These elements are usually rendered a certain way by the browser */
|
41 |
-
.sgpb-form-wrapper button,
|
42 |
.sgpb-form-wrapper input[type=reset],
|
43 |
.sgpb-form-wrapper input[type=button],
|
44 |
.sgpb-form-wrapper input[type=submit],
|
45 |
.sgpb-form-wrapper input[type=checkbox],
|
46 |
.sgpb-form-wrapper input[type=radio],
|
47 |
-
.sgpb-form-wrapper
|
48 |
-
|
49 |
-
|
50 |
-
box-sizing: border-box;
|
51 |
-
}
|
52 |
-
|
53 |
-
/* Button Controls
|
54 |
-
-----------------------------------------------*/
|
55 |
-
|
56 |
-
.sgpb-form-wrapper input[type=checkbox],
|
57 |
-
.sgpb-form-wrapper input[type=radio] {
|
58 |
-
width: 13px;
|
59 |
-
height: 13px;
|
60 |
-
}
|
61 |
-
|
62 |
-
/* Search Input
|
63 |
-
-----------------------------------------------*/
|
64 |
-
|
65 |
-
/* Make webkit render the search input like a normal text field */
|
66 |
-
.sgpb-form-wrapper input[type=search] {
|
67 |
-
-webkit-appearance: textfield;
|
68 |
-
-webkit-box-sizing: content-box;
|
69 |
-
}
|
70 |
-
|
71 |
-
/* Turn off the recent search for webkit. It adds about 15px padding on the left */
|
72 |
-
.sgpb-form-wrapper ::-webkit-search-decoration {
|
73 |
-
display: none;
|
74 |
-
}
|
75 |
-
|
76 |
-
/* Buttons
|
77 |
-
-----------------------------------------------*/
|
78 |
-
|
79 |
-
.sgpb-form-wrapper button,
|
80 |
.sgpb-form-wrapper input[type="reset"],
|
81 |
.sgpb-form-wrapper input[type="button"],
|
82 |
-
.sgpb-form-wrapper input[type="submit"] {
|
83 |
-
|
84 |
-
overflow: visible;
|
85 |
-
width: auto;
|
86 |
-
}
|
87 |
-
|
88 |
-
/* IE8 and FF freak out if this rule is within another selector */
|
89 |
-
.sgpb-form-wrapper ::-webkit-file-upload-button {
|
90 |
-
padding: 0;
|
91 |
-
border: 0;
|
92 |
-
background: none;
|
93 |
-
}
|
94 |
-
|
95 |
-
/* Textarea
|
96 |
-
-----------------------------------------------*/
|
97 |
-
|
98 |
-
.sgpb-form-wrapper textarea {
|
99 |
-
/* Move the label to the top */
|
100 |
-
vertical-align: top;
|
101 |
-
|
102 |
-
/* Turn off scroll bars in IE unless needed */
|
103 |
-
overflow: auto;
|
104 |
-
}
|
105 |
-
|
106 |
-
/* Selects
|
107 |
-
-----------------------------------------------*/
|
108 |
-
|
109 |
-
.sgpb-form-wrapper select[multiple] {
|
110 |
-
/* Move the label to the top */
|
111 |
-
vertical-align: top;
|
112 |
-
}
|
113 |
-
|
114 |
-
/*Our reset styles*/
|
115 |
-
.sgpb-form-wrapper input[type="text"],
|
116 |
.sgpb-form-wrapper input[type="number"],
|
117 |
.sgpb-form-wrapper input[type="password"],
|
118 |
.sgpb-form-wrapper input[type="email"],
|
119 |
.sgpb-form-wrapper input[type="submit"],
|
120 |
-
.sgpb-form-wrapper input[type="button"]
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
font-size: 14px !important;
|
125 |
-
box-shadow: none !important;
|
126 |
-
margin: 5px auto !important;
|
127 |
-
display: inline-block !important;
|
128 |
-
font-weight: bold !important;
|
129 |
-
background-image: none !important;
|
130 |
-
}
|
131 |
-
|
132 |
-
.sgpb-form-wrapper input[type="submit"],
|
133 |
-
.sgpb-form-wrapper input[type="button"] {
|
134 |
-
line-height: 0.4 !important;
|
135 |
-
font-size: 18px !important;
|
136 |
-
}
|
137 |
-
|
138 |
-
.sg-js-hide {
|
139 |
-
display: none;
|
140 |
-
}
|
|
|
|
|
|
|
|
|
1 |
.sgpb-form-wrapper input,
|
2 |
.sgpb-form-wrapper label,
|
3 |
.sgpb-form-wrapper select,
|
4 |
.sgpb-form-wrapper button,
|
5 |
+
.sgpb-form-wrapper
|
6 |
+
textarea{margin:0;border:0;padding:0;display:inline-block;vertical-align:middle;white-space:normal;background:none;line-height:1;max-width:100% !important;font-size:13px;font-family:Arial}.sgpb-form-wrapper input:focus{outline:0}.sgpb-form-wrapper input,
|
7 |
+
.sgpb-form-wrapper
|
8 |
+
textarea{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.sgpb-form-wrapper button,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
.sgpb-form-wrapper input[type=reset],
|
10 |
.sgpb-form-wrapper input[type=button],
|
11 |
.sgpb-form-wrapper input[type=submit],
|
12 |
.sgpb-form-wrapper input[type=checkbox],
|
13 |
.sgpb-form-wrapper input[type=radio],
|
14 |
+
.sgpb-form-wrapper
|
15 |
+
select{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sgpb-form-wrapper input[type=checkbox],
|
16 |
+
.sgpb-form-wrapper input[type=radio]{width:13px;height:13px}.sgpb-form-wrapper input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box}.sgpb-form-wrapper ::-webkit-search-decoration{display:none}.sgpb-form-wrapper button,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
.sgpb-form-wrapper input[type="reset"],
|
18 |
.sgpb-form-wrapper input[type="button"],
|
19 |
+
.sgpb-form-wrapper input[type="submit"]{overflow:visible;width:auto}.sgpb-form-wrapper ::-webkit-file-upload-button{padding:0;border:0;background:none}.sgpb-form-wrapper
|
20 |
+
textarea{vertical-align:top;overflow:auto}.sgpb-form-wrapper select[multiple]{vertical-align:top}.sgpb-form-wrapper input[type="text"],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
.sgpb-form-wrapper input[type="number"],
|
22 |
.sgpb-form-wrapper input[type="password"],
|
23 |
.sgpb-form-wrapper input[type="email"],
|
24 |
.sgpb-form-wrapper input[type="submit"],
|
25 |
+
.sgpb-form-wrapper input[type="button"]{max-width:100% !important;padding:10px
|
26 |
+
!important;box-sizing:border-box;font-size:14px !important;box-shadow:none !important;margin:5px
|
27 |
+
auto !important;display:inline-block !important;font-weight:bold !important;background-image:none !important}.sgpb-form-wrapper input[type="submit"],
|
28 |
+
.sgpb-form-wrapper input[type="button"]{line-height:0.4 !important;font-size:18px !important}.sg-js-hide{display:none}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public/css/SubscriptionForm.css
CHANGED
@@ -1,144 +1,20 @@
|
|
1 |
.sgpb-form-wrapper input,
|
2 |
-
.sgpb-form-wrapper
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
}
|
12 |
-
|
13 |
-
|
14 |
-
.sgpb-
|
15 |
-
|
16 |
-
}
|
17 |
-
|
18 |
-
.sgpb-
|
19 |
-
.sgpb-
|
20 |
-
|
21 |
-
}
|
22 |
-
|
23 |
-
.sgpb-form-wrapper input[type="submit"]:hover {
|
24 |
-
filter: brightness(90%);
|
25 |
-
-ms-filter: brightness(90%);
|
26 |
-
}
|
27 |
-
|
28 |
-
.sgpb-form-wrapper {
|
29 |
-
text-align: center;
|
30 |
-
}
|
31 |
-
|
32 |
-
.sgpb-subscription-form label.error {
|
33 |
-
text-align: inherit;
|
34 |
-
color: red;
|
35 |
-
display: block;
|
36 |
-
margin: 5px 0;
|
37 |
-
}
|
38 |
-
|
39 |
-
.sgpb-form-wrapper input[type="text"],
|
40 |
-
.sgpb-form-wrapper input[type="email"] {
|
41 |
-
border: 2px solid;
|
42 |
-
}
|
43 |
-
|
44 |
-
.sgpb-inputs-wrapper.form-group {
|
45 |
-
margin: 0;
|
46 |
-
padding: 0;
|
47 |
-
}
|
48 |
-
|
49 |
-
.sgpb-subscription-form #sgpb-form {
|
50 |
-
margin: 0;
|
51 |
-
}
|
52 |
-
|
53 |
-
/*Subscription form messages*/
|
54 |
-
#sgpb-gdpr-field-label {
|
55 |
-
margin: 4px 0 0 0;
|
56 |
-
max-width: 5% !important;
|
57 |
-
font-weight: bold;
|
58 |
-
}
|
59 |
-
|
60 |
-
.sgpb-gdpr-label-wrapper {
|
61 |
-
margin: 0 auto !important;
|
62 |
-
text-align: left !important;
|
63 |
-
}
|
64 |
-
|
65 |
-
#sgpb-gdpr-field-label + label {
|
66 |
-
margin: 4px 0 0 5px;
|
67 |
-
width: 80% !important;
|
68 |
-
text-align: left !important;
|
69 |
-
}
|
70 |
-
|
71 |
-
.sgpb-gdpr-info {
|
72 |
-
margin-bottom: 0;
|
73 |
-
margin-top: 5px;
|
74 |
-
text-align: left;
|
75 |
-
border: none;
|
76 |
-
background: transparent;
|
77 |
-
padding: 0;
|
78 |
-
display: inline-block;
|
79 |
-
overflow-wrap: break-word;
|
80 |
-
line-height: 1.4em;
|
81 |
-
font-size: 13px;
|
82 |
-
font-family: BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
|
83 |
-
}
|
84 |
-
|
85 |
-
/*form builder styles*/
|
86 |
-
.sgpb-form-wrapper select {
|
87 |
-
width: 100%;
|
88 |
-
padding: 7px;
|
89 |
-
border: 1px solid #CCCCCC;
|
90 |
-
}
|
91 |
-
|
92 |
-
.sgpb-choice-option-label,
|
93 |
-
.sgpb-choice-option-wrapper {
|
94 |
-
display: inline-block !important;
|
95 |
-
}
|
96 |
-
|
97 |
-
.sgpb-choice-option-wrapper input,
|
98 |
-
.sgpb-field-gdpr-wrapper input[type=checkbox] {
|
99 |
-
margin: 0 10px 0 0px !important;
|
100 |
-
}
|
101 |
-
|
102 |
-
.sgpb-buttons-wrapper,
|
103 |
-
.sgpb-field-gdpr-wrapper {
|
104 |
-
text-align: left;
|
105 |
-
}
|
106 |
-
|
107 |
-
.sgpb-subs-text-checkbox-gdpr {
|
108 |
-
font-size: 13px;
|
109 |
-
text-align: left;
|
110 |
-
}
|
111 |
-
|
112 |
-
.sgpb-label-wrapper {
|
113 |
-
text-align: left;
|
114 |
-
font-weight: 900;
|
115 |
-
}
|
116 |
-
|
117 |
-
.sgpb-field-gdpr-wrapper,
|
118 |
-
.sgpb-label-gdpr-wrapper {
|
119 |
-
display: inline-block;
|
120 |
-
}
|
121 |
-
|
122 |
-
.sgpb-field-wrapper {
|
123 |
-
max-width: 100% !important;
|
124 |
-
}
|
125 |
-
|
126 |
-
.sgpb-subscription-plus-form-error-placement label {
|
127 |
-
color: #ff0000;
|
128 |
-
}
|
129 |
-
|
130 |
-
.sgpb-field-checkbox-wrapper .sgpb-sub-option-label {
|
131 |
-
padding-left: 0 !important;
|
132 |
-
}
|
133 |
-
|
134 |
-
.sgpb-templates-shortcodes-wrapper .row {
|
135 |
-
margin-bottom: 10px;
|
136 |
-
}
|
137 |
-
|
138 |
-
.sgpb-subscription-plus-form {
|
139 |
-
display: inline-block;
|
140 |
-
}
|
141 |
-
|
142 |
-
.sgpb-subscription-admin-wrapper input[type="text"] {
|
143 |
-
min-height: 20px !important;
|
144 |
-
}
|
1 |
.sgpb-form-wrapper input,
|
2 |
+
.sgpb-form-wrapper
|
3 |
+
textarea{padding:15px;border:1px
|
4 |
+
solid #ccc;margin-bottom:10px;width:100%;box-sizing:border-box;font-family:Arial;color:#2C3E50;font-size:13px}.sgpb-form-wrapper .sgpb-field-textarea-wrapper,
|
5 |
+
.sgpb-form-wrapper .sgpb-field-dropdown-wrapper{margin:5px
|
6 |
+
auto !important}.sgpb-form-wrapper input[type="submit"],
|
7 |
+
.sgpb-form-wrapper input[type="button"]{cursor:pointer}.sgpb-form-wrapper input[type="submit"]:hover{filter:brightness(90%);-ms-filter:brightness(90%)}.sgpb-form-wrapper{text-align:center}.sgpb-subscription-form
|
8 |
+
label.error{text-align:inherit;color:red;display:block;margin:5px
|
9 |
+
0}.sgpb-form-wrapper input[type="text"],
|
10 |
+
.sgpb-form-wrapper input[type="email"]{border:2px
|
11 |
+
solid}.sgpb-inputs-wrapper.form-group{margin:0;padding:0}.sgpb-subscription-form #sgpb-form{margin:0}#sgpb-gdpr-field-label{margin:4px
|
12 |
+
0 0 0;max-width:5% !important;font-weight:bold}.sgpb-gdpr-label-wrapper{margin:0
|
13 |
+
auto !important;text-align:left !important}#sgpb-gdpr-field-label+label{margin:4px
|
14 |
+
0 0 5px;width:80% !important;text-align:left !important}.sgpb-gdpr-info{margin-bottom:0;margin-top:5px;text-align:left;border:none;background:transparent;padding:0;display:inline-block;overflow-wrap:break-word;line-height:1.4em;font-size:13px;font-family:BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.sgpb-form-wrapper
|
15 |
+
select{width:100%;padding:7px;border:1px
|
16 |
+
solid #CCC}.sgpb-choice-option-label,.sgpb-choice-option-wrapper{display:inline-block !important}.sgpb-choice-option-wrapper input,
|
17 |
+
.sgpb-field-gdpr-wrapper input[type=checkbox]{margin:0
|
18 |
+
10px 0 0px !important}.sgpb-buttons-wrapper,.sgpb-field-gdpr-wrapper{text-align:left}.sgpb-subs-text-checkbox-gdpr{font-size:13px;text-align:left}.sgpb-label-wrapper{text-align:left;font-weight:900}.sgpb-field-gdpr-wrapper,.sgpb-label-gdpr-wrapper{display:inline-block}.sgpb-field-wrapper{max-width:100% !important}.sgpb-subscription-plus-form-error-placement
|
19 |
+
label{color:#f00}.sgpb-field-checkbox-wrapper .sgpb-sub-option-label{padding-left:0 !important}.sgpb-templates-shortcodes-wrapper
|
20 |
+
.row{margin-bottom:10px}.sgpb-subscription-plus-form{display:inline-block}.sgpb-subscription-admin-wrapper input[type="text"]{min-height:20px !important}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public/css/popupAdminStyles.css
CHANGED
@@ -1,2534 +1,112 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
.sgpb-dashboard-popup-count-wrapper {
|
4 |
-
display: inline-block;
|
5 |
-
margin: 5px 5px 0 0;
|
6 |
-
float: left;
|
7 |
-
}
|
8 |
-
|
9 |
-
.sgpb-counter-wrapper {
|
10 |
-
max-width: 90px;
|
11 |
-
}
|
12 |
-
|
13 |
-
.sgpb-reset-count-btn {
|
14 |
-
float: right;
|
15 |
-
}
|
16 |
-
|
17 |
-
.sgpb-clear {
|
18 |
-
clear: both;
|
19 |
-
}
|
20 |
-
|
21 |
-
.sgpb-popup-content-direction-right .sgpb-contact-admin-wrapper,
|
22 |
.sgpb-popup-content-direction-right .sgpb-subscription-admin-wrapper,
|
23 |
.sgpb-forms-preview-direction,
|
24 |
.sgpb-forms-preview-direction input[type="url"],
|
25 |
-
.sgpb-forms-preview-direction input[type="email"] {
|
26 |
-
|
27 |
-
|
28 |
-
}
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
}
|
33 |
-
|
34 |
-
.sgpb-
|
35 |
-
|
36 |
-
}
|
37 |
-
|
38 |
-
.
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
.
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
.
|
47 |
-
|
48 |
-
}
|
49 |
-
|
50 |
-
.sgpb-
|
51 |
-
|
52 |
-
}
|
53 |
-
|
54 |
-
.sgpb-wrapper
|
55 |
-
.sgpb-
|
56 |
-
|
57 |
-
}
|
58 |
-
|
59 |
-
.sgpb-
|
60 |
-
|
61 |
-
}
|
62 |
-
|
63 |
-
.
|
64 |
-
|
65 |
-
}
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
margin-left: 2px !important;
|
71 |
-
}
|
72 |
-
|
73 |
-
.sgpb-align-center {
|
74 |
-
text-align: center;
|
75 |
-
}
|
76 |
-
|
77 |
-
.sg-hide,
|
78 |
-
.sgpb-hide,
|
79 |
-
.sg-hide-element {
|
80 |
-
display: none;
|
81 |
-
}
|
82 |
-
|
83 |
-
.sg-full-width {
|
84 |
-
width: 100%;
|
85 |
-
}
|
86 |
-
|
87 |
-
.sgpb-hidden-auto-close-row {
|
88 |
-
width: 103% !important;
|
89 |
-
}
|
90 |
-
|
91 |
-
.col-xs-6 .sgpb-pro-button {
|
92 |
-
font-size: 22px;
|
93 |
-
padding: 3px 10px;
|
94 |
-
font-weight: normal;
|
95 |
-
margin-top: 16px;
|
96 |
-
margin-right: 0 !important;
|
97 |
-
float: right;
|
98 |
-
}
|
99 |
-
|
100 |
-
.themes-preview {
|
101 |
-
border: 0px solid red;
|
102 |
-
width: 240px;
|
103 |
-
height: 130px;
|
104 |
-
margin-top: 1px;
|
105 |
-
margin-left: 40%;
|
106 |
-
display: block;
|
107 |
-
position: absolute;
|
108 |
-
z-index: 9999999999999999;
|
109 |
-
}
|
110 |
-
|
111 |
-
.theme-preview-1 {
|
112 |
-
background-image: url("../img/theme1.jpg");
|
113 |
-
background-size: 240px 130px;
|
114 |
-
}
|
115 |
-
|
116 |
-
.theme-preview-2 {
|
117 |
-
background-image: url("../img/theme2.jpg");
|
118 |
-
background-size: 240px 130px;
|
119 |
-
}
|
120 |
-
|
121 |
-
.theme-preview-3 {
|
122 |
-
background-image: url("../img/theme3.jpg");
|
123 |
-
background-size: 240px 130px;
|
124 |
-
}
|
125 |
-
|
126 |
-
.theme-preview-4 {
|
127 |
-
background-image: url("../img/theme4.jpg");
|
128 |
-
background-size: 240px 130px;
|
129 |
-
}
|
130 |
-
|
131 |
-
.theme-preview-5 {
|
132 |
-
background-image: url("../img/theme5.jpg");
|
133 |
-
background-size: 240px 130px;
|
134 |
-
}
|
135 |
-
|
136 |
-
.theme-preview-6 {
|
137 |
-
background-image: url("../img/theme6.jpg");
|
138 |
-
background-size: 240px 130px;
|
139 |
-
}
|
140 |
-
|
141 |
-
.fixed-wrapper {
|
142 |
-
max-width: 248px;
|
143 |
-
width: 100%;
|
144 |
-
height: 191px;
|
145 |
-
display: inline-block;
|
146 |
-
margin-top: 4px;
|
147 |
-
margin-left: 15px;
|
148 |
-
}
|
149 |
-
|
150 |
-
.js-popup-fixed {
|
151 |
-
width: 100%;
|
152 |
-
display: none;
|
153 |
-
}
|
154 |
-
|
155 |
-
.fix-wrapper-style {
|
156 |
-
width: 38.5%;
|
157 |
-
display: inline-block;
|
158 |
-
}
|
159 |
-
|
160 |
-
.js-fixed-position-style {
|
161 |
-
width: 31.85%;
|
162 |
-
height: 53px;
|
163 |
-
float: left;
|
164 |
-
cursor: pointer;
|
165 |
-
}
|
166 |
-
|
167 |
-
#fixed-position2,
|
168 |
-
#fixed-position4,
|
169 |
-
#fixed-position8,
|
170 |
-
#fixed-position6 {
|
171 |
-
float: left;
|
172 |
-
width: 31.85%;
|
173 |
-
height: 53px;
|
174 |
-
}
|
175 |
-
|
176 |
-
#fixed-position1 {
|
177 |
-
border: 1px solid #ccc;
|
178 |
-
}
|
179 |
-
|
180 |
-
#fixed-position2 {
|
181 |
-
border-bottom: 1px solid #ccc;
|
182 |
-
border-top: 1px solid #ccc;
|
183 |
-
}
|
184 |
-
|
185 |
-
#fixed-position3 {
|
186 |
-
border: 1px solid #ccc;
|
187 |
-
}
|
188 |
-
|
189 |
-
#fixed-position6 {
|
190 |
-
border-left: 1px solid #ccc;
|
191 |
-
border-right: 1px solid #ccc;
|
192 |
-
}
|
193 |
-
|
194 |
-
#fixed-position9 {
|
195 |
-
border-left: 1px solid #ccc;
|
196 |
-
border-bottom: 1px solid #ccc;
|
197 |
-
border-right: 1px solid #ccc;
|
198 |
-
border-top: 1px solid #ccc;
|
199 |
-
}
|
200 |
-
|
201 |
-
#fixed-position8 {
|
202 |
-
border-left: 1px solid #ccc;
|
203 |
-
border-bottom: 1px solid #ccc;
|
204 |
-
border-top: 1px solid #ccc;
|
205 |
-
}
|
206 |
-
|
207 |
-
#fixed-position7 {
|
208 |
-
border-top: 1px solid #ccc;
|
209 |
-
border-left: 1px solid #ccc;
|
210 |
-
border-bottom: 1px solid #ccc;
|
211 |
-
}
|
212 |
-
|
213 |
-
#fixed-position4 {
|
214 |
-
border-right: 1px solid #ccc;
|
215 |
-
border-left: 1px solid #ccc;
|
216 |
-
}
|
217 |
-
|
218 |
-
.sgpb-color-picker-wrapper a {
|
219 |
-
text-decoration: none !important;
|
220 |
-
}
|
221 |
-
|
222 |
-
.sgpb-color-picker-wrapper .iris-picker {
|
223 |
-
z-index: 99999;
|
224 |
-
}
|
225 |
-
|
226 |
-
.sgpb-color-picker-wrapper .wp-picker-container a {
|
227 |
-
height: 24px;
|
228 |
-
}
|
229 |
-
/*Popup Type page styles*/
|
230 |
-
.popups-div {
|
231 |
-
width: 200px;
|
232 |
-
height: 200px;
|
233 |
-
float: left;
|
234 |
-
margin-right: 10px;
|
235 |
-
margin-bottom: 10px;
|
236 |
-
background-color: #DEDEDE;
|
237 |
-
background-size: 100%;
|
238 |
-
transition: all .1s ease-in-out;
|
239 |
-
position: relative;
|
240 |
-
}
|
241 |
-
|
242 |
-
.popups-div:hover {
|
243 |
-
background-color: #CDCDCD;
|
244 |
-
transform: scale(1.02);
|
245 |
-
}
|
246 |
-
|
247 |
-
.sgpb-type-icon {
|
248 |
-
height: 115px;
|
249 |
-
margin-top: 20px;
|
250 |
-
background-size: contain;
|
251 |
-
background-repeat: no-repeat;
|
252 |
-
background-position: 42px;
|
253 |
-
}
|
254 |
-
|
255 |
-
.sgpb-type-text-wrapper {
|
256 |
-
text-align: center;
|
257 |
-
}
|
258 |
-
|
259 |
-
.sgpb-type-text {
|
260 |
-
font-size: 23px;
|
261 |
-
margin: 14px 0 0 0 !important;
|
262 |
-
color: #000000 !important;
|
263 |
-
}
|
264 |
-
|
265 |
-
.sgpb-more-ideas {
|
266 |
-
background-image: url("../img/moreIdeas.png");
|
267 |
-
}
|
268 |
-
|
269 |
-
.image-popup {
|
270 |
-
background-image: url("../img/imageTypeIcon.png");
|
271 |
-
}
|
272 |
-
|
273 |
-
.pdf-popup,
|
274 |
-
.pdf-popup-pro {
|
275 |
-
background-image: url("../img/pdfTypeIcon.png");
|
276 |
-
}
|
277 |
-
|
278 |
-
.sgpb-image-div {
|
279 |
-
background-color: #87e37f !important;
|
280 |
-
}
|
281 |
-
|
282 |
-
.sgpb-image-div:hover {
|
283 |
-
background-color: #b1fdab !important;
|
284 |
-
}
|
285 |
-
|
286 |
-
.create-popup-link {
|
287 |
-
text-decoration: none !important;
|
288 |
-
}
|
289 |
-
|
290 |
-
.create-popup-link:focus,
|
291 |
-
.create-popup-link:hover,
|
292 |
-
.create-popup-link:active {
|
293 |
-
outline: 0;
|
294 |
-
border: none;
|
295 |
-
-moz-outline-style: none;
|
296 |
-
box-shadow: none;
|
297 |
-
}
|
298 |
-
|
299 |
-
.html-popup {
|
300 |
-
background-image: url("../img/htmlTypeIcon.png");
|
301 |
-
}
|
302 |
-
|
303 |
-
.sgpb-html-div {
|
304 |
-
background-color: #f7941d !important;
|
305 |
-
}
|
306 |
-
|
307 |
-
.sgpb-html-div:hover {
|
308 |
-
background-color: #ffac49 !important;
|
309 |
-
}
|
310 |
-
|
311 |
-
.sgpb-pdf-div {
|
312 |
-
background-color: #dc1d00 !important;
|
313 |
-
}
|
314 |
-
|
315 |
-
.sgpb-pdf-div:hover {
|
316 |
-
background-color: #ea7766 !important;
|
317 |
-
}
|
318 |
-
|
319 |
-
.fblike-popup {
|
320 |
-
background-image: url("../img/facebookTypeIcon.png");
|
321 |
-
}
|
322 |
-
|
323 |
-
.sgpb-fblike-div {
|
324 |
-
background-color: #4267b2 !important;
|
325 |
-
}
|
326 |
-
|
327 |
-
.sgpb-fblike-div:hover {
|
328 |
-
background-color: #648bdb !important;
|
329 |
-
}
|
330 |
-
|
331 |
-
.iframe-popup {
|
332 |
-
background-image: url("../img/iframeTypeIcon.png");
|
333 |
-
}
|
334 |
-
|
335 |
-
.sgpb-iframe-div {
|
336 |
-
background-color: #b084bc !important;
|
337 |
-
}
|
338 |
-
|
339 |
-
.sgpb-iframe-div:hover {
|
340 |
-
background-color: #d4a6e0 !important;
|
341 |
-
}
|
342 |
-
|
343 |
-
.gamification-popup,
|
344 |
-
.gamification-popup-pro {
|
345 |
-
background-image: url("../img/gamificationIcon.png");
|
346 |
-
}
|
347 |
-
|
348 |
-
.sgpb-gamification-div {
|
349 |
-
background-color: #b084bc !important;
|
350 |
-
}
|
351 |
-
|
352 |
-
.sgpb-gamification-div:hover {
|
353 |
-
background-color: #d4a6e0 !important;
|
354 |
-
}
|
355 |
-
|
356 |
-
.pushNotification-popup,
|
357 |
-
.pushNotification-popup-pro {
|
358 |
-
background-image: url("../img/pushNotificationTypeIcon.png");
|
359 |
-
}
|
360 |
-
|
361 |
-
.sgpb-extensions-wrapper .sgpb-pushNotification-div,
|
362 |
-
.sgpb-extensions-wrapper .sgpb-pushNotification-div:hover {
|
363 |
-
background-color: rgba(212, 166, 224, 0.4) !important;
|
364 |
-
}
|
365 |
-
|
366 |
-
.sgpb-pushNotification-div {
|
367 |
-
background-color: #b084bc !important;
|
368 |
-
}
|
369 |
-
|
370 |
-
.sgpb-pushNotification-div:hover {
|
371 |
-
background-color: #d4a6e0 !important;
|
372 |
-
}
|
373 |
-
|
374 |
-
.sgpb-extensions-wrapper .sgpb-iframe-div {
|
375 |
-
background-color: rgba(212, 166, 224, 0.4) !important;
|
376 |
-
}
|
377 |
-
|
378 |
-
.sgpb-free-extensions-wrapper .sgpb-pdf-div {
|
379 |
-
background-color: #ea7766 !important;
|
380 |
-
}
|
381 |
-
|
382 |
-
.sgpb-extensions-wrapper .sgpb-gamification-div {
|
383 |
-
background-color: rgba(212, 166, 224, 0.4) !important;
|
384 |
-
}
|
385 |
-
|
386 |
-
.video-popup {
|
387 |
-
background-image: url("../img/videoTypeIcon.png");
|
388 |
-
}
|
389 |
-
|
390 |
-
.sgpb-video-div {
|
391 |
-
background-color: #d22215 !important;
|
392 |
-
}
|
393 |
-
|
394 |
-
.sgpb-video-div:hover {
|
395 |
-
background-color: #f34133 !important;
|
396 |
-
}
|
397 |
-
|
398 |
-
.sgpb-extensions-wrapper .sgpb-video-div {
|
399 |
-
background-color: rgba(243, 65, 51, 0.4) !important;
|
400 |
-
}
|
401 |
-
|
402 |
-
.ageRestriction-popup {
|
403 |
-
background-image: url("../img/restrictionTyoeIcon.png");
|
404 |
-
}
|
405 |
-
|
406 |
-
.sgpb-ageRestriction-div {
|
407 |
-
background-color: #f7cc44 !important;
|
408 |
-
}
|
409 |
-
|
410 |
-
.sgpb-ageRestriction-div:hover {
|
411 |
-
background-color: #ffdd73 !important;
|
412 |
-
}
|
413 |
-
|
414 |
-
.ageVerification-popup,
|
415 |
-
.ageVerification-popup-pro {
|
416 |
-
background-image: url('../img/ageVerificationTypeIcon.png');
|
417 |
-
}
|
418 |
-
|
419 |
-
.sgpb-ageVerification-div {
|
420 |
-
background-color: #d22215 !important;
|
421 |
-
}
|
422 |
-
|
423 |
-
.sgpb-ageVerification-div:hover {
|
424 |
-
background-color: #f34133 !important;
|
425 |
-
}
|
426 |
-
|
427 |
-
.sgpb-extensions-wrapper .sgpb-ageRestriction-div {
|
428 |
-
background-color: #ffdd73 !important;
|
429 |
-
}
|
430 |
-
|
431 |
-
.countdown-popup {
|
432 |
-
background-image: url("../img/CountdownTypeIcon.png");
|
433 |
-
}
|
434 |
-
|
435 |
-
.sgpb-countdown-div {
|
436 |
-
background-color: #acd373 !important;
|
437 |
-
}
|
438 |
-
|
439 |
-
.sgpb-countdown-div:hover {
|
440 |
-
background-color: #cef398 !important;
|
441 |
-
}
|
442 |
-
|
443 |
-
.sgpb-extensions-wrapper .sgpb-countdown-div {
|
444 |
-
background-color: #cef398 !important;
|
445 |
-
}
|
446 |
-
|
447 |
-
.social-popup {
|
448 |
-
background-image: url("../img/socialTypeIcon.png");
|
449 |
-
}
|
450 |
-
|
451 |
-
.sgpb-social-div {
|
452 |
-
background-color: #1da0f1 !important;
|
453 |
-
}
|
454 |
-
|
455 |
-
.sgpb-social-div:hover {
|
456 |
-
background-color: #38b3ff !important;
|
457 |
-
}
|
458 |
-
|
459 |
-
.sgpb-extensions-wrapper .sgpb-social-div {
|
460 |
-
background-color: rgba(29, 160, 241, 0.4) !important;
|
461 |
-
}
|
462 |
-
|
463 |
-
.sg-exit-intent {
|
464 |
-
background-image: url("../img/ExitIntent.png");
|
465 |
-
}
|
466 |
-
|
467 |
-
.subscription-popup {
|
468 |
-
background-image: url("../img/subscriptionTypeIcon.png");
|
469 |
-
}
|
470 |
-
|
471 |
-
.subscriptionPlus-popup-pro {
|
472 |
-
background-image: url("../img/subscriptionPlusTypeIcon.png");
|
473 |
-
}
|
474 |
-
|
475 |
-
.sgpb-subscription-div {
|
476 |
-
background-color: #7eb540 !important;
|
477 |
-
}
|
478 |
-
|
479 |
-
.sgpb-subscription-div:hover {
|
480 |
-
background-color: #a1dd5e !important;
|
481 |
-
}
|
482 |
-
|
483 |
-
.contactForm-popup {
|
484 |
-
background-image: url("../img/contactFormTypeIcon.png");
|
485 |
-
}
|
486 |
-
|
487 |
-
.sgpb-contactForm-div {
|
488 |
-
background-color: #f94563 !important;
|
489 |
-
}
|
490 |
-
|
491 |
-
.sgpb-contactForm-div:hover {
|
492 |
-
background-color: #ff5974 !important;
|
493 |
-
}
|
494 |
-
|
495 |
-
.sgpb-mailchimp-div {
|
496 |
-
background-color: #ffe01b !important;
|
497 |
-
}
|
498 |
-
|
499 |
-
.sgpb-mailchimp-div:hover {
|
500 |
-
background-color: #ffe74e !important;
|
501 |
-
}
|
502 |
-
|
503 |
-
.sgpb-aweber-div {
|
504 |
-
background-color: #0079c1 !important;
|
505 |
-
}
|
506 |
-
|
507 |
-
.sgpb-aweber-div:hover {
|
508 |
-
background-color: #42b1f3 !important;
|
509 |
-
}
|
510 |
-
|
511 |
-
.sgpbAWeber-popup-pro,
|
512 |
-
.aweber-popup {
|
513 |
-
background-image: url("../img/aweberTypeIcon.png") !important;
|
514 |
-
}
|
515 |
-
|
516 |
-
.scheduling-popup-pro {
|
517 |
-
background-image: url("../img/schedulingTypeIcon.png") !important;
|
518 |
-
}
|
519 |
-
|
520 |
-
.edd-popup-pro {
|
521 |
-
background-image: url("../img/eddTypeIcon.png") !important;
|
522 |
-
}
|
523 |
-
|
524 |
-
.sgpb-edd-div {
|
525 |
-
background-color: #7dbfe9 !important;
|
526 |
-
}
|
527 |
-
|
528 |
-
.geo-targeting-popup-pro {
|
529 |
-
background-image: url("../img/geoTypeIcon.png") !important;
|
530 |
-
}
|
531 |
-
|
532 |
-
.sgpb-geo-targeting-div {
|
533 |
-
background-color: rgba(73, 185, 173, 0.4) !important;
|
534 |
-
}
|
535 |
-
|
536 |
-
.sgpb-subscriptionPlus-div {
|
537 |
-
background-color: rgba(23, 165, 143, 0.4) !important;
|
538 |
-
}
|
539 |
-
|
540 |
-
.sgpb-sgpbAWeber-div {
|
541 |
-
background-color: rgba(0, 121, 193, 0.4);
|
542 |
-
}
|
543 |
-
|
544 |
-
.sgpb-sgpbAWeber-div:hover {
|
545 |
-
background-color: rgba(0, 121, 193, 0.4);
|
546 |
-
}
|
547 |
-
|
548 |
-
.sgpb-login-div {
|
549 |
-
background-color: #396af7 !important;
|
550 |
-
}
|
551 |
-
|
552 |
-
.sgpb-login-div:hover {
|
553 |
-
background-color: #4d7afc !important;
|
554 |
-
}
|
555 |
-
|
556 |
-
.sgpb-extensions-wrapper .sgpb-login-div {
|
557 |
-
background-color: rgba(77, 122, 252, 0.4) !important;
|
558 |
-
}
|
559 |
-
|
560 |
-
.sgpb-registration-div {
|
561 |
-
background-color: #fe415b !important;
|
562 |
-
}
|
563 |
-
|
564 |
-
.sgpb-registration-div:hover {
|
565 |
-
background-color: #fe5a70 !important;
|
566 |
-
}
|
567 |
-
|
568 |
-
.sgpb-extensions-wrapper .sgpb-registration-div {
|
569 |
-
background-color: rgb(254, 65, 91, 0.4) !important;
|
570 |
-
}
|
571 |
-
|
572 |
-
.login-popup-pro,
|
573 |
-
.login-popup {
|
574 |
-
background-image: url("../img/loginTypeIcon.png") !important;
|
575 |
-
}
|
576 |
-
|
577 |
-
.registration-popup-pro,
|
578 |
-
.registration-popup {
|
579 |
-
background-image: url("../img/registrationTypeIcon.png") !important;
|
580 |
-
}
|
581 |
-
|
582 |
-
.sgpbMailchimp-popup-pro,
|
583 |
-
.mailchimp-popup {
|
584 |
-
background-image: url("../img/mailchimpTypeIcon.png") !important;
|
585 |
-
}
|
586 |
-
|
587 |
-
.sgpb-scheduling-div {
|
588 |
-
background-color: #1976d3;
|
589 |
-
}
|
590 |
-
|
591 |
-
.sgpb-scheduling-div:hover {
|
592 |
-
background-color: #308ee8;
|
593 |
-
}
|
594 |
-
|
595 |
-
.sgpb-extensions-wrapper .sgpb-scheduling-div {
|
596 |
-
background-color: rgba(48, 142, 232, 0.4) !important;
|
597 |
-
}
|
598 |
-
|
599 |
-
.sgpb-sgpbMailchimp-div {
|
600 |
-
background-color: rgba(255, 224, 27, 0.4) !important
|
601 |
-
}
|
602 |
-
|
603 |
-
.sgpbAdBlock-popup-pro {
|
604 |
-
background-image: url("../img/adBlockTypeIcon.png") !important;
|
605 |
-
}
|
606 |
-
|
607 |
-
.sgpb-sgpbAdBlock-div {
|
608 |
-
background-color: rgba(249, 61, 62, 0.4);
|
609 |
-
}
|
610 |
-
|
611 |
-
|
612 |
-
.sgpb-sgpbAdBlock-div {
|
613 |
-
background-color: rgba(249, 61, 62, 0.4);
|
614 |
-
}
|
615 |
-
|
616 |
-
.sgpb-sgpbAdBlock-div:hover {
|
617 |
-
background-color: rgba(249, 61, 62, 0.4);
|
618 |
-
}
|
619 |
-
|
620 |
-
.sgpbScroll-popup-pro {
|
621 |
-
background-image: url("../img/scroll.png") !important;
|
622 |
-
}
|
623 |
-
|
624 |
-
.sgpb-sgpbScroll-div {
|
625 |
-
background-color: rgba(73,185,173, 0.4);
|
626 |
-
}
|
627 |
-
|
628 |
-
.sgpb-sgpbScroll-div:hover {
|
629 |
-
background-color: rgba(73,185,173, 0.4);
|
630 |
-
}
|
631 |
-
|
632 |
-
.sgpbInactivity-popup-pro {
|
633 |
-
background-image: url("../img/inactivity.png") !important;
|
634 |
-
}
|
635 |
-
|
636 |
-
.sgpb-sgpbInactivity-div {
|
637 |
-
background-color: rgba(197,212,61, 0.4);
|
638 |
-
}
|
639 |
-
|
640 |
-
.sgpb-sgpbInactivity-div:hover {
|
641 |
-
background-color: rgba(197,212,61, 0.4);
|
642 |
-
}
|
643 |
-
|
644 |
-
.sgpbRandom-popup-pro {
|
645 |
-
background-image: url("../img/random.png") !important;
|
646 |
-
}
|
647 |
-
|
648 |
-
.sgpb-sgpbRandom-div {
|
649 |
-
background-color: rgba(225,240,85, 0.4);
|
650 |
-
}
|
651 |
-
|
652 |
-
.sgpb-sgpbRandom-div:hover {
|
653 |
-
background-color: rgba(225,240,85, 0.4);
|
654 |
-
}
|
655 |
-
|
656 |
-
.advancedClosing-popup-pro {
|
657 |
-
background-image: url("../img/advancesClosing.png") !important;
|
658 |
-
}
|
659 |
-
|
660 |
-
.sgpb-advancedClosing-div {
|
661 |
-
background-color: rgba(241,139,64, 0.4);
|
662 |
-
}
|
663 |
-
|
664 |
-
.sgpb-advancedClosing-div:hover {
|
665 |
-
background-color: rgba(241,139,64, 0.4);
|
666 |
-
}
|
667 |
-
|
668 |
-
.sgpbAdvancedTargeting-popup-pro {
|
669 |
-
background-image: url("../img/advancedTargeting.png") !important;
|
670 |
-
}
|
671 |
-
|
672 |
-
.sgpb-sgpbAdvancedTargeting-div {
|
673 |
-
background-color: rgba(245,110,107, 0.4);
|
674 |
-
}
|
675 |
-
|
676 |
-
.sgpb-sgpbAdvancedTargeting-div:hover {
|
677 |
-
background-color: rgba(245,110,107, 0.4);
|
678 |
-
}
|
679 |
-
|
680 |
-
.sgpbAnalitics-popup-pro {
|
681 |
-
background-image: url("../img/analyticsTypeIcon.png") !important;
|
682 |
-
}
|
683 |
-
|
684 |
-
.sgpbRecentSales-popup-pro {
|
685 |
-
background-image: url("../img/recentSales.png") !important;
|
686 |
-
}
|
687 |
-
|
688 |
-
.sgpb-sgpbAnalitics-div {
|
689 |
-
background-color: rgba(250, 166, 40, 0.4);
|
690 |
-
}
|
691 |
-
|
692 |
-
.sgpb-sgpbAnalitics-div:hover {
|
693 |
-
background-color: rgba(250, 166, 40, 0.4);
|
694 |
-
}
|
695 |
-
|
696 |
-
.sgpbExitIntent-popup-pro{
|
697 |
-
background-image: url("../img/exitIntentTypeIcon.png") !important;
|
698 |
-
}
|
699 |
-
|
700 |
-
.recentSales-popup {
|
701 |
-
background-image: url("../img/recentSales.png") !important;
|
702 |
-
}
|
703 |
-
|
704 |
-
.sgpb-recentSales-div {
|
705 |
-
background-color: #ff5723 !important;
|
706 |
-
}
|
707 |
-
|
708 |
-
.sgpb-recentSales-div:hover {
|
709 |
-
background-color: #ff6e41 !important;
|
710 |
-
}
|
711 |
-
|
712 |
-
.sgpb-sgpbRecentSales-div {
|
713 |
-
background-color: rgba(255, 87, 35, 0.4) !important;
|
714 |
-
}
|
715 |
-
|
716 |
-
.sgpb-sgpbExitIntent-div {
|
717 |
-
background-color: rgba(140, 115, 211, 0.4);
|
718 |
-
}
|
719 |
-
|
720 |
-
.sgpb-sgpbExitIntent-div:hover {
|
721 |
-
background-color: rgba(140, 115, 211, 0.4);
|
722 |
-
}
|
723 |
-
|
724 |
-
.iframe-popup-pro {
|
725 |
-
background-image: url("../img/iframeTypeIcon.png");
|
726 |
-
}
|
727 |
-
|
728 |
-
.iframe-popup-pro-wrapper {
|
729 |
-
background-color: rgba(176, 132, 188, 0.4);
|
730 |
-
}
|
731 |
-
|
732 |
-
.iframe-popup-pro-wrapper:hover {
|
733 |
-
background-color: rgba(176, 132, 188, 0.4);
|
734 |
-
}
|
735 |
-
|
736 |
-
.video-popup-pro {
|
737 |
-
background-image: url("../img/videoTypeIcon.png");
|
738 |
-
}
|
739 |
-
|
740 |
-
.video-popup-pro-wrapper {
|
741 |
-
background-color: rgba(210, 34, 21, 0.26);
|
742 |
-
}
|
743 |
-
|
744 |
-
.video-popup-pro-wrapper:hover {
|
745 |
-
background-color: rgba(210, 34, 21, 0.26);
|
746 |
-
}
|
747 |
-
|
748 |
-
.ageRestriction-popup-pro {
|
749 |
-
background-image: url("../img/restrictionTyoeIcon.png");
|
750 |
-
}
|
751 |
-
|
752 |
-
.ageRestriction-popup-pro-wrapper {
|
753 |
-
background-color: rgba(247, 204, 68, 0.4);
|
754 |
-
}
|
755 |
-
|
756 |
-
.ageRestriction-popup-pro-wrapper:hover {
|
757 |
-
background-color: rgba(247, 204, 68, 0.4);
|
758 |
-
}
|
759 |
-
|
760 |
-
.countdown-popup-pro {
|
761 |
-
background-image: url("../img/CountdownTypeIcon.png");
|
762 |
-
}
|
763 |
-
|
764 |
-
.countdown-popup-pro-wrapper {
|
765 |
-
background-color: rgba(172, 211, 115, 0.4) !important;
|
766 |
-
}
|
767 |
-
|
768 |
-
.countdown-popup-pro-wrapper:hover {
|
769 |
-
background-color: rgba(172, 211, 115, 0.4) !important;
|
770 |
-
}
|
771 |
-
|
772 |
-
.social-popup-pro {
|
773 |
-
background-image: url("../img/socialTypeIcon.png");
|
774 |
-
}
|
775 |
-
|
776 |
-
.social-popup-pro-wrapper {
|
777 |
-
background-color: rgba(2, 116, 179, 0.4);
|
778 |
-
}
|
779 |
-
|
780 |
-
.social-popup-pro-wrapper:hover {
|
781 |
-
background-color: rgba(2, 116, 179, 0.4);
|
782 |
-
}
|
783 |
-
|
784 |
-
.contactForm-popup-pro {
|
785 |
-
background-image: url("../img/contactFormTypeIcon.png");
|
786 |
-
}
|
787 |
-
|
788 |
-
.contactForm-popup-pro-wrapper {
|
789 |
-
background-color: rgba(251, 175, 93, 0.4);
|
790 |
-
}
|
791 |
-
|
792 |
-
.contactForm-popup-pro-wrapper:hover {
|
793 |
-
background-color: rgba(251, 175, 93, 0.4);
|
794 |
-
}
|
795 |
-
|
796 |
-
.Woo-popup,
|
797 |
-
.sgpbWOO-popup-pro {
|
798 |
-
background-image: url("../img/wooTypeIcon.png");
|
799 |
-
}
|
800 |
-
|
801 |
-
.sgpb-Woo-div,
|
802 |
-
.sgpb-sgpbWOO-div {
|
803 |
-
background-color: #a46497 !important;
|
804 |
-
}
|
805 |
-
|
806 |
-
.sgpb-Woo-div:hover,
|
807 |
-
.sgpb-sgpbWOO-div:hover {
|
808 |
-
background-color: #cb7fbb !important;
|
809 |
-
}
|
810 |
-
|
811 |
-
.sgpb-extensions-wrapper .sgpb-sgpbWOO-div {
|
812 |
-
background-color: #cb7fbb !important;
|
813 |
-
}
|
814 |
-
|
815 |
-
.sgpb-popup-type-pro-ribbon {
|
816 |
-
background-image: url(../img/probadge.png);
|
817 |
-
position: absolute;
|
818 |
-
top: -5px;
|
819 |
-
right: -5px;
|
820 |
-
width: 71px;
|
821 |
-
height: 40px;
|
822 |
-
background-size: cover;
|
823 |
-
}
|
824 |
-
|
825 |
-
.sgpb-popup-type-free-pro-ribbon {
|
826 |
-
background-image: url(../img/freeProbadge.png);
|
827 |
-
position: absolute;
|
828 |
-
top: -5px;
|
829 |
-
right: -5px;
|
830 |
-
width: 71px;
|
831 |
-
height: 40px;
|
832 |
-
background-size: cover;
|
833 |
-
}
|
834 |
-
|
835 |
-
/*condition builder*/
|
836 |
-
.sg-rules-or {
|
837 |
-
border-top: 2px dashed #ddd;
|
838 |
-
line-height: 1;
|
839 |
-
text-align: center;
|
840 |
-
margin: 15px 0 5px;
|
841 |
-
}
|
842 |
-
|
843 |
-
/**/
|
844 |
-
.sgpb-wrapper.sgpb-settings input[type="checkbox"] {
|
845 |
-
margin-top: 2px !important;
|
846 |
-
}
|
847 |
-
|
848 |
-
.sgpb-wrapper.sgpb-settings .sgpb-info-icon-align {
|
849 |
-
margin-top: 6px !important;
|
850 |
-
}
|
851 |
-
|
852 |
-
.sgpb-wrapper.sgpb-settings .hndle.ui-sortable-handle.js-special-title{
|
853 |
-
font-weight: 600;
|
854 |
-
}
|
855 |
-
|
856 |
-
.sgpb-wrapper.sgpb-settings h2 {
|
857 |
-
margin-bottom: 20px;
|
858 |
-
}
|
859 |
-
|
860 |
-
.sgpb-wrapper input[type="radio"]:checked:before {
|
861 |
-
margin: 3px 3px 0 !important;
|
862 |
-
}
|
863 |
-
|
864 |
-
.sgpb-wrapper input[type="checkbox"]:focus {
|
865 |
-
outline: 0 !important;
|
866 |
-
}
|
867 |
-
|
868 |
-
.sgpb-wrapper input[type=checkbox]:checked:before {
|
869 |
-
margin: -4px 0 0 -5px;
|
870 |
-
}
|
871 |
-
|
872 |
-
.sg-col-md {
|
873 |
-
display: inline-block;
|
874 |
-
width: 150px;
|
875 |
-
}
|
876 |
-
|
877 |
-
.sg-rules-or span {
|
878 |
-
background: #ffffff;
|
879 |
-
position: relative;
|
880 |
-
top: -8px;
|
881 |
-
padding: 2px 10px;
|
882 |
-
}
|
883 |
-
|
884 |
-
/* Style the tab */
|
885 |
-
.sgpb-wrapper div.tab {
|
886 |
-
overflow: hidden;
|
887 |
-
border: 1px solid #ccc;
|
888 |
-
background-color: #f1f1f1;
|
889 |
-
}
|
890 |
-
|
891 |
-
/* Style the buttons inside the tab */
|
892 |
-
.sgpb-wrapper div.tab button {
|
893 |
-
background-color: inherit;
|
894 |
-
float: left;
|
895 |
-
border: none;
|
896 |
-
outline: none;
|
897 |
-
cursor: pointer;
|
898 |
-
padding: 14px 16px;
|
899 |
-
transition: 0.3s;
|
900 |
-
}
|
901 |
-
|
902 |
-
/* Change background color of buttons on hover */
|
903 |
-
.sgpb-wrapper div.tab button:hover {
|
904 |
-
background-color: #ddd;
|
905 |
-
}
|
906 |
-
|
907 |
-
/* Create an active/current tablink class */
|
908 |
-
.sgpb-wrapper div.tab button.sgpb-active {
|
909 |
-
background-color: #ccc;
|
910 |
-
}
|
911 |
-
|
912 |
-
/* Style the tab content */
|
913 |
-
.sgpb-wrapper .tabcontent {
|
914 |
-
display: none;
|
915 |
-
padding: 6px 12px;
|
916 |
-
border: 1px solid #ccc;
|
917 |
-
border-top: none;
|
918 |
-
}
|
919 |
-
|
920 |
-
.sgpb-tab-content-options {
|
921 |
-
padding: 20px 5px;
|
922 |
-
}
|
923 |
-
|
924 |
-
.js-sgpb-popup-themes {
|
925 |
-
margin-right: 8px !important;
|
926 |
-
}
|
927 |
-
|
928 |
-
/*Image popup styles*/
|
929 |
-
.sgpb-image-popup-headline {
|
930 |
-
margin-top: 27px !important;
|
931 |
-
margin-bottom: 41px !important;
|
932 |
-
text-align: center !important;
|
933 |
-
font: 17px arial !important;
|
934 |
-
}
|
935 |
-
|
936 |
-
/* Close button styles */
|
937 |
-
.sgpb-image-uploader-wrapper {
|
938 |
-
margin: 0 auto;
|
939 |
-
width: 82%;
|
940 |
-
text-align: center;
|
941 |
-
}
|
942 |
-
|
943 |
-
.sgpb-show-image-container,
|
944 |
-
.sgpb-show-gamification-image-container {
|
945 |
-
width: 222px;
|
946 |
-
height: 127px;
|
947 |
-
background-color: #F8F8F8;
|
948 |
-
margin: 14px auto;
|
949 |
-
background-size: contain;
|
950 |
-
background-position: center center;
|
951 |
-
background-repeat: no-repeat;
|
952 |
-
}
|
953 |
-
|
954 |
-
.sgpb-show-button-image-container,
|
955 |
-
.sgpb-show-sales-image-container,
|
956 |
-
.sgpb-show-gamification-image-container,
|
957 |
-
.sgpb-show-background-image-container {
|
958 |
-
background-color: #F8F8F8;
|
959 |
-
background-size: contain;
|
960 |
-
background-position: center center;
|
961 |
-
background-repeat: no-repeat;
|
962 |
-
border: 1px solid #ccc;
|
963 |
-
border-radius: 3px;
|
964 |
-
}
|
965 |
-
|
966 |
-
.sgpb-show-button-image-container,
|
967 |
-
.sgpb-show-gamification-image-container,
|
968 |
-
.sgpb-show-sales-image-container {
|
969 |
-
width: 35px;
|
970 |
-
height: 35px;
|
971 |
-
}
|
972 |
-
|
973 |
-
.sgpb-show-background-image-container {
|
974 |
-
width: 300px;
|
975 |
-
height: 135px;
|
976 |
-
}
|
977 |
-
|
978 |
-
.sgpb-show-gamification-image-container {
|
979 |
-
margin-top: 0px;
|
980 |
-
}
|
981 |
-
|
982 |
-
.sgpb-no-image {
|
983 |
-
display: block;
|
984 |
-
font: 13px Arial;
|
985 |
-
margin: 0 auto;
|
986 |
-
text-align: center;
|
987 |
-
padding-top: 56px;
|
988 |
-
}
|
989 |
-
|
990 |
-
.sgpb-inline-block {
|
991 |
-
display: inline-block;
|
992 |
-
}
|
993 |
-
|
994 |
-
.sgpb-button-text .form-control,
|
995 |
-
.sgpb-full-width.form-control {
|
996 |
-
height: 29px !important;
|
997 |
-
padding: 6px 12px !important;
|
998 |
-
width: 100% !important;
|
999 |
-
}
|
1000 |
-
|
1001 |
-
.sgpb-full-width {
|
1002 |
-
width: 100%;
|
1003 |
-
}
|
1004 |
-
|
1005 |
-
.sgpb-close-btn-change-image-wrapper {
|
1006 |
-
max-width: 120px;
|
1007 |
-
}
|
1008 |
-
|
1009 |
-
.sgpb-close-btn-image-wrapper {
|
1010 |
-
max-width: 40px;
|
1011 |
-
}
|
1012 |
-
|
1013 |
-
/* Video popup backend */
|
1014 |
-
.sgpb-video-url-input {
|
1015 |
-
width: 100%;
|
1016 |
-
}
|
1017 |
-
|
1018 |
-
/*Swich button style*/
|
1019 |
-
.sgpb-switch {
|
1020 |
-
position: relative;
|
1021 |
-
display: inline-block;
|
1022 |
-
width: 60px;
|
1023 |
-
height: 34px;
|
1024 |
-
}
|
1025 |
-
|
1026 |
-
/* Hide default HTML checkbox */
|
1027 |
-
.sgpb-switch input {
|
1028 |
-
display:none;
|
1029 |
-
}
|
1030 |
-
|
1031 |
-
/* The slider */
|
1032 |
-
.sgpb-slider {
|
1033 |
-
position: absolute;
|
1034 |
-
cursor: pointer;
|
1035 |
-
top: 0;
|
1036 |
-
left: 0;
|
1037 |
-
right: 0;
|
1038 |
-
bottom: 0;
|
1039 |
-
background-color: #ccc;
|
1040 |
-
-webkit-transition: .4s;
|
1041 |
-
transition: .4s;
|
1042 |
-
-ms-transform: scale(0.8, 0.8); /* IE 9 */
|
1043 |
-
-webkit-transform: scale(0.8, 0.8); /* Safari */
|
1044 |
-
transform: scale(0.8, 0.8);
|
1045 |
-
}
|
1046 |
-
|
1047 |
-
.sgpb-slider:before {
|
1048 |
-
position: absolute;
|
1049 |
-
content: "";
|
1050 |
-
height: 26px;
|
1051 |
-
width: 26px;
|
1052 |
-
left: 4px;
|
1053 |
-
bottom: 4px;
|
1054 |
-
background-color: white;
|
1055 |
-
-webkit-transition: .4s;
|
1056 |
-
transition: .4s;
|
1057 |
-
}
|
1058 |
-
|
1059 |
-
input:checked + .sgpb-slider {
|
1060 |
-
background-color: #2196F3;
|
1061 |
-
}
|
1062 |
-
|
1063 |
-
input:focus + .sgpb-slider {
|
1064 |
-
box-shadow: 0 0 1px #2196F3;
|
1065 |
-
}
|
1066 |
-
|
1067 |
-
input:checked + .sgpb-slider:before {
|
1068 |
-
-webkit-transform: translateX(26px);
|
1069 |
-
-ms-transform: translateX(26px);
|
1070 |
-
transform: translateX(26px);
|
1071 |
-
}
|
1072 |
-
|
1073 |
-
/* Rounded sliders */
|
1074 |
-
.sgpb-slider.sgpb-round {
|
1075 |
-
border-radius: 34px;
|
1076 |
-
}
|
1077 |
-
|
1078 |
-
.sgpb-slider.sgpb-round:before {
|
1079 |
-
border-radius: 50%;
|
1080 |
-
}
|
1081 |
-
|
1082 |
-
/* Rounded sliders */
|
1083 |
-
.sgpb-slider.sgpb-round {
|
1084 |
-
border-radius: 34px;
|
1085 |
-
}
|
1086 |
-
|
1087 |
-
.sgpb-slider.sgpb-round:before {
|
1088 |
-
border-radius: 50%;
|
1089 |
-
}
|
1090 |
-
|
1091 |
-
.sg-condition-value-wrapper input {
|
1092 |
-
width: 100%;
|
1093 |
-
}
|
1094 |
-
|
1095 |
-
.sgpb-full-width.form-control {
|
1096 |
-
height: 28px !important;
|
1097 |
-
padding: 2px 12px !important;
|
1098 |
-
width: 100% !important;
|
1099 |
-
}
|
1100 |
-
|
1101 |
-
.sgpb-full-width-events.form-control {
|
1102 |
-
height: 28px !important;
|
1103 |
-
padding: 6px 12px !important;
|
1104 |
-
width: 100% !important;
|
1105 |
-
font-size: 13px;
|
1106 |
-
}
|
1107 |
-
|
1108 |
-
.sgpb-same-origin-warning {
|
1109 |
-
margin-top: 10px;
|
1110 |
-
}
|
1111 |
-
|
1112 |
-
.sgpb-restriction-unit {
|
1113 |
-
vertical-align: sub !important;
|
1114 |
-
}
|
1115 |
-
|
1116 |
-
.sgpb-wrapper .col-md-4.sgpb-close-btn-change-image-wrapper {
|
1117 |
-
min-width: 120px !important;
|
1118 |
-
}
|
1119 |
-
|
1120 |
-
.sgpb-wrapper .col-md-4.sgpb-background-change-image-wrapper {
|
1121 |
-
min-width: 120px;
|
1122 |
-
}
|
1123 |
-
|
1124 |
-
/* Subscribers page view */
|
1125 |
-
#sgpb-subscriber-data,
|
1126 |
-
#sgpb-add-new-subscriber,
|
1127 |
-
.sgpb-subscribers-popup,
|
1128 |
-
#sgpb-export-subscribers {
|
1129 |
-
position: fixed;
|
1130 |
-
top:0;
|
1131 |
-
right: 0;
|
1132 |
-
bottom: 0;
|
1133 |
-
left: 0;
|
1134 |
-
background-color: rgba(0,0,0,0.6);
|
1135 |
-
z-index: 9999;
|
1136 |
-
opacity: 0;
|
1137 |
-
pointer-events: none;
|
1138 |
-
}
|
1139 |
-
|
1140 |
-
#sgpb-add-new-subscriber:target,
|
1141 |
-
#sgpb-subscriber-data:target {
|
1142 |
-
opacity: 1;
|
1143 |
-
pointer-events: auto;
|
1144 |
-
}
|
1145 |
-
|
1146 |
-
.sgpb-add-new-subscribers-wrapper {
|
1147 |
-
width: 30%;
|
1148 |
-
min-width: 310px;
|
1149 |
-
/*position: fixed;
|
1150 |
-
top: 18%;
|
1151 |
-
left: 35%;*/
|
1152 |
-
background-color: white;
|
1153 |
-
padding: 15px;
|
1154 |
-
box-sizing: border-box;
|
1155 |
-
border-radius: 8px;
|
1156 |
-
overflow: auto;
|
1157 |
-
margin: 13% auto;
|
1158 |
-
}
|
1159 |
-
|
1160 |
-
.sgpb-subscriber-data-wrapper {
|
1161 |
-
width: 30%;
|
1162 |
-
min-width: 310px;
|
1163 |
-
background-color: white;
|
1164 |
-
padding: 15px;
|
1165 |
-
box-sizing: border-box;
|
1166 |
-
border-radius: 8px;
|
1167 |
-
overflow: auto;
|
1168 |
-
}
|
1169 |
-
|
1170 |
-
.sgpb-add-subscriber-popup-btns,
|
1171 |
-
.sgpb-subscriber-popup-btns {
|
1172 |
-
width: 100%;
|
1173 |
-
}
|
1174 |
-
|
1175 |
-
.sgpb-add-subscriber-popup-close-btn {
|
1176 |
-
float: right;
|
1177 |
-
margin-top: -10px;
|
1178 |
-
margin-right: 5px;
|
1179 |
-
cursor: pointer;
|
1180 |
-
}
|
1181 |
-
|
1182 |
-
.sg-admin-popup-labeles {
|
1183 |
-
margin: 4px 0px;
|
1184 |
-
display: inline-block;
|
1185 |
-
}
|
1186 |
-
|
1187 |
-
.sg-bottom-hr {
|
1188 |
-
margin-top: 14px;
|
1189 |
-
margin-bottom: 13px;
|
1190 |
-
}
|
1191 |
-
|
1192 |
-
.sgpb-add-subscriber-input {
|
1193 |
-
width: 100%;
|
1194 |
-
border-radius: 5px;
|
1195 |
-
}
|
1196 |
-
|
1197 |
-
.sgpb-add-subscriber-input option {
|
1198 |
-
padding: 3px;
|
1199 |
-
}
|
1200 |
-
|
1201 |
-
.sgpb-add-subscriber-input option:checked {
|
1202 |
-
background: #18bc9c linear-gradient(0deg, #18bc9c 0%, #18bc9c 100%);
|
1203 |
-
}
|
1204 |
-
|
1205 |
-
.sgpb-email-error,
|
1206 |
-
.sgpb-subscription-error,
|
1207 |
-
.sgpb-newsletter-validation {
|
1208 |
-
color: #ff0000;
|
1209 |
-
margin-top: -10px;
|
1210 |
-
margin-bottom: 15px;
|
1211 |
-
font-weight: bold;
|
1212 |
-
}
|
1213 |
-
|
1214 |
-
.sgpb-subscribers-add-spinner {
|
1215 |
-
margin-top: 12px;
|
1216 |
-
margin-left: -55px;
|
1217 |
-
}
|
1218 |
-
|
1219 |
-
.sgpb-subscribers-remove-spinner {
|
1220 |
-
margin-bottom: -5px;
|
1221 |
-
margin-right: 5px;
|
1222 |
-
}
|
1223 |
-
|
1224 |
-
.sg-successfully {
|
1225 |
-
float: right;
|
1226 |
-
background-color: #dff0d8;
|
1227 |
-
border-radius: 5px;
|
1228 |
-
color: #3c763d;
|
1229 |
-
padding: 5px;
|
1230 |
-
margin-top: 6px;
|
1231 |
-
margin-right: 5px;
|
1232 |
-
}
|
1233 |
-
|
1234 |
-
.sg-newslatter-submit-wrapper {
|
1235 |
-
margin-top: 15px;
|
1236 |
-
}
|
1237 |
-
|
1238 |
-
/* Subscribers page style */
|
1239 |
-
.sgpb-subscriber-export-radio {
|
1240 |
-
padding-top: 9px;
|
1241 |
-
}
|
1242 |
-
|
1243 |
-
.subscribers-wrapper .widefat .check-column {
|
1244 |
-
padding: 12px 0 0px 2px;
|
1245 |
-
}
|
1246 |
-
|
1247 |
-
.sgpb-subs-delete-button-wrapper {
|
1248 |
-
text-align: right;
|
1249 |
-
margin-bottom: 5px;
|
1250 |
-
}
|
1251 |
-
|
1252 |
-
.sgpb-show-subscriber-data-popup,
|
1253 |
-
.sgpb-show-subscriber-data-popup:target,
|
1254 |
-
.sgpb-show-add-subscriber-popup,
|
1255 |
-
.sgpb-show-add-subscriber-popup:target {
|
1256 |
-
opacity: 1 !important;
|
1257 |
-
pointer-events: auto !important;
|
1258 |
-
}
|
1259 |
-
|
1260 |
-
.sgpb-add-subscriber-header-column {
|
1261 |
-
min-width: 210px;
|
1262 |
-
}
|
1263 |
-
|
1264 |
-
.sgpb-add-subscriber-header-column h1 {
|
1265 |
-
margin-top: 0;
|
1266 |
-
}
|
1267 |
-
|
1268 |
-
.sgpb-add-subscriber-header-spinner-column {
|
1269 |
-
min-width: 70px;
|
1270 |
-
}
|
1271 |
-
|
1272 |
-
.postbox-container .select2-container {
|
1273 |
-
z-index: 999;
|
1274 |
-
min-width: 46px;
|
1275 |
-
}
|
1276 |
-
|
1277 |
-
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
1278 |
-
line-height: 25px !important;
|
1279 |
-
}
|
1280 |
-
|
1281 |
-
.select2-container--default .select2-selection--single,
|
1282 |
-
.select2-dropdown.select2-dropdown--below {
|
1283 |
-
border: 2px solid #dce4ec !important;
|
1284 |
-
}
|
1285 |
-
|
1286 |
-
.select2-dropdown.select2-dropdown--below {
|
1287 |
-
border-top: none !important;
|
1288 |
-
}
|
1289 |
-
|
1290 |
-
/*@media only screen and (max-width: 782px) {
|
1291 |
-
.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.check-column) {
|
1292 |
-
display: table-cell !important;
|
1293 |
-
}
|
1294 |
-
}*/
|
1295 |
-
|
1296 |
-
.sgpb-options-content {
|
1297 |
-
padding: 10px;
|
1298 |
-
}
|
1299 |
-
|
1300 |
-
#wpbody-content > div.sgpb-wrapper.sgpb-newsletter > div {
|
1301 |
-
margin: 0 !important;
|
1302 |
-
}
|
1303 |
-
|
1304 |
-
.sgpb-label-align-center-sm {
|
1305 |
-
padding-top: 12px;
|
1306 |
-
}
|
1307 |
-
|
1308 |
-
.sgpb-wrapper .postbox-container {
|
1309 |
-
float: none !important;
|
1310 |
-
}
|
1311 |
-
|
1312 |
-
.sgpb-wrapper .js-special-title {
|
1313 |
-
cursor: inherit !important;
|
1314 |
-
}
|
1315 |
-
|
1316 |
-
.sgpb-alert {
|
1317 |
-
padding: 15px;
|
1318 |
-
margin-bottom: 20px;
|
1319 |
-
border: 1px solid transparent;
|
1320 |
-
border-radius: 4px;
|
1321 |
-
}
|
1322 |
-
|
1323 |
-
.sgpb-alert-info {
|
1324 |
-
color: #31708f;
|
1325 |
-
background-color: #d9edf7;
|
1326 |
-
border-color: #bce8f1;
|
1327 |
-
}
|
1328 |
-
|
1329 |
-
.sgpb-align-center-with-input {
|
1330 |
-
display: inline-block;
|
1331 |
-
padding-top: 7px;
|
1332 |
-
}
|
1333 |
-
|
1334 |
-
.sgpb-align-center-with-checkbox {
|
1335 |
-
display: inline-block;
|
1336 |
-
padding-top: 1px;
|
1337 |
-
}
|
1338 |
-
|
1339 |
-
.sgpb-checkbox-clear-margin {
|
1340 |
-
margin-top: 0 !important;
|
1341 |
-
}
|
1342 |
-
|
1343 |
-
.sgpb-input-right-label {
|
1344 |
-
margin-top: 7px;
|
1345 |
-
display: inline-block;
|
1346 |
-
}
|
1347 |
-
|
1348 |
-
.sgpb-reset-checkbox-margin-top {
|
1349 |
-
margin-top: 0 !important;
|
1350 |
-
}
|
1351 |
-
|
1352 |
-
.js-preview-sound {
|
1353 |
-
color: #3879D9;
|
1354 |
-
margin: 5px -2px;
|
1355 |
-
cursor: pointer;
|
1356 |
-
}
|
1357 |
-
|
1358 |
-
.sgpb-info-icon {
|
1359 |
-
color: #17a2b8;
|
1360 |
-
}
|
1361 |
-
|
1362 |
-
.sgpb-info-icon-align {
|
1363 |
-
margin-left: 5px;
|
1364 |
-
margin-top: 3px;
|
1365 |
-
}
|
1366 |
-
|
1367 |
-
.sgpb-event-row .sgpb-info-icon-align {
|
1368 |
-
margin-top: 0;
|
1369 |
-
}
|
1370 |
-
|
1371 |
-
.sgpb-info-text {
|
1372 |
-
color: #3879D9;
|
1373 |
-
font: 14px Arial;
|
1374 |
-
width: 200px;
|
1375 |
-
border: 1px solid #ccc;
|
1376 |
-
position: absolute;
|
1377 |
-
min-width: 20px;
|
1378 |
-
min-height: 13px;
|
1379 |
-
display: none;
|
1380 |
-
margin-top: 7px;
|
1381 |
-
margin-left: 12px;
|
1382 |
-
box-shadow: 0px 0px 5px #ccc;
|
1383 |
-
padding: 5px;
|
1384 |
-
z-index: 9999;
|
1385 |
-
background-color: white;
|
1386 |
-
border-radius: 5px;
|
1387 |
-
}
|
1388 |
-
|
1389 |
-
@media (min-width: 990px) {
|
1390 |
-
.sgpb-info-wrapper {
|
1391 |
-
padding: 0 !important;
|
1392 |
-
}
|
1393 |
-
}
|
1394 |
-
|
1395 |
-
.sgpb-info-wrapper .sgpb-info-icon-align {
|
1396 |
-
vertical-align: text-top !important;
|
1397 |
-
margin-left: 0 !important;
|
1398 |
-
}
|
1399 |
-
|
1400 |
-
.sgpb-col-no-padding {
|
1401 |
-
padding: 0 !important;
|
1402 |
-
}
|
1403 |
-
|
1404 |
-
.sgpb-info-icon-align-inputs {
|
1405 |
-
margin-top: 15px !important;
|
1406 |
-
}
|
1407 |
-
|
1408 |
-
.sgpb-info-text-inputs {
|
1409 |
-
margin-left: 41px !important;
|
1410 |
-
margin-top: -18px !important;
|
1411 |
-
}
|
1412 |
-
|
1413 |
-
.sgpb-event-row {
|
1414 |
-
min-height: 50px;
|
1415 |
-
}
|
1416 |
-
|
1417 |
-
.sgpb-box-target .sgpb-event-row:not(:first-child),
|
1418 |
.sgpb-box-autoresponder-events .sgpb-event-row:not(:first-child),
|
1419 |
.sgpb-box-woocommerce-special-events .sgpb-event-row:not(:first-child),
|
1420 |
.sgpb-box-conditions .sgpb-event-row:not(:first-child),
|
1421 |
-
.sgpb-box-events .sgpb-event-row:not(:first-child) {
|
1422 |
-
|
1423 |
-
|
1424 |
-
|
1425 |
-
}
|
1426 |
-
|
1427 |
-
.sgpb-box-woocommerce-special-events .sgpb-event-row:not(:last-child) .sg-rules-add-button-wrapper.sgpb-static-padding-top {
|
1428 |
-
display: none;
|
1429 |
-
}
|
1430 |
-
|
1431 |
-
.sgpb-box-autoresponder-events .sgpb-event-row:not(:last-child) .sg-rules-add-button-wrapper.sgpb-static-padding-top {
|
1432 |
-
display: none;
|
1433 |
-
}
|
1434 |
-
|
1435 |
-
.col-md-2.sg-rules-edit-button-wrapper {
|
1436 |
-
max-width: 144px;
|
1437 |
-
}
|
1438 |
-
|
1439 |
-
.sg-rules-add-rule:before,
|
1440 |
-
.sg-rules-edit-rule:before,
|
1441 |
-
.sg-rules-delete-rule:before {
|
1442 |
-
top: 4px;
|
1443 |
-
font: 400 17px/1 dashicons;
|
1444 |
-
position: relative;
|
1445 |
-
}
|
1446 |
-
|
1447 |
-
.sg-rules-add-rule:before {
|
1448 |
-
content: "\f132";
|
1449 |
-
}
|
1450 |
-
|
1451 |
-
.sg-rules-edit-rule:before {
|
1452 |
-
content: "\f111";
|
1453 |
-
}
|
1454 |
-
|
1455 |
-
.sg-rules-delete-rule:before {
|
1456 |
-
content: "\f158";
|
1457 |
-
}
|
1458 |
-
|
1459 |
-
.sg-rules-add-button-wrapper.sgpb-static-padding-top,
|
1460 |
-
.sg-rules-edit-button-wrapper.sgpb-static-padding-top,
|
1461 |
-
.sg-rules-delete-button-wrapper.sgpb-static-padding-top {
|
1462 |
-
padding-top: 23px;
|
1463 |
-
}
|
1464 |
-
|
1465 |
-
.sg-rules-add-button-wrapper.sgpb-static-padding-top {
|
1466 |
-
max-width: 88px;
|
1467 |
-
}
|
1468 |
-
|
1469 |
-
.sg-rules-edit-button-wrapper.sgpb-static-padding-top {
|
1470 |
-
max-width: 114px;
|
1471 |
-
}
|
1472 |
-
|
1473 |
-
.sgpb-events-spinner:before {
|
1474 |
-
content: "";
|
1475 |
-
}
|
1476 |
-
|
1477 |
-
.sgpb-event-row .btn {
|
1478 |
-
line-height: 22px;
|
1479 |
-
border-radius: 4px;
|
1480 |
-
}
|
1481 |
-
|
1482 |
-
.sgpb-hide-add-button {
|
1483 |
-
display: none !important;
|
1484 |
-
}
|
1485 |
-
|
1486 |
-
.sgpb-tab-content-options label {
|
1487 |
-
margin-bottom: 0;
|
1488 |
-
}
|
1489 |
-
|
1490 |
-
.sgpb-label-align-with-select2 {
|
1491 |
-
padding-top: 8px;
|
1492 |
-
}
|
1493 |
-
|
1494 |
-
@media (max-width: 990px) {
|
1495 |
-
.sg-rules-edit-button-wrapper.sgpb-static-padding-top {
|
1496 |
-
max-width: 90px;
|
1497 |
-
width: 30%;
|
1498 |
-
}
|
1499 |
-
.sg-rules-add-button-wrapper.sgpb-static-padding-top {
|
1500 |
-
max-width: 65px;
|
1501 |
-
}
|
1502 |
-
}
|
1503 |
-
|
1504 |
-
@media (max-width: 1240px) {
|
1505 |
-
.sgpb-add-new-row {
|
1506 |
-
padding-right: 15px;
|
1507 |
-
}
|
1508 |
-
}
|
1509 |
-
|
1510 |
-
@media (max-width: 768px) {
|
1511 |
-
.col-sm-2.sg-rules-edit-button-wrapper .sg-rules-edit-rule {
|
1512 |
-
float: unset;
|
1513 |
-
}
|
1514 |
-
.col-sm-2.sg-rules-edit-button-wrapper {
|
1515 |
-
width: 12%;
|
1516 |
-
float: left;
|
1517 |
-
min-width: 90px;
|
1518 |
-
}
|
1519 |
-
.col-sm-1.sg-rules-delete-button-wrapper {
|
1520 |
-
width: 12%;
|
1521 |
-
float: left;
|
1522 |
-
}
|
1523 |
-
}
|
1524 |
-
|
1525 |
-
.sgpb-preview-animation,
|
1526 |
-
.sgpb-preview-close-animation {
|
1527 |
-
background-image: url(../img/preview-eye.png);
|
1528 |
-
width: 30px;
|
1529 |
-
height: 30px;
|
1530 |
-
display: inline-block;
|
1531 |
-
cursor: pointer;
|
1532 |
-
}
|
1533 |
-
|
1534 |
-
#js-open-animation-effect,
|
1535 |
-
#js-close-animation-effect {
|
1536 |
-
display: none;
|
1537 |
-
width: 150px;
|
1538 |
-
height: 150px;
|
1539 |
-
margin-left: 5px;
|
1540 |
-
background-image: url(../img/animationImage.png);
|
1541 |
-
background-size: 150px 150px;
|
1542 |
-
position: absolute;
|
1543 |
-
top: -46px;
|
1544 |
-
left: 72px;
|
1545 |
-
z-index: 9999;
|
1546 |
-
}
|
1547 |
-
|
1548 |
-
/* media button */
|
1549 |
-
#sgpb-hidden-media-popup .sgpb-add-subscriber-popup-close-btn,
|
1550 |
-
#sgpb-js-variable-wrapper .sgpb-add-subscriber-popup-close-btn {
|
1551 |
-
margin-top: 0;
|
1552 |
-
}
|
1553 |
-
|
1554 |
-
.sgpb-insert-popup-btns,
|
1555 |
.sgpb-insert-popup + span,
|
1556 |
-
.sgpb-insert-popup-event .select2-container
|
1557 |
-
|
1558 |
-
}
|
1559 |
-
|
1560 |
-
.sgpb-
|
1561 |
-
|
1562 |
-
}
|
1563 |
-
|
1564 |
-
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
|
1569 |
-
#sgpb-hidden-
|
1570 |
-
|
1571 |
-
}
|
1572 |
-
|
1573 |
-
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
-
#sgpb-
|
1578 |
-
|
1579 |
-
}
|
1580 |
-
|
1581 |
-
.sgpb-
|
1582 |
-
|
1583 |
-
|
1584 |
-
|
1585 |
-
|
1586 |
-
}
|
1587 |
-
|
1588 |
-
|
1589 |
-
.
|
1590 |
-
|
1591 |
-
|
1592 |
-
|
1593 |
-
.
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
|
1598 |
-
|
1599 |
-
|
1600 |
-
|
1601 |
-
|
1602 |
-
|
1603 |
-
}
|
1604 |
-
|
1605 |
-
.sgpb-
|
1606 |
-
|
1607 |
-
|
1608 |
-
}
|
1609 |
-
|
1610 |
-
.sgpb-sub-option-label {
|
1611 |
-
padding-left: 30px !important;
|
1612 |
-
}
|
1613 |
-
|
1614 |
-
.sgpb-double-sub-option {
|
1615 |
-
padding-left: 60px !important;
|
1616 |
-
font-weight: lighter !important;
|
1617 |
-
}
|
1618 |
-
|
1619 |
-
.sgpb-double-sub-option-label {
|
1620 |
-
padding-left: 60px !important;
|
1621 |
-
font-weight: 500 !important;
|
1622 |
-
}
|
1623 |
-
|
1624 |
-
.sgpb-sub-option-label label {
|
1625 |
-
font-weight: 500 !important;
|
1626 |
-
}
|
1627 |
-
|
1628 |
-
.sgpb-hidden-full-width-column {
|
1629 |
-
padding-left: 27px !important;
|
1630 |
-
}
|
1631 |
-
|
1632 |
-
#sgpb-subs-gdpr-text {
|
1633 |
-
padding: 6px 12px !important;
|
1634 |
-
width: 100% !important;
|
1635 |
-
font-size: 13px;
|
1636 |
-
}
|
1637 |
-
|
1638 |
-
.sgpb-gdpr-label {
|
1639 |
-
padding-top: 17px;
|
1640 |
-
}
|
1641 |
-
|
1642 |
-
.sgpb-license-status {
|
1643 |
-
pointer-events: none !important;
|
1644 |
-
}
|
1645 |
-
|
1646 |
-
.sgpb-each-option-section {
|
1647 |
-
margin-top: 30px;
|
1648 |
-
}
|
1649 |
-
|
1650 |
-
.sgpb-live-preview-wrapper,
|
1651 |
-
.sgpb-relative-position {
|
1652 |
-
position: relative;
|
1653 |
-
}
|
1654 |
-
|
1655 |
-
.sgpb-loader {
|
1656 |
-
position: absolute;
|
1657 |
-
height: 100%;
|
1658 |
-
width: 100%;
|
1659 |
-
top: 0;
|
1660 |
-
background: white;
|
1661 |
-
}
|
1662 |
-
|
1663 |
-
/*loader*/
|
1664 |
-
|
1665 |
-
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
|
1666 |
-
|
1667 |
-
.sgpb-container {
|
1668 |
-
position: absolute;
|
1669 |
-
top: 50%;
|
1670 |
-
left: 50%;
|
1671 |
-
transform: translate(-50%, -50%);
|
1672 |
-
}
|
1673 |
-
|
1674 |
-
.sgpb-banner {
|
1675 |
-
position: relative;
|
1676 |
-
padding: 10px 20px;
|
1677 |
-
animation: loader 1s cubic-bezier(0.5, 0.1, 0.15, 1) alternate infinite;
|
1678 |
-
background-color: #ccc;
|
1679 |
-
}
|
1680 |
-
|
1681 |
-
@keyframes loader {
|
1682 |
-
0% {
|
1683 |
-
letter-spacing: -1px;
|
1684 |
-
}
|
1685 |
-
100% {
|
1686 |
-
letter-spacing: 15px;
|
1687 |
-
}
|
1688 |
-
}
|
1689 |
-
|
1690 |
-
.sgpb-banner::before {
|
1691 |
-
content: '';
|
1692 |
-
width: 100%;
|
1693 |
-
height: 100%;
|
1694 |
-
position: absolute;
|
1695 |
-
z-index: -1;
|
1696 |
-
top: 0;
|
1697 |
-
left: 0;
|
1698 |
-
transform: skewX(-15deg);
|
1699 |
-
background-color: #ccc;
|
1700 |
-
}
|
1701 |
-
|
1702 |
-
.sgpb-banner-left, .sgpb-banner-right {
|
1703 |
-
width: 60px;
|
1704 |
-
height: 100%;
|
1705 |
-
position: absolute;
|
1706 |
-
z-index: -2;
|
1707 |
-
bottom: -30%;
|
1708 |
-
transform: skewX(-15deg);
|
1709 |
-
background-color: #ccc;
|
1710 |
-
}
|
1711 |
-
|
1712 |
-
.sgpb-banner-left {
|
1713 |
-
animation: sub-banner-left 1s cubic-bezier(0.5, 0.1, 0.15, 1) alternate infinite;
|
1714 |
-
}
|
1715 |
-
|
1716 |
-
@keyframes sub-banner-left {
|
1717 |
-
0% {
|
1718 |
-
right: 82%;
|
1719 |
-
}
|
1720 |
-
100% {
|
1721 |
-
right: 90%;
|
1722 |
-
}
|
1723 |
-
}
|
1724 |
-
|
1725 |
-
.sgpb-banner-right {
|
1726 |
-
animation: sub-banner-right 1s cubic-bezier(0.5, 0.1, 0.15, 1) alternate infinite;
|
1727 |
-
}
|
1728 |
-
|
1729 |
-
@keyframes sub-banner-right {
|
1730 |
-
0% {
|
1731 |
-
left: 82%;
|
1732 |
-
}
|
1733 |
-
100% {
|
1734 |
-
left: 90%;
|
1735 |
-
}
|
1736 |
-
}
|
1737 |
-
|
1738 |
-
.sgpb-banner-left::before, .sgpb-banner-right::before {
|
1739 |
-
content: '';
|
1740 |
-
width: 0;
|
1741 |
-
height: 0;
|
1742 |
-
position: absolute;
|
1743 |
-
top: -1px;
|
1744 |
-
border: 22px solid;
|
1745 |
-
border-color: transparent;
|
1746 |
-
}
|
1747 |
-
|
1748 |
-
.sgpb-banner-left::before {
|
1749 |
-
left: -1px;
|
1750 |
-
border-left-color: #ffffff;
|
1751 |
-
}
|
1752 |
-
|
1753 |
-
.sgpb-banner-right::before {
|
1754 |
-
right: -1px;
|
1755 |
-
border-right-color: #ffffff;
|
1756 |
-
}
|
1757 |
-
|
1758 |
-
.sgpb-pro-wrapper,
|
1759 |
-
.sgpb-free-wrapper,
|
1760 |
-
.sgpb-free-extensions-wrapper,
|
1761 |
-
.sgpb-extensions-wrapper {
|
1762 |
-
max-width: 850px;
|
1763 |
-
margin: 0 auto;
|
1764 |
-
display: block;
|
1765 |
-
}
|
1766 |
-
|
1767 |
-
.col-md-2.sgpb-pro-options-row {
|
1768 |
-
min-width: 80px !important;
|
1769 |
-
}
|
1770 |
-
|
1771 |
-
.sgpb-pro-label-sm {
|
1772 |
-
line-height: 16px !important;
|
1773 |
-
margin-top: 2px !important;
|
1774 |
-
}
|
1775 |
-
|
1776 |
-
.sgpb-pro-options-row {
|
1777 |
-
width: 12% !important;
|
1778 |
-
}
|
1779 |
-
|
1780 |
-
.sgpb-pro-options-label-wrapper {
|
1781 |
-
padding: 0 !important;
|
1782 |
-
}
|
1783 |
-
|
1784 |
-
.sgpb-pro-label-metabox:hover {
|
1785 |
-
color: #ffffff;
|
1786 |
-
background-color: #c87f0a;
|
1787 |
-
border-color: #be780a;
|
1788 |
-
text-decoration: none;
|
1789 |
-
|
1790 |
-
}
|
1791 |
-
|
1792 |
-
.sgpb-pro-label-metabox {
|
1793 |
-
font-size: 13px !important;
|
1794 |
-
color: #ffffff;
|
1795 |
-
background-color: #f39c12;
|
1796 |
-
display: inline-block;
|
1797 |
-
margin-bottom: 0;
|
1798 |
-
font-weight: normal;
|
1799 |
-
text-align: center;
|
1800 |
-
vertical-align: middle;
|
1801 |
-
touch-action: manipulation;
|
1802 |
-
cursor: pointer;
|
1803 |
-
background-image: none;
|
1804 |
-
text-decoration: none;
|
1805 |
-
border: 1px solid transparent;
|
1806 |
-
border-width: 2px;
|
1807 |
-
padding: 1px 5px;
|
1808 |
-
font-size: 13px;
|
1809 |
-
line-height: 16px;
|
1810 |
-
border-radius: 3px;
|
1811 |
-
margin-left: 12px;
|
1812 |
-
}
|
1813 |
-
|
1814 |
-
.sgpb-other-pro-options {
|
1815 |
-
position:absolute;
|
1816 |
-
background-color: rgba(255, 255, 255, 0.6);
|
1817 |
-
width: 99%;
|
1818 |
-
height: 96%;
|
1819 |
-
top: 0;
|
1820 |
-
margin: 0px -8px;
|
1821 |
-
}
|
1822 |
-
|
1823 |
-
.sgpb-add-new-label {
|
1824 |
-
text-align: left;
|
1825 |
-
}
|
1826 |
-
|
1827 |
-
.sgpb-extensions-section-wrapper {
|
1828 |
-
max-width: 830px;
|
1829 |
-
margin-top: 40px;
|
1830 |
-
margin-bottom: 30px;
|
1831 |
-
border-bottom: 1px solid #DEDEDE;
|
1832 |
-
width: 100%;
|
1833 |
-
display: inline-block;
|
1834 |
-
}
|
1835 |
-
|
1836 |
-
.sgpb-add-new-row {
|
1837 |
-
max-width: 1080px;
|
1838 |
-
border-bottom: 1px solid #DEDEDE;
|
1839 |
-
margin-bottom: 30px;
|
1840 |
-
margin-left: 0;
|
1841 |
-
margin-right: 0;
|
1842 |
-
}
|
1843 |
-
|
1844 |
-
.sgpb-add-new-wrapper {
|
1845 |
-
overflow: hidden;
|
1846 |
-
max-width: 830px;
|
1847 |
-
}
|
1848 |
-
|
1849 |
-
.sgpb-dropdown-label {
|
1850 |
-
margin-top: 4px;
|
1851 |
-
}
|
1852 |
-
|
1853 |
-
.sgpb-pro-button {
|
1854 |
-
background-color: #E0252C !important;
|
1855 |
-
border-color: #E0252C !important;
|
1856 |
-
margin-right: 12px !important;
|
1857 |
-
}
|
1858 |
-
|
1859 |
-
.sgpb-pro-button:hover {
|
1860 |
-
background-color: #c41c22 !important;
|
1861 |
-
border-color: #c41c22 !important;
|
1862 |
-
}
|
1863 |
-
|
1864 |
-
/*Extensions notifications*/
|
1865 |
-
.sgpb-extensions-notices,
|
1866 |
-
.sgpb-alert-problem {
|
1867 |
-
position: relative;
|
1868 |
-
display: block;
|
1869 |
-
margin-top: 35px;
|
1870 |
-
}
|
1871 |
-
|
1872 |
-
.sgpb-extension-notice-close,
|
1873 |
-
.sgpb-problem-notice-close {
|
1874 |
-
position: absolute !important;
|
1875 |
-
right: 20px;
|
1876 |
-
top: -10px;
|
1877 |
-
font-size: 20px;
|
1878 |
-
cursor: pointer;
|
1879 |
-
}
|
1880 |
-
|
1881 |
-
.sgpb-extension-notice-dont-show,
|
1882 |
-
.sgpb-problem-notice-dont-show {
|
1883 |
-
text-align: right;
|
1884 |
-
padding-right: 9px;
|
1885 |
-
cursor: pointer !important;
|
1886 |
-
}
|
1887 |
-
|
1888 |
-
.sgpb-extensions-list {
|
1889 |
-
display: inline-block;
|
1890 |
-
margin-top: 0px;
|
1891 |
-
margin-bottom: 0px;
|
1892 |
-
}
|
1893 |
-
|
1894 |
-
.sgpb-license-status.btn-success {
|
1895 |
-
background-color: #5cb85c;
|
1896 |
-
border-color: #5cb85c;
|
1897 |
-
}
|
1898 |
-
|
1899 |
-
.sgpb-license-wrapper .row {
|
1900 |
-
margin: 0 !important;
|
1901 |
-
}
|
1902 |
-
|
1903 |
-
.sgpb-margin-right-status {
|
1904 |
-
margin-right: 12px !important;
|
1905 |
-
}
|
1906 |
-
|
1907 |
-
.sgpb-margin-right-status-not-active {
|
1908 |
-
margin-right: 35px;
|
1909 |
-
}
|
1910 |
-
/*Extensions notification end*/
|
1911 |
-
|
1912 |
-
/* Generated by Glyphter (http://www.glyphter.com) on Thu Jun 28 2018*/
|
1913 |
-
@font-face {
|
1914 |
-
font-family: 'popupbuilder-icon';
|
1915 |
-
src: url('fonts/popupbuilder-icon.eot');
|
1916 |
-
src: url('fonts/popupbuilder-icon.eot?#iefix') format('embedded-opentype'),
|
1917 |
-
url('fonts/popupbuilder-icon.woff') format('woff'),
|
1918 |
-
url('fonts/popupbuilder-icon.ttf') format('truetype'),
|
1919 |
-
url('fonts/popupbuilder-icon.svg#popupbuilder-icon') format('svg');
|
1920 |
-
font-weight: normal;
|
1921 |
-
font-style: normal;
|
1922 |
-
}
|
1923 |
-
|
1924 |
-
[class*='dashicons-menu-icon-sgpb']:before {
|
1925 |
-
display: inline-block;
|
1926 |
-
font-family: 'popupbuilder-icon';
|
1927 |
-
font-style: normal;
|
1928 |
-
font-weight: normal;
|
1929 |
-
line-height: 1;
|
1930 |
-
-webkit-font-smoothing: antialiased;
|
1931 |
-
-moz-osx-font-smoothing: grayscale
|
1932 |
-
}
|
1933 |
-
|
1934 |
-
.dashicons-menu-icon-sgpb:before {
|
1935 |
-
content:'\0041';
|
1936 |
-
padding-left: 5px !important;
|
1937 |
-
}
|
1938 |
-
|
1939 |
-
@font-face {
|
1940 |
-
font-family: 'popupbuilder-button-icon';
|
1941 |
-
src: url('fonts/popupbuilder-button-icon.eot');
|
1942 |
-
src: url('fonts/popupbuilder-button-icon.eot?#iefix') format('embedded-opentype'),
|
1943 |
-
url('fonts/popupbuilder-button-icon.woff') format('woff'),
|
1944 |
-
url('fonts/popupbuilder-button-icon.ttf') format('truetype'),
|
1945 |
-
url('fonts/popupbuilder-button-icon.svg#popupbuilder-button-icon') format('svg');
|
1946 |
-
font-weight: normal;
|
1947 |
-
font-style: normal;
|
1948 |
-
}
|
1949 |
-
|
1950 |
-
[class*='dashicons-menu-icon-sgpb-button']:before {
|
1951 |
-
display: inline-block;
|
1952 |
-
font-family: 'popupbuilder-button-icon';
|
1953 |
-
font-style: normal;
|
1954 |
-
font-weight: normal;
|
1955 |
-
line-height: 1;
|
1956 |
-
-webkit-font-smoothing: antialiased;
|
1957 |
-
-moz-osx-font-smoothing: grayscale
|
1958 |
-
}
|
1959 |
-
|
1960 |
-
.dashicons-menu-icon-sgpb-button:before {
|
1961 |
-
content:'\0042';
|
1962 |
-
margin: 0px 9px 0px -5px !important;
|
1963 |
-
}
|
1964 |
-
|
1965 |
-
.dashicons-menu-icon-sgpb-button {
|
1966 |
-
padding-left: 5px !important;
|
1967 |
-
}
|
1968 |
-
|
1969 |
-
.dashicons-menu-icon-sgpb-button + span {
|
1970 |
-
vertical-align: middle !important;
|
1971 |
-
}
|
1972 |
-
|
1973 |
-
/*banner start*/
|
1974 |
-
.sgpb-banner-logo-link {
|
1975 |
-
display: block;
|
1976 |
-
}
|
1977 |
-
|
1978 |
-
.sgpb-banner-logo-link:focus,
|
1979 |
-
.sgpb-banner-logo-link:hover,
|
1980 |
-
.sgpb-banner-logo-link:active {
|
1981 |
-
outline: 0;
|
1982 |
-
border: none;
|
1983 |
-
-moz-outline-style: none;
|
1984 |
-
box-shadow: none;
|
1985 |
-
}
|
1986 |
-
|
1987 |
-
.sgpb-dont-show-again {
|
1988 |
-
position: absolute;
|
1989 |
-
bottom: 7px;
|
1990 |
-
right: 22px;
|
1991 |
-
cursor: pointer;
|
1992 |
-
color: #ffffff !important;
|
1993 |
-
}
|
1994 |
-
|
1995 |
-
.sgpb-dont-show-again:hover {
|
1996 |
-
color: #30c2f3 !important;
|
1997 |
-
}
|
1998 |
-
|
1999 |
-
.sgpb-dont-show-again-license-notice {
|
2000 |
-
position: absolute;
|
2001 |
-
bottom: 7px;
|
2002 |
-
right: 15px;
|
2003 |
-
cursor: pointer;
|
2004 |
-
color: #000 !important;
|
2005 |
-
font-size: 13px;
|
2006 |
-
font-style: italic;
|
2007 |
-
}
|
2008 |
-
|
2009 |
-
.sgpb-dont-show-again-license-notice:hover {
|
2010 |
-
color: #0073aa !important;
|
2011 |
-
}
|
2012 |
-
|
2013 |
-
.sgpb-info-close {
|
2014 |
-
float: right;
|
2015 |
-
color: #fff;
|
2016 |
-
position: absolute;
|
2017 |
-
right: 21px;
|
2018 |
-
font-size: 30px;
|
2019 |
-
top: 4px;
|
2020 |
-
cursor: pointer;
|
2021 |
-
transform: rotate(45deg);
|
2022 |
-
margin: -3px -3px 0
|
2023 |
-
}
|
2024 |
-
|
2025 |
-
.sgpb-info-close:hover {
|
2026 |
-
color: #30c2f3;
|
2027 |
-
}
|
2028 |
-
|
2029 |
-
.sgpb-info-text-white {
|
2030 |
-
color: #fff !important;
|
2031 |
-
margin-right: 10px;
|
2032 |
-
}
|
2033 |
-
|
2034 |
-
.sgpb-banner-links {
|
2035 |
-
color: #30c2f3 !important;
|
2036 |
-
text-decoration: none !important;
|
2037 |
-
font-size: 18px !important;
|
2038 |
-
font-weight: lighter !important;
|
2039 |
-
}
|
2040 |
-
|
2041 |
-
.sgpb-banner-links:hover {
|
2042 |
-
color: #00a0d2 !important;
|
2043 |
-
}
|
2044 |
-
|
2045 |
-
.sgpb-info-menu {
|
2046 |
-
text-align: left !important;
|
2047 |
-
list-style-type: none !important;
|
2048 |
-
margin-top: 23px !important;
|
2049 |
-
margin-left: 6px !important;
|
2050 |
-
}
|
2051 |
-
.sgpb-info-menu li {
|
2052 |
-
padding-bottom: 8px !important;
|
2053 |
-
}
|
2054 |
-
|
2055 |
-
.sgpb-banner-wrapper {
|
2056 |
-
clear: both;
|
2057 |
-
overflow: hidden;
|
2058 |
-
padding-top: 20px;
|
2059 |
-
margin-right: 20px;
|
2060 |
-
}
|
2061 |
-
|
2062 |
-
.sgpb-review-popup-banner-wrapper {
|
2063 |
-
clear: both;
|
2064 |
-
overflow: hidden;
|
2065 |
-
padding-top: 20px;
|
2066 |
-
margin: 10px 20px 10px 0;
|
2067 |
-
background-color: #ffffff;
|
2068 |
-
}
|
2069 |
-
|
2070 |
-
.sgpb-review-popup-banner-wrapper h1,
|
2071 |
-
.sgpb-review-popup-banner-wrapper h2 {
|
2072 |
-
font-size: 22px;
|
2073 |
-
font-weight: normal;
|
2074 |
-
line-height: 1.384;
|
2075 |
-
}
|
2076 |
-
|
2077 |
-
.sgpb-review-popup-banner-wrapper h1 {
|
2078 |
-
margin: 0;
|
2079 |
-
}
|
2080 |
-
|
2081 |
-
.sgpb-upgrade-banner-btn {
|
2082 |
-
width: 85% !important;
|
2083 |
-
margin-top: 80px !important;
|
2084 |
-
border-radius: 40px !important;
|
2085 |
-
color: #49bbef !important;
|
2086 |
-
font-size: 1.8vw !important;
|
2087 |
-
background-color: #2a283b !important;
|
2088 |
-
line-height: 50px !important;
|
2089 |
-
}
|
2090 |
-
|
2091 |
-
.sgpb-upgrade-banner-btn:hover {
|
2092 |
-
background-color: #322e59 !important;
|
2093 |
-
}
|
2094 |
-
|
2095 |
-
.sgpb-main-rate-us-banner-wrapper .col-xs-4.sgpb-rate-us-banner-2 .col-xs-12 {
|
2096 |
-
text-align: center;
|
2097 |
-
}
|
2098 |
-
|
2099 |
-
.sgpb-rate-us-banner-1,
|
2100 |
-
.sgpb-rate-us-banner-2,
|
2101 |
-
.sgpb-rate-us-banner-3 {
|
2102 |
-
width: 100%;
|
2103 |
-
height: 200px;
|
2104 |
-
background-repeat: no-repeat;
|
2105 |
-
background-size: 100% 200px;
|
2106 |
-
display: inline-block;
|
2107 |
-
}
|
2108 |
-
|
2109 |
-
.sgpb-rate-us-banner-1 {
|
2110 |
-
background-image: url(../img/rateUsBanner1.png);
|
2111 |
-
}
|
2112 |
-
|
2113 |
-
.sgpb-rate-us-banner-2 {
|
2114 |
-
/*background-image: url(../img/rateUsBanner2.png);*/
|
2115 |
-
background-color: #00c4ee;
|
2116 |
-
border-top: 1px solid #2b2744;
|
2117 |
-
border-bottom: 1px solid #2b2744;
|
2118 |
-
}
|
2119 |
-
|
2120 |
-
.sgpb-rate-us-banner-3 {
|
2121 |
-
background-image: url(../img/rateUsBanner3.png);
|
2122 |
-
}
|
2123 |
-
|
2124 |
-
.sgpb-banner-logo {
|
2125 |
-
width: 100%;
|
2126 |
-
height: 180px;
|
2127 |
-
background-image: url(../img/bannerLogo.png);
|
2128 |
-
background-repeat: no-repeat;
|
2129 |
-
background-size: contain;
|
2130 |
-
display: inline-block;
|
2131 |
-
margin-top: 10px;
|
2132 |
-
margin-left: 26px;
|
2133 |
-
background-position: center;
|
2134 |
-
}
|
2135 |
-
|
2136 |
-
.sgpb-dashicons-heart:before,
|
2137 |
-
.sgpb-dashicons-megaphone:before,
|
2138 |
-
.sgpb-dashicons-admin-plugins:before,
|
2139 |
-
.sgpb-dashicons-editor-help:before,
|
2140 |
-
.sgpb-dashicons-email-alt:before {
|
2141 |
-
background-size: 100%;
|
2142 |
-
display: inline-block;
|
2143 |
-
width: 20px;
|
2144 |
-
height: 20px;
|
2145 |
-
content: '';
|
2146 |
-
}
|
2147 |
-
|
2148 |
-
.sgpb-dashicons-heart:before {
|
2149 |
-
background-image: url('../img/bannerHeart.png');
|
2150 |
-
}
|
2151 |
-
|
2152 |
-
.sgpb-dashicons-megaphone:before {
|
2153 |
-
background-image: url('../img/bannerMegaphone.png');
|
2154 |
-
}
|
2155 |
-
|
2156 |
-
.sgpb-dashicons-admin-plugins:before {
|
2157 |
-
background-image: url('../img/bannerSupport.png');
|
2158 |
-
width: 20px;
|
2159 |
-
background-size: 20px 17px;
|
2160 |
-
height: 17px;
|
2161 |
-
}
|
2162 |
-
|
2163 |
-
.sgpb-dashicons-editor-help:before {
|
2164 |
-
background-image: url('../img/bannerQuestionMark.png');
|
2165 |
-
}
|
2166 |
-
|
2167 |
-
.sgpb-dashicons-email-alt:before {
|
2168 |
-
background-image: url('../img/bannerEmail.png');
|
2169 |
-
width: 20px;
|
2170 |
-
background-size: 20px 17px;
|
2171 |
-
height: 17px;
|
2172 |
-
}
|
2173 |
-
|
2174 |
-
.sgpb-sgpbAdvancedTargeting-div p {
|
2175 |
-
font-size: 20px;
|
2176 |
-
}
|
2177 |
-
|
2178 |
-
@media (max-width: 840px) {
|
2179 |
-
.sgpb-rate-us-banner-1 {
|
2180 |
-
display: none;
|
2181 |
-
}
|
2182 |
-
.sgpb-rate-us-banner-2,
|
2183 |
-
.sgpb-rate-us-banner-3 {
|
2184 |
-
width: 50% !important;
|
2185 |
-
}
|
2186 |
-
}
|
2187 |
-
|
2188 |
-
@media (max-width: 1224px) {
|
2189 |
-
.sgpb-event-row .col-sm-3 {
|
2190 |
-
width: 100% !important;
|
2191 |
-
}
|
2192 |
-
}
|
2193 |
-
|
2194 |
-
@media (max-width: 560px) {
|
2195 |
-
.sgpb-rate-us-banner-2 {
|
2196 |
-
display: none;
|
2197 |
-
}
|
2198 |
-
.sgpb-rate-us-banner-3 {
|
2199 |
-
width: 100% !important;
|
2200 |
-
}
|
2201 |
-
.sgpb-rate-us-banner-3 .sgpb-upgrade-banner-btn {
|
2202 |
-
font-size: 16px !important;
|
2203 |
-
margin-top: -18px !important;
|
2204 |
-
width: 37% !important;
|
2205 |
-
display: inline !important;
|
2206 |
-
background-color: #49bbef !important;
|
2207 |
-
color: #2a283b !important;
|
2208 |
-
padding: 0 !important;
|
2209 |
-
float: right;
|
2210 |
-
margin-right: 10px;
|
2211 |
-
}
|
2212 |
-
}
|
2213 |
-
|
2214 |
-
@media (max-width: 320px) {
|
2215 |
-
.sgpb-rate-us-banner-3 .sgpb-upgrade-banner-btn {
|
2216 |
-
font-size: 12px !important;
|
2217 |
-
}
|
2218 |
-
}
|
2219 |
-
/*banner end*/
|
2220 |
-
|
2221 |
-
.sgpb-advanced-closing-pro-label {
|
2222 |
-
background-color: #F08B3F !important;
|
2223 |
-
}
|
2224 |
-
|
2225 |
-
.sgpb-advanced-closing-pro-label:hover {
|
2226 |
-
background-color: #F2A15E !important;
|
2227 |
-
border-color: #F2A15E !important;
|
2228 |
-
}
|
2229 |
-
|
2230 |
-
.sgpb-scheduling-pro-label {
|
2231 |
-
background-color: #1C76D3 !important;
|
2232 |
-
}
|
2233 |
-
|
2234 |
-
.sgpb-scheduling-pro-label:hover {
|
2235 |
-
background-color: #308DE8 !important;
|
2236 |
-
border-color: #308DE8 !important;
|
2237 |
-
}
|
2238 |
-
|
2239 |
-
.sgpb-import-wrapper input {
|
2240 |
-
display: inline-block !important;
|
2241 |
-
}
|
2242 |
-
|
2243 |
-
.sgpb-import-wrapper .submit {
|
2244 |
-
float: none !important;
|
2245 |
-
padding: 0 !important;
|
2246 |
-
}
|
2247 |
-
|
2248 |
-
.sgpb-media-btn-wrapper {
|
2249 |
-
background-color: #f3f3f4;
|
2250 |
-
}
|
2251 |
-
|
2252 |
-
.sgpb-gutenberg-logo {
|
2253 |
-
max-height: 130px !important;
|
2254 |
-
}
|
2255 |
-
|
2256 |
-
.sgpb-gutenberg-shortcode-wrapper {
|
2257 |
-
height: 30px !important;
|
2258 |
-
display: contents;
|
2259 |
-
background-color: #f3f3f4 !important;
|
2260 |
-
}
|
2261 |
-
|
2262 |
-
.sgpb-gutenberg-shortcode-input {
|
2263 |
-
width: 100% !important;
|
2264 |
-
}
|
2265 |
-
|
2266 |
-
.sgpb-gutenberg-form-selector-wrapper .components-base-control {
|
2267 |
-
width: 100% !important;
|
2268 |
-
}
|
2269 |
-
|
2270 |
-
.subscribers-wrapper .tablenav.top,
|
2271 |
-
.subscribers-wrapper .tablenav.bottom {
|
2272 |
-
margin-left: -8px !important;
|
2273 |
-
}
|
2274 |
-
|
2275 |
-
.mce-widget .dashicons-menu-icon-sgpb:before {
|
2276 |
-
padding-left: 0px !important;
|
2277 |
-
}
|
2278 |
-
|
2279 |
-
.sgpb-text-warning {
|
2280 |
-
color: #007bff !important;
|
2281 |
-
}
|
2282 |
-
|
2283 |
-
.sgpb-info-span {
|
2284 |
-
color: #787878;
|
2285 |
-
font-style: italic;
|
2286 |
-
font-weight: lighter;
|
2287 |
-
}
|
2288 |
-
|
2289 |
-
.sgpb-file-settings-available-wrapper,
|
2290 |
-
.sgpb-label-config-left {
|
2291 |
-
border-right: 1px solid #CCCCCC;
|
2292 |
-
}
|
2293 |
-
|
2294 |
-
.sgpb-file-settings-label {
|
2295 |
-
text-align: center;
|
2296 |
-
}
|
2297 |
-
|
2298 |
-
.sgpb-to-center-window {
|
2299 |
-
position: absolute;
|
2300 |
-
left: 50%;
|
2301 |
-
top: 50%;
|
2302 |
-
transform: translate(-50%, -50%);
|
2303 |
-
}
|
2304 |
-
|
2305 |
-
.sgpb-import-subscribers-close {
|
2306 |
-
margin-right: -8px !important;
|
2307 |
-
}
|
2308 |
-
|
2309 |
-
.sgpb-custom-button-close-popup {
|
2310 |
-
position: absolute;
|
2311 |
-
right: -3px;
|
2312 |
-
top: 6px;
|
2313 |
-
}
|
2314 |
-
|
2315 |
-
.sgpb-editor ::placeholder {
|
2316 |
-
color: #CCCCCC;
|
2317 |
-
font-style: italic;
|
2318 |
-
}
|
2319 |
-
|
2320 |
-
.reset-button {
|
2321 |
-
color: #0073aa !important;
|
2322 |
-
float: right !important;
|
2323 |
-
border: 1px solid #ccc !important;
|
2324 |
-
background-color: #f7f7f7 !important;
|
2325 |
-
padding: 4px 8px !important;
|
2326 |
-
font-size: 13px !important;
|
2327 |
-
cursor: pointer !important;
|
2328 |
-
border-radius: 2px !important;
|
2329 |
-
margin-right: 35px !important;
|
2330 |
-
margin-bottom: 5px !important;
|
2331 |
-
top: -3px !important;
|
2332 |
-
font-weight: 600 !important;
|
2333 |
-
}
|
2334 |
-
|
2335 |
-
.reset-button:hover {
|
2336 |
-
color: #f7f7f7 !important;
|
2337 |
-
background-color: #0073aa !important;
|
2338 |
-
}
|
2339 |
-
|
2340 |
-
.sgpb-editor {
|
2341 |
-
border: 1px solid #ddd;
|
2342 |
-
border-top: none;
|
2343 |
-
background-color: #f7f7f7;
|
2344 |
-
}
|
2345 |
-
|
2346 |
-
.editor-static-text {
|
2347 |
-
padding-top: 10px;
|
2348 |
-
border: none;
|
2349 |
-
}
|
2350 |
-
|
2351 |
-
.editor-static-text div {
|
2352 |
-
color: black;
|
2353 |
-
margin-left: 30px;
|
2354 |
-
margin-right: 30px;
|
2355 |
-
padding: 3px 8px;
|
2356 |
-
}
|
2357 |
-
|
2358 |
-
.editor-content {
|
2359 |
-
font-style: normal !important;
|
2360 |
-
padding: 10px;
|
2361 |
-
color: black !important;
|
2362 |
-
height: 100px;
|
2363 |
-
width: 100%;
|
2364 |
-
margin-top: 0px;
|
2365 |
-
margin-bottom: 20px !important;
|
2366 |
-
}
|
2367 |
-
|
2368 |
-
.editor-content-css {
|
2369 |
-
height: 400px;
|
2370 |
-
}
|
2371 |
-
|
2372 |
-
.sgpb-editor-options-tabs-wrapper {
|
2373 |
-
background-color: white !important;
|
2374 |
-
overflow: hidden;
|
2375 |
-
}
|
2376 |
-
|
2377 |
-
.sgpb-editor-options-tabs-wrapper input {
|
2378 |
-
color: black !important;
|
2379 |
-
border-radius: 0px !important;
|
2380 |
-
background-color: rgba(204, 204, 204, 0.4) !important;
|
2381 |
-
border: 1px solid #ddd !important;
|
2382 |
-
}
|
2383 |
-
|
2384 |
-
/* Change background color of buttons on hover */
|
2385 |
-
.sgpb-editor-options-tabs-wrapper input:hover {
|
2386 |
-
background-color: #cccccc !important;
|
2387 |
-
color: #636363 !important;
|
2388 |
-
}
|
2389 |
-
|
2390 |
-
/* Create an active/current tablink class */
|
2391 |
-
.sgpb-editor-options-tabs-wrapper .sgpb-active-tab {
|
2392 |
-
background-color: #f7f7f7 !important;
|
2393 |
-
box-shadow: none !important;
|
2394 |
-
border-bottom: 1px solid #f7f7f7 !important;
|
2395 |
-
}
|
2396 |
-
|
2397 |
-
.sgpb-editor-tab-links {
|
2398 |
-
background-color: #ffffff;
|
2399 |
-
}
|
2400 |
-
|
2401 |
-
.sgpb-editor-tab-2
|
2402 |
-
{
|
2403 |
-
border-left: none !important;
|
2404 |
-
}
|
2405 |
-
|
2406 |
-
/* notification center styles */
|
2407 |
-
.sgpb-notification-center-wrapper {
|
2408 |
-
margin-right: 21px;
|
2409 |
-
padding: 20px 20px 0 !important;
|
2410 |
-
border: 1px solid
|
2411 |
-
#e5e5e5;
|
2412 |
-
background-color:
|
2413 |
-
#fdfdfd;
|
2414 |
-
box-shadow: 0 1px 1px
|
2415 |
-
rgba(0, 0, 0, .04);
|
2416 |
-
}
|
2417 |
-
|
2418 |
-
.sgpb-notification-center-wrapper h3 {
|
2419 |
-
border-bottom: 1px solid #cccccc;
|
2420 |
-
padding-bottom: 15px;
|
2421 |
-
padding-left: 20px;
|
2422 |
-
}
|
2423 |
-
|
2424 |
-
.sgpb-notification-center-wrapper .dashicons-flag {
|
2425 |
-
color: #01B9FF;
|
2426 |
-
}
|
2427 |
-
|
2428 |
-
.sgpb-single-notification-wrapper {
|
2429 |
-
width:100%;
|
2430 |
-
display: inline-block;
|
2431 |
-
padding: 0 20px;
|
2432 |
-
}
|
2433 |
-
|
2434 |
-
.sgpb-each-notification-wrapper-js .sgpb-single-notification-wrapper:not(:first-child) {
|
2435 |
-
margin: 10px 0 0;
|
2436 |
-
}
|
2437 |
-
|
2438 |
-
.sgpb-single-notification-wrapper {
|
2439 |
-
margin-left: 2px !important;
|
2440 |
-
}
|
2441 |
-
|
2442 |
-
.sgpb-each-notification-wrapper-js .sgpb-single-notification-wrapper:not(:first-child) .sgpb-single-notification-close-btn {
|
2443 |
-
/*margin-top: 25px;*/
|
2444 |
-
}
|
2445 |
-
|
2446 |
-
.sgpb-single-notification {
|
2447 |
-
display: inline-block;
|
2448 |
-
width: 88%;
|
2449 |
-
min-height: 25px;
|
2450 |
-
float:left;
|
2451 |
-
line-height: 1.4;
|
2452 |
-
padding: 11px 15px;
|
2453 |
-
font-size: 14px;
|
2454 |
-
text-align: left;
|
2455 |
-
background-color: #fff;
|
2456 |
-
border-left: 4px solid #01B9FF;
|
2457 |
-
box-shadow: 0 1px 1px 0 rgba(0,0,0,.2);
|
2458 |
-
}
|
2459 |
-
|
2460 |
-
.sgpb-single-notification-close-btn {
|
2461 |
-
width: 8%;
|
2462 |
-
float:right;
|
2463 |
-
}
|
2464 |
-
|
2465 |
-
.sgpb-single-notification-wrapper .button.dismiss {
|
2466 |
-
flex: 0 0 45px;
|
2467 |
-
width: 45px;
|
2468 |
-
height: 45px;
|
2469 |
-
margin-left: 10px;
|
2470 |
-
line-height: inherit;
|
2471 |
-
padding: 0;
|
2472 |
-
outline: none;
|
2473 |
-
cursor: pointer;
|
2474 |
-
}
|
2475 |
-
|
2476 |
-
.sgpb-each-notification-wrapper-js {
|
2477 |
-
padding-bottom: 15px;
|
2478 |
-
}
|
2479 |
-
|
2480 |
-
.sgpb-disabled {
|
2481 |
-
opacity: 0.5;
|
2482 |
-
}
|
2483 |
-
|
2484 |
-
.sgpb-menu-item-notification {
|
2485 |
-
display: inline-block;
|
2486 |
-
vertical-align: top;
|
2487 |
-
box-sizing: border-box;
|
2488 |
-
margin: 1px 0 -1px 3px;
|
2489 |
-
padding: 0 5px;
|
2490 |
-
min-width: 18px;
|
2491 |
-
height: 18px;
|
2492 |
-
border-radius: 9px;
|
2493 |
-
background-color: #ca4a1f;
|
2494 |
-
color: #fff;
|
2495 |
-
font-size: 12px;
|
2496 |
-
line-height: 1.5;
|
2497 |
-
text-align: center;
|
2498 |
-
z-index: 26;
|
2499 |
-
}
|
2500 |
-
|
2501 |
-
.sgpb-support-notification-wrapper {
|
2502 |
-
text-align: center;
|
2503 |
-
}
|
2504 |
-
|
2505 |
-
.sgpb-support-notification-wrapper .btn-info {
|
2506 |
-
margin-right: 10px;
|
2507 |
-
}
|
2508 |
-
|
2509 |
-
.sgpb-support-notification-wrapper h4:nth-child(2) {
|
2510 |
-
margin-bottom: 25px;
|
2511 |
-
}
|
2512 |
-
|
2513 |
-
.sgpb-support-notification-dont-show {
|
2514 |
-
font-size: 12px !important;
|
2515 |
-
text-align: right;
|
2516 |
-
margin-top: 10px;
|
2517 |
-
}
|
2518 |
-
|
2519 |
-
.sgpb-support-notification-dont-show a {
|
2520 |
-
font-size: 12px !important;
|
2521 |
-
}
|
2522 |
-
|
2523 |
-
.sgpb-review-description .sgrb-review-h2 {
|
2524 |
-
margin-top: 0 !important;
|
2525 |
-
}
|
2526 |
-
|
2527 |
-
.sgpb-hide-notification-at-all {
|
2528 |
-
float: right;
|
2529 |
-
}
|
2530 |
-
|
2531 |
-
.sgpb-hide-notification-at-all:hover {
|
2532 |
-
cursor: pointer;
|
2533 |
-
background-color: #cccccca3;
|
2534 |
-
}
|
1 |
+
.sgpb-dashboard-popup-count-wrapper{display:inline-block;margin:5px
|
2 |
+
5px 0 0;float:left}.sgpb-counter-wrapper{max-width:90px}.sgpb-reset-count-btn{float:right}.sgpb-clear{clear:both}.sgpb-popup-content-direction-right .sgpb-contact-admin-wrapper,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
.sgpb-popup-content-direction-right .sgpb-subscription-admin-wrapper,
|
4 |
.sgpb-forms-preview-direction,
|
5 |
.sgpb-forms-preview-direction input[type="url"],
|
6 |
+
.sgpb-forms-preview-direction input[type="email"]{direction:rtl !important;text-align:right !important}.sg-hide-condition-row{display:none !important}.sgpb-wrapper .wp-picker-clear{display:none}.xdsoft_datetimepicker{z-index:999999 !important}.sgpb-wrapper
|
7 |
+
.tab{border-radius:3px}.sgpb-static-padding-top{padding-top:4px}.sgpb-wrapper .sgpb-slider-wrapper{margin-top:4px !important}.sgpb-wrapper .sgpb-slider-wrapper .js-popup-overlay-opacity,
|
8 |
+
.sgpb-wrapper .sgpb-slider-wrapper .js-popup-content-opacity{margin-top:3px !important}.sgpb-align-center{text-align:center}.sgpb-input-max-3{width:70px !important}.radio-btn-fix{margin-top:0 !important;margin-right:5px !important;margin-left:2px !important}.sgpb-align-center{text-align:center}.sg-hide,.sgpb-hide,.sg-hide-element{display:none}.sg-full-width{width:100%}.sgpb-hidden-auto-close-row{width:103% !important}.col-xs-6 .sgpb-pro-button{font-size:22px;padding:3px
|
9 |
+
10px;font-weight:normal;margin-top:16px;margin-right:0 !important;float:right}.themes-preview{border:0px
|
10 |
+
solid red;width:240px;height:130px;margin-top:1px;margin-left:40%;display:block;position:absolute;z-index:9999999999999999}.theme-preview-1{background-image:url("../img/theme1.jpg");background-size:240px 130px}.theme-preview-2{background-image:url("../img/theme2.jpg");background-size:240px 130px}.theme-preview-3{background-image:url("../img/theme3.jpg");background-size:240px 130px}.theme-preview-4{background-image:url("../img/theme4.jpg");background-size:240px 130px}.theme-preview-5{background-image:url("../img/theme5.jpg");background-size:240px 130px}.theme-preview-6{background-image:url("../img/theme6.jpg");background-size:240px 130px}.fixed-wrapper{max-width:248px;width:100%;height:191px;display:inline-block;margin-top:4px;margin-left:15px}.js-popup-fixed{width:100%;display:none}.fix-wrapper-style{width:38.5%;display:inline-block}.js-fixed-position-style{width:31.85%;height:53px;float:left;cursor:pointer}#fixed-position2,#fixed-position4,#fixed-position8,#fixed-position6{float:left;width:31.85%;height:53px}#fixed-position1{border:1px
|
11 |
+
solid #ccc}#fixed-position2{border-bottom:1px solid #ccc;border-top:1px solid #ccc}#fixed-position3{border:1px
|
12 |
+
solid #ccc}#fixed-position6{border-left:1px solid #ccc;border-right:1px solid #ccc}#fixed-position9{border-left:1px solid #ccc;border-bottom:1px solid #ccc;border-right:1px solid #ccc;border-top:1px solid #ccc}#fixed-position8{border-left:1px solid #ccc;border-bottom:1px solid #ccc;border-top:1px solid #ccc}#fixed-position7{border-top:1px solid #ccc;border-left:1px solid #ccc;border-bottom:1px solid #ccc}#fixed-position4{border-right:1px solid #ccc;border-left:1px solid #ccc}.sgpb-color-picker-wrapper
|
13 |
+
a{text-decoration:none !important}.sgpb-color-picker-wrapper .iris-picker{z-index:99999}.sgpb-color-picker-wrapper .wp-picker-container
|
14 |
+
a{height:24px}.popups-div{width:200px;height:200px;float:left;margin-right:10px;margin-bottom:10px;background-color:#DEDEDE;background-size:100%;transition:all .1s ease-in-out;position:relative}.popups-div:hover{background-color:#CDCDCD;transform:scale(1.02)}.sgpb-type-icon{height:115px;margin-top:20px;background-size:contain;background-repeat:no-repeat;background-position:42px}.sgpb-type-text-wrapper{text-align:center}.sgpb-type-text{font-size:23px;margin:14px
|
15 |
+
0 0 0 !important;color:#000 !important}.sgpb-more-ideas{background-image:url("../img/moreIdeas.png")}.image-popup{background-image:url("../img/imageTypeIcon.png")}.pdf-popup,.pdf-popup-pro{background-image:url("../img/pdfTypeIcon.png")}.sgpb-image-div{background-color:#87e37f !important}.sgpb-image-div:hover{background-color:#b1fdab !important}.create-popup-link{text-decoration:none !important}.create-popup-link:focus,.create-popup-link:hover,.create-popup-link:active{outline:0;border:none;-moz-outline-style:none;box-shadow:none}.html-popup{background-image:url("../img/htmlTypeIcon.png")}.sgpb-html-div{background-color:#f7941d !important}.sgpb-html-div:hover{background-color:#ffac49 !important}.sgpb-pdf-div{background-color:#dc1d00 !important}.sgpb-pdf-div:hover{background-color:#ea7766 !important}.fblike-popup{background-image:url("../img/facebookTypeIcon.png")}.sgpb-fblike-div{background-color:#4267b2 !important}.sgpb-fblike-div:hover{background-color:#648bdb !important}.iframe-popup{background-image:url("../img/iframeTypeIcon.png")}.sgpb-iframe-div{background-color:#b084bc !important}.sgpb-iframe-div:hover{background-color:#d4a6e0 !important}.gamification-popup,.gamification-popup-pro{background-image:url("../img/gamificationIcon.png")}.sgpb-gamification-div{background-color:#b084bc !important}.sgpb-gamification-div:hover{background-color:#d4a6e0 !important}.pushNotification-popup,.pushNotification-popup-pro{background-image:url("../img/pushNotificationTypeIcon.png")}.sgpb-extensions-wrapper .sgpb-pushNotification-div,
|
16 |
+
.sgpb-extensions-wrapper .sgpb-pushNotification-div:hover{background-color:rgba(212, 166, 224, 0.4) !important}.sgpb-pushNotification-div{background-color:#b084bc !important}.sgpb-pushNotification-div:hover{background-color:#d4a6e0 !important}.sgpb-extensions-wrapper .sgpb-iframe-div{background-color:rgba(212, 166, 224, 0.4) !important}.sgpb-free-extensions-wrapper .sgpb-pdf-div{background-color:#ea7766 !important}.sgpb-extensions-wrapper .sgpb-gamification-div{background-color:rgba(212, 166, 224, 0.4) !important}.video-popup{background-image:url("../img/videoTypeIcon.png")}.sgpb-video-div{background-color:#d22215 !important}.sgpb-video-div:hover{background-color:#f34133 !important}.sgpb-extensions-wrapper .sgpb-video-div{background-color:rgba(243, 65, 51, 0.4) !important}.ageRestriction-popup{background-image:url("../img/restrictionTyoeIcon.png")}.sgpb-ageRestriction-div{background-color:#f7cc44 !important}.sgpb-ageRestriction-div:hover{background-color:#ffdd73 !important}.ageVerification-popup,.ageVerification-popup-pro{background-image:url('../img/ageVerificationTypeIcon.png')}.sgpb-ageVerification-div{background-color:#d22215 !important}.sgpb-ageVerification-div:hover{background-color:#f34133 !important}.sgpb-extensions-wrapper .sgpb-ageRestriction-div{background-color:#ffdd73 !important}.countdown-popup{background-image:url("../img/CountdownTypeIcon.png")}.sgpb-countdown-div{background-color:#acd373 !important}.sgpb-countdown-div:hover{background-color:#cef398 !important}.sgpb-extensions-wrapper .sgpb-countdown-div{background-color:#cef398 !important}.social-popup{background-image:url("../img/socialTypeIcon.png")}.sgpb-social-div{background-color:#1da0f1 !important}.sgpb-social-div:hover{background-color:#38b3ff !important}.sgpb-extensions-wrapper .sgpb-social-div{background-color:rgba(29, 160, 241, 0.4) !important}.sg-exit-intent{background-image:url("../img/ExitIntent.png")}.subscription-popup{background-image:url("../img/subscriptionTypeIcon.png")}.subscriptionPlus-popup-pro{background-image:url("../img/subscriptionPlusTypeIcon.png")}.sgpb-subscription-div{background-color:#7eb540 !important}.sgpb-subscription-div:hover{background-color:#a1dd5e !important}.contactForm-popup{background-image:url("../img/contactFormTypeIcon.png")}.sgpb-contactForm-div{background-color:#f94563 !important}.sgpb-contactForm-div:hover{background-color:#ff5974 !important}.sgpb-mailchimp-div{background-color:#ffe01b !important}.sgpb-mailchimp-div:hover{background-color:#ffe74e !important}.sgpb-aweber-div{background-color:#0079c1 !important}.sgpb-aweber-div:hover{background-color:#42b1f3 !important}.sgpbAWeber-popup-pro,.aweber-popup{background-image:url("../img/aweberTypeIcon.png") !important}.scheduling-popup-pro{background-image:url("../img/schedulingTypeIcon.png") !important}.edd-popup-pro{background-image:url("../img/eddTypeIcon.png") !important}.sgpb-edd-div{background-color:#7dbfe9 !important}.geo-targeting-popup-pro{background-image:url("../img/geoTypeIcon.png") !important}.sgpb-geo-targeting-div{background-color:rgba(73, 185, 173, 0.4) !important}.sgpb-subscriptionPlus-div{background-color:rgba(23, 165, 143, 0.4) !important}.sgpb-sgpbAWeber-div{background-color:rgba(0,121,193,0.4)}.sgpb-sgpbAWeber-div:hover{background-color:rgba(0,121,193,0.4)}.sgpb-login-div{background-color:#396af7 !important}.sgpb-login-div:hover{background-color:#4d7afc !important}.sgpb-extensions-wrapper .sgpb-login-div{background-color:rgba(77, 122, 252, 0.4) !important}.sgpb-registration-div{background-color:#fe415b !important}.sgpb-registration-div:hover{background-color:#fe5a70 !important}.sgpb-extensions-wrapper .sgpb-registration-div{background-color:rgb(254, 65, 91, 0.4) !important}.login-popup-pro,.login-popup{background-image:url("../img/loginTypeIcon.png") !important}.registration-popup-pro,.registration-popup{background-image:url("../img/registrationTypeIcon.png") !important}.sgpbMailchimp-popup-pro,.mailchimp-popup{background-image:url("../img/mailchimpTypeIcon.png") !important}.sgpb-scheduling-div{background-color:#1976d3}.sgpb-scheduling-div:hover{background-color:#308ee8}.sgpb-extensions-wrapper .sgpb-scheduling-div{background-color:rgba(48, 142, 232, 0.4) !important}.sgpb-sgpbMailchimp-div{background-color:rgba(255, 224, 27, 0.4) !important}.sgpbAdBlock-popup-pro{background-image:url("../img/adBlockTypeIcon.png") !important}.sgpb-sgpbAdBlock-div{background-color:rgba(249,61,62,0.4)}.sgpb-sgpbAdBlock-div{background-color:rgba(249,61,62,0.4)}.sgpb-sgpbAdBlock-div:hover{background-color:rgba(249,61,62,0.4)}.sgpbScroll-popup-pro{background-image:url("../img/scroll.png") !important}.sgpb-sgpbScroll-div{background-color:rgba(73,185,173,0.4)}.sgpb-sgpbScroll-div:hover{background-color:rgba(73,185,173,0.4)}.sgpbInactivity-popup-pro{background-image:url("../img/inactivity.png") !important}.sgpb-sgpbInactivity-div{background-color:rgba(197,212,61,0.4)}.sgpb-sgpbInactivity-div:hover{background-color:rgba(197,212,61,0.4)}.sgpbRandom-popup-pro{background-image:url("../img/random.png") !important}.sgpb-sgpbRandom-div{background-color:rgba(225,240,85,0.4)}.sgpb-sgpbRandom-div:hover{background-color:rgba(225,240,85,0.4)}.advancedClosing-popup-pro{background-image:url("../img/advancesClosing.png") !important}.sgpb-advancedClosing-div{background-color:rgba(241,139,64,0.4)}.sgpb-advancedClosing-div:hover{background-color:rgba(241,139,64,0.4)}.sgpbAdvancedTargeting-popup-pro{background-image:url("../img/advancedTargeting.png") !important}.sgpb-sgpbAdvancedTargeting-div{background-color:rgba(245,110,107,0.4)}.sgpb-sgpbAdvancedTargeting-div:hover{background-color:rgba(245,110,107,0.4)}.sgpbAnalitics-popup-pro{background-image:url("../img/analyticsTypeIcon.png") !important}.sgpbRecentSales-popup-pro{background-image:url("../img/recentSales.png") !important}.sgpb-sgpbAnalitics-div{background-color:rgba(250,166,40,0.4)}.sgpb-sgpbAnalitics-div:hover{background-color:rgba(250,166,40,0.4)}.sgpbExitIntent-popup-pro{background-image:url("../img/exitIntentTypeIcon.png") !important}.recentSales-popup{background-image:url("../img/recentSales.png") !important}.sgpb-recentSales-div{background-color:#ff5723 !important}.sgpb-recentSales-div:hover{background-color:#ff6e41 !important}.sgpb-sgpbRecentSales-div{background-color:rgba(255, 87, 35, 0.4) !important}.sgpb-sgpbExitIntent-div{background-color:rgba(140,115,211,0.4)}.sgpb-sgpbExitIntent-div:hover{background-color:rgba(140,115,211,0.4)}.iframe-popup-pro{background-image:url("../img/iframeTypeIcon.png")}.iframe-popup-pro-wrapper{background-color:rgba(176,132,188,0.4)}.iframe-popup-pro-wrapper:hover{background-color:rgba(176,132,188,0.4)}.video-popup-pro{background-image:url("../img/videoTypeIcon.png")}.video-popup-pro-wrapper{background-color:rgba(210,34,21,0.26)}.video-popup-pro-wrapper:hover{background-color:rgba(210,34,21,0.26)}.ageRestriction-popup-pro{background-image:url("../img/restrictionTyoeIcon.png")}.ageRestriction-popup-pro-wrapper{background-color:rgba(247,204,68,0.4)}.ageRestriction-popup-pro-wrapper:hover{background-color:rgba(247,204,68,0.4)}.countdown-popup-pro{background-image:url("../img/CountdownTypeIcon.png")}.countdown-popup-pro-wrapper{background-color:rgba(172, 211, 115, 0.4) !important}.countdown-popup-pro-wrapper:hover{background-color:rgba(172, 211, 115, 0.4) !important}.social-popup-pro{background-image:url("../img/socialTypeIcon.png")}.social-popup-pro-wrapper{background-color:rgba(2,116,179,0.4)}.social-popup-pro-wrapper:hover{background-color:rgba(2,116,179,0.4)}.contactForm-popup-pro{background-image:url("../img/contactFormTypeIcon.png")}.contactForm-popup-pro-wrapper{background-color:rgba(251,175,93,0.4)}.contactForm-popup-pro-wrapper:hover{background-color:rgba(251,175,93,0.4)}.Woo-popup,.sgpbWOO-popup-pro{background-image:url("../img/wooTypeIcon.png")}.sgpb-Woo-div,.sgpb-sgpbWOO-div{background-color:#a46497 !important}.sgpb-Woo-div:hover,.sgpb-sgpbWOO-div:hover{background-color:#cb7fbb !important}.sgpb-extensions-wrapper .sgpb-sgpbWOO-div{background-color:#cb7fbb !important}.sgpb-popup-type-pro-ribbon{background-image:url(../img/probadge.png);position:absolute;top:-5px;right:-5px;width:71px;height:40px;background-size:cover}.sgpb-popup-type-free-pro-ribbon{background-image:url(../img/freeProbadge.png);position:absolute;top:-5px;right:-5px;width:71px;height:40px;background-size:cover}.sg-rules-or{border-top:2px dashed #ddd;line-height:1;text-align:center;margin:15px
|
17 |
+
0 5px}.sgpb-wrapper.sgpb-settings input[type="checkbox"]{margin-top:2px !important}.sgpb-wrapper.sgpb-settings .sgpb-info-icon-align{margin-top:6px !important}.sgpb-wrapper.sgpb-settings .hndle.ui-sortable-handle.js-special-title{font-weight:600}.sgpb-wrapper.sgpb-settings
|
18 |
+
h2{margin-bottom:20px}.sgpb-wrapper input[type="radio"]:checked:before{margin:3px
|
19 |
+
3px 0 !important}.sgpb-wrapper input[type="checkbox"]:focus{outline:0
|
20 |
+
!important}.sgpb-wrapper input[type=checkbox]:checked:before{margin:-4px 0 0 -5px}.sg-col-md{display:inline-block;width:150px}.sg-rules-or
|
21 |
+
span{background:#fff;position:relative;top:-8px;padding:2px
|
22 |
+
10px}.sgpb-wrapper
|
23 |
+
div.tab{overflow:hidden;border:1px
|
24 |
+
solid #ccc;background-color:#f1f1f1}.sgpb-wrapper div.tab
|
25 |
+
button{background-color:inherit;float:left;border:none;outline:none;cursor:pointer;padding:14px
|
26 |
+
16px;transition:0.3s}.sgpb-wrapper div.tab button:hover{background-color:#ddd}.sgpb-wrapper div.tab button.sgpb-active{background-color:#ccc}.sgpb-wrapper
|
27 |
+
.tabcontent{display:none;padding:6px
|
28 |
+
12px;border:1px
|
29 |
+
solid #ccc;border-top:none}.sgpb-tab-content-options{padding:20px
|
30 |
+
5px}.js-sgpb-popup-themes{margin-right:8px !important}.sgpb-image-popup-headline{margin-top:27px !important;margin-bottom:41px !important;text-align:center !important;font:17px arial !important}.sgpb-image-uploader-wrapper{margin:0
|
31 |
+
auto;width:82%;text-align:center}.sgpb-show-image-container,.sgpb-show-gamification-image-container{width:222px;height:127px;background-color:#F8F8F8;margin:14px
|
32 |
+
auto;background-size:contain;background-position:center center;background-repeat:no-repeat}.sgpb-show-button-image-container,.sgpb-show-sales-image-container,.sgpb-show-gamification-image-container,.sgpb-show-background-image-container{background-color:#F8F8F8;background-size:contain;background-position:center center;background-repeat:no-repeat;border:1px
|
33 |
+
solid #ccc;border-radius:3px}.sgpb-show-button-image-container,.sgpb-show-gamification-image-container,.sgpb-show-sales-image-container{width:35px;height:35px}.sgpb-show-background-image-container{width:300px;height:135px}.sgpb-show-gamification-image-container{margin-top:0px}.sgpb-no-image{display:block;font:13px Arial;margin:0
|
34 |
+
auto;text-align:center;padding-top:56px}.sgpb-inline-block{display:inline-block}.sgpb-button-text .form-control,.sgpb-full-width.form-control{height:29px !important;padding:6px
|
35 |
+
12px !important;width:100% !important}.sgpb-full-width{width:100%}.sgpb-close-btn-change-image-wrapper{max-width:120px}.sgpb-close-btn-image-wrapper{max-width:40px}.sgpb-video-url-input{width:100%}.sgpb-switch{position:relative;display:inline-block;width:60px;height:34px}.sgpb-switch
|
36 |
+
input{display:none}.sgpb-slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;-webkit-transition: .4s;transition: .4s;-ms-transform:scale(0.8,0.8);-webkit-transform:scale(0.8,0.8);transform:scale(0.8,0.8)}.sgpb-slider:before{position:absolute;content:"";height:26px;width:26px;left:4px;bottom:4px;background-color:white;-webkit-transition: .4s;transition: .4s}input:checked+.sgpb-slider{background-color:#2196F3}input:focus+.sgpb-slider{box-shadow:0 0 1px #2196F3}input:checked+.sgpb-slider:before{-webkit-transform:translateX(26px);-ms-transform:translateX(26px);transform:translateX(26px)}.sgpb-slider.sgpb-round{border-radius:34px}.sgpb-slider.sgpb-round:before{border-radius:50%}.sgpb-slider.sgpb-round{border-radius:34px}.sgpb-slider.sgpb-round:before{border-radius:50%}.sg-condition-value-wrapper
|
37 |
+
input{width:100%}.sgpb-full-width.form-control{height:28px !important;padding:2px
|
38 |
+
12px !important;width:100% !important}.sgpb-full-width-events.form-control{height:28px !important;padding:6px
|
39 |
+
12px !important;width:100% !important;font-size:13px}.sgpb-same-origin-warning{margin-top:10px}.sgpb-restriction-unit{vertical-align:sub !important}.sgpb-wrapper .col-md-4.sgpb-close-btn-change-image-wrapper{min-width:120px !important}.sgpb-wrapper .col-md-4.sgpb-background-change-image-wrapper{min-width:120px}#sgpb-subscriber-data,#sgpb-add-new-subscriber,.sgpb-subscribers-popup,#sgpb-export-subscribers{position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,0.6);z-index:9999;opacity:0;pointer-events:none}#sgpb-add-new-subscriber:target,#sgpb-subscriber-data:target{opacity:1;pointer-events:auto}.sgpb-add-new-subscribers-wrapper{width:30%;min-width:310px;background-color:white;padding:15px;box-sizing:border-box;border-radius:8px;overflow:auto;margin:13% auto}.sgpb-subscriber-data-wrapper{width:30%;min-width:310px;background-color:white;padding:15px;box-sizing:border-box;border-radius:8px;overflow:auto}.sgpb-add-subscriber-popup-btns,.sgpb-subscriber-popup-btns{width:100%}.sgpb-add-subscriber-popup-close-btn{float:right;margin-top:-10px;margin-right:5px;cursor:pointer}.sg-admin-popup-labeles{margin:4px
|
40 |
+
0px;display:inline-block}.sg-bottom-hr{margin-top:14px;margin-bottom:13px}.sgpb-add-subscriber-input{width:100%;border-radius:5px}.sgpb-add-subscriber-input
|
41 |
+
option{padding:3px}.sgpb-add-subscriber-input option:checked{background:#18bc9c linear-gradient(0deg, #18bc9c 0%, #18bc9c 100%)}.sgpb-email-error,.sgpb-subscription-error,.sgpb-newsletter-validation{color:#f00;margin-top:-10px;margin-bottom:15px;font-weight:bold}.sgpb-subscribers-add-spinner{margin-top:12px;margin-left:-55px}.sgpb-subscribers-remove-spinner{margin-bottom:-5px;margin-right:5px}.sg-successfully{float:right;background-color:#dff0d8;border-radius:5px;color:#3c763d;padding:5px;margin-top:6px;margin-right:5px}.sg-newslatter-submit-wrapper{margin-top:15px}.sgpb-subscriber-export-radio{padding-top:9px}.subscribers-wrapper .widefat .check-column{padding:12px
|
42 |
+
0 0px 2px}.sgpb-subs-delete-button-wrapper{text-align:right;margin-bottom:5px}.sgpb-show-subscriber-data-popup,.sgpb-show-subscriber-data-popup:target,.sgpb-show-add-subscriber-popup,.sgpb-show-add-subscriber-popup:target{opacity:1 !important;pointer-events:auto !important}.sgpb-add-subscriber-header-column{min-width:210px}.sgpb-add-subscriber-header-column
|
43 |
+
h1{margin-top:0}.sgpb-add-subscriber-header-spinner-column{min-width:70px}.postbox-container .select2-container{z-index:999;min-width:46px}.select2-container--default .select2-selection--single .select2-selection__rendered{line-height:25px !important}.select2-container--default .select2-selection--single,.select2-dropdown.select2-dropdown--below{border:2px
|
44 |
+
solid #dce4ec !important}.select2-dropdown.select2-dropdown--below{border-top:none !important}.sgpb-options-content{padding:10px}#wpbody-content>div.sgpb-wrapper.sgpb-newsletter>div{margin:0
|
45 |
+
!important}.sgpb-label-align-center-sm{padding-top:12px}.sgpb-wrapper .postbox-container{float:none !important}.sgpb-wrapper .js-special-title{cursor:inherit !important}.sgpb-alert{padding:15px;margin-bottom:20px;border:1px
|
46 |
+
solid transparent;border-radius:4px}.sgpb-alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.sgpb-align-center-with-input{display:inline-block;padding-top:7px}.sgpb-align-center-with-checkbox{display:inline-block;padding-top:1px}.sgpb-checkbox-clear-margin{margin-top:0 !important}.sgpb-input-right-label{margin-top:7px;display:inline-block}.sgpb-reset-checkbox-margin-top{margin-top:0 !important}.js-preview-sound{color:#3879D9;margin:5px
|
47 |
+
-2px;cursor:pointer}.sgpb-info-icon{color:#17a2b8}.sgpb-info-icon-align{margin-left:5px;margin-top:3px}.sgpb-event-row .sgpb-info-icon-align{margin-top:0}.sgpb-info-text{color:#3879D9;font:14px Arial;width:200px;border:1px
|
48 |
+
solid #ccc;position:absolute;min-width:20px;min-height:13px;display:none;margin-top:7px;margin-left:12px;box-shadow:0px 0px 5px #ccc;padding:5px;z-index:9999;background-color:white;border-radius:5px}@media (min-width: 990px){.sgpb-info-wrapper{padding:0
|
49 |
+
!important}}.sgpb-info-wrapper .sgpb-info-icon-align{vertical-align:text-top !important;margin-left:0 !important}.sgpb-col-no-padding{padding:0
|
50 |
+
!important}.sgpb-info-icon-align-inputs{margin-top:15px !important}.sgpb-info-text-inputs{margin-left:41px !important;margin-top:-18px !important}.sgpb-event-row{min-height:50px}.sgpb-box-target .sgpb-event-row:not(:first-child),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
.sgpb-box-autoresponder-events .sgpb-event-row:not(:first-child),
|
52 |
.sgpb-box-woocommerce-special-events .sgpb-event-row:not(:first-child),
|
53 |
.sgpb-box-conditions .sgpb-event-row:not(:first-child),
|
54 |
+
.sgpb-box-events .sgpb-event-row:not(:first-child){border-top:1px dashed #ccc;margin-top:20px;padding-top:10px}.sgpb-box-woocommerce-special-events .sgpb-event-row:not(:last-child) .sg-rules-add-button-wrapper.sgpb-static-padding-top{display:none}.sgpb-box-autoresponder-events .sgpb-event-row:not(:last-child) .sg-rules-add-button-wrapper.sgpb-static-padding-top{display:none}.col-md-2.sg-rules-edit-button-wrapper{max-width:144px}.sg-rules-add-rule:before,.sg-rules-edit-rule:before,.sg-rules-delete-rule:before{top:4px;font:400 17px/1 dashicons;position:relative}.sg-rules-add-rule:before{content:"\f132"}.sg-rules-edit-rule:before{content:"\f111"}.sg-rules-delete-rule:before{content:"\f158"}.sg-rules-add-button-wrapper.sgpb-static-padding-top,.sg-rules-edit-button-wrapper.sgpb-static-padding-top,.sg-rules-delete-button-wrapper.sgpb-static-padding-top{padding-top:23px}.sg-rules-add-button-wrapper.sgpb-static-padding-top{max-width:88px}.sg-rules-edit-button-wrapper.sgpb-static-padding-top{max-width:114px}.sgpb-events-spinner:before{content:""}.sgpb-event-row
|
55 |
+
.btn{line-height:22px;border-radius:4px}.sgpb-hide-add-button{display:none !important}.sgpb-tab-content-options
|
56 |
+
label{margin-bottom:0}.sgpb-label-align-with-select2{padding-top:8px}@media (max-width: 990px){.sg-rules-edit-button-wrapper.sgpb-static-padding-top{max-width:90px;width:30%}.sg-rules-add-button-wrapper.sgpb-static-padding-top{max-width:65px}}@media (max-width: 1240px){.sgpb-add-new-row{padding-right:15px}}@media (max-width: 768px){.col-sm-2.sg-rules-edit-button-wrapper .sg-rules-edit-rule{float:unset}.col-sm-2.sg-rules-edit-button-wrapper{width:12%;float:left;min-width:90px}.col-sm-1.sg-rules-delete-button-wrapper{width:12%;float:left}}.sgpb-preview-animation,.sgpb-preview-close-animation{background-image:url(../img/preview-eye.png);width:30px;height:30px;display:inline-block;cursor:pointer}#js-open-animation-effect,#js-close-animation-effect{display:none;width:150px;height:150px;margin-left:5px;background-image:url(../img/animationImage.png);background-size:150px 150px;position:absolute;top:-46px;left:72px;z-index:9999}#sgpb-hidden-media-popup .sgpb-add-subscriber-popup-close-btn,
|
57 |
+
#sgpb-js-variable-wrapper .sgpb-add-subscriber-popup-close-btn{margin-top:0}.sgpb-insert-popup-btns,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
.sgpb-insert-popup + span,
|
59 |
+
.sgpb-insert-popup-event .select2-container{width:100%}.sgpb-insert-popup-btns{border:1px
|
60 |
+
solid #ccc}#sgpb-hidden-media-popup .sgpb-static-padding-top,
|
61 |
+
#sgpb-js-variable-wrapper .sgpb-add-subscriber-popup-close-btn{padding-top:10px}#sgpb-hidden-media-popup .col-sm-8 .select2.select2-container:nth-child(n+3){display:none}#sgpb-custom-button-wrapper .col-md-6 .select2.select2-container:nth-child(n+3){display:none}#sgpb-custom-button-wrapper{overflow-x:hidden}.sgpb-insert-popup-title-border{width:100%;height:1px;background-color:#ccc;margin:10px
|
62 |
+
0}.sgpb-label-error{color:red}.sgpb-change-sound-btn{line-height:11px !important;min-width:110px !important}.sgpb-reset-sound-btn{line-height:11px !important;min-width:75px !important;width:100% !important;max-width:110px !important}.sgpb-sub-option{padding-left:30px !important;font-weight:500 !important}.sgpb-sub-option-label{padding-left:30px !important}.sgpb-double-sub-option{padding-left:60px !important;font-weight:lighter !important}.sgpb-double-sub-option-label{padding-left:60px !important;font-weight:500 !important}.sgpb-sub-option-label
|
63 |
+
label{font-weight:500 !important}.sgpb-hidden-full-width-column{padding-left:27px !important}#sgpb-subs-gdpr-text{padding:6px
|
64 |
+
12px !important;width:100% !important;font-size:13px}.sgpb-gdpr-label{padding-top:17px}.sgpb-license-status{pointer-events:none !important}.sgpb-each-option-section{margin-top:30px}.sgpb-live-preview-wrapper,.sgpb-relative-position{position:relative}.sgpb-loader{position:absolute;height:100%;width:100%;top:0;background:white}@import url(https://fonts.googleapis.com/css?family=Open+Sans);.sgpb-container{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.sgpb-banner{position:relative;padding:10px
|
65 |
+
20px;animation:loader 1s cubic-bezier(0.5, 0.1, 0.15, 1) alternate infinite;background-color:#ccc}@keyframes
|
66 |
+
loader{0%{letter-spacing:-1px}100%{letter-spacing:15px}}.sgpb-banner::before{content:'';width:100%;height:100%;position:absolute;z-index:-1;top:0;left:0;transform:skewX(-15deg);background-color:#ccc}.sgpb-banner-left,.sgpb-banner-right{width:60px;height:100%;position:absolute;z-index:-2;bottom:-30%;transform:skewX(-15deg);background-color:#ccc}.sgpb-banner-left{animation:sub-banner-left 1s cubic-bezier(0.5, 0.1, 0.15, 1) alternate infinite}@keyframes sub-banner-left{0%{right:82%}100%{right:90%}}.sgpb-banner-right{animation:sub-banner-right 1s cubic-bezier(0.5, 0.1, 0.15, 1) alternate infinite}@keyframes sub-banner-right{0%{left:82%}100%{left:90%}}.sgpb-banner-left::before,.sgpb-banner-right::before{content:'';width:0;height:0;position:absolute;top:-1px;border:22px
|
67 |
+
solid;border-color:transparent}.sgpb-banner-left::before{left:-1px;border-left-color:#fff}.sgpb-banner-right::before{right:-1px;border-right-color:#fff}.sgpb-pro-wrapper,.sgpb-free-wrapper,.sgpb-free-extensions-wrapper,.sgpb-extensions-wrapper{max-width:850px;margin:0
|
68 |
+
auto;display:block}.col-md-2.sgpb-pro-options-row{min-width:80px !important}.sgpb-pro-label-sm{line-height:16px !important;margin-top:2px !important}.sgpb-pro-options-row{width:12% !important}.sgpb-pro-options-label-wrapper{padding:0
|
69 |
+
!important}.sgpb-pro-label-metabox:hover{color:#fff;background-color:#c87f0a;border-color:#be780a;text-decoration:none}.sgpb-pro-label-metabox{font-size:13px !important;color:#fff;background-color:#f39c12;display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;text-decoration:none;border:1px
|
70 |
+
solid transparent;border-width:2px;padding:1px
|
71 |
+
5px;font-size:13px;line-height:16px;border-radius:3px;margin-left:12px}.sgpb-other-pro-options{position:absolute;background-color:rgba(255, 255, 255, 0.6);width:99%;height:96%;top:0;margin:0px
|
72 |
+
-8px}.sgpb-add-new-label{text-align:left}.sgpb-extensions-section-wrapper{max-width:830px;margin-top:40px;margin-bottom:30px;border-bottom:1px solid #DEDEDE;width:100%;display:inline-block}.sgpb-add-new-row{max-width:1080px;border-bottom:1px solid #DEDEDE;margin-bottom:30px;margin-left:0;margin-right:0}.sgpb-add-new-wrapper{overflow:hidden;max-width:830px}.sgpb-dropdown-label{margin-top:4px}.sgpb-pro-button{background-color:#E0252C !important;border-color:#E0252C !important;margin-right:12px !important}.sgpb-pro-button:hover{background-color:#c41c22 !important;border-color:#c41c22 !important}.sgpb-extensions-notices,.sgpb-alert-problem{position:relative;display:block;margin-top:35px}.sgpb-extension-notice-close,.sgpb-problem-notice-close{position:absolute !important;right:20px;top:-10px;font-size:20px;cursor:pointer}.sgpb-extension-notice-dont-show,.sgpb-problem-notice-dont-show{text-align:right;padding-right:9px;cursor:pointer !important}.sgpb-extensions-list{display:inline-block;margin-top:0px;margin-bottom:0px}.sgpb-license-status.btn-success{background-color:#5cb85c;border-color:#5cb85c}.sgpb-license-wrapper
|
73 |
+
.row{margin:0
|
74 |
+
!important}.sgpb-margin-right-status{margin-right:12px !important}.sgpb-margin-right-status-not-active{margin-right:35px}@font-face{font-family:'popupbuilder-icon';src:url('fonts/popupbuilder-icon.eot');src:url('fonts/popupbuilder-icon.eot?#iefix') format('embedded-opentype'),
|
75 |
+
url('fonts/popupbuilder-icon.woff') format('woff'),
|
76 |
+
url('fonts/popupbuilder-icon.ttf') format('truetype'),
|
77 |
+
url('fonts/popupbuilder-icon.svg#popupbuilder-icon') format('svg');font-weight:normal;font-style:normal}[class*='dashicons-menu-icon-sgpb']:before{display:inline-block;font-family:'popupbuilder-icon';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.dashicons-menu-icon-sgpb:before{content:'\0041';padding-left:5px !important}@font-face{font-family:'popupbuilder-button-icon';src:url('fonts/popupbuilder-button-icon.eot');src:url('fonts/popupbuilder-button-icon.eot?#iefix') format('embedded-opentype'),
|
78 |
+
url('fonts/popupbuilder-button-icon.woff') format('woff'),
|
79 |
+
url('fonts/popupbuilder-button-icon.ttf') format('truetype'),
|
80 |
+
url('fonts/popupbuilder-button-icon.svg#popupbuilder-button-icon') format('svg');font-weight:normal;font-style:normal}[class*='dashicons-menu-icon-sgpb-button']:before{display:inline-block;font-family:'popupbuilder-button-icon';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.dashicons-menu-icon-sgpb-button:before{content:'\0042';margin:0px
|
81 |
+
9px 0px -5px !important}.dashicons-menu-icon-sgpb-button{padding-left:5px !important}.dashicons-menu-icon-sgpb-button+span{vertical-align:middle !important}.sgpb-banner-logo-link{display:block}.sgpb-banner-logo-link:focus,.sgpb-banner-logo-link:hover,.sgpb-banner-logo-link:active{outline:0;border:none;-moz-outline-style:none;box-shadow:none}.sgpb-dont-show-again{position:absolute;bottom:7px;right:22px;cursor:pointer;color:#fff !important}.sgpb-dont-show-again:hover{color:#30c2f3 !important}.sgpb-dont-show-again-license-notice{position:absolute;bottom:7px;right:15px;cursor:pointer;color:#000 !important;font-size:13px;font-style:italic}.sgpb-dont-show-again-license-notice:hover{color:#0073aa !important}.sgpb-info-close{float:right;color:#fff;position:absolute;right:21px;font-size:30px;top:4px;cursor:pointer;transform:rotate(45deg);margin:-3px -3px 0}.sgpb-info-close:hover{color:#30c2f3}.sgpb-info-text-white{color:#fff !important;margin-right:10px}.sgpb-banner-links{color:#30c2f3 !important;text-decoration:none !important;font-size:18px !important;font-weight:lighter !important}.sgpb-banner-links:hover{color:#00a0d2 !important}.sgpb-info-menu{text-align:left !important;list-style-type:none !important;margin-top:23px !important;margin-left:6px !important}.sgpb-info-menu
|
82 |
+
li{padding-bottom:8px !important}.sgpb-banner-wrapper{clear:both;overflow:hidden;padding-top:20px;margin-right:20px}.sgpb-review-popup-banner-wrapper{clear:both;overflow:hidden;padding-top:20px;margin:10px
|
83 |
+
20px 10px 0;background-color:#fff}.sgpb-review-popup-banner-wrapper h1,
|
84 |
+
.sgpb-review-popup-banner-wrapper
|
85 |
+
h2{font-size:22px;font-weight:normal;line-height:1.384}.sgpb-review-popup-banner-wrapper
|
86 |
+
h1{margin:0}.sgpb-upgrade-banner-btn{width:85% !important;margin-top:80px !important;border-radius:40px !important;color:#49bbef !important;font-size:1.8vw !important;background-color:#2a283b !important;line-height:50px !important}.sgpb-upgrade-banner-btn:hover{background-color:#322e59 !important}.sgpb-main-rate-us-banner-wrapper .col-xs-4.sgpb-rate-us-banner-2 .col-xs-12{text-align:center}.sgpb-rate-us-banner-1,.sgpb-rate-us-banner-2,.sgpb-rate-us-banner-3{width:100%;height:200px;background-repeat:no-repeat;background-size:100% 200px;display:inline-block}.sgpb-rate-us-banner-1{background-image:url(../img/rateUsBanner1.png)}.sgpb-rate-us-banner-2{background-color:#00c4ee;border-top:1px solid #2b2744;border-bottom:1px solid #2b2744}.sgpb-rate-us-banner-3{background-image:url(../img/rateUsBanner3.png)}.sgpb-banner-logo{width:100%;height:180px;background-image:url(../img/bannerLogo.png);background-repeat:no-repeat;background-size:contain;display:inline-block;margin-top:10px;margin-left:26px;background-position:center}.sgpb-dashicons-heart:before,.sgpb-dashicons-megaphone:before,.sgpb-dashicons-admin-plugins:before,.sgpb-dashicons-editor-help:before,.sgpb-dashicons-email-alt:before{background-size:100%;display:inline-block;width:20px;height:20px;content:''}.sgpb-dashicons-heart:before{background-image:url('../img/bannerHeart.png')}.sgpb-dashicons-megaphone:before{background-image:url('../img/bannerMegaphone.png')}.sgpb-dashicons-admin-plugins:before{background-image:url('../img/bannerSupport.png');width:20px;background-size:20px 17px;height:17px}.sgpb-dashicons-editor-help:before{background-image:url('../img/bannerQuestionMark.png')}.sgpb-dashicons-email-alt:before{background-image:url('../img/bannerEmail.png');width:20px;background-size:20px 17px;height:17px}.sgpb-sgpbAdvancedTargeting-div
|
87 |
+
p{font-size:20px}@media (max-width: 840px){.sgpb-rate-us-banner-1{display:none}.sgpb-rate-us-banner-2,.sgpb-rate-us-banner-3{width:50% !important}}@media (max-width: 1224px){.sgpb-event-row .col-sm-3{width:100% !important}}@media (max-width: 560px){.sgpb-rate-us-banner-2{display:none}.sgpb-rate-us-banner-3{width:100% !important}.sgpb-rate-us-banner-3 .sgpb-upgrade-banner-btn{font-size:16px !important;margin-top:-18px !important;width:37% !important;display:inline !important;background-color:#49bbef !important;color:#2a283b !important;padding:0
|
88 |
+
!important;float:right;margin-right:10px}}@media (max-width: 320px){.sgpb-rate-us-banner-3 .sgpb-upgrade-banner-btn{font-size:12px !important}}.sgpb-advanced-closing-pro-label{background-color:#F08B3F !important}.sgpb-advanced-closing-pro-label:hover{background-color:#F2A15E !important;border-color:#F2A15E !important}.sgpb-scheduling-pro-label{background-color:#1C76D3 !important}.sgpb-scheduling-pro-label:hover{background-color:#308DE8 !important;border-color:#308DE8 !important}.sgpb-import-wrapper
|
89 |
+
input{display:inline-block !important}.sgpb-import-wrapper
|
90 |
+
.submit{float:none !important;padding:0
|
91 |
+
!important}.sgpb-media-btn-wrapper{background-color:#f3f3f4}.sgpb-gutenberg-logo{max-height:130px !important}.sgpb-gutenberg-shortcode-wrapper{height:30px !important;display:contents;background-color:#f3f3f4 !important}.sgpb-gutenberg-shortcode-input{width:100% !important}.sgpb-gutenberg-form-selector-wrapper .components-base-control{width:100% !important}.subscribers-wrapper .tablenav.top,
|
92 |
+
.subscribers-wrapper
|
93 |
+
.tablenav.bottom{margin-left:-8px !important}.mce-widget .dashicons-menu-icon-sgpb:before{padding-left:0px !important}.sgpb-text-warning{color:#007bff !important}.sgpb-info-span{color:#787878;font-style:italic;font-weight:lighter}.sgpb-file-settings-available-wrapper,.sgpb-label-config-left{border-right:1px solid #CCC}.sgpb-file-settings-label{text-align:center}.sgpb-to-center-window{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.sgpb-import-subscribers-close{margin-right:-8px !important}.sgpb-custom-button-close-popup{position:absolute;right:-3px;top:6px}.sgpb-editor ::placeholder{color:#CCC;font-style:italic}.reset-button{color:#0073aa !important;float:right !important;border:1px
|
94 |
+
solid #ccc !important;background-color:#f7f7f7 !important;padding:4px
|
95 |
+
8px !important;font-size:13px !important;cursor:pointer !important;border-radius:2px !important;margin-right:35px !important;margin-bottom:5px !important;top:-3px !important;font-weight:600 !important}.reset-button:hover{color:#f7f7f7 !important;background-color:#0073aa !important}.sgpb-editor{border:1px
|
96 |
+
solid #ddd;border-top:none;background-color:#f7f7f7}.editor-static-text{padding-top:10px;border:none}.editor-static-text
|
97 |
+
div{color:black;margin-left:30px;margin-right:30px;padding:3px
|
98 |
+
8px}.editor-content{font-style:normal !important;padding:10px;color:black !important;height:100px;width:100%;margin-top:0px;margin-bottom:20px !important}.editor-content-css{height:400px}.sgpb-editor-options-tabs-wrapper{background-color:white !important;overflow:hidden}.sgpb-editor-options-tabs-wrapper
|
99 |
+
input{color:black !important;border-radius:0px !important;background-color:rgba(204, 204, 204, 0.4) !important;border:1px
|
100 |
+
solid #ddd !important}.sgpb-editor-options-tabs-wrapper input:hover{background-color:#ccc !important;color:#636363 !important}.sgpb-editor-options-tabs-wrapper .sgpb-active-tab{background-color:#f7f7f7 !important;box-shadow:none !important;border-bottom:1px solid #f7f7f7 !important}.sgpb-editor-tab-links{background-color:#fff}.sgpb-editor-tab-2{border-left:none !important}.sgpb-notification-center-wrapper{margin-right:21px;padding:20px
|
101 |
+
20px 0 !important;border:1px
|
102 |
+
solid
|
103 |
+
#e5e5e5;background-color:#fdfdfd;box-shadow:0 1px 1px
|
104 |
+
rgba(0, 0, 0, .04)}.sgpb-notification-center-wrapper
|
105 |
+
h3{border-bottom:1px solid #ccc;padding-bottom:15px;padding-left:20px}.sgpb-notification-center-wrapper .dashicons-flag{color:#01B9FF}.sgpb-single-notification-wrapper{width:100%;display:inline-block;padding:0
|
106 |
+
20px}.sgpb-each-notification-wrapper-js .sgpb-single-notification-wrapper:not(:first-child){margin:10px
|
107 |
+
0 0}.sgpb-single-notification-wrapper{margin-left:2px !important}.sgpb-each-notification-wrapper-js .sgpb-single-notification-wrapper:not(:first-child) .sgpb-single-notification-close-btn{}.sgpb-single-notification{display:inline-block;width:88%;min-height:25px;float:left;line-height:1.4;padding:11px
|
108 |
+
15px;font-size:14px;text-align:left;background-color:#fff;border-left:4px solid #01B9FF;box-shadow:0 1px 1px 0 rgba(0,0,0,.2)}.sgpb-single-notification-close-btn{width:8%;float:right}.sgpb-single-notification-wrapper
|
109 |
+
.button.dismiss{flex:0 0 45px;width:45px;height:45px;margin-left:10px;line-height:inherit;padding:0;outline:none;cursor:pointer}.sgpb-each-notification-wrapper-js{padding-bottom:15px}.sgpb-disabled{opacity:0.5}.sgpb-menu-item-notification{display:inline-block;vertical-align:top;box-sizing:border-box;margin:1px
|
110 |
+
0 -1px 3px;padding:0
|
111 |
+
5px;min-width:18px;height:18px;border-radius:9px;background-color:#ca4a1f;color:#fff;font-size:12px;line-height:1.5;text-align:center;z-index:26}.sgpb-support-notification-wrapper{text-align:center}.sgpb-support-notification-wrapper .btn-info{margin-right:10px}.sgpb-support-notification-wrapper h4:nth-child(2){margin-bottom:25px}.sgpb-support-notification-dont-show{font-size:12px !important;text-align:right;margin-top:10px}.sgpb-support-notification-dont-show
|
112 |
+
a{font-size:12px !important}.sgpb-review-description .sgrb-review-h2{margin-top:0 !important}.sgpb-hide-notification-at-all{float:right}.sgpb-hide-notification-at-all:hover{cursor:pointer;background-color:#cccccca3}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public/css/sgPopupRangeSlider.css
CHANGED
@@ -1 +1,17 @@
|
|
1 |
-
.slider-container {
|
2 |
width: 300px;
|
3 |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
4 |
height: 10px;
|
5 |
position: relative;
|
6 |
position: absolute;
|
7 |
height: 100%;
|
8 |
position: absolute;
|
9 |
width: 10px;
|
10 |
height: 10px;
|
11 |
background-color: red;
|
12 |
cursor: col-resize;
|
13 |
opacity: 1;
|
14 |
z-index: 2;
|
15 |
z-index: 3;
|
16 |
position: absolute;
|
17 |
top: -17px;
|
18 |
font-size: 8px;
|
19 |
background: white;
|
20 |
white-space: nowrap;
|
21 |
line-height: 1;
|
22 |
z-index: 10;
|
23 |
cursor: pointer;
|
24 |
position: absolute;
|
25 |
width: 100%;
|
26 |
height: 100%;
|
27 |
z-index: 1;
|
28 |
top: 2px;
|
29 |
position: relative;
|
30 |
position: absolute;
|
31 |
height: 5px;
|
32 |
border-left: 1px solid #999;
|
33 |
font-size: 0;
|
34 |
font-size: 9px;
|
35 |
text-decoration: none;
|
36 |
position: absolute;
|
37 |
left: 0;
|
38 |
top: 5px;
|
39 |
color: #999;
|
40 |
line-height: 1;
|
41 |
cursor: auto;
|
42 |
height: 5px;
|
43 |
border-radius: 2px;
|
44 |
background-color: #eeeeee;
|
45 |
background-color: #e7e7e7;
|
46 |
background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
|
47 |
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
|
48 |
background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
|
49 |
background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
|
50 |
background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
|
51 |
background-repeat: repeat-x;
|
52 |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
|
53 |
border-radius: 2px;
|
54 |
background-color: #a1fad0;
|
55 |
background-image: -moz-linear-gradient(top, #bdfade, #76fabc);
|
56 |
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bdfade), to(#76fabc));
|
57 |
background-image: -webkit-linear-gradient(top, #bdfade, #76fabc);
|
58 |
background-image: -o-linear-gradient(top, #bdfade, #76fabc);
|
59 |
background-image: linear-gradient(to bottom, #bdfade, #76fabc);
|
60 |
background-repeat: repeat-x;
|
61 |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbdfade', endColorstr='#ff76fabc', GradientType=0);
|
62 |
width: 14px;
|
63 |
height: 14px;
|
64 |
top: -5px;
|
65 |
-webkit-box-sizing: border-box;
|
66 |
-moz-box-sizing: border-box;
|
67 |
box-sizing: border-box;
|
68 |
border-radius: 10px;
|
69 |
border: 1px solid #AAA;
|
70 |
background-color: #e7e7e7;
|
71 |
background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
|
72 |
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
|
73 |
background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
|
74 |
background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
|
75 |
background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
|
76 |
background-repeat: repeat-x;
|
77 |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
|
78 |
color: #999;
|
79 |
color: #333;
|
80 |
border-left: 1px solid #e5e5e5;
|
81 |
color: #999;
|
82 |
height: 5px;
|
83 |
border-radius: 2px;
|
84 |
background-color: #eeeeee;
|
85 |
background-color: #e7e7e7;
|
86 |
background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
|
87 |
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
|
88 |
background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
|
89 |
background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
|
90 |
background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
|
91 |
background-repeat: repeat-x;
|
92 |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
|
93 |
border-radius: 2px;
|
94 |
background-color: #92c1f9;
|
95 |
background-image: -moz-linear-gradient(top, #b1d1f9, #64a8f9);
|
96 |
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b1d1f9), to(#64a8f9));
|
97 |
background-image: -webkit-linear-gradient(top, #b1d1f9, #64a8f9);
|
98 |
background-image: -o-linear-gradient(top, #b1d1f9, #64a8f9);
|
99 |
background-image: linear-gradient(to bottom, #b1d1f9, #64a8f9);
|
100 |
background-repeat: repeat-x;
|
101 |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb1d1f9', endColorstr='#ff64a8f9', GradientType=0);
|
102 |
width: 14px;
|
103 |
height: 14px;
|
104 |
top: -5px;
|
105 |
-webkit-box-sizing: border-box;
|
106 |
-moz-box-sizing: border-box;
|
107 |
box-sizing: border-box;
|
108 |
border-radius: 10px;
|
109 |
border: 1px solid #AAA;
|
110 |
background-color: #e7e7e7;
|
111 |
background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
|
112 |
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
|
113 |
background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
|
114 |
background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
|
115 |
background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
|
116 |
background-repeat: repeat-x;
|
117 |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
|
118 |
color: #999;
|
119 |
color: #333;
|
120 |
border-left: 1px solid #e5e5e5;
|
121 |
color: #999;
|
122 |
background-color: #a9acb1;
|
123 |
border-radius: 15px;
|
124 |
display: block;
|
125 |
height: 4px;
|
126 |
position: relative;
|
127 |
width: 100%;
|
128 |
background-color: #017afd;
|
129 |
border-radius: 15px;
|
130 |
display: block;
|
131 |
height: 100%;
|
132 |
width: 0;
|
133 |
background-color: #fff;
|
134 |
border-radius: 100%;
|
135 |
cursor: move;
|
136 |
height: 20px;
|
137 |
left: 0;
|
138 |
top: -10px;
|
139 |
position: absolute;
|
140 |
width: 20px;
|
141 |
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
|
142 |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
|
143 |
height: 20px;
|
144 |
padding-top: 4px;
|
145 |
position: absolute;
|
146 |
text-align: center;
|
147 |
top: -9px;
|
148 |
display: none;
|
149 |
background-color: #f7fcff;
|
150 |
border-radius: 5px;
|
151 |
font-size: 0.8em;
|
152 |
height: 23px;
|
153 |
right: -41px;
|
154 |
box-sizing: border-box;
|
155 |
padding-top: 2px;
|
156 |
position: absolute;
|
157 |
text-align: center;
|
158 |
top: -10px;
|
159 |
width: 35px;
|
160 |
-webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.15);
|
161 |
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.15);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
width: 300px;
|
2 |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
3 |
height: 10px;
|
4 |
position: relative;
|
5 |
position: absolute;
|
6 |
height: 100%;
|
7 |
position: absolute;
|
8 |
width: 10px;
|
9 |
height: 10px;
|
10 |
background-color: red;
|
11 |
cursor: col-resize;
|
12 |
opacity: 1;
|
13 |
z-index: 2;
|
14 |
z-index: 3;
|
15 |
position: absolute;
|
16 |
top: -17px;
|
17 |
font-size: 8px;
|
18 |
background: white;
|
19 |
white-space: nowrap;
|
20 |
line-height: 1;
|
21 |
z-index: 10;
|
22 |
cursor: pointer;
|
23 |
position: absolute;
|
24 |
width: 100%;
|
25 |
height: 100%;
|
26 |
z-index: 1;
|
27 |
top: 2px;
|
28 |
position: relative;
|
29 |
position: absolute;
|
30 |
height: 5px;
|
31 |
border-left: 1px solid #999;
|
32 |
font-size: 0;
|
33 |
font-size: 9px;
|
34 |
text-decoration: none;
|
35 |
position: absolute;
|
36 |
left: 0;
|
37 |
top: 5px;
|
38 |
color: #999;
|
39 |
line-height: 1;
|
40 |
cursor: auto;
|
41 |
height: 5px;
|
42 |
border-radius: 2px;
|
43 |
background-color: #eeeeee;
|
44 |
background-color: #e7e7e7;
|
45 |
background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
|
46 |
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
|
47 |
background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
|
48 |
background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
|
49 |
background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
|
50 |
background-repeat: repeat-x;
|
51 |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
|
52 |
border-radius: 2px;
|
53 |
background-color: #a1fad0;
|
54 |
background-image: -moz-linear-gradient(top, #bdfade, #76fabc);
|
55 |
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bdfade), to(#76fabc));
|
56 |
background-image: -webkit-linear-gradient(top, #bdfade, #76fabc);
|
57 |
background-image: -o-linear-gradient(top, #bdfade, #76fabc);
|
58 |
background-image: linear-gradient(to bottom, #bdfade, #76fabc);
|
59 |
background-repeat: repeat-x;
|
60 |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbdfade', endColorstr='#ff76fabc', GradientType=0);
|
61 |
width: 14px;
|
62 |
height: 14px;
|
63 |
top: -5px;
|
64 |
-webkit-box-sizing: border-box;
|
65 |
-moz-box-sizing: border-box;
|
66 |
box-sizing: border-box;
|
67 |
border-radius: 10px;
|
68 |
border: 1px solid #AAA;
|
69 |
background-color: #e7e7e7;
|
70 |
background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
|
71 |
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
|
72 |
background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
|
73 |
background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
|
74 |
background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
|
75 |
background-repeat: repeat-x;
|
76 |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
|
77 |
color: #999;
|
78 |
color: #333;
|
79 |
border-left: 1px solid #e5e5e5;
|
80 |
color: #999;
|
81 |
height: 5px;
|
82 |
border-radius: 2px;
|
83 |
background-color: #eeeeee;
|
84 |
background-color: #e7e7e7;
|
85 |
background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
|
86 |
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
|
87 |
background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
|
88 |
background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
|
89 |
background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
|
90 |
background-repeat: repeat-x;
|
91 |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
|
92 |
border-radius: 2px;
|
93 |
background-color: #92c1f9;
|
94 |
background-image: -moz-linear-gradient(top, #b1d1f9, #64a8f9);
|
95 |
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b1d1f9), to(#64a8f9));
|
96 |
background-image: -webkit-linear-gradient(top, #b1d1f9, #64a8f9);
|
97 |
background-image: -o-linear-gradient(top, #b1d1f9, #64a8f9);
|
98 |
background-image: linear-gradient(to bottom, #b1d1f9, #64a8f9);
|
99 |
background-repeat: repeat-x;
|
100 |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb1d1f9', endColorstr='#ff64a8f9', GradientType=0);
|
101 |
width: 14px;
|
102 |
height: 14px;
|
103 |
top: -5px;
|
104 |
-webkit-box-sizing: border-box;
|
105 |
-moz-box-sizing: border-box;
|
106 |
box-sizing: border-box;
|
107 |
border-radius: 10px;
|
108 |
border: 1px solid #AAA;
|
109 |
background-color: #e7e7e7;
|
110 |
background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
|
111 |
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
|
112 |
background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
|
113 |
background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
|
114 |
background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
|
115 |
background-repeat: repeat-x;
|
116 |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
|
117 |
color: #999;
|
118 |
color: #333;
|
119 |
border-left: 1px solid #e5e5e5;
|
120 |
color: #999;
|
121 |
background-color: #a9acb1;
|
122 |
border-radius: 15px;
|
123 |
display: block;
|
124 |
height: 4px;
|
125 |
position: relative;
|
126 |
width: 100%;
|
127 |
background-color: #017afd;
|
128 |
border-radius: 15px;
|
129 |
display: block;
|
130 |
height: 100%;
|
131 |
width: 0;
|
132 |
background-color: #fff;
|
133 |
border-radius: 100%;
|
134 |
cursor: move;
|
135 |
height: 20px;
|
136 |
left: 0;
|
137 |
top: -10px;
|
138 |
position: absolute;
|
139 |
width: 20px;
|
140 |
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
|
141 |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
|
142 |
height: 20px;
|
143 |
padding-top: 4px;
|
144 |
position: absolute;
|
145 |
text-align: center;
|
146 |
top: -9px;
|
147 |
display: none;
|
148 |
background-color: #f7fcff;
|
149 |
border-radius: 5px;
|
150 |
font-size: 0.8em;
|
151 |
height: 23px;
|
152 |
right: -41px;
|
153 |
box-sizing: border-box;
|
154 |
padding-top: 2px;
|
155 |
position: absolute;
|
156 |
text-align: center;
|
157 |
top: -10px;
|
158 |
width: 35px;
|
159 |
-webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.15);
|
160 |
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.15);
|
161 |
+
.slider-container{width:300px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}.slider-container .back-bar{height:10px;position:relative}.slider-container .back-bar .selected-bar{position:absolute;height:100%}.slider-container .back-bar
|
162 |
+
.pointer{position:absolute;width:10px;height:10px;background-color:red;cursor:col-resize;opacity:1;z-index:2}.slider-container .back-bar .pointer.last-active{z-index:3}.slider-container .back-bar .pointer-label{position:absolute;top:-17px;font-size:8px;background:white;white-space:nowrap;line-height:1}.slider-container .back-bar
|
163 |
+
.focused{z-index:10}.slider-container .clickable-dummy{cursor:pointer;position:absolute;width:100%;height:100%;z-index:1}.slider-container
|
164 |
+
.scale{top:2px;position:relative}.slider-container .scale
|
165 |
+
span{position:absolute;height:5px;border-left:1px solid #999;font-size:0}.slider-container .scale
|
166 |
+
ins{font-size:9px;text-decoration:none;position:absolute;left:0;top:5px;color:#999;line-height:1}.slider-container.slider-readonly .clickable-dummy,
|
167 |
+
.pointer{cursor:auto}.theme-green .back-bar{height:5px;border-radius:2px;background-color:#eee;background-color:#e7e7e7;background-image:-moz-linear-gradient(top, #eeeeee, #dddddd);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));background-image:-webkit-linear-gradient(top, #eeeeee, #dddddd);background-image:-o-linear-gradient(top, #eeeeee, #dddddd);background-image:linear-gradient(to bottom, #eeeeee, #dddddd);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0)}.theme-green .back-bar .selected-bar{border-radius:2px;background-color:#a1fad0;background-image:-moz-linear-gradient(top, #bdfade, #76fabc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#bdfade), to(#76fabc));background-image:-webkit-linear-gradient(top, #bdfade, #76fabc);background-image:-o-linear-gradient(top, #bdfade, #76fabc);background-image:linear-gradient(to bottom, #bdfade, #76fabc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbdfade', endColorstr='#ff76fabc', GradientType=0)}.theme-green .back-bar
|
168 |
+
.pointer{width:14px;height:14px;top:-5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-radius:10px;border:1px
|
169 |
+
solid #AAA;background-color:#e7e7e7;background-image:-moz-linear-gradient(top, #eeeeee, #dddddd);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));background-image:-webkit-linear-gradient(top, #eeeeee, #dddddd);background-image:-o-linear-gradient(top, #eeeeee, #dddddd);background-image:linear-gradient(to bottom, #eeeeee, #dddddd);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0)}.theme-green .back-bar .pointer-label{color:#999}.theme-green .back-bar
|
170 |
+
.focused{color:#333}.theme-green .scale
|
171 |
+
span{border-left:1px solid #e5e5e5}.theme-green .scale
|
172 |
+
ins{color:#999}.theme-blue .back-bar{height:5px;border-radius:2px;background-color:#eee;background-color:#e7e7e7;background-image:-moz-linear-gradient(top, #eeeeee, #dddddd);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));background-image:-webkit-linear-gradient(top, #eeeeee, #dddddd);background-image:-o-linear-gradient(top, #eeeeee, #dddddd);background-image:linear-gradient(to bottom, #eeeeee, #dddddd);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0)}.theme-blue .back-bar .selected-bar{border-radius:2px;background-color:#92c1f9;background-image:-moz-linear-gradient(top, #b1d1f9, #64a8f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#b1d1f9), to(#64a8f9));background-image:-webkit-linear-gradient(top, #b1d1f9, #64a8f9);background-image:-o-linear-gradient(top, #b1d1f9, #64a8f9);background-image:linear-gradient(to bottom, #b1d1f9, #64a8f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb1d1f9', endColorstr='#ff64a8f9', GradientType=0)}.theme-blue .back-bar
|
173 |
+
.pointer{width:14px;height:14px;top:-5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-radius:10px;border:1px
|
174 |
+
solid #AAA;background-color:#e7e7e7;background-image:-moz-linear-gradient(top, #eeeeee, #dddddd);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));background-image:-webkit-linear-gradient(top, #eeeeee, #dddddd);background-image:-o-linear-gradient(top, #eeeeee, #dddddd);background-image:linear-gradient(to bottom, #eeeeee, #dddddd);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0)}.theme-blue .back-bar .pointer-label{color:#999}.theme-blue .back-bar
|
175 |
+
.focused{color:#333}.theme-blue .scale
|
176 |
+
span{border-left:1px solid #e5e5e5}.theme-blue .scale
|
177 |
+
ins{color:#999}.range-bar{background-color:#a9acb1;border-radius:15px;display:block;height:4px;position:relative;width:100%}.range-quantity{background-color:#017afd;border-radius:15px;display:block;height:100%;width:0}.range-handle{background-color:#fff;border-radius:100%;cursor:move;height:20px;left:0;top:-10px;position:absolute;width:20px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.4);box-shadow:0 1px 3px rgba(0,0,0,0.4)}.range-min,.range-max{height:20px;padding-top:4px;position:absolute;text-align:center;top:-9px;display:none}.display-box{background-color:#f7fcff;border-radius:5px;font-size:0.8em;height:23px;right:-41px;box-sizing:border-box;padding-top:2px;position:absolute;text-align:center;top:-10px;width:35px;-webkit-box-shadow:inset 0 0 10px rgba(0, 0, 0, 0.15);box-shadow:inset 0 0 10px rgba(0, 0, 0, 0.15)}
|
public/css/sgbp-bootstrap.css
CHANGED
@@ -1,12 +1,6 @@
|
|
1 |
-
.sgpb-wrapper
|
2 |
-
|
3 |
-
|
4 |
-
-webkit-text-size-adjust: 100%;
|
5 |
-
}
|
6 |
-
.sgpb-wrapper body {
|
7 |
-
margin: 0;
|
8 |
-
}
|
9 |
-
.sgpb-wrapper article,
|
10 |
.sgpb-wrapper aside,
|
11 |
.sgpb-wrapper details,
|
12 |
.sgpb-wrapper figcaption,
|
@@ -18,1144 +12,110 @@
|
|
18 |
.sgpb-wrapper menu,
|
19 |
.sgpb-wrapper nav,
|
20 |
.sgpb-wrapper section,
|
21 |
-
.sgpb-wrapper
|
22 |
-
|
23 |
-
}
|
24 |
-
.sgpb-wrapper audio,
|
25 |
.sgpb-wrapper canvas,
|
26 |
.sgpb-wrapper progress,
|
27 |
-
.sgpb-wrapper
|
28 |
-
|
29 |
-
|
30 |
-
}
|
31 |
-
.sgpb-wrapper
|
32 |
-
|
33 |
-
|
34 |
-
}
|
35 |
-
.sgpb-wrapper
|
36 |
-
.sgpb-wrapper
|
37 |
-
|
38 |
-
}
|
39 |
-
.sgpb-wrapper
|
40 |
-
|
41 |
-
}
|
42 |
-
.sgpb-wrapper
|
43 |
-
.sgpb-wrapper
|
44 |
-
|
45 |
-
}
|
46 |
-
.sgpb-wrapper
|
47 |
-
|
48 |
-
}
|
49 |
-
.sgpb-wrapper b,
|
50 |
-
.sgpb-wrapper strong {
|
51 |
-
font-weight: bold;
|
52 |
-
}
|
53 |
-
.sgpb-wrapper dfn {
|
54 |
-
font-style: italic;
|
55 |
-
}
|
56 |
-
.sgpb-wrapper h1 {
|
57 |
-
font-size: 2em;
|
58 |
-
margin: 0.67em 0;
|
59 |
-
}
|
60 |
-
.sgpb-wrapper mark {
|
61 |
-
background: #ff0;
|
62 |
-
color: #000;
|
63 |
-
}
|
64 |
-
.sgpb-wrapper small {
|
65 |
-
font-size: 80%;
|
66 |
-
}
|
67 |
-
.sgpb-wrapper sub,
|
68 |
-
.sgpb-wrapper sup {
|
69 |
-
font-size: 75%;
|
70 |
-
line-height: 0;
|
71 |
-
position: relative;
|
72 |
-
vertical-align: baseline;
|
73 |
-
}
|
74 |
-
.sgpb-wrapper sup {
|
75 |
-
top: -0.5em;
|
76 |
-
}
|
77 |
-
.sgpb-wrapper sub {
|
78 |
-
bottom: -0.25em;
|
79 |
-
}
|
80 |
-
.sgpb-wrapper img {
|
81 |
-
border: 0;
|
82 |
-
}
|
83 |
-
.sgpb-wrapper svg:not(:root) {
|
84 |
-
overflow: hidden;
|
85 |
-
}
|
86 |
-
.sgpb-wrapper figure {
|
87 |
-
margin: 1em 40px;
|
88 |
-
}
|
89 |
-
.sgpb-wrapper hr {
|
90 |
-
-webkit-box-sizing: content-box;
|
91 |
-
-moz-box-sizing: content-box;
|
92 |
-
box-sizing: content-box;
|
93 |
-
height: 0;
|
94 |
-
}
|
95 |
-
.sgpb-wrapper pre {
|
96 |
-
overflow: auto;
|
97 |
-
}
|
98 |
-
.sgpb-wrapper code,
|
99 |
.sgpb-wrapper kbd,
|
100 |
.sgpb-wrapper pre,
|
101 |
-
.sgpb-wrapper
|
102 |
-
|
103 |
-
font-size: 1em;
|
104 |
-
}
|
105 |
-
.sgpb-wrapper button,
|
106 |
.sgpb-wrapper input,
|
107 |
.sgpb-wrapper optgroup,
|
108 |
.sgpb-wrapper select,
|
109 |
-
.sgpb-wrapper
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
}
|
114 |
-
.sgpb-wrapper button {
|
115 |
-
overflow: visible;
|
116 |
-
}
|
117 |
-
.sgpb-wrapper button,
|
118 |
-
.sgpb-wrapper select {
|
119 |
-
text-transform: none;
|
120 |
-
}
|
121 |
-
.sgpb-wrapper button,
|
122 |
.sgpb-wrapper html input[type="button"],
|
123 |
.sgpb-wrapper input[type="reset"],
|
124 |
-
.sgpb-wrapper input[type="submit"]
|
125 |
-
|
126 |
-
|
127 |
-
}
|
128 |
-
.sgpb-wrapper
|
129 |
-
.sgpb-wrapper
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
.sgpb-wrapper
|
134 |
-
|
135 |
-
|
136 |
-
}
|
137 |
-
.sgpb-wrapper
|
138 |
-
|
139 |
-
}
|
140 |
-
.sgpb-wrapper
|
141 |
-
.sgpb-wrapper input[type="radio"] {
|
142 |
-
-webkit-box-sizing: border-box;
|
143 |
-
-moz-box-sizing: border-box;
|
144 |
-
box-sizing: border-box;
|
145 |
-
padding: 0;
|
146 |
-
}
|
147 |
-
.sgpb-wrapper input[type="number"]::-webkit-inner-spin-button,
|
148 |
-
.sgpb-wrapper input[type="number"]::-webkit-outer-spin-button {
|
149 |
-
height: auto;
|
150 |
-
}
|
151 |
-
.sgpb-wrapper input[type="search"] {
|
152 |
-
-webkit-appearance: textfield;
|
153 |
-
-webkit-box-sizing: content-box;
|
154 |
-
-moz-box-sizing: content-box;
|
155 |
-
box-sizing: content-box;
|
156 |
-
}
|
157 |
-
.sgpb-wrapper input[type="search"]::-webkit-search-cancel-button,
|
158 |
-
.sgpb-wrapper input[type="search"]::-webkit-search-decoration {
|
159 |
-
-webkit-appearance: none;
|
160 |
-
}
|
161 |
-
.sgpb-wrapper fieldset {
|
162 |
-
border: 1px solid #c0c0c0;
|
163 |
-
margin: 0 2px;
|
164 |
-
padding: 0.35em 0.625em 0.75em;
|
165 |
-
}
|
166 |
-
.sgpb-wrapper legend {
|
167 |
-
border: 0;
|
168 |
-
padding: 0;
|
169 |
-
}
|
170 |
-
.sgpb-wrapper textarea {
|
171 |
-
overflow: auto;
|
172 |
-
}
|
173 |
-
.sgpb-wrapper optgroup {
|
174 |
-
font-weight: bold;
|
175 |
-
}
|
176 |
-
.sgpb-wrapper table {
|
177 |
-
border-collapse: collapse;
|
178 |
-
border-spacing: 0;
|
179 |
-
}
|
180 |
-
.sgpb-wrapper td,
|
181 |
-
.sgpb-wrapper th {
|
182 |
-
padding: 0;
|
183 |
-
}
|
184 |
-
@media print {
|
185 |
-
.sgpb-wrapper *,
|
186 |
-
.sgpb-wrapper *:before,
|
187 |
-
.sgpb-wrapper *:after {
|
188 |
-
background: transparent !important;
|
189 |
-
color: #000 !important;
|
190 |
-
-webkit-box-shadow: none !important;
|
191 |
-
box-shadow: none !important;
|
192 |
-
text-shadow: none !important;
|
193 |
-
}
|
194 |
-
.sgpb-wrapper a,
|
195 |
-
.sgpb-wrapper a:visited {
|
196 |
-
text-decoration: underline;
|
197 |
-
}
|
198 |
-
.sgpb-wrapper a[href]:after {
|
199 |
-
content: " (" attr(href) ")";
|
200 |
-
}
|
201 |
-
.sgpb-wrapper abbr[title]:after {
|
202 |
-
content: " (" attr(title) ")";
|
203 |
-
}
|
204 |
-
.sgpb-wrapper a[href^="#"]:after,
|
205 |
-
.sgpb-wrapper a[href^="javascript:"]:after {
|
206 |
-
content: "";
|
207 |
-
}
|
208 |
-
.sgpb-wrapper pre,
|
209 |
-
.sgpb-wrapper blockquote {
|
210 |
-
border: 1px solid #999;
|
211 |
-
page-break-inside: avoid;
|
212 |
-
}
|
213 |
-
.sgpb-wrapper thead {
|
214 |
-
display: table-header-group;
|
215 |
-
}
|
216 |
-
.sgpb-wrapper tr,
|
217 |
-
.sgpb-wrapper img {
|
218 |
-
page-break-inside: avoid;
|
219 |
-
}
|
220 |
-
.sgpb-wrapper img {
|
221 |
-
max-width: 100% !important;
|
222 |
-
}
|
223 |
-
.sgpb-wrapper p,
|
224 |
-
.sgpb-wrapper h2,
|
225 |
-
.sgpb-wrapper h3 {
|
226 |
-
orphans: 3;
|
227 |
-
widows: 3;
|
228 |
-
}
|
229 |
-
.sgpb-wrapper h2,
|
230 |
-
.sgpb-wrapper h3 {
|
231 |
-
page-break-after: avoid;
|
232 |
-
}
|
233 |
-
.sgpb-wrapper .navbar {
|
234 |
-
display: none;
|
235 |
-
}
|
236 |
-
.sgpb-wrapper .btn > .caret,
|
237 |
-
.sgpb-wrapper .dropup > .btn > .caret {
|
238 |
-
border-top-color: #000 !important;
|
239 |
-
}
|
240 |
-
.sgpb-wrapper .label {
|
241 |
-
border: 1px solid #000;
|
242 |
-
}
|
243 |
-
.sgpb-wrapper .table {
|
244 |
-
border-collapse: collapse !important;
|
245 |
-
}
|
246 |
-
.sgpb-wrapper .table td,
|
247 |
-
.sgpb-wrapper .table th {
|
248 |
-
background-color: #fff !important;
|
249 |
-
}
|
250 |
-
.sgpb-wrapper .table-bordered th,
|
251 |
-
.sgpb-wrapper .table-bordered td {
|
252 |
-
border: 1px solid #ddd !important;
|
253 |
-
}
|
254 |
-
}
|
255 |
-
.sgpb-wrapper .glyphicon {
|
256 |
-
position: relative;
|
257 |
-
top: 1px;
|
258 |
-
display: inline-block;
|
259 |
-
font-family: 'Glyphicons Halflings';
|
260 |
-
font-style: normal;
|
261 |
-
font-weight: normal;
|
262 |
-
line-height: 1;
|
263 |
-
-webkit-font-smoothing: antialiased;
|
264 |
-
-moz-osx-font-smoothing: grayscale;
|
265 |
-
}
|
266 |
-
.sgpb-wrapper .glyphicon-asterisk:before {
|
267 |
-
content: "\002a";
|
268 |
-
}
|
269 |
-
.sgpb-wrapper .glyphicon-plus:before {
|
270 |
-
content: "\002b";
|
271 |
-
}
|
272 |
-
.sgpb-wrapper .glyphicon-euro:before,
|
273 |
-
.sgpb-wrapper .glyphicon-eur:before {
|
274 |
-
content: "\20ac";
|
275 |
-
}
|
276 |
-
.sgpb-wrapper .glyphicon-minus:before {
|
277 |
-
content: "\2212";
|
278 |
-
}
|
279 |
-
.sgpb-wrapper .glyphicon-cloud:before {
|
280 |
-
content: "\2601";
|
281 |
-
}
|
282 |
-
.sgpb-wrapper .glyphicon-envelope:before {
|
283 |
-
content: "\2709";
|
284 |
-
}
|
285 |
-
.sgpb-wrapper .glyphicon-pencil:before {
|
286 |
-
content: "\270f";
|
287 |
-
}
|
288 |
-
.sgpb-wrapper .glyphicon-glass:before {
|
289 |
-
content: "\e001";
|
290 |
-
}
|
291 |
-
.sgpb-wrapper .glyphicon-music:before {
|
292 |
-
content: "\e002";
|
293 |
-
}
|
294 |
-
.sgpb-wrapper .glyphicon-search:before {
|
295 |
-
content: "\e003";
|
296 |
-
}
|
297 |
-
.sgpb-wrapper .glyphicon-heart:before {
|
298 |
-
content: "\e005";
|
299 |
-
}
|
300 |
-
.sgpb-wrapper .glyphicon-star:before {
|
301 |
-
content: "\e006";
|
302 |
-
}
|
303 |
-
.sgpb-wrapper .glyphicon-star-empty:before {
|
304 |
-
content: "\e007";
|
305 |
-
}
|
306 |
-
.sgpb-wrapper .glyphicon-user:before {
|
307 |
-
content: "\e008";
|
308 |
-
}
|
309 |
-
.sgpb-wrapper .glyphicon-film:before {
|
310 |
-
content: "\e009";
|
311 |
-
}
|
312 |
-
.sgpb-wrapper .glyphicon-th-large:before {
|
313 |
-
content: "\e010";
|
314 |
-
}
|
315 |
-
.sgpb-wrapper .glyphicon-th:before {
|
316 |
-
content: "\e011";
|
317 |
-
}
|
318 |
-
.sgpb-wrapper .glyphicon-th-list:before {
|
319 |
-
content: "\e012";
|
320 |
-
}
|
321 |
-
.sgpb-wrapper .glyphicon-ok:before {
|
322 |
-
content: "\e013";
|
323 |
-
}
|
324 |
-
.sgpb-wrapper .glyphicon-remove:before {
|
325 |
-
content: "\e014";
|
326 |
-
}
|
327 |
-
.sgpb-wrapper .glyphicon-zoom-in:before {
|
328 |
-
content: "\e015";
|
329 |
-
}
|
330 |
-
.sgpb-wrapper .glyphicon-zoom-out:before {
|
331 |
-
content: "\e016";
|
332 |
-
}
|
333 |
-
.sgpb-wrapper .glyphicon-off:before {
|
334 |
-
content: "\e017";
|
335 |
-
}
|
336 |
-
.sgpb-wrapper .glyphicon-signal:before {
|
337 |
-
content: "\e018";
|
338 |
-
}
|
339 |
-
.sgpb-wrapper .glyphicon-cog:before {
|
340 |
-
content: "\e019";
|
341 |
-
}
|
342 |
-
.sgpb-wrapper .glyphicon-trash:before {
|
343 |
-
content: "\e020";
|
344 |
-
}
|
345 |
-
.sgpb-wrapper .glyphicon-home:before {
|
346 |
-
content: "\e021";
|
347 |
-
}
|
348 |
-
.sgpb-wrapper .glyphicon-file:before {
|
349 |
-
content: "\e022";
|
350 |
-
}
|
351 |
-
.sgpb-wrapper .glyphicon-time:before {
|
352 |
-
content: "\e023";
|
353 |
-
}
|
354 |
-
.sgpb-wrapper .glyphicon-road:before {
|
355 |
-
content: "\e024";
|
356 |
-
}
|
357 |
-
.sgpb-wrapper .glyphicon-download-alt:before {
|
358 |
-
content: "\e025";
|
359 |
-
}
|
360 |
-
.sgpb-wrapper .glyphicon-download:before {
|
361 |
-
content: "\e026";
|
362 |
-
}
|
363 |
-
.sgpb-wrapper .glyphicon-upload:before {
|
364 |
-
content: "\e027";
|
365 |
-
}
|
366 |
-
.sgpb-wrapper .glyphicon-inbox:before {
|
367 |
-
content: "\e028";
|
368 |
-
}
|
369 |
-
.sgpb-wrapper .glyphicon-play-circle:before {
|
370 |
-
content: "\e029";
|
371 |
-
}
|
372 |
-
.sgpb-wrapper .glyphicon-repeat:before {
|
373 |
-
content: "\e030";
|
374 |
-
}
|
375 |
-
.sgpb-wrapper .glyphicon-refresh:before {
|
376 |
-
content: "\e031";
|
377 |
-
}
|
378 |
-
.sgpb-wrapper .glyphicon-list-alt:before {
|
379 |
-
content: "\e032";
|
380 |
-
}
|
381 |
-
.sgpb-wrapper .glyphicon-lock:before {
|
382 |
-
content: "\e033";
|
383 |
-
}
|
384 |
-
.sgpb-wrapper .glyphicon-flag:before {
|
385 |
-
content: "\e034";
|
386 |
-
}
|
387 |
-
.sgpb-wrapper .glyphicon-headphones:before {
|
388 |
-
content: "\e035";
|
389 |
-
}
|
390 |
-
.sgpb-wrapper .glyphicon-volume-off:before {
|
391 |
-
content: "\e036";
|
392 |
-
}
|
393 |
-
.sgpb-wrapper .glyphicon-volume-down:before {
|
394 |
-
content: "\e037";
|
395 |
-
}
|
396 |
-
.sgpb-wrapper .glyphicon-volume-up:before {
|
397 |
-
content: "\e038";
|
398 |
-
}
|
399 |
-
.sgpb-wrapper .glyphicon-qrcode:before {
|
400 |
-
content: "\e039";
|
401 |
-
}
|
402 |
-
.sgpb-wrapper .glyphicon-barcode:before {
|
403 |
-
content: "\e040";
|
404 |
-
}
|
405 |
-
.sgpb-wrapper .glyphicon-tag:before {
|
406 |
-
content: "\e041";
|
407 |
-
}
|
408 |
-
.sgpb-wrapper .glyphicon-tags:before {
|
409 |
-
content: "\e042";
|
410 |
-
}
|
411 |
-
.sgpb-wrapper .glyphicon-book:before {
|
412 |
-
content: "\e043";
|
413 |
-
}
|
414 |
-
.sgpb-wrapper .glyphicon-bookmark:before {
|
415 |
-
content: "\e044";
|
416 |
-
}
|
417 |
-
.sgpb-wrapper .glyphicon-print:before {
|
418 |
-
content: "\e045";
|
419 |
-
}
|
420 |
-
.sgpb-wrapper .glyphicon-camera:before {
|
421 |
-
content: "\e046";
|
422 |
-
}
|
423 |
-
.sgpb-wrapper .glyphicon-font:before {
|
424 |
-
content: "\e047";
|
425 |
-
}
|
426 |
-
.sgpb-wrapper .glyphicon-bold:before {
|
427 |
-
content: "\e048";
|
428 |
-
}
|
429 |
-
.sgpb-wrapper .glyphicon-italic:before {
|
430 |
-
content: "\e049";
|
431 |
-
}
|
432 |
-
.sgpb-wrapper .glyphicon-text-height:before {
|
433 |
-
content: "\e050";
|
434 |
-
}
|
435 |
-
.sgpb-wrapper .glyphicon-text-width:before {
|
436 |
-
content: "\e051";
|
437 |
-
}
|
438 |
-
.sgpb-wrapper .glyphicon-align-left:before {
|
439 |
-
content: "\e052";
|
440 |
-
}
|
441 |
-
.sgpb-wrapper .glyphicon-align-center:before {
|
442 |
-
content: "\e053";
|
443 |
-
}
|
444 |
-
.sgpb-wrapper .glyphicon-align-right:before {
|
445 |
-
content: "\e054";
|
446 |
-
}
|
447 |
-
.sgpb-wrapper .glyphicon-align-justify:before {
|
448 |
-
content: "\e055";
|
449 |
-
}
|
450 |
-
.sgpb-wrapper .glyphicon-list:before {
|
451 |
-
content: "\e056";
|
452 |
-
}
|
453 |
-
.sgpb-wrapper .glyphicon-indent-left:before {
|
454 |
-
content: "\e057";
|
455 |
-
}
|
456 |
-
.sgpb-wrapper .glyphicon-indent-right:before {
|
457 |
-
content: "\e058";
|
458 |
-
}
|
459 |
-
.sgpb-wrapper .glyphicon-facetime-video:before {
|
460 |
-
content: "\e059";
|
461 |
-
}
|
462 |
-
.sgpb-wrapper .glyphicon-picture:before {
|
463 |
-
content: "\e060";
|
464 |
-
}
|
465 |
-
.sgpb-wrapper .glyphicon-map-marker:before {
|
466 |
-
content: "\e062";
|
467 |
-
}
|
468 |
-
.sgpb-wrapper .glyphicon-adjust:before {
|
469 |
-
content: "\e063";
|
470 |
-
}
|
471 |
-
.sgpb-wrapper .glyphicon-tint:before {
|
472 |
-
content: "\e064";
|
473 |
-
}
|
474 |
-
.sgpb-wrapper .glyphicon-edit:before {
|
475 |
-
content: "\e065";
|
476 |
-
}
|
477 |
-
.sgpb-wrapper .glyphicon-share:before {
|
478 |
-
content: "\e066";
|
479 |
-
}
|
480 |
-
.sgpb-wrapper .glyphicon-check:before {
|
481 |
-
content: "\e067";
|
482 |
-
}
|
483 |
-
.sgpb-wrapper .glyphicon-move:before {
|
484 |
-
content: "\e068";
|
485 |
-
}
|
486 |
-
.sgpb-wrapper .glyphicon-step-backward:before {
|
487 |
-
content: "\e069";
|
488 |
-
}
|
489 |
-
.sgpb-wrapper .glyphicon-fast-backward:before {
|
490 |
-
content: "\e070";
|
491 |
-
}
|
492 |
-
.sgpb-wrapper .glyphicon-backward:before {
|
493 |
-
content: "\e071";
|
494 |
-
}
|
495 |
-
.sgpb-wrapper .glyphicon-play:before {
|
496 |
-
content: "\e072";
|
497 |
-
}
|
498 |
-
.sgpb-wrapper .glyphicon-pause:before {
|
499 |
-
content: "\e073";
|
500 |
-
}
|
501 |
-
.sgpb-wrapper .glyphicon-stop:before {
|
502 |
-
content: "\e074";
|
503 |
-
}
|
504 |
-
.sgpb-wrapper .glyphicon-forward:before {
|
505 |
-
content: "\e075";
|
506 |
-
}
|
507 |
-
.sgpb-wrapper .glyphicon-fast-forward:before {
|
508 |
-
content: "\e076";
|
509 |
-
}
|
510 |
-
.sgpb-wrapper .glyphicon-step-forward:before {
|
511 |
-
content: "\e077";
|
512 |
-
}
|
513 |
-
.sgpb-wrapper .glyphicon-eject:before {
|
514 |
-
content: "\e078";
|
515 |
-
}
|
516 |
-
.sgpb-wrapper .glyphicon-chevron-left:before {
|
517 |
-
content: "\e079";
|
518 |
-
}
|
519 |
-
.sgpb-wrapper .glyphicon-chevron-right:before {
|
520 |
-
content: "\e080";
|
521 |
-
}
|
522 |
-
.sgpb-wrapper .glyphicon-plus-sign:before {
|
523 |
-
content: "\e081";
|
524 |
-
}
|
525 |
-
.sgpb-wrapper .glyphicon-minus-sign:before {
|
526 |
-
content: "\e082";
|
527 |
-
}
|
528 |
-
.sgpb-wrapper .glyphicon-remove-sign:before {
|
529 |
-
content: "\e083";
|
530 |
-
}
|
531 |
-
.sgpb-wrapper .glyphicon-ok-sign:before {
|
532 |
-
content: "\e084";
|
533 |
-
}
|
534 |
-
.sgpb-wrapper .glyphicon-question-sign:before {
|
535 |
-
content: "\e085";
|
536 |
-
}
|
537 |
-
.sgpb-wrapper .glyphicon-info-sign:before {
|
538 |
-
content: "\e086";
|
539 |
-
}
|
540 |
-
.sgpb-wrapper .glyphicon-screenshot:before {
|
541 |
-
content: "\e087";
|
542 |
-
}
|
543 |
-
.sgpb-wrapper .glyphicon-remove-circle:before {
|
544 |
-
content: "\e088";
|
545 |
-
}
|
546 |
-
.sgpb-wrapper .glyphicon-ok-circle:before {
|
547 |
-
content: "\e089";
|
548 |
-
}
|
549 |
-
.sgpb-wrapper .glyphicon-ban-circle:before {
|
550 |
-
content: "\e090";
|
551 |
-
}
|
552 |
-
.sgpb-wrapper .glyphicon-arrow-left:before {
|
553 |
-
content: "\e091";
|
554 |
-
}
|
555 |
-
.sgpb-wrapper .glyphicon-arrow-right:before {
|
556 |
-
content: "\e092";
|
557 |
-
}
|
558 |
-
.sgpb-wrapper .glyphicon-arrow-up:before {
|
559 |
-
content: "\e093";
|
560 |
-
}
|
561 |
-
.sgpb-wrapper .glyphicon-arrow-down:before {
|
562 |
-
content: "\e094";
|
563 |
-
}
|
564 |
-
.sgpb-wrapper .glyphicon-share-alt:before {
|
565 |
-
content: "\e095";
|
566 |
-
}
|
567 |
-
.sgpb-wrapper .glyphicon-resize-full:before {
|
568 |
-
content: "\e096";
|
569 |
-
}
|
570 |
-
.sgpb-wrapper .glyphicon-resize-small:before {
|
571 |
-
content: "\e097";
|
572 |
-
}
|
573 |
-
.sgpb-wrapper .glyphicon-exclamation-sign:before {
|
574 |
-
content: "\e101";
|
575 |
-
}
|
576 |
-
.sgpb-wrapper .glyphicon-gift:before {
|
577 |
-
content: "\e102";
|
578 |
-
}
|
579 |
-
.sgpb-wrapper .glyphicon-leaf:before {
|
580 |
-
content: "\e103";
|
581 |
-
}
|
582 |
-
.sgpb-wrapper .glyphicon-fire:before {
|
583 |
-
content: "\e104";
|
584 |
-
}
|
585 |
-
.sgpb-wrapper .glyphicon-eye-open:before {
|
586 |
-
content: "\e105";
|
587 |
-
}
|
588 |
-
.sgpb-wrapper .glyphicon-eye-close:before {
|
589 |
-
content: "\e106";
|
590 |
-
}
|
591 |
-
.sgpb-wrapper .glyphicon-warning-sign:before {
|
592 |
-
content: "\e107";
|
593 |
-
}
|
594 |
-
.sgpb-wrapper .glyphicon-plane:before {
|
595 |
-
content: "\e108";
|
596 |
-
}
|
597 |
-
.sgpb-wrapper .glyphicon-calendar:before {
|
598 |
-
content: "\e109";
|
599 |
-
}
|
600 |
-
.sgpb-wrapper .glyphicon-random:before {
|
601 |
-
content: "\e110";
|
602 |
-
}
|
603 |
-
.sgpb-wrapper .glyphicon-comment:before {
|
604 |
-
content: "\e111";
|
605 |
-
}
|
606 |
-
.sgpb-wrapper .glyphicon-magnet:before {
|
607 |
-
content: "\e112";
|
608 |
-
}
|
609 |
-
.sgpb-wrapper .glyphicon-chevron-up:before {
|
610 |
-
content: "\e113";
|
611 |
-
}
|
612 |
-
.sgpb-wrapper .glyphicon-chevron-down:before {
|
613 |
-
content: "\e114";
|
614 |
-
}
|
615 |
-
.sgpb-wrapper .glyphicon-retweet:before {
|
616 |
-
content: "\e115";
|
617 |
-
}
|
618 |
-
.sgpb-wrapper .glyphicon-shopping-cart:before {
|
619 |
-
content: "\e116";
|
620 |
-
}
|
621 |
-
.sgpb-wrapper .glyphicon-folder-close:before {
|
622 |
-
content: "\e117";
|
623 |
-
}
|
624 |
-
.sgpb-wrapper .glyphicon-folder-open:before {
|
625 |
-
content: "\e118";
|
626 |
-
}
|
627 |
-
.sgpb-wrapper .glyphicon-resize-vertical:before {
|
628 |
-
content: "\e119";
|
629 |
-
}
|
630 |
-
.sgpb-wrapper .glyphicon-resize-horizontal:before {
|
631 |
-
content: "\e120";
|
632 |
-
}
|
633 |
-
.sgpb-wrapper .glyphicon-hdd:before {
|
634 |
-
content: "\e121";
|
635 |
-
}
|
636 |
-
.sgpb-wrapper .glyphicon-bullhorn:before {
|
637 |
-
content: "\e122";
|
638 |
-
}
|
639 |
-
.sgpb-wrapper .glyphicon-bell:before {
|
640 |
-
content: "\e123";
|
641 |
-
}
|
642 |
-
.sgpb-wrapper .glyphicon-certificate:before {
|
643 |
-
content: "\e124";
|
644 |
-
}
|
645 |
-
.sgpb-wrapper .glyphicon-thumbs-up:before {
|
646 |
-
content: "\e125";
|
647 |
-
}
|
648 |
-
.sgpb-wrapper .glyphicon-thumbs-down:before {
|
649 |
-
content: "\e126";
|
650 |
-
}
|
651 |
-
.sgpb-wrapper .glyphicon-hand-right:before {
|
652 |
-
content: "\e127";
|
653 |
-
}
|
654 |
-
.sgpb-wrapper .glyphicon-hand-left:before {
|
655 |
-
content: "\e128";
|
656 |
-
}
|
657 |
-
.sgpb-wrapper .glyphicon-hand-up:before {
|
658 |
-
content: "\e129";
|
659 |
-
}
|
660 |
-
.sgpb-wrapper .glyphicon-hand-down:before {
|
661 |
-
content: "\e130";
|
662 |
-
}
|
663 |
-
.sgpb-wrapper .glyphicon-circle-arrow-right:before {
|
664 |
-
content: "\e131";
|
665 |
-
}
|
666 |
-
.sgpb-wrapper .glyphicon-circle-arrow-left:before {
|
667 |
-
content: "\e132";
|
668 |
-
}
|
669 |
-
.sgpb-wrapper .glyphicon-circle-arrow-up:before {
|
670 |
-
content: "\e133";
|
671 |
-
}
|
672 |
-
.sgpb-wrapper .glyphicon-circle-arrow-down:before {
|
673 |
-
content: "\e134";
|
674 |
-
}
|
675 |
-
.sgpb-wrapper .glyphicon-globe:before {
|
676 |
-
content: "\e135";
|
677 |
-
}
|
678 |
-
.sgpb-wrapper .glyphicon-wrench:before {
|
679 |
-
content: "\e136";
|
680 |
-
}
|
681 |
-
.sgpb-wrapper .glyphicon-tasks:before {
|
682 |
-
content: "\e137";
|
683 |
-
}
|
684 |
-
.sgpb-wrapper .glyphicon-filter:before {
|
685 |
-
content: "\e138";
|
686 |
-
}
|
687 |
-
.sgpb-wrapper .glyphicon-briefcase:before {
|
688 |
-
content: "\e139";
|
689 |
-
}
|
690 |
-
.sgpb-wrapper .glyphicon-fullscreen:before {
|
691 |
-
content: "\e140";
|
692 |
-
}
|
693 |
-
.sgpb-wrapper .glyphicon-dashboard:before {
|
694 |
-
content: "\e141";
|
695 |
-
}
|
696 |
-
.sgpb-wrapper .glyphicon-paperclip:before {
|
697 |
-
content: "\e142";
|
698 |
-
}
|
699 |
-
.sgpb-wrapper .glyphicon-heart-empty:before {
|
700 |
-
content: "\e143";
|
701 |
-
}
|
702 |
-
.sgpb-wrapper .glyphicon-link:before {
|
703 |
-
content: "\e144";
|
704 |
-
}
|
705 |
-
.sgpb-wrapper .glyphicon-phone:before {
|
706 |
-
content: "\e145";
|
707 |
-
}
|
708 |
-
.sgpb-wrapper .glyphicon-pushpin:before {
|
709 |
-
content: "\e146";
|
710 |
-
}
|
711 |
-
.sgpb-wrapper .glyphicon-usd:before {
|
712 |
-
content: "\e148";
|
713 |
-
}
|
714 |
-
.sgpb-wrapper .glyphicon-gbp:before {
|
715 |
-
content: "\e149";
|
716 |
-
}
|
717 |
-
.sgpb-wrapper .glyphicon-sort:before {
|
718 |
-
content: "\e150";
|
719 |
-
}
|
720 |
-
.sgpb-wrapper .glyphicon-sort-by-alphabet:before {
|
721 |
-
content: "\e151";
|
722 |
-
}
|
723 |
-
.sgpb-wrapper .glyphicon-sort-by-alphabet-alt:before {
|
724 |
-
content: "\e152";
|
725 |
-
}
|
726 |
-
.sgpb-wrapper .glyphicon-sort-by-order:before {
|
727 |
-
content: "\e153";
|
728 |
-
}
|
729 |
-
.sgpb-wrapper .glyphicon-sort-by-order-alt:before {
|
730 |
-
content: "\e154";
|
731 |
-
}
|
732 |
-
.sgpb-wrapper .glyphicon-sort-by-attributes:before {
|
733 |
-
content: "\e155";
|
734 |
-
}
|
735 |
-
.sgpb-wrapper .glyphicon-sort-by-attributes-alt:before {
|
736 |
-
content: "\e156";
|
737 |
-
}
|
738 |
-
.sgpb-wrapper .glyphicon-unchecked:before {
|
739 |
-
content: "\e157";
|
740 |
-
}
|
741 |
-
.sgpb-wrapper .glyphicon-expand:before {
|
742 |
-
content: "\e158";
|
743 |
-
}
|
744 |
-
.sgpb-wrapper .glyphicon-collapse-down:before {
|
745 |
-
content: "\e159";
|
746 |
-
}
|
747 |
-
.sgpb-wrapper .glyphicon-collapse-up:before {
|
748 |
-
content: "\e160";
|
749 |
-
}
|
750 |
-
.sgpb-wrapper .glyphicon-log-in:before {
|
751 |
-
content: "\e161";
|
752 |
-
}
|
753 |
-
.sgpb-wrapper .glyphicon-flash:before {
|
754 |
-
content: "\e162";
|
755 |
-
}
|
756 |
-
.sgpb-wrapper .glyphicon-log-out:before {
|
757 |
-
content: "\e163";
|
758 |
-
}
|
759 |
-
.sgpb-wrapper .glyphicon-new-window:before {
|
760 |
-
content: "\e164";
|
761 |
-
}
|
762 |
-
.sgpb-wrapper .glyphicon-record:before {
|
763 |
-
content: "\e165";
|
764 |
-
}
|
765 |
-
.sgpb-wrapper .glyphicon-save:before {
|
766 |
-
content: "\e166";
|
767 |
-
}
|
768 |
-
.sgpb-wrapper .glyphicon-open:before {
|
769 |
-
content: "\e167";
|
770 |
-
}
|
771 |
-
.sgpb-wrapper .glyphicon-saved:before {
|
772 |
-
content: "\e168";
|
773 |
-
}
|
774 |
-
.sgpb-wrapper .glyphicon-import:before {
|
775 |
-
content: "\e169";
|
776 |
-
}
|
777 |
-
.sgpb-wrapper .glyphicon-export:before {
|
778 |
-
content: "\e170";
|
779 |
-
}
|
780 |
-
.sgpb-wrapper .glyphicon-send:before {
|
781 |
-
content: "\e171";
|
782 |
-
}
|
783 |
-
.sgpb-wrapper .glyphicon-floppy-disk:before {
|
784 |
-
content: "\e172";
|
785 |
-
}
|
786 |
-
.sgpb-wrapper .glyphicon-floppy-saved:before {
|
787 |
-
content: "\e173";
|
788 |
-
}
|
789 |
-
.sgpb-wrapper .glyphicon-floppy-remove:before {
|
790 |
-
content: "\e174";
|
791 |
-
}
|
792 |
-
.sgpb-wrapper .glyphicon-floppy-save:before {
|
793 |
-
content: "\e175";
|
794 |
-
}
|
795 |
-
.sgpb-wrapper .glyphicon-floppy-open:before {
|
796 |
-
content: "\e176";
|
797 |
-
}
|
798 |
-
.sgpb-wrapper .glyphicon-credit-card:before {
|
799 |
-
content: "\e177";
|
800 |
-
}
|
801 |
-
.sgpb-wrapper .glyphicon-transfer:before {
|
802 |
-
content: "\e178";
|
803 |
-
}
|
804 |
-
.sgpb-wrapper .glyphicon-cutlery:before {
|
805 |
-
content: "\e179";
|
806 |
-
}
|
807 |
-
.sgpb-wrapper .glyphicon-header:before {
|
808 |
-
content: "\e180";
|
809 |
-
}
|
810 |
-
.sgpb-wrapper .glyphicon-compressed:before {
|
811 |
-
content: "\e181";
|
812 |
-
}
|
813 |
-
.sgpb-wrapper .glyphicon-earphone:before {
|
814 |
-
content: "\e182";
|
815 |
-
}
|
816 |
-
.sgpb-wrapper .glyphicon-phone-alt:before {
|
817 |
-
content: "\e183";
|
818 |
-
}
|
819 |
-
.sgpb-wrapper .glyphicon-tower:before {
|
820 |
-
content: "\e184";
|
821 |
-
}
|
822 |
-
.sgpb-wrapper .glyphicon-stats:before {
|
823 |
-
content: "\e185";
|
824 |
-
}
|
825 |
-
.sgpb-wrapper .glyphicon-sd-video:before {
|
826 |
-
content: "\e186";
|
827 |
-
}
|
828 |
-
.sgpb-wrapper .glyphicon-hd-video:before {
|
829 |
-
content: "\e187";
|
830 |
-
}
|
831 |
-
.sgpb-wrapper .glyphicon-subtitles:before {
|
832 |
-
content: "\e188";
|
833 |
-
}
|
834 |
-
.sgpb-wrapper .glyphicon-sound-stereo:before {
|
835 |
-
content: "\e189";
|
836 |
-
}
|
837 |
-
.sgpb-wrapper .glyphicon-sound-dolby:before {
|
838 |
-
content: "\e190";
|
839 |
-
}
|
840 |
-
.sgpb-wrapper .glyphicon-sound-5-1:before {
|
841 |
-
content: "\e191";
|
842 |
-
}
|
843 |
-
.sgpb-wrapper .glyphicon-sound-6-1:before {
|
844 |
-
content: "\e192";
|
845 |
-
}
|
846 |
-
.sgpb-wrapper .glyphicon-sound-7-1:before {
|
847 |
-
content: "\e193";
|
848 |
-
}
|
849 |
-
.sgpb-wrapper .glyphicon-copyright-mark:before {
|
850 |
-
content: "\e194";
|
851 |
-
}
|
852 |
-
.sgpb-wrapper .glyphicon-registration-mark:before {
|
853 |
-
content: "\e195";
|
854 |
-
}
|
855 |
-
.sgpb-wrapper .glyphicon-cloud-download:before {
|
856 |
-
content: "\e197";
|
857 |
-
}
|
858 |
-
.sgpb-wrapper .glyphicon-cloud-upload:before {
|
859 |
-
content: "\e198";
|
860 |
-
}
|
861 |
-
.sgpb-wrapper .glyphicon-tree-conifer:before {
|
862 |
-
content: "\e199";
|
863 |
-
}
|
864 |
-
.sgpb-wrapper .glyphicon-tree-deciduous:before {
|
865 |
-
content: "\e200";
|
866 |
-
}
|
867 |
-
.sgpb-wrapper .glyphicon-cd:before {
|
868 |
-
content: "\e201";
|
869 |
-
}
|
870 |
-
.sgpb-wrapper .glyphicon-save-file:before {
|
871 |
-
content: "\e202";
|
872 |
-
}
|
873 |
-
.sgpb-wrapper .glyphicon-open-file:before {
|
874 |
-
content: "\e203";
|
875 |
-
}
|
876 |
-
.sgpb-wrapper .glyphicon-level-up:before {
|
877 |
-
content: "\e204";
|
878 |
-
}
|
879 |
-
.sgpb-wrapper .glyphicon-copy:before {
|
880 |
-
content: "\e205";
|
881 |
-
}
|
882 |
-
.sgpb-wrapper .glyphicon-paste:before {
|
883 |
-
content: "\e206";
|
884 |
-
}
|
885 |
-
.sgpb-wrapper .glyphicon-alert:before {
|
886 |
-
content: "\e209";
|
887 |
-
}
|
888 |
-
.sgpb-wrapper .glyphicon-equalizer:before {
|
889 |
-
content: "\e210";
|
890 |
-
}
|
891 |
-
.sgpb-wrapper .glyphicon-king:before {
|
892 |
-
content: "\e211";
|
893 |
-
}
|
894 |
-
.sgpb-wrapper .glyphicon-queen:before {
|
895 |
-
content: "\e212";
|
896 |
-
}
|
897 |
-
.sgpb-wrapper .glyphicon-pawn:before {
|
898 |
-
content: "\e213";
|
899 |
-
}
|
900 |
-
.sgpb-wrapper .glyphicon-bishop:before {
|
901 |
-
content: "\e214";
|
902 |
-
}
|
903 |
-
.sgpb-wrapper .glyphicon-knight:before {
|
904 |
-
content: "\e215";
|
905 |
-
}
|
906 |
-
.sgpb-wrapper .glyphicon-baby-formula:before {
|
907 |
-
content: "\e216";
|
908 |
-
}
|
909 |
-
.sgpb-wrapper .glyphicon-tent:before {
|
910 |
-
content: "\26fa";
|
911 |
-
}
|
912 |
-
.sgpb-wrapper .glyphicon-blackboard:before {
|
913 |
-
content: "\e218";
|
914 |
-
}
|
915 |
-
.sgpb-wrapper .glyphicon-bed:before {
|
916 |
-
content: "\e219";
|
917 |
-
}
|
918 |
-
.sgpb-wrapper .glyphicon-apple:before {
|
919 |
-
content: "\f8ff";
|
920 |
-
}
|
921 |
-
.sgpb-wrapper .glyphicon-erase:before {
|
922 |
-
content: "\e221";
|
923 |
-
}
|
924 |
-
.sgpb-wrapper .glyphicon-hourglass:before {
|
925 |
-
content: "\231b";
|
926 |
-
}
|
927 |
-
.sgpb-wrapper .glyphicon-lamp:before {
|
928 |
-
content: "\e223";
|
929 |
-
}
|
930 |
-
.sgpb-wrapper .glyphicon-duplicate:before {
|
931 |
-
content: "\e224";
|
932 |
-
}
|
933 |
-
.sgpb-wrapper .glyphicon-piggy-bank:before {
|
934 |
-
content: "\e225";
|
935 |
-
}
|
936 |
-
.sgpb-wrapper .glyphicon-scissors:before {
|
937 |
-
content: "\e226";
|
938 |
-
}
|
939 |
-
.sgpb-wrapper .glyphicon-bitcoin:before {
|
940 |
-
content: "\e227";
|
941 |
-
}
|
942 |
-
.sgpb-wrapper .glyphicon-btc:before {
|
943 |
-
content: "\e227";
|
944 |
-
}
|
945 |
-
.sgpb-wrapper .glyphicon-xbt:before {
|
946 |
-
content: "\e227";
|
947 |
-
}
|
948 |
-
.sgpb-wrapper .glyphicon-yen:before {
|
949 |
-
content: "\00a5";
|
950 |
-
}
|
951 |
-
.sgpb-wrapper .glyphicon-jpy:before {
|
952 |
-
content: "\00a5";
|
953 |
-
}
|
954 |
-
.sgpb-wrapper .glyphicon-ruble:before {
|
955 |
-
content: "\20bd";
|
956 |
-
}
|
957 |
-
.sgpb-wrapper .glyphicon-rub:before {
|
958 |
-
content: "\20bd";
|
959 |
-
}
|
960 |
-
.sgpb-wrapper .glyphicon-scale:before {
|
961 |
-
content: "\e230";
|
962 |
-
}
|
963 |
-
.sgpb-wrapper .glyphicon-ice-lolly:before {
|
964 |
-
content: "\e231";
|
965 |
-
}
|
966 |
-
.sgpb-wrapper .glyphicon-ice-lolly-tasted:before {
|
967 |
-
content: "\e232";
|
968 |
-
}
|
969 |
-
.sgpb-wrapper .glyphicon-education:before {
|
970 |
-
content: "\e233";
|
971 |
-
}
|
972 |
-
.sgpb-wrapper .glyphicon-option-horizontal:before {
|
973 |
-
content: "\e234";
|
974 |
-
}
|
975 |
-
.sgpb-wrapper .glyphicon-option-vertical:before {
|
976 |
-
content: "\e235";
|
977 |
-
}
|
978 |
-
.sgpb-wrapper .glyphicon-menu-hamburger:before {
|
979 |
-
content: "\e236";
|
980 |
-
}
|
981 |
-
.sgpb-wrapper .glyphicon-modal-window:before {
|
982 |
-
content: "\e237";
|
983 |
-
}
|
984 |
-
.sgpb-wrapper .glyphicon-oil:before {
|
985 |
-
content: "\e238";
|
986 |
-
}
|
987 |
-
.sgpb-wrapper .glyphicon-grain:before {
|
988 |
-
content: "\e239";
|
989 |
-
}
|
990 |
-
.sgpb-wrapper .glyphicon-sunglasses:before {
|
991 |
-
content: "\e240";
|
992 |
-
}
|
993 |
-
.sgpb-wrapper .glyphicon-text-size:before {
|
994 |
-
content: "\e241";
|
995 |
-
}
|
996 |
-
.sgpb-wrapper .glyphicon-text-color:before {
|
997 |
-
content: "\e242";
|
998 |
-
}
|
999 |
-
.sgpb-wrapper .glyphicon-text-background:before {
|
1000 |
-
content: "\e243";
|
1001 |
-
}
|
1002 |
-
.sgpb-wrapper .glyphicon-object-align-top:before {
|
1003 |
-
content: "\e244";
|
1004 |
-
}
|
1005 |
-
.sgpb-wrapper .glyphicon-object-align-bottom:before {
|
1006 |
-
content: "\e245";
|
1007 |
-
}
|
1008 |
-
.sgpb-wrapper .glyphicon-object-align-horizontal:before {
|
1009 |
-
content: "\e246";
|
1010 |
-
}
|
1011 |
-
.sgpb-wrapper .glyphicon-object-align-left:before {
|
1012 |
-
content: "\e247";
|
1013 |
-
}
|
1014 |
-
.sgpb-wrapper .glyphicon-object-align-vertical:before {
|
1015 |
-
content: "\e248";
|
1016 |
-
}
|
1017 |
-
.sgpb-wrapper .glyphicon-object-align-right:before {
|
1018 |
-
content: "\e249";
|
1019 |
-
}
|
1020 |
-
.sgpb-wrapper .glyphicon-triangle-right:before {
|
1021 |
-
content: "\e250";
|
1022 |
-
}
|
1023 |
-
.sgpb-wrapper .glyphicon-triangle-left:before {
|
1024 |
-
content: "\e251";
|
1025 |
-
}
|
1026 |
-
.sgpb-wrapper .glyphicon-triangle-bottom:before {
|
1027 |
-
content: "\e252";
|
1028 |
-
}
|
1029 |
-
.sgpb-wrapper .glyphicon-triangle-top:before {
|
1030 |
-
content: "\e253";
|
1031 |
-
}
|
1032 |
-
.sgpb-wrapper .glyphicon-console:before {
|
1033 |
-
content: "\e254";
|
1034 |
-
}
|
1035 |
-
.sgpb-wrapper .glyphicon-superscript:before {
|
1036 |
-
content: "\e255";
|
1037 |
-
}
|
1038 |
-
.sgpb-wrapper .glyphicon-subscript:before {
|
1039 |
-
content: "\e256";
|
1040 |
-
}
|
1041 |
-
.sgpb-wrapper .glyphicon-menu-left:before {
|
1042 |
-
content: "\e257";
|
1043 |
-
}
|
1044 |
-
.sgpb-wrapper .glyphicon-menu-right:before {
|
1045 |
-
content: "\e258";
|
1046 |
-
}
|
1047 |
-
.sgpb-wrapper .glyphicon-menu-down:before {
|
1048 |
-
content: "\e259";
|
1049 |
-
}
|
1050 |
-
.sgpb-wrapper .glyphicon-menu-up:before {
|
1051 |
-
content: "\e260";
|
1052 |
-
}
|
1053 |
-
.sgpb-wrapper * {
|
1054 |
-
-webkit-box-sizing: border-box;
|
1055 |
-
-moz-box-sizing: border-box;
|
1056 |
-
box-sizing: border-box;
|
1057 |
-
}
|
1058 |
.sgpb-wrapper *:before,
|
1059 |
-
.sgpb-wrapper *:after
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
.sgpb-wrapper
|
1065 |
-
|
1066 |
-
|
1067 |
-
}
|
1068 |
-
.sgpb-wrapper
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
}
|
1075 |
-
.sgpb-wrapper
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1076 |
.sgpb-wrapper button,
|
1077 |
.sgpb-wrapper select,
|
1078 |
-
.sgpb-wrapper
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
}
|
1083 |
-
.sgpb-wrapper
|
1084 |
-
|
1085 |
-
text-decoration: none;
|
1086 |
-
}
|
1087 |
-
.sgpb-wrapper a:hover,
|
1088 |
-
.sgpb-wrapper a:focus {
|
1089 |
-
color: #18bc9c;
|
1090 |
-
text-decoration: underline;
|
1091 |
-
}
|
1092 |
-
.sgpb-wrapper a:focus {
|
1093 |
-
outline: 5px auto -webkit-focus-ring-color;
|
1094 |
-
outline-offset: -2px;
|
1095 |
-
}
|
1096 |
-
.sgpb-wrapper figure {
|
1097 |
-
margin: 0;
|
1098 |
-
}
|
1099 |
-
.sgpb-wrapper img {
|
1100 |
-
vertical-align: middle;
|
1101 |
-
}
|
1102 |
-
.sgpb-wrapper .img-responsive,
|
1103 |
.sgpb-wrapper .thumbnail > img,
|
1104 |
.sgpb-wrapper .thumbnail a > img,
|
1105 |
.sgpb-wrapper .carousel-inner > .item > img,
|
1106 |
-
.sgpb-wrapper .carousel-inner
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
}
|
1111 |
-
.sgpb-wrapper .img-rounded {
|
1112 |
-
border-radius: 6px;
|
1113 |
-
}
|
1114 |
-
.sgpb-wrapper .img-thumbnail {
|
1115 |
-
padding: 4px;
|
1116 |
-
line-height: 1.42857143;
|
1117 |
-
background-color: #ffffff;
|
1118 |
-
border: 1px solid #ecf0f1;
|
1119 |
-
border-radius: 4px;
|
1120 |
-
-webkit-transition: all 0.2s ease-in-out;
|
1121 |
-
-o-transition: all 0.2s ease-in-out;
|
1122 |
-
transition: all 0.2s ease-in-out;
|
1123 |
-
display: inline-block;
|
1124 |
-
max-width: 100%;
|
1125 |
-
height: auto;
|
1126 |
-
}
|
1127 |
-
.sgpb-wrapper .img-circle {
|
1128 |
-
border-radius: 50%;
|
1129 |
-
}
|
1130 |
-
.sgpb-wrapper hr {
|
1131 |
-
margin-top: 21px;
|
1132 |
-
margin-bottom: 21px;
|
1133 |
-
border: 0;
|
1134 |
-
border-top: 1px solid #ecf0f1;
|
1135 |
-
}
|
1136 |
-
.sgpb-wrapper .sr-only {
|
1137 |
-
position: absolute;
|
1138 |
-
width: 1px;
|
1139 |
-
height: 1px;
|
1140 |
-
margin: -1px;
|
1141 |
-
padding: 0;
|
1142 |
-
overflow: hidden;
|
1143 |
-
clip: rect(0, 0, 0, 0);
|
1144 |
-
border: 0;
|
1145 |
-
}
|
1146 |
-
.sgpb-wrapper .sr-only-focusable:active,
|
1147 |
-
.sgpb-wrapper .sr-only-focusable:focus {
|
1148 |
-
position: static;
|
1149 |
-
width: auto;
|
1150 |
-
height: auto;
|
1151 |
-
margin: 0;
|
1152 |
-
overflow: visible;
|
1153 |
-
clip: auto;
|
1154 |
-
}
|
1155 |
-
.sgpb-wrapper [role="button"] {
|
1156 |
-
cursor: pointer;
|
1157 |
-
}
|
1158 |
-
.sgpb-wrapper h1,
|
1159 |
.sgpb-wrapper h2,
|
1160 |
.sgpb-wrapper h3,
|
1161 |
.sgpb-wrapper h4,
|
@@ -1166,13 +126,8 @@
|
|
1166 |
.sgpb-wrapper .h3,
|
1167 |
.sgpb-wrapper .h4,
|
1168 |
.sgpb-wrapper .h5,
|
1169 |
-
.sgpb-wrapper
|
1170 |
-
|
1171 |
-
font-weight: 400;
|
1172 |
-
line-height: 1.1;
|
1173 |
-
color: inherit;
|
1174 |
-
}
|
1175 |
-
.sgpb-wrapper h1 small,
|
1176 |
.sgpb-wrapper h2 small,
|
1177 |
.sgpb-wrapper h3 small,
|
1178 |
.sgpb-wrapper h4 small,
|
@@ -1195,21 +150,14 @@
|
|
1195 |
.sgpb-wrapper .h3 .small,
|
1196 |
.sgpb-wrapper .h4 .small,
|
1197 |
.sgpb-wrapper .h5 .small,
|
1198 |
-
.sgpb-wrapper .h6
|
1199 |
-
|
1200 |
-
line-height: 1;
|
1201 |
-
color: #b4bcc2;
|
1202 |
-
}
|
1203 |
-
.sgpb-wrapper h1,
|
1204 |
.sgpb-wrapper .h1,
|
1205 |
.sgpb-wrapper h2,
|
1206 |
.sgpb-wrapper .h2,
|
1207 |
.sgpb-wrapper h3,
|
1208 |
-
.sgpb-wrapper
|
1209 |
-
|
1210 |
-
margin-bottom: 10.5px;
|
1211 |
-
}
|
1212 |
-
.sgpb-wrapper h1 small,
|
1213 |
.sgpb-wrapper .h1 small,
|
1214 |
.sgpb-wrapper h2 small,
|
1215 |
.sgpb-wrapper .h2 small,
|
@@ -1220,19 +168,14 @@
|
|
1220 |
.sgpb-wrapper h2 .small,
|
1221 |
.sgpb-wrapper .h2 .small,
|
1222 |
.sgpb-wrapper h3 .small,
|
1223 |
-
.sgpb-wrapper .h3
|
1224 |
-
|
1225 |
-
}
|
1226 |
-
.sgpb-wrapper h4,
|
1227 |
.sgpb-wrapper .h4,
|
1228 |
.sgpb-wrapper h5,
|
1229 |
.sgpb-wrapper .h5,
|
1230 |
.sgpb-wrapper h6,
|
1231 |
-
.sgpb-wrapper
|
1232 |
-
|
1233 |
-
margin-bottom: 10.5px;
|
1234 |
-
}
|
1235 |
-
.sgpb-wrapper h4 small,
|
1236 |
.sgpb-wrapper .h4 small,
|
1237 |
.sgpb-wrapper h5 small,
|
1238 |
.sgpb-wrapper .h5 small,
|
@@ -1243,360 +186,93 @@
|
|
1243 |
.sgpb-wrapper h5 .small,
|
1244 |
.sgpb-wrapper .h5 .small,
|
1245 |
.sgpb-wrapper h6 .small,
|
1246 |
-
.sgpb-wrapper .h6
|
1247 |
-
|
1248 |
-
|
1249 |
-
.sgpb-wrapper
|
1250 |
-
.sgpb-wrapper
|
1251 |
-
|
1252 |
-
|
1253 |
-
.sgpb-wrapper
|
1254 |
-
.sgpb-wrapper
|
1255 |
-
|
1256 |
-
|
1257 |
-
.sgpb-wrapper
|
1258 |
-
.sgpb-wrapper
|
1259 |
-
|
1260 |
-
|
1261 |
-
.sgpb-wrapper
|
1262 |
-
.
|
1263 |
-
|
1264 |
-
|
1265 |
-
.sgpb-wrapper
|
1266 |
-
.sgpb-wrapper
|
1267 |
-
|
1268 |
-
}
|
1269 |
-
.sgpb-wrapper
|
1270 |
-
.sgpb-wrapper .
|
1271 |
-
|
1272 |
-
}
|
1273 |
-
.sgpb-wrapper
|
1274 |
-
|
1275 |
-
}
|
1276 |
-
.sgpb-wrapper .
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
|
1281 |
-
}
|
1282 |
-
@media (min-width: 768px) {
|
1283 |
-
.sgpb-wrapper .lead {
|
1284 |
-
font-size: 22.5px;
|
1285 |
-
}
|
1286 |
-
}
|
1287 |
-
.sgpb-wrapper small,
|
1288 |
-
.sgpb-wrapper .small {
|
1289 |
-
font-size: 86%;
|
1290 |
-
}
|
1291 |
-
.sgpb-wrapper mark,
|
1292 |
-
.sgpb-wrapper .mark {
|
1293 |
-
background-color: #f39c12;
|
1294 |
-
padding: .2em;
|
1295 |
-
}
|
1296 |
-
.sgpb-wrapper .text-left {
|
1297 |
-
text-align: left;
|
1298 |
-
}
|
1299 |
-
.sgpb-wrapper .text-right {
|
1300 |
-
text-align: right;
|
1301 |
-
}
|
1302 |
-
.sgpb-wrapper .text-center {
|
1303 |
-
text-align: center;
|
1304 |
-
}
|
1305 |
-
.sgpb-wrapper .text-justify {
|
1306 |
-
text-align: justify;
|
1307 |
-
}
|
1308 |
-
.sgpb-wrapper .text-nowrap {
|
1309 |
-
white-space: nowrap;
|
1310 |
-
}
|
1311 |
-
.sgpb-wrapper .text-lowercase {
|
1312 |
-
text-transform: lowercase;
|
1313 |
-
}
|
1314 |
-
.sgpb-wrapper .text-uppercase {
|
1315 |
-
text-transform: uppercase;
|
1316 |
-
}
|
1317 |
-
.sgpb-wrapper .text-capitalize {
|
1318 |
-
text-transform: capitalize;
|
1319 |
-
}
|
1320 |
-
.sgpb-wrapper .text-muted {
|
1321 |
-
color: #b4bcc2;
|
1322 |
-
}
|
1323 |
-
.sgpb-wrapper .text-primary {
|
1324 |
-
color: #2c3e50;
|
1325 |
-
}
|
1326 |
-
.sgpb-wrapper a.text-primary:hover,
|
1327 |
-
.sgpb-wrapper a.text-primary:focus {
|
1328 |
-
color: #1a242f;
|
1329 |
-
}
|
1330 |
-
.sgpb-wrapper .text-success {
|
1331 |
-
color: #ffffff;
|
1332 |
-
}
|
1333 |
-
.sgpb-wrapper a.text-success:hover,
|
1334 |
-
.sgpb-wrapper a.text-success:focus {
|
1335 |
-
color: #e6e6e6;
|
1336 |
-
}
|
1337 |
-
.sgpb-wrapper .text-info {
|
1338 |
-
color: #ffffff;
|
1339 |
-
}
|
1340 |
-
.sgpb-wrapper a.text-info:hover,
|
1341 |
-
.sgpb-wrapper a.text-info:focus {
|
1342 |
-
color: #e6e6e6;
|
1343 |
-
}
|
1344 |
-
.sgpb-wrapper .text-warning {
|
1345 |
-
color: #ffffff;
|
1346 |
-
}
|
1347 |
-
.sgpb-wrapper a.text-warning:hover,
|
1348 |
-
.sgpb-wrapper a.text-warning:focus {
|
1349 |
-
color: #e6e6e6;
|
1350 |
-
}
|
1351 |
-
.sgpb-wrapper .text-danger {
|
1352 |
-
color: #ffffff;
|
1353 |
-
}
|
1354 |
-
.sgpb-wrapper a.text-danger:hover,
|
1355 |
-
.sgpb-wrapper a.text-danger:focus {
|
1356 |
-
color: #e6e6e6;
|
1357 |
-
}
|
1358 |
-
.sgpb-wrapper .bg-primary {
|
1359 |
-
color: #fff;
|
1360 |
-
background-color: #2c3e50;
|
1361 |
-
}
|
1362 |
-
.sgpb-wrapper a.bg-primary:hover,
|
1363 |
-
.sgpb-wrapper a.bg-primary:focus {
|
1364 |
-
background-color: #1a242f;
|
1365 |
-
}
|
1366 |
-
.sgpb-wrapper .bg-success {
|
1367 |
-
background-color: #18bc9c;
|
1368 |
-
}
|
1369 |
-
.sgpb-wrapper a.bg-success:hover,
|
1370 |
-
.sgpb-wrapper a.bg-success:focus {
|
1371 |
-
background-color: #128f76;
|
1372 |
-
}
|
1373 |
-
.sgpb-wrapper .bg-info {
|
1374 |
-
background-color: #3498db;
|
1375 |
-
}
|
1376 |
-
.sgpb-wrapper a.bg-info:hover,
|
1377 |
-
.sgpb-wrapper a.bg-info:focus {
|
1378 |
-
background-color: #217dbb;
|
1379 |
-
}
|
1380 |
-
.sgpb-wrapper .bg-warning {
|
1381 |
-
background-color: #f39c12;
|
1382 |
-
}
|
1383 |
-
.sgpb-wrapper a.bg-warning:hover,
|
1384 |
-
.sgpb-wrapper a.bg-warning:focus {
|
1385 |
-
background-color: #c87f0a;
|
1386 |
-
}
|
1387 |
-
.sgpb-wrapper .bg-danger {
|
1388 |
-
background-color: #e74c3c;
|
1389 |
-
}
|
1390 |
-
.sgpb-wrapper a.bg-danger:hover,
|
1391 |
-
.sgpb-wrapper a.bg-danger:focus {
|
1392 |
-
background-color: #d62c1a;
|
1393 |
-
}
|
1394 |
-
.sgpb-wrapper .page-header {
|
1395 |
-
padding-bottom: 9.5px;
|
1396 |
-
margin: 42px 0 21px;
|
1397 |
-
border-bottom: 1px solid transparent;
|
1398 |
-
}
|
1399 |
-
.sgpb-wrapper ul,
|
1400 |
-
.sgpb-wrapper ol {
|
1401 |
-
margin-top: 0;
|
1402 |
-
margin-bottom: 10.5px;
|
1403 |
-
}
|
1404 |
-
.sgpb-wrapper ul ul,
|
1405 |
.sgpb-wrapper ol ul,
|
1406 |
.sgpb-wrapper ul ol,
|
1407 |
-
.sgpb-wrapper ol
|
1408 |
-
|
1409 |
-
}
|
1410 |
-
.sgpb-wrapper
|
1411 |
-
|
1412 |
-
|
1413 |
-
}
|
1414 |
-
.sgpb-wrapper .
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
.
|
1420 |
-
display: inline-block;
|
1421 |
-
padding-left: 5px;
|
1422 |
-
padding-right: 5px;
|
1423 |
-
}
|
1424 |
-
.sgpb-wrapper dl {
|
1425 |
-
margin-top: 0;
|
1426 |
-
margin-bottom: 21px;
|
1427 |
-
}
|
1428 |
-
.sgpb-wrapper dt,
|
1429 |
-
.sgpb-wrapper dd {
|
1430 |
-
line-height: 1.42857143;
|
1431 |
-
}
|
1432 |
-
.sgpb-wrapper dt {
|
1433 |
-
font-weight: bold;
|
1434 |
-
}
|
1435 |
-
.sgpb-wrapper dd {
|
1436 |
-
margin-left: 0;
|
1437 |
-
}
|
1438 |
-
@media (min-width: 768px) {
|
1439 |
-
.sgpb-wrapper .dl-horizontal dt {
|
1440 |
-
float: left;
|
1441 |
-
width: 160px;
|
1442 |
-
clear: left;
|
1443 |
-
text-align: right;
|
1444 |
-
overflow: hidden;
|
1445 |
-
text-overflow: ellipsis;
|
1446 |
-
white-space: nowrap;
|
1447 |
-
}
|
1448 |
-
.sgpb-wrapper .dl-horizontal dd {
|
1449 |
-
margin-left: 180px;
|
1450 |
-
}
|
1451 |
-
}
|
1452 |
-
.sgpb-wrapper abbr[title],
|
1453 |
-
.sgpb-wrapper abbr[data-original-title] {
|
1454 |
-
cursor: help;
|
1455 |
-
border-bottom: 1px dotted #b4bcc2;
|
1456 |
-
}
|
1457 |
-
.sgpb-wrapper .initialism {
|
1458 |
-
font-size: 90%;
|
1459 |
-
text-transform: uppercase;
|
1460 |
-
}
|
1461 |
-
.sgpb-wrapper blockquote {
|
1462 |
-
padding: 10.5px 21px;
|
1463 |
-
margin: 0 0 21px;
|
1464 |
-
font-size: 18.75px;
|
1465 |
-
border-left: 5px solid #ecf0f1;
|
1466 |
-
}
|
1467 |
-
.sgpb-wrapper blockquote p:last-child,
|
1468 |
.sgpb-wrapper blockquote ul:last-child,
|
1469 |
-
.sgpb-wrapper blockquote ol:last-child
|
1470 |
-
margin-bottom: 0;
|
1471 |
-
}
|
1472 |
-
.sgpb-wrapper blockquote footer,
|
1473 |
.sgpb-wrapper blockquote small,
|
1474 |
-
.sgpb-wrapper blockquote
|
1475 |
-
|
1476 |
-
font-size: 80%;
|
1477 |
-
line-height: 1.42857143;
|
1478 |
-
color: #b4bcc2;
|
1479 |
-
}
|
1480 |
-
.sgpb-wrapper blockquote footer:before,
|
1481 |
.sgpb-wrapper blockquote small:before,
|
1482 |
-
.sgpb-wrapper blockquote .small:before
|
1483 |
-
|
1484 |
-
}
|
1485 |
-
.sgpb-wrapper .blockquote-reverse,
|
1486 |
-
.sgpb-wrapper blockquote.pull-right {
|
1487 |
-
padding-right: 15px;
|
1488 |
-
padding-left: 0;
|
1489 |
-
border-right: 5px solid #ecf0f1;
|
1490 |
-
border-left: 0;
|
1491 |
-
text-align: right;
|
1492 |
-
}
|
1493 |
-
.sgpb-wrapper .blockquote-reverse footer:before,
|
1494 |
.sgpb-wrapper blockquote.pull-right footer:before,
|
1495 |
.sgpb-wrapper .blockquote-reverse small:before,
|
1496 |
.sgpb-wrapper blockquote.pull-right small:before,
|
1497 |
.sgpb-wrapper .blockquote-reverse .small:before,
|
1498 |
-
.sgpb-wrapper blockquote.pull-right .small:before
|
1499 |
-
content: '';
|
1500 |
-
}
|
1501 |
-
.sgpb-wrapper .blockquote-reverse footer:after,
|
1502 |
.sgpb-wrapper blockquote.pull-right footer:after,
|
1503 |
.sgpb-wrapper .blockquote-reverse small:after,
|
1504 |
.sgpb-wrapper blockquote.pull-right small:after,
|
1505 |
.sgpb-wrapper .blockquote-reverse .small:after,
|
1506 |
-
.sgpb-wrapper blockquote.pull-right .small:after
|
1507 |
-
|
1508 |
-
}
|
1509 |
-
.sgpb-wrapper address {
|
1510 |
-
margin-bottom: 21px;
|
1511 |
-
font-style: normal;
|
1512 |
-
line-height: 1.42857143;
|
1513 |
-
}
|
1514 |
-
.sgpb-wrapper code,
|
1515 |
.sgpb-wrapper kbd,
|
1516 |
.sgpb-wrapper pre,
|
1517 |
-
.sgpb-wrapper
|
1518 |
-
|
1519 |
-
|
1520 |
-
.sgpb-wrapper
|
1521 |
-
|
1522 |
-
|
1523 |
-
|
1524 |
-
|
1525 |
-
|
1526 |
-
}
|
1527 |
-
.sgpb-wrapper
|
1528 |
-
|
1529 |
-
|
1530 |
-
|
1531 |
-
|
1532 |
-
|
1533 |
-
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1534 |
-
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1535 |
-
}
|
1536 |
-
.sgpb-wrapper kbd kbd {
|
1537 |
-
padding: 0;
|
1538 |
-
font-size: 100%;
|
1539 |
-
font-weight: bold;
|
1540 |
-
-webkit-box-shadow: none;
|
1541 |
-
box-shadow: none;
|
1542 |
-
}
|
1543 |
-
.sgpb-wrapper pre {
|
1544 |
-
display: block;
|
1545 |
-
padding: 10px;
|
1546 |
-
margin: 0 0 10.5px;
|
1547 |
-
font-size: 14px;
|
1548 |
-
line-height: 1.42857143;
|
1549 |
-
word-break: break-all;
|
1550 |
-
word-wrap: break-word;
|
1551 |
-
color: #7b8a8b;
|
1552 |
-
background-color: #ecf0f1;
|
1553 |
-
border: 1px solid #cccccc;
|
1554 |
-
border-radius: 4px;
|
1555 |
-
}
|
1556 |
-
.sgpb-wrapper pre code {
|
1557 |
-
padding: 0;
|
1558 |
-
font-size: inherit;
|
1559 |
-
color: inherit;
|
1560 |
-
white-space: pre-wrap;
|
1561 |
-
background-color: transparent;
|
1562 |
-
border-radius: 0;
|
1563 |
-
}
|
1564 |
-
.sgpb-wrapper .pre-scrollable {
|
1565 |
-
max-height: 340px;
|
1566 |
-
overflow-y: scroll;
|
1567 |
-
}
|
1568 |
-
.sgpb-wrapper .container {
|
1569 |
-
margin-right: auto;
|
1570 |
-
margin-left: auto;
|
1571 |
-
padding-left: 15px;
|
1572 |
-
padding-right: 15px;
|
1573 |
-
}
|
1574 |
-
@media (min-width: 768px) {
|
1575 |
-
.sgpb-wrapper .container {
|
1576 |
-
width: 750px;
|
1577 |
-
}
|
1578 |
-
}
|
1579 |
-
@media (min-width: 992px) {
|
1580 |
-
.sgpb-wrapper .container {
|
1581 |
-
width: 970px;
|
1582 |
-
}
|
1583 |
-
}
|
1584 |
-
@media (min-width: 1200px) {
|
1585 |
-
.sgpb-wrapper .container {
|
1586 |
-
width: 1170px;
|
1587 |
-
}
|
1588 |
-
}
|
1589 |
-
.sgpb-wrapper .container-fluid {
|
1590 |
-
margin-right: auto;
|
1591 |
-
margin-left: auto;
|
1592 |
-
padding-left: 15px;
|
1593 |
-
padding-right: 15px;
|
1594 |
-
}
|
1595 |
-
.sgpb-wrapper .row {
|
1596 |
-
margin-left: -15px;
|
1597 |
-
margin-right: -15px;
|
1598 |
-
}
|
1599 |
-
.sgpb-wrapper .col-xs-1,
|
1600 |
.sgpb-wrapper .col-sm-1,
|
1601 |
.sgpb-wrapper .col-md-1,
|
1602 |
.sgpb-wrapper .col-lg-1,
|
@@ -1643,13 +319,7 @@
|
|
1643 |
.sgpb-wrapper .col-xs-12,
|
1644 |
.sgpb-wrapper .col-sm-12,
|
1645 |
.sgpb-wrapper .col-md-12,
|
1646 |
-
.sgpb-wrapper .col-lg-12
|
1647 |
-
position: relative;
|
1648 |
-
min-height: 1px;
|
1649 |
-
padding-left: 15px;
|
1650 |
-
padding-right: 15px;
|
1651 |
-
}
|
1652 |
-
.sgpb-wrapper .col-xs-1,
|
1653 |
.sgpb-wrapper .col-xs-2,
|
1654 |
.sgpb-wrapper .col-xs-3,
|
1655 |
.sgpb-wrapper .col-xs-4,
|
@@ -1660,756 +330,69 @@
|
|
1660 |
.sgpb-wrapper .col-xs-9,
|
1661 |
.sgpb-wrapper .col-xs-10,
|
1662 |
.sgpb-wrapper .col-xs-11,
|
1663 |
-
.sgpb-wrapper .col-xs-12 {
|
1664 |
-
|
1665 |
-
|
1666 |
-
.sgpb-wrapper .col-
|
1667 |
-
|
1668 |
-
|
1669 |
-
.sgpb-wrapper .col-
|
1670 |
-
|
1671 |
-
|
1672 |
-
.sgpb-wrapper .col-
|
1673 |
-
|
1674 |
-
}
|
1675 |
-
.sgpb-wrapper .col-
|
1676 |
-
|
1677 |
-
|
1678 |
-
.sgpb-wrapper .col-
|
1679 |
-
|
1680 |
-
|
1681 |
-
.sgpb-wrapper .col-
|
1682 |
-
|
1683 |
-
|
1684 |
-
.sgpb-wrapper .col-
|
1685 |
-
|
1686 |
-
|
1687 |
-
.sgpb-wrapper .col-
|
1688 |
-
|
1689 |
-
|
1690 |
-
.sgpb-wrapper .col-
|
1691 |
-
|
1692 |
-
|
1693 |
-
.sgpb-wrapper .col-
|
1694 |
-
|
1695 |
-
|
1696 |
-
.sgpb-wrapper .col-
|
1697 |
-
|
1698 |
-
}
|
1699 |
-
.sgpb-wrapper
|
1700 |
-
|
1701 |
-
}
|
1702 |
-
.sgpb-wrapper .col-xs-pull-12 {
|
1703 |
-
right: 100%;
|
1704 |
-
}
|
1705 |
-
.sgpb-wrapper .col-xs-pull-11 {
|
1706 |
-
right: 91.66666667%;
|
1707 |
-
}
|
1708 |
-
.sgpb-wrapper .col-xs-pull-10 {
|
1709 |
-
right: 83.33333333%;
|
1710 |
-
}
|
1711 |
-
.sgpb-wrapper .col-xs-pull-9 {
|
1712 |
-
right: 75%;
|
1713 |
-
}
|
1714 |
-
.sgpb-wrapper .col-xs-pull-8 {
|
1715 |
-
right: 66.66666667%;
|
1716 |
-
}
|
1717 |
-
.sgpb-wrapper .col-xs-pull-7 {
|
1718 |
-
right: 58.33333333%;
|
1719 |
-
}
|
1720 |
-
.sgpb-wrapper .col-xs-pull-6 {
|
1721 |
-
right: 50%;
|
1722 |
-
}
|
1723 |
-
.sgpb-wrapper .col-xs-pull-5 {
|
1724 |
-
right: 41.66666667%;
|
1725 |
-
}
|
1726 |
-
.sgpb-wrapper .col-xs-pull-4 {
|
1727 |
-
right: 33.33333333%;
|
1728 |
-
}
|
1729 |
-
.sgpb-wrapper .col-xs-pull-3 {
|
1730 |
-
right: 25%;
|
1731 |
-
}
|
1732 |
-
.sgpb-wrapper .col-xs-pull-2 {
|
1733 |
-
right: 16.66666667%;
|
1734 |
-
}
|
1735 |
-
.sgpb-wrapper .col-xs-pull-1 {
|
1736 |
-
right: 8.33333333%;
|
1737 |
-
}
|
1738 |
-
.sgpb-wrapper .col-xs-pull-0 {
|
1739 |
-
right: auto;
|
1740 |
-
}
|
1741 |
-
.sgpb-wrapper .col-xs-push-12 {
|
1742 |
-
left: 100%;
|
1743 |
-
}
|
1744 |
-
.sgpb-wrapper .col-xs-push-11 {
|
1745 |
-
left: 91.66666667%;
|
1746 |
-
}
|
1747 |
-
.sgpb-wrapper .col-xs-push-10 {
|
1748 |
-
left: 83.33333333%;
|
1749 |
-
}
|
1750 |
-
.sgpb-wrapper .col-xs-push-9 {
|
1751 |
-
left: 75%;
|
1752 |
-
}
|
1753 |
-
.sgpb-wrapper .col-xs-push-8 {
|
1754 |
-
left: 66.66666667%;
|
1755 |
-
}
|
1756 |
-
.sgpb-wrapper .col-xs-push-7 {
|
1757 |
-
left: 58.33333333%;
|
1758 |
-
}
|
1759 |
-
.sgpb-wrapper .col-xs-push-6 {
|
1760 |
-
left: 50%;
|
1761 |
-
}
|
1762 |
-
.sgpb-wrapper .col-xs-push-5 {
|
1763 |
-
left: 41.66666667%;
|
1764 |
-
}
|
1765 |
-
.sgpb-wrapper .col-xs-push-4 {
|
1766 |
-
left: 33.33333333%;
|
1767 |
-
}
|
1768 |
-
.sgpb-wrapper .col-xs-push-3 {
|
1769 |
-
left: 25%;
|
1770 |
-
}
|
1771 |
-
.sgpb-wrapper .col-xs-push-2 {
|
1772 |
-
left: 16.66666667%;
|
1773 |
-
}
|
1774 |
-
.sgpb-wrapper .col-xs-push-1 {
|
1775 |
-
left: 8.33333333%;
|
1776 |
-
}
|
1777 |
-
.sgpb-wrapper .col-xs-push-0 {
|
1778 |
-
left: auto;
|
1779 |
-
}
|
1780 |
-
.sgpb-wrapper .col-xs-offset-12 {
|
1781 |
-
margin-left: 100%;
|
1782 |
-
}
|
1783 |
-
.sgpb-wrapper .col-xs-offset-11 {
|
1784 |
-
margin-left: 91.66666667%;
|
1785 |
-
}
|
1786 |
-
.sgpb-wrapper .col-xs-offset-10 {
|
1787 |
-
margin-left: 83.33333333%;
|
1788 |
-
}
|
1789 |
-
.sgpb-wrapper .col-xs-offset-9 {
|
1790 |
-
margin-left: 75%;
|
1791 |
-
}
|
1792 |
-
.sgpb-wrapper .col-xs-offset-8 {
|
1793 |
-
margin-left: 66.66666667%;
|
1794 |
-
}
|
1795 |
-
.sgpb-wrapper .col-xs-offset-7 {
|
1796 |
-
margin-left: 58.33333333%;
|
1797 |
-
}
|
1798 |
-
.sgpb-wrapper .col-xs-offset-6 {
|
1799 |
-
margin-left: 50%;
|
1800 |
-
}
|
1801 |
-
.sgpb-wrapper .col-xs-offset-5 {
|
1802 |
-
margin-left: 41.66666667%;
|
1803 |
-
}
|
1804 |
-
.sgpb-wrapper .col-xs-offset-4 {
|
1805 |
-
margin-left: 33.33333333%;
|
1806 |
-
}
|
1807 |
-
.sgpb-wrapper .col-xs-offset-3 {
|
1808 |
-
margin-left: 25%;
|
1809 |
-
}
|
1810 |
-
.sgpb-wrapper .col-xs-offset-2 {
|
1811 |
-
margin-left: 16.66666667%;
|
1812 |
-
}
|
1813 |
-
.sgpb-wrapper .col-xs-offset-1 {
|
1814 |
-
margin-left: 8.33333333%;
|
1815 |
-
}
|
1816 |
-
.sgpb-wrapper .col-xs-offset-0 {
|
1817 |
-
margin-left: 0%;
|
1818 |
-
}
|
1819 |
-
@media (min-width: 768px) {
|
1820 |
-
.sgpb-wrapper .col-sm-1,
|
1821 |
-
.sgpb-wrapper .col-sm-2,
|
1822 |
-
.sgpb-wrapper .col-sm-3,
|
1823 |
-
.sgpb-wrapper .col-sm-4,
|
1824 |
-
.sgpb-wrapper .col-sm-5,
|
1825 |
-
.sgpb-wrapper .col-sm-6,
|
1826 |
-
.sgpb-wrapper .col-sm-7,
|
1827 |
-
.sgpb-wrapper .col-sm-8,
|
1828 |
-
.sgpb-wrapper .col-sm-9,
|
1829 |
-
.sgpb-wrapper .col-sm-10,
|
1830 |
-
.sgpb-wrapper .col-sm-11,
|
1831 |
-
.sgpb-wrapper .col-sm-12 {
|
1832 |
-
float: left;
|
1833 |
-
}
|
1834 |
-
.sgpb-wrapper .col-sm-12 {
|
1835 |
-
width: 100%;
|
1836 |
-
}
|
1837 |
-
.sgpb-wrapper .col-sm-11 {
|
1838 |
-
width: 91.66666667%;
|
1839 |
-
}
|
1840 |
-
.sgpb-wrapper .col-sm-10 {
|
1841 |
-
width: 83.33333333%;
|
1842 |
-
}
|
1843 |
-
.sgpb-wrapper .col-sm-9 {
|
1844 |
-
width: 75%;
|
1845 |
-
}
|
1846 |
-
.sgpb-wrapper .col-sm-8 {
|
1847 |
-
width: 66.66666667%;
|
1848 |
-
}
|
1849 |
-
.sgpb-wrapper .col-sm-7 {
|
1850 |
-
width: 58.33333333%;
|
1851 |
-
}
|
1852 |
-
.sgpb-wrapper .col-sm-6 {
|
1853 |
-
width: 50%;
|
1854 |
-
}
|
1855 |
-
.sgpb-wrapper .col-sm-5 {
|
1856 |
-
width: 41.66666667%;
|
1857 |
-
}
|
1858 |
-
.sgpb-wrapper .col-sm-4 {
|
1859 |
-
width: 33.33333333%;
|
1860 |
-
}
|
1861 |
-
.sgpb-wrapper .col-sm-3 {
|
1862 |
-
width: 25%;
|
1863 |
-
}
|
1864 |
-
.sgpb-wrapper .col-sm-2 {
|
1865 |
-
width: 16.66666667%;
|
1866 |
-
}
|
1867 |
-
.sgpb-wrapper .col-sm-1 {
|
1868 |
-
width: 8.33333333%;
|
1869 |
-
}
|
1870 |
-
.sgpb-wrapper .col-sm-pull-12 {
|
1871 |
-
right: 100%;
|
1872 |
-
}
|
1873 |
-
.sgpb-wrapper .col-sm-pull-11 {
|
1874 |
-
right: 91.66666667%;
|
1875 |
-
}
|
1876 |
-
.sgpb-wrapper .col-sm-pull-10 {
|
1877 |
-
right: 83.33333333%;
|
1878 |
-
}
|
1879 |
-
.sgpb-wrapper .col-sm-pull-9 {
|
1880 |
-
right: 75%;
|
1881 |
-
}
|
1882 |
-
.sgpb-wrapper .col-sm-pull-8 {
|
1883 |
-
right: 66.66666667%;
|
1884 |
-
}
|
1885 |
-
.sgpb-wrapper .col-sm-pull-7 {
|
1886 |
-
right: 58.33333333%;
|
1887 |
-
}
|
1888 |
-
.sgpb-wrapper .col-sm-pull-6 {
|
1889 |
-
right: 50%;
|
1890 |
-
}
|
1891 |
-
.sgpb-wrapper .col-sm-pull-5 {
|
1892 |
-
right: 41.66666667%;
|
1893 |
-
}
|
1894 |
-
.sgpb-wrapper .col-sm-pull-4 {
|
1895 |
-
right: 33.33333333%;
|
1896 |
-
}
|
1897 |
-
.sgpb-wrapper .col-sm-pull-3 {
|
1898 |
-
right: 25%;
|
1899 |
-
}
|
1900 |
-
.sgpb-wrapper .col-sm-pull-2 {
|
1901 |
-
right: 16.66666667%;
|
1902 |
-
}
|
1903 |
-
.sgpb-wrapper .col-sm-pull-1 {
|
1904 |
-
right: 8.33333333%;
|
1905 |
-
}
|
1906 |
-
.sgpb-wrapper .col-sm-pull-0 {
|
1907 |
-
right: auto;
|
1908 |
-
}
|
1909 |
-
.sgpb-wrapper .col-sm-push-12 {
|
1910 |
-
left: 100%;
|
1911 |
-
}
|
1912 |
-
.sgpb-wrapper .col-sm-push-11 {
|
1913 |
-
left: 91.66666667%;
|
1914 |
-
}
|
1915 |
-
.sgpb-wrapper .col-sm-push-10 {
|
1916 |
-
left: 83.33333333%;
|
1917 |
-
}
|
1918 |
-
.sgpb-wrapper .col-sm-push-9 {
|
1919 |
-
left: 75%;
|
1920 |
-
}
|
1921 |
-
.sgpb-wrapper .col-sm-push-8 {
|
1922 |
-
left: 66.66666667%;
|
1923 |
-
}
|
1924 |
-
.sgpb-wrapper .col-sm-push-7 {
|
1925 |
-
left: 58.33333333%;
|
1926 |
-
}
|
1927 |
-
.sgpb-wrapper .col-sm-push-6 {
|
1928 |
-
left: 50%;
|
1929 |
-
}
|
1930 |
-
.sgpb-wrapper .col-sm-push-5 {
|
1931 |
-
left: 41.66666667%;
|
1932 |
-
}
|
1933 |
-
.sgpb-wrapper .col-sm-push-4 {
|
1934 |
-
left: 33.33333333%;
|
1935 |
-
}
|
1936 |
-
.sgpb-wrapper .col-sm-push-3 {
|
1937 |
-
left: 25%;
|
1938 |
-
}
|
1939 |
-
.sgpb-wrapper .col-sm-push-2 {
|
1940 |
-
left: 16.66666667%;
|
1941 |
-
}
|
1942 |
-
.sgpb-wrapper .col-sm-push-1 {
|
1943 |
-
left: 8.33333333%;
|
1944 |
-
}
|
1945 |
-
.sgpb-wrapper .col-sm-push-0 {
|
1946 |
-
left: auto;
|
1947 |
-
}
|
1948 |
-
.sgpb-wrapper .col-sm-offset-12 {
|
1949 |
-
margin-left: 100%;
|
1950 |
-
}
|
1951 |
-
.sgpb-wrapper .col-sm-offset-11 {
|
1952 |
-
margin-left: 91.66666667%;
|
1953 |
-
}
|
1954 |
-
.sgpb-wrapper .col-sm-offset-10 {
|
1955 |
-
margin-left: 83.33333333%;
|
1956 |
-
}
|
1957 |
-
.sgpb-wrapper .col-sm-offset-9 {
|
1958 |
-
margin-left: 75%;
|
1959 |
-
}
|
1960 |
-
.sgpb-wrapper .col-sm-offset-8 {
|
1961 |
-
margin-left: 66.66666667%;
|
1962 |
-
}
|
1963 |
-
.sgpb-wrapper .col-sm-offset-7 {
|
1964 |
-
margin-left: 58.33333333%;
|
1965 |
-
}
|
1966 |
-
.sgpb-wrapper .col-sm-offset-6 {
|
1967 |
-
margin-left: 50%;
|
1968 |
-
}
|
1969 |
-
.sgpb-wrapper .col-sm-offset-5 {
|
1970 |
-
margin-left: 41.66666667%;
|
1971 |
-
}
|
1972 |
-
.sgpb-wrapper .col-sm-offset-4 {
|
1973 |
-
margin-left: 33.33333333%;
|
1974 |
-
}
|
1975 |
-
.sgpb-wrapper .col-sm-offset-3 {
|
1976 |
-
margin-left: 25%;
|
1977 |
-
}
|
1978 |
-
.sgpb-wrapper .col-sm-offset-2 {
|
1979 |
-
margin-left: 16.66666667%;
|
1980 |
-
}
|
1981 |
-
.sgpb-wrapper .col-sm-offset-1 {
|
1982 |
-
margin-left: 8.33333333%;
|
1983 |
-
}
|
1984 |
-
.sgpb-wrapper .col-sm-offset-0 {
|
1985 |
-
margin-left: 0%;
|
1986 |
-
}
|
1987 |
-
}
|
1988 |
-
@media (min-width: 992px) {
|
1989 |
-
.sgpb-wrapper .col-md-1,
|
1990 |
-
.sgpb-wrapper .col-md-2,
|
1991 |
-
.sgpb-wrapper .col-md-3,
|
1992 |
-
.sgpb-wrapper .col-md-4,
|
1993 |
-
.sgpb-wrapper .col-md-5,
|
1994 |
-
.sgpb-wrapper .col-md-6,
|
1995 |
-
.sgpb-wrapper .col-md-7,
|
1996 |
-
.sgpb-wrapper .col-md-8,
|
1997 |
-
.sgpb-wrapper .col-md-9,
|
1998 |
-
.sgpb-wrapper .col-md-10,
|
1999 |
-
.sgpb-wrapper .col-md-11,
|
2000 |
-
.sgpb-wrapper .col-md-12 {
|
2001 |
-
float: left;
|
2002 |
-
}
|
2003 |
-
.sgpb-wrapper .col-md-12 {
|
2004 |
-
width: 100%;
|
2005 |
-
}
|
2006 |
-
.sgpb-wrapper .col-md-11 {
|
2007 |
-
width: 91.66666667%;
|
2008 |
-
}
|
2009 |
-
.sgpb-wrapper .col-md-10 {
|
2010 |
-
width: 83.33333333%;
|
2011 |
-
}
|
2012 |
-
.sgpb-wrapper .col-md-9 {
|
2013 |
-
width: 75%;
|
2014 |
-
}
|
2015 |
-
.sgpb-wrapper .col-md-8 {
|
2016 |
-
width: 66.66666667%;
|
2017 |
-
}
|
2018 |
-
.sgpb-wrapper .col-md-7 {
|
2019 |
-
width: 58.33333333%;
|
2020 |
-
}
|
2021 |
-
.sgpb-wrapper .col-md-6 {
|
2022 |
-
width: 50%;
|
2023 |
-
}
|
2024 |
-
.sgpb-wrapper .col-md-5 {
|
2025 |
-
width: 41.66666667%;
|
2026 |
-
}
|
2027 |
-
.sgpb-wrapper .col-md-4 {
|
2028 |
-
width: 33.33333333%;
|
2029 |
-
}
|
2030 |
-
.sgpb-wrapper .col-md-3 {
|
2031 |
-
width: 25%;
|
2032 |
-
}
|
2033 |
-
.sgpb-wrapper .col-md-2 {
|
2034 |
-
width: 16.66666667%;
|
2035 |
-
}
|
2036 |
-
.sgpb-wrapper .col-md-1 {
|
2037 |
-
width: 8.33333333%;
|
2038 |
-
}
|
2039 |
-
.sgpb-wrapper .col-md-pull-12 {
|
2040 |
-
right: 100%;
|
2041 |
-
}
|
2042 |
-
.sgpb-wrapper .col-md-pull-11 {
|
2043 |
-
right: 91.66666667%;
|
2044 |
-
}
|
2045 |
-
.sgpb-wrapper .col-md-pull-10 {
|
2046 |
-
right: 83.33333333%;
|
2047 |
-
}
|
2048 |
-
.sgpb-wrapper .col-md-pull-9 {
|
2049 |
-
right: 75%;
|
2050 |
-
}
|
2051 |
-
.sgpb-wrapper .col-md-pull-8 {
|
2052 |
-
right: 66.66666667%;
|
2053 |
-
}
|
2054 |
-
.sgpb-wrapper .col-md-pull-7 {
|
2055 |
-
right: 58.33333333%;
|
2056 |
-
}
|
2057 |
-
.sgpb-wrapper .col-md-pull-6 {
|
2058 |
-
right: 50%;
|
2059 |
-
}
|
2060 |
-
.sgpb-wrapper .col-md-pull-5 {
|
2061 |
-
right: 41.66666667%;
|
2062 |
-
}
|
2063 |
-
.sgpb-wrapper .col-md-pull-4 {
|
2064 |
-
right: 33.33333333%;
|
2065 |
-
}
|
2066 |
-
.sgpb-wrapper .col-md-pull-3 {
|
2067 |
-
right: 25%;
|
2068 |
-
}
|
2069 |
-
.sgpb-wrapper .col-md-pull-2 {
|
2070 |
-
right: 16.66666667%;
|
2071 |
-
}
|
2072 |
-
.sgpb-wrapper .col-md-pull-1 {
|
2073 |
-
right: 8.33333333%;
|
2074 |
-
}
|
2075 |
-
.sgpb-wrapper .col-md-pull-0 {
|
2076 |
-
right: auto;
|
2077 |
-
}
|
2078 |
-
.sgpb-wrapper .col-md-push-12 {
|
2079 |
-
left: 100%;
|
2080 |
-
}
|
2081 |
-
.sgpb-wrapper .col-md-push-11 {
|
2082 |
-
left: 91.66666667%;
|
2083 |
-
}
|
2084 |
-
.sgpb-wrapper .col-md-push-10 {
|
2085 |
-
left: 83.33333333%;
|
2086 |
-
}
|
2087 |
-
.sgpb-wrapper .col-md-push-9 {
|
2088 |
-
left: 75%;
|
2089 |
-
}
|
2090 |
-
.sgpb-wrapper .col-md-push-8 {
|
2091 |
-
left: 66.66666667%;
|
2092 |
-
}
|
2093 |
-
.sgpb-wrapper .col-md-push-7 {
|
2094 |
-
left: 58.33333333%;
|
2095 |
-
}
|
2096 |
-
.sgpb-wrapper .col-md-push-6 {
|
2097 |
-
left: 50%;
|
2098 |
-
}
|
2099 |
-
.sgpb-wrapper .col-md-push-5 {
|
2100 |
-
left: 41.66666667%;
|
2101 |
-
}
|
2102 |
-
.sgpb-wrapper .col-md-push-4 {
|
2103 |
-
left: 33.33333333%;
|
2104 |
-
}
|
2105 |
-
.sgpb-wrapper .col-md-push-3 {
|
2106 |
-
left: 25%;
|
2107 |
-
}
|
2108 |
-
.sgpb-wrapper .col-md-push-2 {
|
2109 |
-
left: 16.66666667%;
|
2110 |
-
}
|
2111 |
-
.sgpb-wrapper .col-md-push-1 {
|
2112 |
-
left: 8.33333333%;
|
2113 |
-
}
|
2114 |
-
.sgpb-wrapper .col-md-push-0 {
|
2115 |
-
left: auto;
|
2116 |
-
}
|
2117 |
-
.sgpb-wrapper .col-md-offset-12 {
|
2118 |
-
margin-left: 100%;
|
2119 |
-
}
|
2120 |
-
.sgpb-wrapper .col-md-offset-11 {
|
2121 |
-
margin-left: 91.66666667%;
|
2122 |
-
}
|
2123 |
-
.sgpb-wrapper .col-md-offset-10 {
|
2124 |
-
margin-left: 83.33333333%;
|
2125 |
-
}
|
2126 |
-
.sgpb-wrapper .col-md-offset-9 {
|
2127 |
-
margin-left: 75%;
|
2128 |
-
}
|
2129 |
-
.sgpb-wrapper .col-md-offset-8 {
|
2130 |
-
margin-left: 66.66666667%;
|
2131 |
-
}
|
2132 |
-
.sgpb-wrapper .col-md-offset-7 {
|
2133 |
-
margin-left: 58.33333333%;
|
2134 |
-
}
|
2135 |
-
.sgpb-wrapper .col-md-offset-6 {
|
2136 |
-
margin-left: 50%;
|
2137 |
-
}
|
2138 |
-
.sgpb-wrapper .col-md-offset-5 {
|
2139 |
-
margin-left: 41.66666667%;
|
2140 |
-
}
|
2141 |
-
.sgpb-wrapper .col-md-offset-4 {
|
2142 |
-
margin-left: 33.33333333%;
|
2143 |
-
}
|
2144 |
-
.sgpb-wrapper .col-md-offset-3 {
|
2145 |
-
margin-left: 25%;
|
2146 |
-
}
|
2147 |
-
.sgpb-wrapper .col-md-offset-2 {
|
2148 |
-
margin-left: 16.66666667%;
|
2149 |
-
}
|
2150 |
-
.sgpb-wrapper .col-md-offset-1 {
|
2151 |
-
margin-left: 8.33333333%;
|
2152 |
-
}
|
2153 |
-
.sgpb-wrapper .col-md-offset-0 {
|
2154 |
-
margin-left: 0%;
|
2155 |
-
}
|
2156 |
-
}
|
2157 |
-
@media (min-width: 1200px) {
|
2158 |
-
.sgpb-wrapper .col-lg-1,
|
2159 |
-
.sgpb-wrapper .col-lg-2,
|
2160 |
-
.sgpb-wrapper .col-lg-3,
|
2161 |
-
.sgpb-wrapper .col-lg-4,
|
2162 |
-
.sgpb-wrapper .col-lg-5,
|
2163 |
-
.sgpb-wrapper .col-lg-6,
|
2164 |
-
.sgpb-wrapper .col-lg-7,
|
2165 |
-
.sgpb-wrapper .col-lg-8,
|
2166 |
-
.sgpb-wrapper .col-lg-9,
|
2167 |
-
.sgpb-wrapper .col-lg-10,
|
2168 |
-
.sgpb-wrapper .col-lg-11,
|
2169 |
-
.sgpb-wrapper .col-lg-12 {
|
2170 |
-
float: left;
|
2171 |
-
}
|
2172 |
-
.sgpb-wrapper .col-lg-12 {
|
2173 |
-
width: 100%;
|
2174 |
-
}
|
2175 |
-
.sgpb-wrapper .col-lg-11 {
|
2176 |
-
width: 91.66666667%;
|
2177 |
-
}
|
2178 |
-
.sgpb-wrapper .col-lg-10 {
|
2179 |
-
width: 83.33333333%;
|
2180 |
-
}
|
2181 |
-
.sgpb-wrapper .col-lg-9 {
|
2182 |
-
width: 75%;
|
2183 |
-
}
|
2184 |
-
.sgpb-wrapper .col-lg-8 {
|
2185 |
-
width: 66.66666667%;
|
2186 |
-
}
|
2187 |
-
.sgpb-wrapper .col-lg-7 {
|
2188 |
-
width: 58.33333333%;
|
2189 |
-
}
|
2190 |
-
.sgpb-wrapper .col-lg-6 {
|
2191 |
-
width: 50%;
|
2192 |
-
}
|
2193 |
-
.sgpb-wrapper .col-lg-5 {
|
2194 |
-
width: 41.66666667%;
|
2195 |
-
}
|
2196 |
-
.sgpb-wrapper .col-lg-4 {
|
2197 |
-
width: 33.33333333%;
|
2198 |
-
}
|
2199 |
-
.sgpb-wrapper .col-lg-3 {
|
2200 |
-
width: 25%;
|
2201 |
-
}
|
2202 |
-
.sgpb-wrapper .col-lg-2 {
|
2203 |
-
width: 16.66666667%;
|
2204 |
-
}
|
2205 |
-
.sgpb-wrapper .col-lg-1 {
|
2206 |
-
width: 8.33333333%;
|
2207 |
-
}
|
2208 |
-
.sgpb-wrapper .col-lg-pull-12 {
|
2209 |
-
right: 100%;
|
2210 |
-
}
|
2211 |
-
.sgpb-wrapper .col-lg-pull-11 {
|
2212 |
-
right: 91.66666667%;
|
2213 |
-
}
|
2214 |
-
.sgpb-wrapper .col-lg-pull-10 {
|
2215 |
-
right: 83.33333333%;
|
2216 |
-
}
|
2217 |
-
.sgpb-wrapper .col-lg-pull-9 {
|
2218 |
-
right: 75%;
|
2219 |
-
}
|
2220 |
-
.sgpb-wrapper .col-lg-pull-8 {
|
2221 |
-
right: 66.66666667%;
|
2222 |
-
}
|
2223 |
-
.sgpb-wrapper .col-lg-pull-7 {
|
2224 |
-
right: 58.33333333%;
|
2225 |
-
}
|
2226 |
-
.sgpb-wrapper .col-lg-pull-6 {
|
2227 |
-
right: 50%;
|
2228 |
-
}
|
2229 |
-
.sgpb-wrapper .col-lg-pull-5 {
|
2230 |
-
right: 41.66666667%;
|
2231 |
-
}
|
2232 |
-
.sgpb-wrapper .col-lg-pull-4 {
|
2233 |
-
right: 33.33333333%;
|
2234 |
-
}
|
2235 |
-
.sgpb-wrapper .col-lg-pull-3 {
|
2236 |
-
right: 25%;
|
2237 |
-
}
|
2238 |
-
.sgpb-wrapper .col-lg-pull-2 {
|
2239 |
-
right: 16.66666667%;
|
2240 |
-
}
|
2241 |
-
.sgpb-wrapper .col-lg-pull-1 {
|
2242 |
-
right: 8.33333333%;
|
2243 |
-
}
|
2244 |
-
.sgpb-wrapper .col-lg-pull-0 {
|
2245 |
-
right: auto;
|
2246 |
-
}
|
2247 |
-
.sgpb-wrapper .col-lg-push-12 {
|
2248 |
-
left: 100%;
|
2249 |
-
}
|
2250 |
-
.sgpb-wrapper .col-lg-push-11 {
|
2251 |
-
left: 91.66666667%;
|
2252 |
-
}
|
2253 |
-
.sgpb-wrapper .col-lg-push-10 {
|
2254 |
-
left: 83.33333333%;
|
2255 |
-
}
|
2256 |
-
.sgpb-wrapper .col-lg-push-9 {
|
2257 |
-
left: 75%;
|
2258 |
-
}
|
2259 |
-
.sgpb-wrapper .col-lg-push-8 {
|
2260 |
-
left: 66.66666667%;
|
2261 |
-
}
|
2262 |
-
.sgpb-wrapper .col-lg-push-7 {
|
2263 |
-
left: 58.33333333%;
|
2264 |
-
}
|
2265 |
-
.sgpb-wrapper .col-lg-push-6 {
|
2266 |
-
left: 50%;
|
2267 |
-
}
|
2268 |
-
.sgpb-wrapper .col-lg-push-5 {
|
2269 |
-
left: 41.66666667%;
|
2270 |
-
}
|
2271 |
-
.sgpb-wrapper .col-lg-push-4 {
|
2272 |
-
left: 33.33333333%;
|
2273 |
-
}
|
2274 |
-
.sgpb-wrapper .col-lg-push-3 {
|
2275 |
-
left: 25%;
|
2276 |
-
}
|
2277 |
-
.sgpb-wrapper .col-lg-push-2 {
|
2278 |
-
left: 16.66666667%;
|
2279 |
-
}
|
2280 |
-
.sgpb-wrapper .col-lg-push-1 {
|
2281 |
-
left: 8.33333333%;
|
2282 |
-
}
|
2283 |
-
.sgpb-wrapper .col-lg-push-0 {
|
2284 |
-
left: auto;
|
2285 |
-
}
|
2286 |
-
.sgpb-wrapper .col-lg-offset-12 {
|
2287 |
-
margin-left: 100%;
|
2288 |
-
}
|
2289 |
-
.sgpb-wrapper .col-lg-offset-11 {
|
2290 |
-
margin-left: 91.66666667%;
|
2291 |
-
}
|
2292 |
-
.sgpb-wrapper .col-lg-offset-10 {
|
2293 |
-
margin-left: 83.33333333%;
|
2294 |
-
}
|
2295 |
-
.sgpb-wrapper .col-lg-offset-9 {
|
2296 |
-
margin-left: 75%;
|
2297 |
-
}
|
2298 |
-
.sgpb-wrapper .col-lg-offset-8 {
|
2299 |
-
margin-left: 66.66666667%;
|
2300 |
-
}
|
2301 |
-
.sgpb-wrapper .col-lg-offset-7 {
|
2302 |
-
margin-left: 58.33333333%;
|
2303 |
-
}
|
2304 |
-
.sgpb-wrapper .col-lg-offset-6 {
|
2305 |
-
margin-left: 50%;
|
2306 |
-
}
|
2307 |
-
.sgpb-wrapper .col-lg-offset-5 {
|
2308 |
-
margin-left: 41.66666667%;
|
2309 |
-
}
|
2310 |
-
.sgpb-wrapper .col-lg-offset-4 {
|
2311 |
-
margin-left: 33.33333333%;
|
2312 |
-
}
|
2313 |
-
.sgpb-wrapper .col-lg-offset-3 {
|
2314 |
-
margin-left: 25%;
|
2315 |
-
}
|
2316 |
-
.sgpb-wrapper .col-lg-offset-2 {
|
2317 |
-
margin-left: 16.66666667%;
|
2318 |
-
}
|
2319 |
-
.sgpb-wrapper .col-lg-offset-1 {
|
2320 |
-
margin-left: 8.33333333%;
|
2321 |
-
}
|
2322 |
-
.sgpb-wrapper .col-lg-offset-0 {
|
2323 |
-
margin-left: 0%;
|
2324 |
-
}
|
2325 |
-
}
|
2326 |
-
.sgpb-wrapper table {
|
2327 |
-
background-color: transparent;
|
2328 |
-
}
|
2329 |
-
.sgpb-wrapper caption {
|
2330 |
-
padding-top: 8px;
|
2331 |
-
padding-bottom: 8px;
|
2332 |
-
color: #b4bcc2;
|
2333 |
-
text-align: left;
|
2334 |
-
}
|
2335 |
-
.sgpb-wrapper th {
|
2336 |
-
text-align: left;
|
2337 |
-
}
|
2338 |
-
.sgpb-wrapper .table {
|
2339 |
-
width: 100%;
|
2340 |
-
max-width: 100%;
|
2341 |
-
margin-bottom: 21px;
|
2342 |
-
}
|
2343 |
-
.sgpb-wrapper .table > thead > tr > th,
|
2344 |
.sgpb-wrapper .table > tbody > tr > th,
|
2345 |
.sgpb-wrapper .table > tfoot > tr > th,
|
2346 |
.sgpb-wrapper .table > thead > tr > td,
|
2347 |
.sgpb-wrapper .table > tbody > tr > td,
|
2348 |
-
.sgpb-wrapper .table >
|
2349 |
-
padding: 8px;
|
2350 |
-
line-height: 1.42857143;
|
2351 |
-
vertical-align: top;
|
2352 |
-
border-top: 1px solid #ecf0f1;
|
2353 |
-
}
|
2354 |
-
.sgpb-wrapper .table > thead > tr > th {
|
2355 |
-
vertical-align: bottom;
|
2356 |
-
border-bottom: 2px solid #ecf0f1;
|
2357 |
-
}
|
2358 |
-
.sgpb-wrapper .table > caption + thead > tr:first-child > th,
|
2359 |
.sgpb-wrapper .table > colgroup + thead > tr:first-child > th,
|
2360 |
.sgpb-wrapper .table > thead:first-child > tr:first-child > th,
|
2361 |
.sgpb-wrapper .table > caption + thead > tr:first-child > td,
|
2362 |
.sgpb-wrapper .table > colgroup + thead > tr:first-child > td,
|
2363 |
-
.sgpb-wrapper .table
|
2364 |
-
|
2365 |
-
}
|
2366 |
-
.sgpb-wrapper .table > tbody + tbody {
|
2367 |
-
border-top: 2px solid #ecf0f1;
|
2368 |
-
}
|
2369 |
-
.sgpb-wrapper .table .table {
|
2370 |
-
background-color: #ffffff;
|
2371 |
-
}
|
2372 |
-
.sgpb-wrapper .table-condensed > thead > tr > th,
|
2373 |
.sgpb-wrapper .table-condensed > tbody > tr > th,
|
2374 |
.sgpb-wrapper .table-condensed > tfoot > tr > th,
|
2375 |
.sgpb-wrapper .table-condensed > thead > tr > td,
|
2376 |
.sgpb-wrapper .table-condensed > tbody > tr > td,
|
2377 |
-
.sgpb-wrapper .table-condensed
|
2378 |
-
|
2379 |
-
}
|
2380 |
-
.sgpb-wrapper .table-bordered {
|
2381 |
-
border: 1px solid #ecf0f1;
|
2382 |
-
}
|
2383 |
-
.sgpb-wrapper .table-bordered > thead > tr > th,
|
2384 |
.sgpb-wrapper .table-bordered > tbody > tr > th,
|
2385 |
.sgpb-wrapper .table-bordered > tfoot > tr > th,
|
2386 |
.sgpb-wrapper .table-bordered > thead > tr > td,
|
2387 |
.sgpb-wrapper .table-bordered > tbody > tr > td,
|
2388 |
-
.sgpb-wrapper .table-bordered
|
2389 |
-
|
2390 |
-
}
|
2391 |
-
.sgpb-wrapper
|
2392 |
-
.sgpb-wrapper .table-bordered > thead > tr > td {
|
2393 |
-
border-bottom-width: 2px;
|
2394 |
-
}
|
2395 |
-
.sgpb-wrapper .table-striped > tbody > tr:nth-of-type(odd) {
|
2396 |
-
background-color: #f9f9f9;
|
2397 |
-
}
|
2398 |
-
.sgpb-wrapper .table-hover > tbody > tr:hover {
|
2399 |
-
background-color: #ecf0f1;
|
2400 |
-
}
|
2401 |
-
.sgpb-wrapper table col[class*="col-"] {
|
2402 |
-
position: static;
|
2403 |
-
float: none;
|
2404 |
-
display: table-column;
|
2405 |
-
}
|
2406 |
-
.sgpb-wrapper table td[class*="col-"],
|
2407 |
-
.sgpb-wrapper table th[class*="col-"] {
|
2408 |
-
position: static;
|
2409 |
-
float: none;
|
2410 |
-
display: table-cell;
|
2411 |
-
}
|
2412 |
-
.sgpb-wrapper .table > thead > tr > td.active,
|
2413 |
.sgpb-wrapper .table > tbody > tr > td.active,
|
2414 |
.sgpb-wrapper .table > tfoot > tr > td.active,
|
2415 |
.sgpb-wrapper .table > thead > tr > th.active,
|
@@ -2420,17 +403,11 @@
|
|
2420 |
.sgpb-wrapper .table > tfoot > tr.active > td,
|
2421 |
.sgpb-wrapper .table > thead > tr.active > th,
|
2422 |
.sgpb-wrapper .table > tbody > tr.active > th,
|
2423 |
-
.sgpb-wrapper .table >
|
2424 |
-
background-color: #ecf0f1;
|
2425 |
-
}
|
2426 |
-
.sgpb-wrapper .table-hover > tbody > tr > td.active:hover,
|
2427 |
.sgpb-wrapper .table-hover > tbody > tr > th.active:hover,
|
2428 |
.sgpb-wrapper .table-hover > tbody > tr.active:hover > td,
|
2429 |
.sgpb-wrapper .table-hover > tbody > tr:hover > .active,
|
2430 |
-
.sgpb-wrapper .table-hover
|
2431 |
-
background-color: #dde4e6;
|
2432 |
-
}
|
2433 |
-
.sgpb-wrapper .table > thead > tr > td.success,
|
2434 |
.sgpb-wrapper .table > tbody > tr > td.success,
|
2435 |
.sgpb-wrapper .table > tfoot > tr > td.success,
|
2436 |
.sgpb-wrapper .table > thead > tr > th.success,
|
@@ -2441,17 +418,11 @@
|
|
2441 |
.sgpb-wrapper .table > tfoot > tr.success > td,
|
2442 |
.sgpb-wrapper .table > thead > tr.success > th,
|
2443 |
.sgpb-wrapper .table > tbody > tr.success > th,
|
2444 |
-
.sgpb-wrapper .table >
|
2445 |
-
background-color: #18bc9c;
|
2446 |
-
}
|
2447 |
-
.sgpb-wrapper .table-hover > tbody > tr > td.success:hover,
|
2448 |
.sgpb-wrapper .table-hover > tbody > tr > th.success:hover,
|
2449 |
.sgpb-wrapper .table-hover > tbody > tr.success:hover > td,
|
2450 |
.sgpb-wrapper .table-hover > tbody > tr:hover > .success,
|
2451 |
-
.sgpb-wrapper .table-hover
|
2452 |
-
background-color: #15a589;
|
2453 |
-
}
|
2454 |
-
.sgpb-wrapper .table > thead > tr > td.info,
|
2455 |
.sgpb-wrapper .table > tbody > tr > td.info,
|
2456 |
.sgpb-wrapper .table > tfoot > tr > td.info,
|
2457 |
.sgpb-wrapper .table > thead > tr > th.info,
|
@@ -2462,17 +433,11 @@
|
|
2462 |
.sgpb-wrapper .table > tfoot > tr.info > td,
|
2463 |
.sgpb-wrapper .table > thead > tr.info > th,
|
2464 |
.sgpb-wrapper .table > tbody > tr.info > th,
|
2465 |
-
.sgpb-wrapper .table >
|
2466 |
-
background-color: #3498db;
|
2467 |
-
}
|
2468 |
-
.sgpb-wrapper .table-hover > tbody > tr > td.info:hover,
|
2469 |
.sgpb-wrapper .table-hover > tbody > tr > th.info:hover,
|
2470 |
.sgpb-wrapper .table-hover > tbody > tr.info:hover > td,
|
2471 |
.sgpb-wrapper .table-hover > tbody > tr:hover > .info,
|
2472 |
-
.sgpb-wrapper .table-hover
|
2473 |
-
background-color: #258cd1;
|
2474 |
-
}
|
2475 |
-
.sgpb-wrapper .table > thead > tr > td.warning,
|
2476 |
.sgpb-wrapper .table > tbody > tr > td.warning,
|
2477 |
.sgpb-wrapper .table > tfoot > tr > td.warning,
|
2478 |
.sgpb-wrapper .table > thead > tr > th.warning,
|
@@ -2483,17 +448,11 @@
|
|
2483 |
.sgpb-wrapper .table > tfoot > tr.warning > td,
|
2484 |
.sgpb-wrapper .table > thead > tr.warning > th,
|
2485 |
.sgpb-wrapper .table > tbody > tr.warning > th,
|
2486 |
-
.sgpb-wrapper .table >
|
2487 |
-
background-color: #f39c12;
|
2488 |
-
}
|
2489 |
-
.sgpb-wrapper .table-hover > tbody > tr > td.warning:hover,
|
2490 |
.sgpb-wrapper .table-hover > tbody > tr > th.warning:hover,
|
2491 |
.sgpb-wrapper .table-hover > tbody > tr.warning:hover > td,
|
2492 |
.sgpb-wrapper .table-hover > tbody > tr:hover > .warning,
|
2493 |
-
.sgpb-wrapper .table-hover
|
2494 |
-
background-color: #e08e0b;
|
2495 |
-
}
|
2496 |
-
.sgpb-wrapper .table > thead > tr > td.danger,
|
2497 |
.sgpb-wrapper .table > tbody > tr > td.danger,
|
2498 |
.sgpb-wrapper .table > tfoot > tr > td.danger,
|
2499 |
.sgpb-wrapper .table > thead > tr > th.danger,
|
@@ -2504,388 +463,99 @@
|
|
2504 |
.sgpb-wrapper .table > tfoot > tr.danger > td,
|
2505 |
.sgpb-wrapper .table > thead > tr.danger > th,
|
2506 |
.sgpb-wrapper .table > tbody > tr.danger > th,
|
2507 |
-
.sgpb-wrapper .table >
|
2508 |
-
background-color: #e74c3c;
|
2509 |
-
}
|
2510 |
-
.sgpb-wrapper .table-hover > tbody > tr > td.danger:hover,
|
2511 |
.sgpb-wrapper .table-hover > tbody > tr > th.danger:hover,
|
2512 |
.sgpb-wrapper .table-hover > tbody > tr.danger:hover > td,
|
2513 |
.sgpb-wrapper .table-hover > tbody > tr:hover > .danger,
|
2514 |
-
.sgpb-wrapper .table-hover
|
2515 |
-
|
2516 |
-
|
2517 |
-
.sgpb-wrapper .table-responsive
|
2518 |
-
|
2519 |
-
|
2520 |
-
}
|
2521 |
-
|
2522 |
-
|
2523 |
-
|
2524 |
-
|
2525 |
-
|
2526 |
-
|
2527 |
-
|
2528 |
-
|
2529 |
-
|
2530 |
-
|
2531 |
-
|
2532 |
-
|
2533 |
-
|
2534 |
-
|
2535 |
-
|
2536 |
-
|
2537 |
-
|
2538 |
-
|
2539 |
-
|
2540 |
-
.sgpb-wrapper .table-responsive > .table-bordered {
|
2541 |
-
border: 0;
|
2542 |
-
}
|
2543 |
-
.sgpb-wrapper .table-responsive > .table-bordered > thead > tr > th:first-child,
|
2544 |
-
.sgpb-wrapper .table-responsive > .table-bordered > tbody > tr > th:first-child,
|
2545 |
-
.sgpb-wrapper .table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
2546 |
-
.sgpb-wrapper .table-responsive > .table-bordered > thead > tr > td:first-child,
|
2547 |
-
.sgpb-wrapper .table-responsive > .table-bordered > tbody > tr > td:first-child,
|
2548 |
-
.sgpb-wrapper .table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
2549 |
-
border-left: 0;
|
2550 |
-
}
|
2551 |
-
.sgpb-wrapper .table-responsive > .table-bordered > thead > tr > th:last-child,
|
2552 |
-
.sgpb-wrapper .table-responsive > .table-bordered > tbody > tr > th:last-child,
|
2553 |
-
.sgpb-wrapper .table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
2554 |
-
.sgpb-wrapper .table-responsive > .table-bordered > thead > tr > td:last-child,
|
2555 |
-
.sgpb-wrapper .table-responsive > .table-bordered > tbody > tr > td:last-child,
|
2556 |
-
.sgpb-wrapper .table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
2557 |
-
border-right: 0;
|
2558 |
-
}
|
2559 |
-
.sgpb-wrapper .table-responsive > .table-bordered > tbody > tr:last-child > th,
|
2560 |
-
.sgpb-wrapper .table-responsive > .table-bordered > tfoot > tr:last-child > th,
|
2561 |
-
.sgpb-wrapper .table-responsive > .table-bordered > tbody > tr:last-child > td,
|
2562 |
-
.sgpb-wrapper .table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
2563 |
-
border-bottom: 0;
|
2564 |
-
}
|
2565 |
-
}
|
2566 |
-
.sgpb-wrapper fieldset {
|
2567 |
-
padding: 0;
|
2568 |
-
margin: 0;
|
2569 |
-
border: 0;
|
2570 |
-
min-width: 0;
|
2571 |
-
}
|
2572 |
-
.sgpb-wrapper legend {
|
2573 |
-
display: block;
|
2574 |
-
width: 100%;
|
2575 |
-
padding: 0;
|
2576 |
-
margin-bottom: 21px;
|
2577 |
-
font-size: 22.5px;
|
2578 |
-
line-height: inherit;
|
2579 |
-
color: #2c3e50;
|
2580 |
-
border: 0;
|
2581 |
-
border-bottom: 1px solid transparent;
|
2582 |
-
}
|
2583 |
-
.sgpb-wrapper label {
|
2584 |
-
display: inline-block;
|
2585 |
-
max-width: 100%;
|
2586 |
-
margin-bottom: 5px;
|
2587 |
-
font-weight: bold;
|
2588 |
-
}
|
2589 |
-
.sgpb-wrapper input[type="search"] {
|
2590 |
-
-webkit-box-sizing: border-box;
|
2591 |
-
-moz-box-sizing: border-box;
|
2592 |
-
box-sizing: border-box;
|
2593 |
-
}
|
2594 |
-
.sgpb-wrapper input[type="radio"],
|
2595 |
-
.sgpb-wrapper input[type="checkbox"] {
|
2596 |
-
margin: 4px 0 0;
|
2597 |
-
margin-top: 1px \9;
|
2598 |
-
line-height: normal;
|
2599 |
-
}
|
2600 |
-
.sgpb-wrapper input[type="file"] {
|
2601 |
-
display: block;
|
2602 |
-
}
|
2603 |
-
.sgpb-wrapper input[type="range"] {
|
2604 |
-
display: block;
|
2605 |
-
width: 100%;
|
2606 |
-
}
|
2607 |
-
.sgpb-wrapper select[multiple],
|
2608 |
-
.sgpb-wrapper select[size] {
|
2609 |
-
height: auto;
|
2610 |
-
}
|
2611 |
-
.sgpb-wrapper input[type="file"]:focus,
|
2612 |
.sgpb-wrapper input[type="radio"]:focus,
|
2613 |
-
.sgpb-wrapper input[type="checkbox"]:focus
|
2614 |
-
|
2615 |
-
|
2616 |
-
|
2617 |
-
.sgpb-wrapper
|
2618 |
-
display: block;
|
2619 |
-
padding-top: 11px;
|
2620 |
-
font-size: 15px;
|
2621 |
-
line-height: 1.42857143;
|
2622 |
-
color: #2c3e50;
|
2623 |
-
}
|
2624 |
-
.sgpb-wrapper .form-control {
|
2625 |
-
display: block;
|
2626 |
-
width: 100%;
|
2627 |
-
height: 45px;
|
2628 |
-
padding: 10px 15px;
|
2629 |
-
font-size: 15px;
|
2630 |
-
line-height: 1.42857143;
|
2631 |
-
color: #2c3e50;
|
2632 |
-
background-color: #ffffff;
|
2633 |
-
background-image: none;
|
2634 |
-
border: 1px solid #dce4ec;
|
2635 |
-
border-radius: 4px;
|
2636 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2637 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2638 |
-
-webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
|
2639 |
-
-o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
2640 |
-
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
2641 |
-
}
|
2642 |
-
.sgpb-wrapper .form-control:focus {
|
2643 |
-
border-color: #2c3e50;
|
2644 |
-
outline: 0;
|
2645 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(44, 62, 80, 0.6);
|
2646 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(44, 62, 80, 0.6);
|
2647 |
-
}
|
2648 |
-
.sgpb-wrapper .form-control::-moz-placeholder {
|
2649 |
-
color: #acb6c0;
|
2650 |
-
opacity: 1;
|
2651 |
-
}
|
2652 |
-
.sgpb-wrapper .form-control:-ms-input-placeholder {
|
2653 |
-
color: #acb6c0;
|
2654 |
-
}
|
2655 |
-
.sgpb-wrapper .form-control::-webkit-input-placeholder {
|
2656 |
-
color: #acb6c0;
|
2657 |
-
}
|
2658 |
-
.sgpb-wrapper .form-control::-ms-expand {
|
2659 |
-
border: 0;
|
2660 |
-
background-color: transparent;
|
2661 |
-
}
|
2662 |
-
.sgpb-wrapper .form-control[disabled],
|
2663 |
.sgpb-wrapper .form-control[readonly],
|
2664 |
-
.sgpb-wrapper fieldset[disabled] .form-control
|
2665 |
-
|
2666 |
-
|
2667 |
-
|
2668 |
-
.sgpb-wrapper .form-control[
|
2669 |
-
.sgpb-wrapper
|
2670 |
-
|
2671 |
-
|
2672 |
-
.sgpb-wrapper
|
2673 |
-
|
2674 |
-
|
2675 |
-
.sgpb-wrapper input[type="
|
2676 |
-
|
2677 |
-
|
2678 |
-
|
2679 |
-
|
2680 |
-
|
2681 |
-
|
2682 |
-
|
2683 |
-
|
2684 |
-
|
2685 |
-
|
2686 |
-
|
2687 |
-
.sgpb-wrapper input[type="datetime-local"].input-sm,
|
2688 |
-
.sgpb-wrapper input[type="month"].input-sm,
|
2689 |
-
.sgpb-wrapper .input-group-sm input[type="date"],
|
2690 |
-
.sgpb-wrapper .input-group-sm input[type="time"],
|
2691 |
-
.sgpb-wrapper .input-group-sm input[type="datetime-local"],
|
2692 |
-
.sgpb-wrapper .input-group-sm input[type="month"] {
|
2693 |
-
line-height: 35px;
|
2694 |
-
}
|
2695 |
-
.sgpb-wrapper input[type="date"].input-lg,
|
2696 |
-
.sgpb-wrapper input[type="time"].input-lg,
|
2697 |
-
.sgpb-wrapper input[type="datetime-local"].input-lg,
|
2698 |
-
.sgpb-wrapper input[type="month"].input-lg,
|
2699 |
-
.sgpb-wrapper .input-group-lg input[type="date"],
|
2700 |
-
.sgpb-wrapper .input-group-lg input[type="time"],
|
2701 |
-
.sgpb-wrapper .input-group-lg input[type="datetime-local"],
|
2702 |
-
.sgpb-wrapper .input-group-lg input[type="month"] {
|
2703 |
-
line-height: 66px;
|
2704 |
-
}
|
2705 |
-
}
|
2706 |
-
.sgpb-wrapper .form-group {
|
2707 |
-
margin-bottom: 15px;
|
2708 |
-
}
|
2709 |
-
.sgpb-wrapper .radio,
|
2710 |
-
.sgpb-wrapper .checkbox {
|
2711 |
-
position: relative;
|
2712 |
-
display: block;
|
2713 |
-
margin-top: 10px;
|
2714 |
-
margin-bottom: 10px;
|
2715 |
-
}
|
2716 |
-
.sgpb-wrapper .radio label,
|
2717 |
-
.sgpb-wrapper .checkbox label {
|
2718 |
-
min-height: 21px;
|
2719 |
-
padding-left: 20px;
|
2720 |
-
margin-bottom: 0;
|
2721 |
-
font-weight: normal;
|
2722 |
-
cursor: pointer;
|
2723 |
-
}
|
2724 |
-
.sgpb-wrapper .radio input[type="radio"],
|
2725 |
.sgpb-wrapper .radio-inline input[type="radio"],
|
2726 |
.sgpb-wrapper .checkbox input[type="checkbox"],
|
2727 |
-
.sgpb-wrapper .checkbox-inline input[type="checkbox"]
|
2728 |
-
|
2729 |
-
|
2730 |
-
|
2731 |
-
}
|
2732 |
-
.sgpb-wrapper .radio + .radio,
|
2733 |
-
.sgpb-wrapper .checkbox + .checkbox {
|
2734 |
-
margin-top: -5px;
|
2735 |
-
}
|
2736 |
-
.sgpb-wrapper .radio-inline,
|
2737 |
-
.sgpb-wrapper .checkbox-inline {
|
2738 |
-
position: relative;
|
2739 |
-
display: inline-block;
|
2740 |
-
padding-left: 20px;
|
2741 |
-
margin-bottom: 0;
|
2742 |
-
vertical-align: middle;
|
2743 |
-
font-weight: normal;
|
2744 |
-
cursor: pointer;
|
2745 |
-
}
|
2746 |
-
.sgpb-wrapper .radio-inline + .radio-inline,
|
2747 |
-
.sgpb-wrapper .checkbox-inline + .checkbox-inline {
|
2748 |
-
margin-top: 0;
|
2749 |
-
margin-left: 10px;
|
2750 |
-
}
|
2751 |
-
.sgpb-wrapper input[type="radio"][disabled],
|
2752 |
.sgpb-wrapper input[type="checkbox"][disabled],
|
2753 |
.sgpb-wrapper input[type="radio"].disabled,
|
2754 |
.sgpb-wrapper input[type="checkbox"].disabled,
|
2755 |
.sgpb-wrapper fieldset[disabled] input[type="radio"],
|
2756 |
-
.sgpb-wrapper fieldset[disabled] input[type="checkbox"]
|
2757 |
-
cursor: not-allowed;
|
2758 |
-
}
|
2759 |
-
.sgpb-wrapper .radio-inline.disabled,
|
2760 |
.sgpb-wrapper .checkbox-inline.disabled,
|
2761 |
.sgpb-wrapper fieldset[disabled] .radio-inline,
|
2762 |
-
.sgpb-wrapper fieldset[disabled] .checkbox-inline
|
2763 |
-
cursor: not-allowed;
|
2764 |
-
}
|
2765 |
-
.sgpb-wrapper .radio.disabled label,
|
2766 |
.sgpb-wrapper .checkbox.disabled label,
|
2767 |
.sgpb-wrapper fieldset[disabled] .radio label,
|
2768 |
-
.sgpb-wrapper fieldset[disabled] .checkbox
|
2769 |
-
|
2770 |
-
}
|
2771 |
-
.sgpb-wrapper .
|
2772 |
-
|
2773 |
-
|
2774 |
-
|
2775 |
-
|
2776 |
-
}
|
2777 |
-
.sgpb-wrapper .form-
|
2778 |
-
.sgpb-wrapper .form-control-
|
2779 |
-
|
2780 |
-
|
2781 |
-
}
|
2782 |
-
.sgpb-wrapper .input-sm {
|
2783 |
-
height: 35px;
|
2784 |
-
padding: 6px 9px;
|
2785 |
-
font-size: 13px;
|
2786 |
-
line-height: 1.5;
|
2787 |
-
border-radius: 3px;
|
2788 |
-
}
|
2789 |
-
.sgpb-wrapper select.input-sm {
|
2790 |
-
height: 35px;
|
2791 |
-
line-height: 35px;
|
2792 |
-
}
|
2793 |
-
.sgpb-wrapper textarea.input-sm,
|
2794 |
-
.sgpb-wrapper select[multiple].input-sm {
|
2795 |
-
height: auto;
|
2796 |
-
}
|
2797 |
-
.sgpb-wrapper .form-group-sm .form-control {
|
2798 |
-
height: 35px;
|
2799 |
-
padding: 6px 9px;
|
2800 |
-
font-size: 13px;
|
2801 |
-
line-height: 1.5;
|
2802 |
-
border-radius: 3px;
|
2803 |
-
}
|
2804 |
-
.sgpb-wrapper .form-group-sm select.form-control {
|
2805 |
-
height: 35px;
|
2806 |
-
line-height: 35px;
|
2807 |
-
}
|
2808 |
-
.sgpb-wrapper .form-group-sm textarea.form-control,
|
2809 |
-
.sgpb-wrapper .form-group-sm select[multiple].form-control {
|
2810 |
-
height: auto;
|
2811 |
-
}
|
2812 |
-
.sgpb-wrapper .form-group-sm .form-control-static {
|
2813 |
-
height: 35px;
|
2814 |
-
min-height: 34px;
|
2815 |
-
padding: 7px 9px;
|
2816 |
-
font-size: 13px;
|
2817 |
-
line-height: 1.5;
|
2818 |
-
}
|
2819 |
-
.sgpb-wrapper .input-lg {
|
2820 |
-
height: 66px;
|
2821 |
-
padding: 18px 27px;
|
2822 |
-
font-size: 19px;
|
2823 |
-
line-height: 1.3333333;
|
2824 |
-
border-radius: 6px;
|
2825 |
-
}
|
2826 |
-
.sgpb-wrapper select.input-lg {
|
2827 |
-
height: 66px;
|
2828 |
-
line-height: 66px;
|
2829 |
-
}
|
2830 |
-
.sgpb-wrapper textarea.input-lg,
|
2831 |
-
.sgpb-wrapper select[multiple].input-lg {
|
2832 |
-
height: auto;
|
2833 |
-
}
|
2834 |
-
.sgpb-wrapper .form-group-lg .form-control {
|
2835 |
-
height: 66px;
|
2836 |
-
padding: 18px 27px;
|
2837 |
-
font-size: 19px;
|
2838 |
-
line-height: 1.3333333;
|
2839 |
-
border-radius: 6px;
|
2840 |
-
}
|
2841 |
-
.sgpb-wrapper .form-group-lg select.form-control {
|
2842 |
-
height: 66px;
|
2843 |
-
line-height: 66px;
|
2844 |
-
}
|
2845 |
-
.sgpb-wrapper .form-group-lg textarea.form-control,
|
2846 |
-
.sgpb-wrapper .form-group-lg select[multiple].form-control {
|
2847 |
-
height: auto;
|
2848 |
-
}
|
2849 |
-
.sgpb-wrapper .form-group-lg .form-control-static {
|
2850 |
-
height: 66px;
|
2851 |
-
min-height: 40px;
|
2852 |
-
padding: 19px 27px;
|
2853 |
-
font-size: 19px;
|
2854 |
-
line-height: 1.3333333;
|
2855 |
-
}
|
2856 |
-
.sgpb-wrapper .has-feedback {
|
2857 |
-
position: relative;
|
2858 |
-
}
|
2859 |
-
.sgpb-wrapper .has-feedback .form-control {
|
2860 |
-
padding-right: 56.25px;
|
2861 |
-
}
|
2862 |
-
.sgpb-wrapper .form-control-feedback {
|
2863 |
-
position: absolute;
|
2864 |
-
top: 0;
|
2865 |
-
right: 0;
|
2866 |
-
z-index: 2;
|
2867 |
-
display: block;
|
2868 |
-
width: 45px;
|
2869 |
-
height: 45px;
|
2870 |
-
line-height: 45px;
|
2871 |
-
text-align: center;
|
2872 |
-
pointer-events: none;
|
2873 |
-
}
|
2874 |
-
.sgpb-wrapper .input-lg + .form-control-feedback,
|
2875 |
.sgpb-wrapper .input-group-lg + .form-control-feedback,
|
2876 |
-
.sgpb-wrapper .form-group-lg .form-control + .form-control-feedback
|
2877 |
-
width: 66px;
|
2878 |
-
height: 66px;
|
2879 |
-
line-height: 66px;
|
2880 |
-
}
|
2881 |
-
.sgpb-wrapper .input-sm + .form-control-feedback,
|
2882 |
.sgpb-wrapper .input-group-sm + .form-control-feedback,
|
2883 |
-
.sgpb-wrapper .form-group-sm .form-control
|
2884 |
-
width: 35px;
|
2885 |
-
height: 35px;
|
2886 |
-
line-height: 35px;
|
2887 |
-
}
|
2888 |
-
.sgpb-wrapper .has-success .help-block,
|
2889 |
.sgpb-wrapper .has-success .control-label,
|
2890 |
.sgpb-wrapper .has-success .radio,
|
2891 |
.sgpb-wrapper .has-success .checkbox,
|
@@ -2894,28 +564,8 @@
|
|
2894 |
.sgpb-wrapper .has-success.radio label,
|
2895 |
.sgpb-wrapper .has-success.checkbox label,
|
2896 |
.sgpb-wrapper .has-success.radio-inline label,
|
2897 |
-
.sgpb-wrapper .has-success.checkbox-inline
|
2898 |
-
|
2899 |
-
}
|
2900 |
-
.sgpb-wrapper .has-success .form-control {
|
2901 |
-
border-color: #ffffff;
|
2902 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2903 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2904 |
-
}
|
2905 |
-
.sgpb-wrapper .has-success .form-control:focus {
|
2906 |
-
border-color: #e6e6e6;
|
2907 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
|
2908 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
|
2909 |
-
}
|
2910 |
-
.sgpb-wrapper .has-success .input-group-addon {
|
2911 |
-
color: #ffffff;
|
2912 |
-
border-color: #ffffff;
|
2913 |
-
background-color: #18bc9c;
|
2914 |
-
}
|
2915 |
-
.sgpb-wrapper .has-success .form-control-feedback {
|
2916 |
-
color: #ffffff;
|
2917 |
-
}
|
2918 |
-
.sgpb-wrapper .has-warning .help-block,
|
2919 |
.sgpb-wrapper .has-warning .control-label,
|
2920 |
.sgpb-wrapper .has-warning .radio,
|
2921 |
.sgpb-wrapper .has-warning .checkbox,
|
@@ -2924,28 +574,8 @@
|
|
2924 |
.sgpb-wrapper .has-warning.radio label,
|
2925 |
.sgpb-wrapper .has-warning.checkbox label,
|
2926 |
.sgpb-wrapper .has-warning.radio-inline label,
|
2927 |
-
.sgpb-wrapper .has-warning.checkbox-inline
|
2928 |
-
|
2929 |
-
}
|
2930 |
-
.sgpb-wrapper .has-warning .form-control {
|
2931 |
-
border-color: #ffffff;
|
2932 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2933 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2934 |
-
}
|
2935 |
-
.sgpb-wrapper .has-warning .form-control:focus {
|
2936 |
-
border-color: #e6e6e6;
|
2937 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
|
2938 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
|
2939 |
-
}
|
2940 |
-
.sgpb-wrapper .has-warning .input-group-addon {
|
2941 |
-
color: #ffffff;
|
2942 |
-
border-color: #ffffff;
|
2943 |
-
background-color: #f39c12;
|
2944 |
-
}
|
2945 |
-
.sgpb-wrapper .has-warning .form-control-feedback {
|
2946 |
-
color: #ffffff;
|
2947 |
-
}
|
2948 |
-
.sgpb-wrapper .has-error .help-block,
|
2949 |
.sgpb-wrapper .has-error .control-label,
|
2950 |
.sgpb-wrapper .has-error .radio,
|
2951 |
.sgpb-wrapper .has-error .checkbox,
|
@@ -2954,207 +584,41 @@
|
|
2954 |
.sgpb-wrapper .has-error.radio label,
|
2955 |
.sgpb-wrapper .has-error.checkbox label,
|
2956 |
.sgpb-wrapper .has-error.radio-inline label,
|
2957 |
-
.sgpb-wrapper .has-error.checkbox-inline
|
2958 |
-
|
2959 |
-
|
2960 |
-
.sgpb-wrapper .
|
2961 |
-
|
2962 |
-
|
2963 |
-
|
2964 |
-
}
|
2965 |
-
.sgpb-wrapper .has-
|
2966 |
-
border-color: #e6e6e6;
|
2967 |
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
|
2968 |
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
|
2969 |
-
}
|
2970 |
-
.sgpb-wrapper .has-error .input-group-addon {
|
2971 |
-
color: #ffffff;
|
2972 |
-
border-color: #ffffff;
|
2973 |
-
background-color: #e74c3c;
|
2974 |
-
}
|
2975 |
-
.sgpb-wrapper .has-error .form-control-feedback {
|
2976 |
-
color: #ffffff;
|
2977 |
-
}
|
2978 |
-
.sgpb-wrapper .has-feedback label ~ .form-control-feedback {
|
2979 |
-
top: 26px;
|
2980 |
-
}
|
2981 |
-
.sgpb-wrapper .has-feedback label.sr-only ~ .form-control-feedback {
|
2982 |
-
top: 0;
|
2983 |
-
}
|
2984 |
-
.sgpb-wrapper .help-block {
|
2985 |
-
display: block;
|
2986 |
-
margin-top: 5px;
|
2987 |
-
margin-bottom: 10px;
|
2988 |
-
color: #597ea2;
|
2989 |
-
}
|
2990 |
-
@media (min-width: 768px) {
|
2991 |
-
.sgpb-wrapper .form-inline .form-group {
|
2992 |
-
display: inline-block;
|
2993 |
-
margin-bottom: 0;
|
2994 |
-
vertical-align: middle;
|
2995 |
-
}
|
2996 |
-
.sgpb-wrapper .form-inline .form-control {
|
2997 |
-
display: inline-block;
|
2998 |
-
width: auto;
|
2999 |
-
vertical-align: middle;
|
3000 |
-
}
|
3001 |
-
.sgpb-wrapper .form-inline .form-control-static {
|
3002 |
-
display: inline-block;
|
3003 |
-
}
|
3004 |
-
.sgpb-wrapper .form-inline .input-group {
|
3005 |
-
display: inline-table;
|
3006 |
-
vertical-align: middle;
|
3007 |
-
}
|
3008 |
-
.sgpb-wrapper .form-inline .input-group .input-group-addon,
|
3009 |
-
.sgpb-wrapper .form-inline .input-group .input-group-btn,
|
3010 |
-
.sgpb-wrapper .form-inline .input-group .form-control {
|
3011 |
-
width: auto;
|
3012 |
-
}
|
3013 |
-
.sgpb-wrapper .form-inline .input-group > .form-control {
|
3014 |
-
width: 100%;
|
3015 |
-
}
|
3016 |
-
.sgpb-wrapper .form-inline .control-label {
|
3017 |
-
margin-bottom: 0;
|
3018 |
-
vertical-align: middle;
|
3019 |
-
}
|
3020 |
-
.sgpb-wrapper .form-inline .radio,
|
3021 |
-
.sgpb-wrapper .form-inline .checkbox {
|
3022 |
-
display: inline-block;
|
3023 |
-
margin-top: 0;
|
3024 |
-
margin-bottom: 0;
|
3025 |
-
vertical-align: middle;
|
3026 |
-
}
|
3027 |
-
.sgpb-wrapper .form-inline .radio label,
|
3028 |
-
.sgpb-wrapper .form-inline .checkbox label {
|
3029 |
-
padding-left: 0;
|
3030 |
-
}
|
3031 |
-
.sgpb-wrapper .form-inline .radio input[type="radio"],
|
3032 |
-
.sgpb-wrapper .form-inline .checkbox input[type="checkbox"] {
|
3033 |
-
position: relative;
|
3034 |
-
margin-left: 0;
|
3035 |
-
}
|
3036 |
-
.sgpb-wrapper .form-inline .has-feedback .form-control-feedback {
|
3037 |
-
top: 0;
|
3038 |
-
}
|
3039 |
-
}
|
3040 |
-
.sgpb-wrapper .form-horizontal .radio,
|
3041 |
.sgpb-wrapper .form-horizontal .checkbox,
|
3042 |
.sgpb-wrapper .form-horizontal .radio-inline,
|
3043 |
-
.sgpb-wrapper .form-horizontal .checkbox-inline
|
3044 |
-
|
3045 |
-
|
3046 |
-
|
3047 |
-
|
3048 |
-
.sgpb-wrapper .
|
3049 |
-
.sgpb-wrapper .form-horizontal .checkbox {
|
3050 |
-
min-height: 32px;
|
3051 |
-
}
|
3052 |
-
.sgpb-wrapper .form-horizontal .form-group {
|
3053 |
-
margin-left: -15px;
|
3054 |
-
margin-right: -15px;
|
3055 |
-
}
|
3056 |
-
@media (min-width: 768px) {
|
3057 |
-
.sgpb-wrapper .form-horizontal .control-label {
|
3058 |
-
text-align: right;
|
3059 |
-
margin-bottom: 0;
|
3060 |
-
padding-top: 11px;
|
3061 |
-
}
|
3062 |
-
}
|
3063 |
-
.sgpb-wrapper .form-horizontal .has-feedback .form-control-feedback {
|
3064 |
-
right: 15px;
|
3065 |
-
}
|
3066 |
-
@media (min-width: 768px) {
|
3067 |
-
.sgpb-wrapper .form-horizontal .form-group-lg .control-label {
|
3068 |
-
padding-top: 19px;
|
3069 |
-
font-size: 19px;
|
3070 |
-
}
|
3071 |
-
}
|
3072 |
-
@media (min-width: 768px) {
|
3073 |
-
.sgpb-wrapper .form-horizontal .form-group-sm .control-label {
|
3074 |
-
padding-top: 7px;
|
3075 |
-
font-size: 13px;
|
3076 |
-
}
|
3077 |
-
}
|
3078 |
-
.sgpb-wrapper .btn {
|
3079 |
-
display: inline-block;
|
3080 |
-
margin-bottom: 0;
|
3081 |
-
font-weight: normal;
|
3082 |
-
text-align: center;
|
3083 |
-
vertical-align: middle;
|
3084 |
-
-ms-touch-action: manipulation;
|
3085 |
-
touch-action: manipulation;
|
3086 |
-
cursor: pointer;
|
3087 |
-
background-image: none;
|
3088 |
-
border: 1px solid transparent;
|
3089 |
-
white-space: nowrap;
|
3090 |
-
padding: 10px 15px;
|
3091 |
-
font-size: 15px;
|
3092 |
-
line-height: 1.42857143;
|
3093 |
-
border-radius: 4px;
|
3094 |
-
-webkit-user-select: none;
|
3095 |
-
-moz-user-select: none;
|
3096 |
-
-ms-user-select: none;
|
3097 |
-
user-select: none;
|
3098 |
-
}
|
3099 |
-
.sgpb-wrapper .btn:focus,
|
3100 |
.sgpb-wrapper .btn:active:focus,
|
3101 |
.sgpb-wrapper .btn.active:focus,
|
3102 |
.sgpb-wrapper .btn.focus,
|
3103 |
.sgpb-wrapper .btn:active.focus,
|
3104 |
-
.sgpb-wrapper
|
3105 |
-
|
3106 |
-
|
3107 |
-
}
|
3108 |
-
.sgpb-wrapper .btn:hover,
|
3109 |
.sgpb-wrapper .btn:focus,
|
3110 |
-
.sgpb-wrapper
|
3111 |
-
|
3112 |
-
|
3113 |
-
}
|
3114 |
-
.sgpb-wrapper .btn:active,
|
3115 |
-
.sgpb-wrapper .btn.active {
|
3116 |
-
outline: 0;
|
3117 |
-
background-image: none;
|
3118 |
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
3119 |
-
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
3120 |
-
}
|
3121 |
-
.sgpb-wrapper .btn.disabled,
|
3122 |
.sgpb-wrapper .btn[disabled],
|
3123 |
-
.sgpb-wrapper fieldset[disabled] .btn
|
3124 |
-
|
3125 |
-
|
3126 |
-
filter: alpha(opacity=65);
|
3127 |
-
-webkit-box-shadow: none;
|
3128 |
-
box-shadow: none;
|
3129 |
-
}
|
3130 |
-
.sgpb-wrapper a.btn.disabled,
|
3131 |
-
.sgpb-wrapper fieldset[disabled] a.btn {
|
3132 |
-
pointer-events: none;
|
3133 |
-
}
|
3134 |
-
.sgpb-wrapper .btn-default {
|
3135 |
-
color: #ffffff;
|
3136 |
-
background-color: #95a5a6;
|
3137 |
-
border-color: #95a5a6;
|
3138 |
-
}
|
3139 |
-
.sgpb-wrapper .btn-default:focus,
|
3140 |
-
.sgpb-wrapper .btn-default.focus {
|
3141 |
-
color: #ffffff;
|
3142 |
-
background-color: #798d8f;
|
3143 |
-
border-color: #566566;
|
3144 |
-
}
|
3145 |
-
.sgpb-wrapper .btn-default:hover {
|
3146 |
-
color: #ffffff;
|
3147 |
-
background-color: #798d8f;
|
3148 |
-
border-color: #74898a;
|
3149 |
-
}
|
3150 |
-
.sgpb-wrapper .btn-default:active,
|
3151 |
.sgpb-wrapper .btn-default.active,
|
3152 |
-
.sgpb-wrapper .open
|
3153 |
-
color: #ffffff;
|
3154 |
-
background-color: #798d8f;
|
3155 |
-
border-color: #74898a;
|
3156 |
-
}
|
3157 |
-
.sgpb-wrapper .btn-default:active:hover,
|
3158 |
.sgpb-wrapper .btn-default.active:hover,
|
3159 |
.sgpb-wrapper .open > .dropdown-toggle.btn-default:hover,
|
3160 |
.sgpb-wrapper .btn-default:active:focus,
|
@@ -3162,17 +626,9 @@
|
|
3162 |
.sgpb-wrapper .open > .dropdown-toggle.btn-default:focus,
|
3163 |
.sgpb-wrapper .btn-default:active.focus,
|
3164 |
.sgpb-wrapper .btn-default.active.focus,
|
3165 |
-
.sgpb-wrapper .open
|
3166 |
-
color: #ffffff;
|
3167 |
-
background-color: #687b7c;
|
3168 |
-
border-color: #566566;
|
3169 |
-
}
|
3170 |
-
.sgpb-wrapper .btn-default:active,
|
3171 |
.sgpb-wrapper .btn-default.active,
|
3172 |
-
.sgpb-wrapper .open
|
3173 |
-
background-image: none;
|
3174 |
-
}
|
3175 |
-
.sgpb-wrapper .btn-default.disabled:hover,
|
3176 |
.sgpb-wrapper .btn-default[disabled]:hover,
|
3177 |
.sgpb-wrapper fieldset[disabled] .btn-default:hover,
|
3178 |
.sgpb-wrapper .btn-default.disabled:focus,
|
@@ -3180,38 +636,11 @@
|
|
3180 |
.sgpb-wrapper fieldset[disabled] .btn-default:focus,
|
3181 |
.sgpb-wrapper .btn-default.disabled.focus,
|
3182 |
.sgpb-wrapper .btn-default[disabled].focus,
|
3183 |
-
.sgpb-wrapper fieldset[disabled] .btn-default.focus
|
3184 |
-
|
3185 |
-
|
3186 |
-
}
|
3187 |
-
.sgpb-wrapper .btn-default .badge {
|
3188 |
-
color: #95a5a6;
|
3189 |
-
background-color: #ffffff;
|
3190 |
-
}
|
3191 |
-
.sgpb-wrapper .btn-primary {
|
3192 |
-
color: #ffffff;
|
3193 |
-
background-color: #2c3e50;
|
3194 |
-
border-color: #2c3e50;
|
3195 |
-
}
|
3196 |
-
.sgpb-wrapper .btn-primary:focus,
|
3197 |
-
.sgpb-wrapper .btn-primary.focus {
|
3198 |
-
color: #ffffff;
|
3199 |
-
background-color: #1a242f;
|
3200 |
-
border-color: #000000;
|
3201 |
-
}
|
3202 |
-
.sgpb-wrapper .btn-primary:hover {
|
3203 |
-
color: #ffffff;
|
3204 |
-
background-color: #1a242f;
|
3205 |
-
border-color: #161f29;
|
3206 |
-
}
|
3207 |
-
.sgpb-wrapper .btn-primary:active,
|
3208 |
.sgpb-wrapper .btn-primary.active,
|
3209 |
-
.sgpb-wrapper .open
|
3210 |
-
color: #ffffff;
|
3211 |
-
background-color: #1a242f;
|
3212 |
-
border-color: #161f29;
|
3213 |
-
}
|
3214 |
-
.sgpb-wrapper .btn-primary:active:hover,
|
3215 |
.sgpb-wrapper .btn-primary.active:hover,
|
3216 |
.sgpb-wrapper .open > .dropdown-toggle.btn-primary:hover,
|
3217 |
.sgpb-wrapper .btn-primary:active:focus,
|
@@ -3219,17 +648,9 @@
|
|
3219 |
.sgpb-wrapper .open > .dropdown-toggle.btn-primary:focus,
|
3220 |
.sgpb-wrapper .btn-primary:active.focus,
|
3221 |
.sgpb-wrapper .btn-primary.active.focus,
|
3222 |
-
.sgpb-wrapper .open
|
3223 |
-
color: #ffffff;
|
3224 |
-
background-color: #0d1318;
|
3225 |
-
border-color: #000000;
|
3226 |
-
}
|
3227 |
-
.sgpb-wrapper .btn-primary:active,
|
3228 |
.sgpb-wrapper .btn-primary.active,
|
3229 |
-
.sgpb-wrapper .open
|
3230 |
-
background-image: none;
|
3231 |
-
}
|
3232 |
-
.sgpb-wrapper .btn-primary.disabled:hover,
|
3233 |
.sgpb-wrapper .btn-primary[disabled]:hover,
|
3234 |
.sgpb-wrapper fieldset[disabled] .btn-primary:hover,
|
3235 |
.sgpb-wrapper .btn-primary.disabled:focus,
|
@@ -3237,38 +658,11 @@
|
|
3237 |
.sgpb-wrapper fieldset[disabled] .btn-primary:focus,
|
3238 |
.sgpb-wrapper .btn-primary.disabled.focus,
|
3239 |
.sgpb-wrapper .btn-primary[disabled].focus,
|
3240 |
-
.sgpb-wrapper fieldset[disabled] .btn-primary.focus
|
3241 |
-
|
3242 |
-
|
3243 |
-
}
|
3244 |
-
.sgpb-wrapper .btn-primary .badge {
|
3245 |
-
color: #2c3e50;
|
3246 |
-
background-color: #ffffff;
|
3247 |
-
}
|
3248 |
-
.sgpb-wrapper .btn-success {
|
3249 |
-
color: #ffffff;
|
3250 |
-
background-color: #18bc9c;
|
3251 |
-
border-color: #18bc9c;
|
3252 |
-
}
|
3253 |
-
.sgpb-wrapper .btn-success:focus,
|
3254 |
-
.sgpb-wrapper .btn-success.focus {
|
3255 |
-
color: #ffffff;
|
3256 |
-
background-color: #128f76;
|
3257 |
-
border-color: #0a4b3e;
|
3258 |
-
}
|
3259 |
-
.sgpb-wrapper .btn-success:hover {
|
3260 |
-
color: #ffffff;
|
3261 |
-
background-color: #128f76;
|
3262 |
-
border-color: #11866f;
|
3263 |
-
}
|
3264 |
-
.sgpb-wrapper .btn-success:active,
|
3265 |
.sgpb-wrapper .btn-success.active,
|
3266 |
-
.sgpb-wrapper .open
|
3267 |
-
color: #ffffff;
|
3268 |
-
background-color: #128f76;
|
3269 |
-
border-color: #11866f;
|
3270 |
-
}
|
3271 |
-
.sgpb-wrapper .btn-success:active:hover,
|
3272 |
.sgpb-wrapper .btn-success.active:hover,
|
3273 |
.sgpb-wrapper .open > .dropdown-toggle.btn-success:hover,
|
3274 |
.sgpb-wrapper .btn-success:active:focus,
|
@@ -3276,17 +670,9 @@
|
|
3276 |
.sgpb-wrapper .open > .dropdown-toggle.btn-success:focus,
|
3277 |
.sgpb-wrapper .btn-success:active.focus,
|
3278 |
.sgpb-wrapper .btn-success.active.focus,
|
3279 |
-
.sgpb-wrapper .open
|
3280 |
-
color: #ffffff;
|
3281 |
-
background-color: #0e6f5c;
|
3282 |
-
border-color: #0a4b3e;
|
3283 |
-
}
|
3284 |
-
.sgpb-wrapper .btn-success:active,
|
3285 |
.sgpb-wrapper .btn-success.active,
|
3286 |
-
.sgpb-wrapper .open
|
3287 |
-
background-image: none;
|
3288 |
-
}
|
3289 |
-
.sgpb-wrapper .btn-success.disabled:hover,
|
3290 |
.sgpb-wrapper .btn-success[disabled]:hover,
|
3291 |
.sgpb-wrapper fieldset[disabled] .btn-success:hover,
|
3292 |
.sgpb-wrapper .btn-success.disabled:focus,
|
@@ -3294,38 +680,11 @@
|
|
3294 |
.sgpb-wrapper fieldset[disabled] .btn-success:focus,
|
3295 |
.sgpb-wrapper .btn-success.disabled.focus,
|
3296 |
.sgpb-wrapper .btn-success[disabled].focus,
|
3297 |
-
.sgpb-wrapper fieldset[disabled] .btn-success.focus
|
3298 |
-
|
3299 |
-
|
3300 |
-
}
|
3301 |
-
.sgpb-wrapper .btn-success .badge {
|
3302 |
-
color: #18bc9c;
|
3303 |
-
background-color: #ffffff;
|
3304 |
-
}
|
3305 |
-
.sgpb-wrapper .btn-info {
|
3306 |
-
color: #ffffff;
|
3307 |
-
background-color: #3498db;
|
3308 |
-
border-color: #3498db;
|
3309 |
-
}
|
3310 |
-
.sgpb-wrapper .btn-info:focus,
|
3311 |
-
.sgpb-wrapper .btn-info.focus {
|
3312 |
-
color: #ffffff;
|
3313 |
-
background-color: #217dbb;
|
3314 |
-
border-color: #16527a;
|
3315 |
-
}
|
3316 |
-
.sgpb-wrapper .btn-info:hover {
|
3317 |
-
color: #ffffff;
|
3318 |
-
background-color: #217dbb;
|
3319 |
-
border-color: #2077b2;
|
3320 |
-
}
|
3321 |
-
.sgpb-wrapper .btn-info:active,
|
3322 |
.sgpb-wrapper .btn-info.active,
|
3323 |
-
.sgpb-wrapper .open
|
3324 |
-
color: #ffffff;
|
3325 |
-
background-color: #217dbb;
|
3326 |
-
border-color: #2077b2;
|
3327 |
-
}
|
3328 |
-
.sgpb-wrapper .btn-info:active:hover,
|
3329 |
.sgpb-wrapper .btn-info.active:hover,
|
3330 |
.sgpb-wrapper .open > .dropdown-toggle.btn-info:hover,
|
3331 |
.sgpb-wrapper .btn-info:active:focus,
|
@@ -3333,17 +692,9 @@
|
|
3333 |
.sgpb-wrapper .open > .dropdown-toggle.btn-info:focus,
|
3334 |
.sgpb-wrapper .btn-info:active.focus,
|
3335 |
.sgpb-wrapper .btn-info.active.focus,
|
3336 |
-
.sgpb-wrapper .open
|
3337 |
-
color: #ffffff;
|
3338 |
-
background-color: #1c699d;
|
3339 |
-
border-color: #16527a;
|
3340 |
-
}
|
3341 |
-
.sgpb-wrapper .btn-info:active,
|
3342 |
.sgpb-wrapper .btn-info.active,
|
3343 |
-
.sgpb-wrapper .open
|
3344 |
-
background-image: none;
|
3345 |
-
}
|
3346 |
-
.sgpb-wrapper .btn-info.disabled:hover,
|
3347 |
.sgpb-wrapper .btn-info[disabled]:hover,
|
3348 |
.sgpb-wrapper fieldset[disabled] .btn-info:hover,
|
3349 |
.sgpb-wrapper .btn-info.disabled:focus,
|
@@ -3351,38 +702,11 @@
|
|
3351 |
.sgpb-wrapper fieldset[disabled] .btn-info:focus,
|
3352 |
.sgpb-wrapper .btn-info.disabled.focus,
|
3353 |
.sgpb-wrapper .btn-info[disabled].focus,
|
3354 |
-
.sgpb-wrapper fieldset[disabled] .btn-info.focus
|
3355 |
-
|
3356 |
-
|
3357 |
-
}
|
3358 |
-
.sgpb-wrapper .btn-info .badge {
|
3359 |
-
color: #3498db;
|
3360 |
-
background-color: #ffffff;
|
3361 |
-
}
|
3362 |
-
.sgpb-wrapper .btn-warning {
|
3363 |
-
color: #ffffff;
|
3364 |
-
background-color: #f39c12;
|
3365 |
-
border-color: #f39c12;
|
3366 |
-
}
|
3367 |
-
.sgpb-wrapper .btn-warning:focus,
|
3368 |
-
.sgpb-wrapper .btn-warning.focus {
|
3369 |
-
color: #ffffff;
|
3370 |
-
background-color: #c87f0a;
|
3371 |
-
border-color: #7f5006;
|
3372 |
-
}
|
3373 |
-
.sgpb-wrapper .btn-warning:hover {
|
3374 |
-
color: #ffffff;
|
3375 |
-
background-color: #c87f0a;
|
3376 |
-
border-color: #be780a;
|
3377 |
-
}
|
3378 |
-
.sgpb-wrapper .btn-warning:active,
|
3379 |
.sgpb-wrapper .btn-warning.active,
|
3380 |
-
.sgpb-wrapper .open
|
3381 |
-
color: #ffffff;
|
3382 |
-
background-color: #c87f0a;
|
3383 |
-
border-color: #be780a;
|
3384 |
-
}
|
3385 |
-
.sgpb-wrapper .btn-warning:active:hover,
|
3386 |
.sgpb-wrapper .btn-warning.active:hover,
|
3387 |
.sgpb-wrapper .open > .dropdown-toggle.btn-warning:hover,
|
3388 |
.sgpb-wrapper .btn-warning:active:focus,
|
@@ -3390,17 +714,9 @@
|
|
3390 |
.sgpb-wrapper .open > .dropdown-toggle.btn-warning:focus,
|
3391 |
.sgpb-wrapper .btn-warning:active.focus,
|
3392 |
.sgpb-wrapper .btn-warning.active.focus,
|
3393 |
-
.sgpb-wrapper .open
|
3394 |
-
color: #ffffff;
|
3395 |
-
background-color: #a66908;
|
3396 |
-
border-color: #7f5006;
|
3397 |
-
}
|
3398 |
-
.sgpb-wrapper .btn-warning:active,
|
3399 |
.sgpb-wrapper .btn-warning.active,
|
3400 |
-
.sgpb-wrapper .open
|
3401 |
-
background-image: none;
|
3402 |
-
}
|
3403 |
-
.sgpb-wrapper .btn-warning.disabled:hover,
|
3404 |
.sgpb-wrapper .btn-warning[disabled]:hover,
|
3405 |
.sgpb-wrapper fieldset[disabled] .btn-warning:hover,
|
3406 |
.sgpb-wrapper .btn-warning.disabled:focus,
|
@@ -3408,38 +724,11 @@
|
|
3408 |
.sgpb-wrapper fieldset[disabled] .btn-warning:focus,
|
3409 |
.sgpb-wrapper .btn-warning.disabled.focus,
|
3410 |
.sgpb-wrapper .btn-warning[disabled].focus,
|
3411 |
-
.sgpb-wrapper fieldset[disabled] .btn-warning.focus
|
3412 |
-
|
3413 |
-
|
3414 |
-
}
|
3415 |
-
.sgpb-wrapper .btn-warning .badge {
|
3416 |
-
color: #f39c12;
|
3417 |
-
background-color: #ffffff;
|
3418 |
-
}
|
3419 |
-
.sgpb-wrapper .btn-danger {
|
3420 |
-
color: #ffffff;
|
3421 |
-
background-color: #e74c3c;
|
3422 |
-
border-color: #e74c3c;
|
3423 |
-
}
|
3424 |
-
.sgpb-wrapper .btn-danger:focus,
|
3425 |
-
.sgpb-wrapper .btn-danger.focus {
|
3426 |
-
color: #ffffff;
|
3427 |
-
background-color: #d62c1a;
|
3428 |
-
border-color: #921e12;
|
3429 |
-
}
|
3430 |
-
.sgpb-wrapper .btn-danger:hover {
|
3431 |
-
color: #ffffff;
|
3432 |
-
background-color: #d62c1a;
|
3433 |
-
border-color: #cd2a19;
|
3434 |
-
}
|
3435 |
-
.sgpb-wrapper .btn-danger:active,
|
3436 |
.sgpb-wrapper .btn-danger.active,
|
3437 |
-
.sgpb-wrapper .open
|
3438 |
-
color: #ffffff;
|
3439 |
-
background-color: #d62c1a;
|
3440 |
-
border-color: #cd2a19;
|
3441 |
-
}
|
3442 |
-
.sgpb-wrapper .btn-danger:active:hover,
|
3443 |
.sgpb-wrapper .btn-danger.active:hover,
|
3444 |
.sgpb-wrapper .open > .dropdown-toggle.btn-danger:hover,
|
3445 |
.sgpb-wrapper .btn-danger:active:focus,
|
@@ -3447,17 +736,9 @@
|
|
3447 |
.sgpb-wrapper .open > .dropdown-toggle.btn-danger:focus,
|
3448 |
.sgpb-wrapper .btn-danger:active.focus,
|
3449 |
.sgpb-wrapper .btn-danger.active.focus,
|
3450 |
-
.sgpb-wrapper .open
|
3451 |
-
color: #ffffff;
|
3452 |
-
background-color: #b62516;
|
3453 |
-
border-color: #921e12;
|
3454 |
-
}
|
3455 |
-
.sgpb-wrapper .btn-danger:active,
|
3456 |
.sgpb-wrapper .btn-danger.active,
|
3457 |
-
.sgpb-wrapper .open
|
3458 |
-
background-image: none;
|
3459 |
-
}
|
3460 |
-
.sgpb-wrapper .btn-danger.disabled:hover,
|
3461 |
.sgpb-wrapper .btn-danger[disabled]:hover,
|
3462 |
.sgpb-wrapper fieldset[disabled] .btn-danger:hover,
|
3463 |
.sgpb-wrapper .btn-danger.disabled:focus,
|
@@ -3465,1924 +746,337 @@
|
|
3465 |
.sgpb-wrapper fieldset[disabled] .btn-danger:focus,
|
3466 |
.sgpb-wrapper .btn-danger.disabled.focus,
|
3467 |
.sgpb-wrapper .btn-danger[disabled].focus,
|
3468 |
-
.sgpb-wrapper fieldset[disabled] .btn-danger.focus
|
3469 |
-
|
3470 |
-
border-color: #e74c3c;
|
3471 |
-
}
|
3472 |
-
.sgpb-wrapper .btn-danger .badge {
|
3473 |
-
color: #e74c3c;
|
3474 |
-
background-color: #ffffff;
|
3475 |
-
}
|
3476 |
-
.sgpb-wrapper .btn-link {
|
3477 |
-
color: #18bc9c;
|
3478 |
-
font-weight: normal;
|
3479 |
-
border-radius: 0;
|
3480 |
-
}
|
3481 |
-
.sgpb-wrapper .btn-link,
|
3482 |
.sgpb-wrapper .btn-link:active,
|
3483 |
.sgpb-wrapper .btn-link.active,
|
3484 |
.sgpb-wrapper .btn-link[disabled],
|
3485 |
-
.sgpb-wrapper fieldset[disabled] .btn-link
|
3486 |
-
background-color: transparent;
|
3487 |
-
-webkit-box-shadow: none;
|
3488 |
-
box-shadow: none;
|
3489 |
-
}
|
3490 |
-
.sgpb-wrapper .btn-link,
|
3491 |
.sgpb-wrapper .btn-link:hover,
|
3492 |
.sgpb-wrapper .btn-link:focus,
|
3493 |
-
.sgpb-wrapper .btn-link:active
|
3494 |
-
|
3495 |
-
}
|
3496 |
-
.sgpb-wrapper .btn-link:hover,
|
3497 |
-
.sgpb-wrapper .btn-link:focus {
|
3498 |
-
color: #18bc9c;
|
3499 |
-
text-decoration: underline;
|
3500 |
-
background-color: transparent;
|
3501 |
-
}
|
3502 |
-
.sgpb-wrapper .btn-link[disabled]:hover,
|
3503 |
.sgpb-wrapper fieldset[disabled] .btn-link:hover,
|
3504 |
.sgpb-wrapper .btn-link[disabled]:focus,
|
3505 |
-
.sgpb-wrapper fieldset[disabled] .btn-link:focus
|
3506 |
-
|
3507 |
-
|
3508 |
-
|
3509 |
-
.sgpb-wrapper .btn-
|
3510 |
-
.sgpb-wrapper .btn-group-
|
3511 |
-
|
3512 |
-
font-size: 19px;
|
3513 |
-
line-height: 1.3333333;
|
3514 |
-
border-radius: 6px;
|
3515 |
-
}
|
3516 |
-
.sgpb-wrapper .btn-sm,
|
3517 |
-
.sgpb-wrapper .btn-group-sm > .btn {
|
3518 |
-
padding: 6px 9px;
|
3519 |
-
font-size: 13px;
|
3520 |
-
line-height: 1.5;
|
3521 |
-
border-radius: 3px;
|
3522 |
-
}
|
3523 |
-
.sgpb-wrapper .btn-xs,
|
3524 |
-
.sgpb-wrapper .btn-group-xs > .btn {
|
3525 |
-
padding: 1px 5px;
|
3526 |
-
font-size: 13px;
|
3527 |
-
line-height: 1.5;
|
3528 |
-
border-radius: 3px;
|
3529 |
-
}
|
3530 |
-
.sgpb-wrapper .btn-block {
|
3531 |
-
display: block;
|
3532 |
-
width: 100%;
|
3533 |
-
}
|
3534 |
-
.sgpb-wrapper .btn-block + .btn-block {
|
3535 |
-
margin-top: 5px;
|
3536 |
-
}
|
3537 |
-
.sgpb-wrapper input[type="submit"].btn-block,
|
3538 |
.sgpb-wrapper input[type="reset"].btn-block,
|
3539 |
-
.sgpb-wrapper input[type="button"].btn-block
|
3540 |
-
|
3541 |
-
}
|
3542 |
-
.sgpb-wrapper
|
3543 |
-
|
3544 |
-
|
3545 |
-
|
3546 |
-
|
3547 |
-
}
|
3548 |
-
.sgpb-wrapper
|
3549 |
-
|
3550 |
-
|
3551 |
-
|
3552 |
-
|
3553 |
-
}
|
3554 |
-
.sgpb-wrapper .
|
3555 |
-
|
3556 |
-
}
|
3557 |
-
.sgpb-wrapper tr.collapse.in {
|
3558 |
-
display: table-row;
|
3559 |
-
}
|
3560 |
-
.sgpb-wrapper tbody.collapse.in {
|
3561 |
-
display: table-row-group;
|
3562 |
-
}
|
3563 |
-
.sgpb-wrapper .collapsing {
|
3564 |
-
position: relative;
|
3565 |
-
height: 0;
|
3566 |
-
overflow: hidden;
|
3567 |
-
-webkit-transition-property: height, visibility;
|
3568 |
-
-o-transition-property: height, visibility;
|
3569 |
-
transition-property: height, visibility;
|
3570 |
-
-webkit-transition-duration: 0.35s;
|
3571 |
-
-o-transition-duration: 0.35s;
|
3572 |
-
transition-duration: 0.35s;
|
3573 |
-
-webkit-transition-timing-function: ease;
|
3574 |
-
-o-transition-timing-function: ease;
|
3575 |
-
transition-timing-function: ease;
|
3576 |
-
}
|
3577 |
-
.sgpb-wrapper .caret {
|
3578 |
-
display: inline-block;
|
3579 |
-
width: 0;
|
3580 |
-
height: 0;
|
3581 |
-
margin-left: 2px;
|
3582 |
-
vertical-align: middle;
|
3583 |
-
border-top: 4px dashed;
|
3584 |
-
border-top: 4px solid \9;
|
3585 |
-
border-right: 4px solid transparent;
|
3586 |
-
border-left: 4px solid transparent;
|
3587 |
-
}
|
3588 |
-
.sgpb-wrapper .dropup,
|
3589 |
-
.sgpb-wrapper .dropdown {
|
3590 |
-
position: relative;
|
3591 |
-
}
|
3592 |
-
.sgpb-wrapper .dropdown-toggle:focus {
|
3593 |
-
outline: 0;
|
3594 |
-
}
|
3595 |
-
.sgpb-wrapper .dropdown-menu {
|
3596 |
-
position: absolute;
|
3597 |
-
top: 100%;
|
3598 |
-
left: 0;
|
3599 |
-
z-index: 1000;
|
3600 |
-
display: none;
|
3601 |
-
float: left;
|
3602 |
-
min-width: 160px;
|
3603 |
-
padding: 5px 0;
|
3604 |
-
margin: 2px 0 0;
|
3605 |
-
list-style: none;
|
3606 |
-
font-size: 15px;
|
3607 |
-
text-align: left;
|
3608 |
-
background-color: #ffffff;
|
3609 |
-
border: 1px solid #cccccc;
|
3610 |
-
border: 1px solid rgba(0, 0, 0, 0.15);
|
3611 |
-
border-radius: 4px;
|
3612 |
-
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
3613 |
-
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
3614 |
-
-webkit-background-clip: padding-box;
|
3615 |
-
background-clip: padding-box;
|
3616 |
-
}
|
3617 |
-
.sgpb-wrapper .dropdown-menu.pull-right {
|
3618 |
-
right: 0;
|
3619 |
-
left: auto;
|
3620 |
-
}
|
3621 |
-
.sgpb-wrapper .dropdown-menu .divider {
|
3622 |
-
height: 1px;
|
3623 |
-
margin: 9.5px 0;
|
3624 |
-
overflow: hidden;
|
3625 |
-
background-color: #e5e5e5;
|
3626 |
-
}
|
3627 |
-
.sgpb-wrapper .dropdown-menu > li > a {
|
3628 |
-
display: block;
|
3629 |
-
padding: 3px 20px;
|
3630 |
-
clear: both;
|
3631 |
-
font-weight: normal;
|
3632 |
-
line-height: 1.42857143;
|
3633 |
-
color: #7b8a8b;
|
3634 |
-
white-space: nowrap;
|
3635 |
-
}
|
3636 |
-
.sgpb-wrapper .dropdown-menu > li > a:hover,
|
3637 |
-
.sgpb-wrapper .dropdown-menu > li > a:focus {
|
3638 |
-
text-decoration: none;
|
3639 |
-
color: #ffffff;
|
3640 |
-
background-color: #2c3e50;
|
3641 |
-
}
|
3642 |
-
.sgpb-wrapper .dropdown-menu > .active > a,
|
3643 |
.sgpb-wrapper .dropdown-menu > .active > a:hover,
|
3644 |
-
.sgpb-wrapper .dropdown-menu > .
|
3645 |
-
color: #ffffff;
|
3646 |
-
text-decoration: none;
|
3647 |
-
outline: 0;
|
3648 |
-
background-color: #2c3e50;
|
3649 |
-
}
|
3650 |
-
.sgpb-wrapper .dropdown-menu > .disabled > a,
|
3651 |
.sgpb-wrapper .dropdown-menu > .disabled > a:hover,
|
3652 |
-
.sgpb-wrapper .dropdown-menu > .disabled > a:
|
3653 |
-
|
3654 |
-
}
|
3655 |
-
.sgpb-wrapper .
|
3656 |
-
.sgpb-wrapper .dropdown-menu
|
3657 |
-
|
3658 |
-
|
3659 |
-
|
3660 |
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
3661 |
-
cursor: not-allowed;
|
3662 |
-
}
|
3663 |
-
.sgpb-wrapper .open > .dropdown-menu {
|
3664 |
-
display: block;
|
3665 |
-
}
|
3666 |
-
.sgpb-wrapper .open > a {
|
3667 |
-
outline: 0;
|
3668 |
-
}
|
3669 |
-
.sgpb-wrapper .dropdown-menu-right {
|
3670 |
-
left: auto;
|
3671 |
-
right: 0;
|
3672 |
-
}
|
3673 |
-
.sgpb-wrapper .dropdown-menu-left {
|
3674 |
-
left: 0;
|
3675 |
-
right: auto;
|
3676 |
-
}
|
3677 |
-
.sgpb-wrapper .dropdown-header {
|
3678 |
-
display: block;
|
3679 |
-
padding: 3px 20px;
|
3680 |
-
font-size: 13px;
|
3681 |
-
line-height: 1.42857143;
|
3682 |
-
color: #b4bcc2;
|
3683 |
-
white-space: nowrap;
|
3684 |
-
}
|
3685 |
-
.sgpb-wrapper .dropdown-backdrop {
|
3686 |
-
position: fixed;
|
3687 |
-
left: 0;
|
3688 |
-
right: 0;
|
3689 |
-
bottom: 0;
|
3690 |
-
top: 0;
|
3691 |
-
z-index: 990;
|
3692 |
-
}
|
3693 |
-
.sgpb-wrapper .pull-right > .dropdown-menu {
|
3694 |
-
right: 0;
|
3695 |
-
left: auto;
|
3696 |
-
}
|
3697 |
-
.sgpb-wrapper .dropup .caret,
|
3698 |
-
.sgpb-wrapper .navbar-fixed-bottom .dropdown .caret {
|
3699 |
-
border-top: 0;
|
3700 |
-
border-bottom: 4px dashed;
|
3701 |
-
border-bottom: 4px solid \9;
|
3702 |
-
content: "";
|
3703 |
-
}
|
3704 |
-
.sgpb-wrapper .dropup .dropdown-menu,
|
3705 |
-
.sgpb-wrapper .navbar-fixed-bottom .dropdown .dropdown-menu {
|
3706 |
-
top: auto;
|
3707 |
-
bottom: 100%;
|
3708 |
-
margin-bottom: 2px;
|
3709 |
-
}
|
3710 |
-
@media (min-width: 768px) {
|
3711 |
-
.sgpb-wrapper .navbar-right .dropdown-menu {
|
3712 |
-
left: auto;
|
3713 |
-
right: 0;
|
3714 |
-
}
|
3715 |
-
.sgpb-wrapper .navbar-right .dropdown-menu-left {
|
3716 |
-
left: 0;
|
3717 |
-
right: auto;
|
3718 |
-
}
|
3719 |
-
}
|
3720 |
-
.sgpb-wrapper .btn-group,
|
3721 |
-
.sgpb-wrapper .btn-group-vertical {
|
3722 |
-
position: relative;
|
3723 |
-
display: inline-block;
|
3724 |
-
vertical-align: middle;
|
3725 |
-
}
|
3726 |
-
.sgpb-wrapper .btn-group > .btn,
|
3727 |
-
.sgpb-wrapper .btn-group-vertical > .btn {
|
3728 |
-
position: relative;
|
3729 |
-
float: left;
|
3730 |
-
}
|
3731 |
-
.sgpb-wrapper .btn-group > .btn:hover,
|
3732 |
.sgpb-wrapper .btn-group-vertical > .btn:hover,
|
3733 |
.sgpb-wrapper .btn-group > .btn:focus,
|
3734 |
.sgpb-wrapper .btn-group-vertical > .btn:focus,
|
3735 |
.sgpb-wrapper .btn-group > .btn:active,
|
3736 |
.sgpb-wrapper .btn-group-vertical > .btn:active,
|
3737 |
.sgpb-wrapper .btn-group > .btn.active,
|
3738 |
-
.sgpb-wrapper .btn-group-vertical
|
3739 |
-
z-index: 2;
|
3740 |
-
}
|
3741 |
-
.sgpb-wrapper .btn-group .btn + .btn,
|
3742 |
.sgpb-wrapper .btn-group .btn + .btn-group,
|
3743 |
.sgpb-wrapper .btn-group .btn-group + .btn,
|
3744 |
-
.sgpb-wrapper .btn-group .btn-group
|
3745 |
-
margin-left: -1px;
|
3746 |
-
}
|
3747 |
-
.sgpb-wrapper .btn-toolbar {
|
3748 |
-
margin-left: -5px;
|
3749 |
-
}
|
3750 |
-
.sgpb-wrapper .btn-toolbar .btn,
|
3751 |
.sgpb-wrapper .btn-toolbar .btn-group,
|
3752 |
-
.sgpb-wrapper .btn-toolbar .input-group
|
3753 |
-
float: left;
|
3754 |
-
}
|
3755 |
-
.sgpb-wrapper .btn-toolbar > .btn,
|
3756 |
.sgpb-wrapper .btn-toolbar > .btn-group,
|
3757 |
-
.sgpb-wrapper .btn-toolbar
|
3758 |
-
|
3759 |
-
}
|
3760 |
-
.sgpb-wrapper .btn-group
|
3761 |
-
|
3762 |
-
}
|
3763 |
-
.sgpb-wrapper .btn-group > .btn
|
3764 |
-
margin-left: 0;
|
3765 |
-
}
|
3766 |
-
.sgpb-wrapper .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
|
3767 |
-
border-bottom-right-radius: 0;
|
3768 |
-
border-top-right-radius: 0;
|
3769 |
-
}
|
3770 |
-
.sgpb-wrapper .btn-group > .btn:last-child:not(:first-child),
|
3771 |
-
.sgpb-wrapper .btn-group > .dropdown-toggle:not(:first-child) {
|
3772 |
-
border-bottom-left-radius: 0;
|
3773 |
-
border-top-left-radius: 0;
|
3774 |
-
}
|
3775 |
-
.sgpb-wrapper .btn-group > .btn-group {
|
3776 |
-
float: left;
|
3777 |
-
}
|
3778 |
-
.sgpb-wrapper .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
3779 |
-
border-radius: 0;
|
3780 |
-
}
|
3781 |
-
.sgpb-wrapper .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
|
3782 |
-
.sgpb-wrapper .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
|
3783 |
-
border-bottom-right-radius: 0;
|
3784 |
-
border-top-right-radius: 0;
|
3785 |
-
}
|
3786 |
-
.sgpb-wrapper .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
3787 |
-
border-bottom-left-radius: 0;
|
3788 |
-
border-top-left-radius: 0;
|
3789 |
-
}
|
3790 |
-
.sgpb-wrapper .btn-group .dropdown-toggle:active,
|
3791 |
-
.sgpb-wrapper .btn-group.open .dropdown-toggle {
|
3792 |
-
outline: 0;
|
3793 |
-
}
|
3794 |
-
.sgpb-wrapper .btn-group > .btn + .dropdown-toggle {
|
3795 |
-
padding-left: 8px;
|
3796 |
-
padding-right: 8px;
|
3797 |
-
}
|
3798 |
-
.sgpb-wrapper .btn-group > .btn-lg + .dropdown-toggle {
|
3799 |
-
padding-left: 12px;
|
3800 |
-
padding-right: 12px;
|
3801 |
-
}
|
3802 |
-
.sgpb-wrapper .btn-group.open .dropdown-toggle {
|
3803 |
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
3804 |
-
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
3805 |
-
}
|
3806 |
-
.sgpb-wrapper .btn-group.open .dropdown-toggle.btn-link {
|
3807 |
-
-webkit-box-shadow: none;
|
3808 |
-
box-shadow: none;
|
3809 |
-
}
|
3810 |
-
.sgpb-wrapper .btn .caret {
|
3811 |
-
margin-left: 0;
|
3812 |
-
}
|
3813 |
-
.sgpb-wrapper .btn-lg .caret {
|
3814 |
-
border-width: 5px 5px 0;
|
3815 |
-
border-bottom-width: 0;
|
3816 |
-
}
|
3817 |
-
.sgpb-wrapper .dropup .btn-lg .caret {
|
3818 |
-
border-width: 0 5px 5px;
|
3819 |
-
}
|
3820 |
-
.sgpb-wrapper .btn-group-vertical > .btn,
|
3821 |
.sgpb-wrapper .btn-group-vertical > .btn-group,
|
3822 |
-
.sgpb-wrapper .btn-group-vertical
|
3823 |
-
display: block;
|
3824 |
-
float: none;
|
3825 |
-
width: 100%;
|
3826 |
-
max-width: 100%;
|
3827 |
-
}
|
3828 |
-
.sgpb-wrapper .btn-group-vertical > .btn-group > .btn {
|
3829 |
-
float: none;
|
3830 |
-
}
|
3831 |
-
.sgpb-wrapper .btn-group-vertical > .btn + .btn,
|
3832 |
.sgpb-wrapper .btn-group-vertical > .btn + .btn-group,
|
3833 |
.sgpb-wrapper .btn-group-vertical > .btn-group + .btn,
|
3834 |
-
.sgpb-wrapper .btn-group-vertical
|
3835 |
-
|
3836 |
-
|
3837 |
-
}
|
3838 |
-
.sgpb-wrapper .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
|
3839 |
-
border-radius: 0;
|
3840 |
-
}
|
3841 |
-
.sgpb-wrapper .btn-group-vertical > .btn:first-child:not(:last-child) {
|
3842 |
-
border-top-right-radius: 4px;
|
3843 |
-
border-top-left-radius: 4px;
|
3844 |
-
border-bottom-right-radius: 0;
|
3845 |
-
border-bottom-left-radius: 0;
|
3846 |
-
}
|
3847 |
-
.sgpb-wrapper .btn-group-vertical > .btn:last-child:not(:first-child) {
|
3848 |
-
border-top-right-radius: 0;
|
3849 |
-
border-top-left-radius: 0;
|
3850 |
-
border-bottom-right-radius: 4px;
|
3851 |
-
border-bottom-left-radius: 4px;
|
3852 |
-
}
|
3853 |
-
.sgpb-wrapper .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
3854 |
-
border-radius: 0;
|
3855 |
-
}
|
3856 |
-
.sgpb-wrapper .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
|
3857 |
-
.sgpb-wrapper .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
|
3858 |
-
border-bottom-right-radius: 0;
|
3859 |
-
border-bottom-left-radius: 0;
|
3860 |
-
}
|
3861 |
-
.sgpb-wrapper .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
3862 |
-
border-top-right-radius: 0;
|
3863 |
-
border-top-left-radius: 0;
|
3864 |
-
}
|
3865 |
-
.sgpb-wrapper .btn-group-justified {
|
3866 |
-
display: table;
|
3867 |
-
width: 100%;
|
3868 |
-
table-layout: fixed;
|
3869 |
-
border-collapse: separate;
|
3870 |
-
}
|
3871 |
-
.sgpb-wrapper .btn-group-justified > .btn,
|
3872 |
-
.sgpb-wrapper .btn-group-justified > .btn-group {
|
3873 |
-
float: none;
|
3874 |
-
display: table-cell;
|
3875 |
-
width: 1%;
|
3876 |
-
}
|
3877 |
-
.sgpb-wrapper .btn-group-justified > .btn-group .btn {
|
3878 |
-
width: 100%;
|
3879 |
-
}
|
3880 |
-
.sgpb-wrapper .btn-group-justified > .btn-group .dropdown-menu {
|
3881 |
-
left: auto;
|
3882 |
-
}
|
3883 |
-
.sgpb-wrapper [data-toggle="buttons"] > .btn input[type="radio"],
|
3884 |
.sgpb-wrapper [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
|
3885 |
.sgpb-wrapper [data-toggle="buttons"] > .btn input[type="checkbox"],
|
3886 |
-
.sgpb-wrapper [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
|
3887 |
-
position: absolute;
|
3888 |
-
clip: rect(0, 0, 0, 0);
|
3889 |
-
pointer-events: none;
|
3890 |
-
}
|
3891 |
-
.sgpb-wrapper .input-group {
|
3892 |
-
position: relative;
|
3893 |
-
display: table;
|
3894 |
-
border-collapse: separate;
|
3895 |
-
}
|
3896 |
-
.sgpb-wrapper .input-group[class*="col-"] {
|
3897 |
-
float: none;
|
3898 |
-
padding-left: 0;
|
3899 |
-
padding-right: 0;
|
3900 |
-
}
|
3901 |
-
.sgpb-wrapper .input-group .form-control {
|
3902 |
-
position: relative;
|
3903 |
-
z-index: 2;
|
3904 |
-
float: left;
|
3905 |
-
width: 100%;
|
3906 |
-
margin-bottom: 0;
|
3907 |
-
}
|
3908 |
-
.sgpb-wrapper .input-group .form-control:focus {
|
3909 |
-
z-index: 3;
|
3910 |
-
}
|
3911 |
-
.sgpb-wrapper .input-group-lg > .form-control,
|
3912 |
.sgpb-wrapper .input-group-lg > .input-group-addon,
|
3913 |
-
.sgpb-wrapper .input-group-lg
|
3914 |
-
|
3915 |
-
padding: 18px 27px;
|
3916 |
-
font-size: 19px;
|
3917 |
-
line-height: 1.3333333;
|
3918 |
-
border-radius: 6px;
|
3919 |
-
}
|
3920 |
-
.sgpb-wrapper select.input-group-lg > .form-control,
|
3921 |
.sgpb-wrapper select.input-group-lg > .input-group-addon,
|
3922 |
-
.sgpb-wrapper select.input-group-lg
|
3923 |
-
height: 66px;
|
3924 |
-
line-height: 66px;
|
3925 |
-
}
|
3926 |
-
.sgpb-wrapper textarea.input-group-lg > .form-control,
|
3927 |
.sgpb-wrapper textarea.input-group-lg > .input-group-addon,
|
3928 |
.sgpb-wrapper textarea.input-group-lg > .input-group-btn > .btn,
|
3929 |
.sgpb-wrapper select[multiple].input-group-lg > .form-control,
|
3930 |
.sgpb-wrapper select[multiple].input-group-lg > .input-group-addon,
|
3931 |
-
.sgpb-wrapper select[multiple].input-group-lg
|
3932 |
-
height: auto;
|
3933 |
-
}
|
3934 |
-
.sgpb-wrapper .input-group-sm > .form-control,
|
3935 |
.sgpb-wrapper .input-group-sm > .input-group-addon,
|
3936 |
-
.sgpb-wrapper .input-group-sm
|
3937 |
-
|
3938 |
-
padding: 6px 9px;
|
3939 |
-
font-size: 13px;
|
3940 |
-
line-height: 1.5;
|
3941 |
-
border-radius: 3px;
|
3942 |
-
}
|
3943 |
-
.sgpb-wrapper select.input-group-sm > .form-control,
|
3944 |
.sgpb-wrapper select.input-group-sm > .input-group-addon,
|
3945 |
-
.sgpb-wrapper select.input-group-sm
|
3946 |
-
height: 35px;
|
3947 |
-
line-height: 35px;
|
3948 |
-
}
|
3949 |
-
.sgpb-wrapper textarea.input-group-sm > .form-control,
|
3950 |
.sgpb-wrapper textarea.input-group-sm > .input-group-addon,
|
3951 |
.sgpb-wrapper textarea.input-group-sm > .input-group-btn > .btn,
|
3952 |
.sgpb-wrapper select[multiple].input-group-sm > .form-control,
|
3953 |
.sgpb-wrapper select[multiple].input-group-sm > .input-group-addon,
|
3954 |
-
.sgpb-wrapper select[multiple].input-group-sm
|
3955 |
-
height: auto;
|
3956 |
-
}
|
3957 |
-
.sgpb-wrapper .input-group-addon,
|
3958 |
.sgpb-wrapper .input-group-btn,
|
3959 |
-
.sgpb-wrapper .input-group .form-control
|
3960 |
-
display: table-cell;
|
3961 |
-
}
|
3962 |
-
.sgpb-wrapper .input-group-addon:not(:first-child):not(:last-child),
|
3963 |
.sgpb-wrapper .input-group-btn:not(:first-child):not(:last-child),
|
3964 |
-
.sgpb-wrapper .input-group .form-control:not(:first-child):not(:last-child)
|
3965 |
-
|
3966 |
-
|
3967 |
-
.sgpb-wrapper .input-group-addon
|
3968 |
-
.sgpb-wrapper .input-group-
|
3969 |
-
|
3970 |
-
|
3971 |
-
vertical-align: middle;
|
3972 |
-
}
|
3973 |
-
.sgpb-wrapper .input-group-addon {
|
3974 |
-
padding: 10px 15px;
|
3975 |
-
font-size: 15px;
|
3976 |
-
font-weight: normal;
|
3977 |
-
line-height: 1;
|
3978 |
-
color: #2c3e50;
|
3979 |
-
text-align: center;
|
3980 |
-
background-color: #ecf0f1;
|
3981 |
-
border: 1px solid #dce4ec;
|
3982 |
-
border-radius: 4px;
|
3983 |
-
}
|
3984 |
-
.sgpb-wrapper .input-group-addon.input-sm {
|
3985 |
-
padding: 6px 9px;
|
3986 |
-
font-size: 13px;
|
3987 |
-
border-radius: 3px;
|
3988 |
-
}
|
3989 |
-
.sgpb-wrapper .input-group-addon.input-lg {
|
3990 |
-
padding: 18px 27px;
|
3991 |
-
font-size: 19px;
|
3992 |
-
border-radius: 6px;
|
3993 |
-
}
|
3994 |
-
.sgpb-wrapper .input-group-addon input[type="radio"],
|
3995 |
-
.sgpb-wrapper .input-group-addon input[type="checkbox"] {
|
3996 |
-
margin-top: 0;
|
3997 |
-
}
|
3998 |
-
.sgpb-wrapper .input-group .form-control:first-child,
|
3999 |
.sgpb-wrapper .input-group-addon:first-child,
|
4000 |
.sgpb-wrapper .input-group-btn:first-child > .btn,
|
4001 |
.sgpb-wrapper .input-group-btn:first-child > .btn-group > .btn,
|
4002 |
.sgpb-wrapper .input-group-btn:first-child > .dropdown-toggle,
|
4003 |
.sgpb-wrapper .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
|
4004 |
-
.sgpb-wrapper .input-group-btn:last-child
|
4005 |
-
border-bottom-right-radius: 0;
|
4006 |
-
border-top-right-radius: 0;
|
4007 |
-
}
|
4008 |
-
.sgpb-wrapper .input-group-addon:first-child {
|
4009 |
-
border-right: 0;
|
4010 |
-
}
|
4011 |
-
.sgpb-wrapper .input-group .form-control:last-child,
|
4012 |
.sgpb-wrapper .input-group-addon:last-child,
|
4013 |
.sgpb-wrapper .input-group-btn:last-child > .btn,
|
4014 |
.sgpb-wrapper .input-group-btn:last-child > .btn-group > .btn,
|
4015 |
.sgpb-wrapper .input-group-btn:last-child > .dropdown-toggle,
|
4016 |
.sgpb-wrapper .input-group-btn:first-child > .btn:not(:first-child),
|
4017 |
-
.sgpb-wrapper .input-group-btn:first-child
|
4018 |
-
border-bottom-left-radius: 0;
|
4019 |
-
border-top-left-radius: 0;
|
4020 |
-
}
|
4021 |
-
.sgpb-wrapper .input-group-addon:last-child {
|
4022 |
-
border-left: 0;
|
4023 |
-
}
|
4024 |
-
.sgpb-wrapper .input-group-btn {
|
4025 |
-
position: relative;
|
4026 |
-
font-size: 0;
|
4027 |
-
white-space: nowrap;
|
4028 |
-
}
|
4029 |
-
.sgpb-wrapper .input-group-btn > .btn {
|
4030 |
-
position: relative;
|
4031 |
-
}
|
4032 |
-
.sgpb-wrapper .input-group-btn > .btn + .btn {
|
4033 |
-
margin-left: -1px;
|
4034 |
-
}
|
4035 |
-
.sgpb-wrapper .input-group-btn > .btn:hover,
|
4036 |
.sgpb-wrapper .input-group-btn > .btn:focus,
|
4037 |
-
.sgpb-wrapper .input-group-btn > .btn
|
4038 |
-
|
4039 |
-
}
|
4040 |
-
.sgpb-wrapper .
|
4041 |
-
.sgpb-wrapper .
|
4042 |
-
|
4043 |
-
}
|
4044 |
-
.sgpb-wrapper .input-group-btn:last-child > .btn,
|
4045 |
-
.sgpb-wrapper .input-group-btn:last-child > .btn-group {
|
4046 |
-
z-index: 2;
|
4047 |
-
margin-left: -1px;
|
4048 |
-
}
|
4049 |
-
.sgpb-wrapper .nav {
|
4050 |
-
margin-bottom: 0;
|
4051 |
-
padding-left: 0;
|
4052 |
-
list-style: none;
|
4053 |
-
}
|
4054 |
-
.sgpb-wrapper .nav > li {
|
4055 |
-
position: relative;
|
4056 |
-
display: block;
|
4057 |
-
}
|
4058 |
-
.sgpb-wrapper .nav > li > a {
|
4059 |
-
position: relative;
|
4060 |
-
display: block;
|
4061 |
-
padding: 10px 15px;
|
4062 |
-
}
|
4063 |
-
.sgpb-wrapper .nav > li > a:hover,
|
4064 |
-
.sgpb-wrapper .nav > li > a:focus {
|
4065 |
-
text-decoration: none;
|
4066 |
-
background-color: #ecf0f1;
|
4067 |
-
}
|
4068 |
-
.sgpb-wrapper .nav > li.disabled > a {
|
4069 |
-
color: #b4bcc2;
|
4070 |
-
}
|
4071 |
-
.sgpb-wrapper .nav > li.disabled > a:hover,
|
4072 |
-
.sgpb-wrapper .nav > li.disabled > a:focus {
|
4073 |
-
color: #b4bcc2;
|
4074 |
-
text-decoration: none;
|
4075 |
-
background-color: transparent;
|
4076 |
-
cursor: not-allowed;
|
4077 |
-
}
|
4078 |
-
.sgpb-wrapper .nav .open > a,
|
4079 |
.sgpb-wrapper .nav .open > a:hover,
|
4080 |
-
.sgpb-wrapper .nav .open
|
4081 |
-
|
4082 |
-
border-color: #18bc9c;
|
4083 |
-
}
|
4084 |
-
.sgpb-wrapper .nav .nav-divider {
|
4085 |
-
height: 1px;
|
4086 |
-
margin: 9.5px 0;
|
4087 |
-
overflow: hidden;
|
4088 |
-
background-color: #e5e5e5;
|
4089 |
-
}
|
4090 |
-
.sgpb-wrapper .nav > li > a > img {
|
4091 |
-
max-width: none;
|
4092 |
-
}
|
4093 |
-
.sgpb-wrapper .nav-tabs {
|
4094 |
-
border-bottom: 1px solid #ecf0f1;
|
4095 |
-
}
|
4096 |
-
.sgpb-wrapper .nav-tabs > li {
|
4097 |
-
float: left;
|
4098 |
-
margin-bottom: -1px;
|
4099 |
-
}
|
4100 |
-
.sgpb-wrapper .nav-tabs > li > a {
|
4101 |
-
margin-right: 2px;
|
4102 |
-
line-height: 1.42857143;
|
4103 |
-
border: 1px solid transparent;
|
4104 |
-
border-radius: 4px 4px 0 0;
|
4105 |
-
}
|
4106 |
-
.sgpb-wrapper .nav-tabs > li > a:hover {
|
4107 |
-
border-color: #ecf0f1 #ecf0f1 #ecf0f1;
|
4108 |
-
}
|
4109 |
-
.sgpb-wrapper .nav-tabs > li.active > a,
|
4110 |
.sgpb-wrapper .nav-tabs > li.active > a:hover,
|
4111 |
-
.sgpb-wrapper .nav-tabs
|
4112 |
-
|
4113 |
-
|
4114 |
-
|
4115 |
-
|
4116 |
-
cursor: default;
|
4117 |
-
}
|
4118 |
-
.sgpb-wrapper .nav-tabs.nav-justified {
|
4119 |
-
width: 100%;
|
4120 |
-
border-bottom: 0;
|
4121 |
-
}
|
4122 |
-
.sgpb-wrapper .nav-tabs.nav-justified > li {
|
4123 |
-
float: none;
|
4124 |
-
}
|
4125 |
-
.sgpb-wrapper .nav-tabs.nav-justified > li > a {
|
4126 |
-
text-align: center;
|
4127 |
-
margin-bottom: 5px;
|
4128 |
-
}
|
4129 |
-
.sgpb-wrapper .nav-tabs.nav-justified > .dropdown .dropdown-menu {
|
4130 |
-
top: auto;
|
4131 |
-
left: auto;
|
4132 |
-
}
|
4133 |
-
@media (min-width: 768px) {
|
4134 |
-
.sgpb-wrapper .nav-tabs.nav-justified > li {
|
4135 |
-
display: table-cell;
|
4136 |
-
width: 1%;
|
4137 |
-
}
|
4138 |
-
.sgpb-wrapper .nav-tabs.nav-justified > li > a {
|
4139 |
-
margin-bottom: 0;
|
4140 |
-
}
|
4141 |
-
}
|
4142 |
-
.sgpb-wrapper .nav-tabs.nav-justified > li > a {
|
4143 |
-
margin-right: 0;
|
4144 |
-
border-radius: 4px;
|
4145 |
-
}
|
4146 |
-
.sgpb-wrapper .nav-tabs.nav-justified > .active > a,
|
4147 |
.sgpb-wrapper .nav-tabs.nav-justified > .active > a:hover,
|
4148 |
-
.sgpb-wrapper .nav-tabs.nav-justified > .active > a
|
4149 |
-
border: 1px solid #ecf0f1;
|
4150 |
-
}
|
4151 |
-
@media (min-width: 768px) {
|
4152 |
-
.sgpb-wrapper .nav-tabs.nav-justified > li > a {
|
4153 |
-
border-bottom: 1px solid #ecf0f1;
|
4154 |
-
border-radius: 4px 4px 0 0;
|
4155 |
-
}
|
4156 |
-
.sgpb-wrapper .nav-tabs.nav-justified > .active > a,
|
4157 |
-
.sgpb-wrapper .nav-tabs.nav-justified > .active > a:hover,
|
4158 |
-
.sgpb-wrapper .nav-tabs.nav-justified > .active > a:focus {
|
4159 |
-
border-bottom-color: #ffffff;
|
4160 |
-
}
|
4161 |
-
}
|
4162 |
-
.sgpb-wrapper .nav-pills > li {
|
4163 |
-
float: left;
|
4164 |
-
}
|
4165 |
-
.sgpb-wrapper .nav-pills > li > a {
|
4166 |
-
border-radius: 4px;
|
4167 |
-
}
|
4168 |
-
.sgpb-wrapper .nav-pills > li + li {
|
4169 |
-
margin-left: 2px;
|
4170 |
-
}
|
4171 |
-
.sgpb-wrapper .nav-pills > li.active > a,
|
4172 |
.sgpb-wrapper .nav-pills > li.active > a:hover,
|
4173 |
-
.sgpb-wrapper .nav-pills > li.
|
4174 |
-
color: #ffffff;
|
4175 |
-
background-color: #2c3e50;
|
4176 |
-
}
|
4177 |
-
.sgpb-wrapper .nav-stacked > li {
|
4178 |
-
float: none;
|
4179 |
-
}
|
4180 |
-
.sgpb-wrapper .nav-stacked > li + li {
|
4181 |
-
margin-top: 2px;
|
4182 |
-
margin-left: 0;
|
4183 |
-
}
|
4184 |
-
.sgpb-wrapper .nav-justified {
|
4185 |
-
width: 100%;
|
4186 |
-
}
|
4187 |
-
.sgpb-wrapper .nav-justified > li {
|
4188 |
-
float: none;
|
4189 |
-
}
|
4190 |
-
.sgpb-wrapper .nav-justified > li > a {
|
4191 |
-
text-align: center;
|
4192 |
-
margin-bottom: 5px;
|
4193 |
-
}
|
4194 |
-
.sgpb-wrapper .nav-justified > .dropdown .dropdown-menu {
|
4195 |
-
top: auto;
|
4196 |
-
left: auto;
|
4197 |
-
}
|
4198 |
-
@media (min-width: 768px) {
|
4199 |
-
.sgpb-wrapper .nav-justified > li {
|
4200 |
-
display: table-cell;
|
4201 |
-
width: 1%;
|
4202 |
-
}
|
4203 |
-
.sgpb-wrapper .nav-justified > li > a {
|
4204 |
-
margin-bottom: 0;
|
4205 |
-
}
|
4206 |
-
}
|
4207 |
-
.sgpb-wrapper .nav-tabs-justified {
|
4208 |
-
border-bottom: 0;
|
4209 |
-
}
|
4210 |
-
.sgpb-wrapper .nav-tabs-justified > li > a {
|
4211 |
-
margin-right: 0;
|
4212 |
-
border-radius: 4px;
|
4213 |
-
}
|
4214 |
-
.sgpb-wrapper .nav-tabs-justified > .active > a,
|
4215 |
.sgpb-wrapper .nav-tabs-justified > .active > a:hover,
|
4216 |
-
.sgpb-wrapper .nav-tabs-justified
|
4217 |
-
|
4218 |
-
|
4219 |
-
|
4220 |
-
|
4221 |
-
|
4222 |
-
|
4223 |
-
|
4224 |
-
|
4225 |
-
|
4226 |
-
|
4227 |
-
|
4228 |
-
|
4229 |
-
}
|
4230 |
-
.sgpb-wrapper .tab-content > .tab-pane {
|
4231 |
-
display: none;
|
4232 |
-
}
|
4233 |
-
.sgpb-wrapper .tab-content > .active {
|
4234 |
-
display: block;
|
4235 |
-
}
|
4236 |
-
.sgpb-wrapper .nav-tabs .dropdown-menu {
|
4237 |
-
margin-top: -1px;
|
4238 |
-
border-top-right-radius: 0;
|
4239 |
-
border-top-left-radius: 0;
|
4240 |
-
}
|
4241 |
-
.sgpb-wrapper .navbar {
|
4242 |
-
position: relative;
|
4243 |
-
min-height: 60px;
|
4244 |
-
margin-bottom: 21px;
|
4245 |
-
border: 1px solid transparent;
|
4246 |
-
}
|
4247 |
-
@media (min-width: 768px) {
|
4248 |
-
.sgpb-wrapper .navbar {
|
4249 |
-
border-radius: 4px;
|
4250 |
-
}
|
4251 |
-
}
|
4252 |
-
@media (min-width: 768px) {
|
4253 |
-
.sgpb-wrapper .navbar-header {
|
4254 |
-
float: left;
|
4255 |
-
}
|
4256 |
-
}
|
4257 |
-
.sgpb-wrapper .navbar-collapse {
|
4258 |
-
overflow-x: visible;
|
4259 |
-
padding-right: 15px;
|
4260 |
-
padding-left: 15px;
|
4261 |
-
border-top: 1px solid transparent;
|
4262 |
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
4263 |
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
4264 |
-
-webkit-overflow-scrolling: touch;
|
4265 |
-
}
|
4266 |
-
.sgpb-wrapper .navbar-collapse.in {
|
4267 |
-
overflow-y: auto;
|
4268 |
-
}
|
4269 |
-
@media (min-width: 768px) {
|
4270 |
-
.sgpb-wrapper .navbar-collapse {
|
4271 |
-
width: auto;
|
4272 |
-
border-top: 0;
|
4273 |
-
-webkit-box-shadow: none;
|
4274 |
-
box-shadow: none;
|
4275 |
-
}
|
4276 |
-
.sgpb-wrapper .navbar-collapse.collapse {
|
4277 |
-
display: block !important;
|
4278 |
-
height: auto !important;
|
4279 |
-
padding-bottom: 0;
|
4280 |
-
overflow: visible !important;
|
4281 |
-
}
|
4282 |
-
.sgpb-wrapper .navbar-collapse.in {
|
4283 |
-
overflow-y: visible;
|
4284 |
-
}
|
4285 |
-
.sgpb-wrapper .navbar-fixed-top .navbar-collapse,
|
4286 |
-
.sgpb-wrapper .navbar-static-top .navbar-collapse,
|
4287 |
-
.sgpb-wrapper .navbar-fixed-bottom .navbar-collapse {
|
4288 |
-
padding-left: 0;
|
4289 |
-
padding-right: 0;
|
4290 |
-
}
|
4291 |
-
}
|
4292 |
-
.sgpb-wrapper .navbar-fixed-top .navbar-collapse,
|
4293 |
-
.sgpb-wrapper .navbar-fixed-bottom .navbar-collapse {
|
4294 |
-
max-height: 340px;
|
4295 |
-
}
|
4296 |
-
@media (max-device-width: 480px) and (orientation: landscape) {
|
4297 |
-
.sgpb-wrapper .navbar-fixed-top .navbar-collapse,
|
4298 |
-
.sgpb-wrapper .navbar-fixed-bottom .navbar-collapse {
|
4299 |
-
max-height: 200px;
|
4300 |
-
}
|
4301 |
-
}
|
4302 |
-
.sgpb-wrapper .container > .navbar-header,
|
4303 |
.sgpb-wrapper .container-fluid > .navbar-header,
|
4304 |
.sgpb-wrapper .container > .navbar-collapse,
|
4305 |
-
.sgpb-wrapper .container-fluid
|
4306 |
-
|
4307 |
-
|
4308 |
-
}
|
4309 |
-
|
4310 |
-
|
4311 |
-
|
4312 |
-
|
4313 |
-
|
4314 |
-
|
4315 |
-
|
4316 |
-
|
4317 |
-
}
|
4318 |
-
.sgpb-wrapper .navbar-
|
4319 |
-
|
4320 |
-
|
4321 |
-
}
|
4322 |
-
@media (min-width: 768px) {
|
4323 |
-
|
4324 |
-
|
4325 |
-
}
|
4326 |
-
}
|
4327 |
-
.sgpb-wrapper .navbar-fixed-top,
|
4328 |
-
.sgpb-wrapper .navbar-fixed-bottom {
|
4329 |
-
position: fixed;
|
4330 |
-
right: 0;
|
4331 |
-
left: 0;
|
4332 |
-
z-index: 1030;
|
4333 |
-
}
|
4334 |
-
@media (min-width: 768px) {
|
4335 |
-
.sgpb-wrapper .navbar-fixed-top,
|
4336 |
-
.sgpb-wrapper .navbar-fixed-bottom {
|
4337 |
-
border-radius: 0;
|
4338 |
-
}
|
4339 |
-
}
|
4340 |
-
.sgpb-wrapper .navbar-fixed-top {
|
4341 |
-
top: 0;
|
4342 |
-
border-width: 0 0 1px;
|
4343 |
-
}
|
4344 |
-
.sgpb-wrapper .navbar-fixed-bottom {
|
4345 |
-
bottom: 0;
|
4346 |
-
margin-bottom: 0;
|
4347 |
-
border-width: 1px 0 0;
|
4348 |
-
}
|
4349 |
-
.sgpb-wrapper .navbar-brand {
|
4350 |
-
float: left;
|
4351 |
-
padding: 19.5px 15px;
|
4352 |
-
font-size: 19px;
|
4353 |
-
line-height: 21px;
|
4354 |
-
height: 60px;
|
4355 |
-
}
|
4356 |
-
.sgpb-wrapper .navbar-brand:hover,
|
4357 |
-
.sgpb-wrapper .navbar-brand:focus {
|
4358 |
-
text-decoration: none;
|
4359 |
-
}
|
4360 |
-
.sgpb-wrapper .navbar-brand > img {
|
4361 |
-
display: block;
|
4362 |
-
}
|
4363 |
-
@media (min-width: 768px) {
|
4364 |
-
.sgpb-wrapper .navbar > .container .navbar-brand,
|
4365 |
-
.sgpb-wrapper .navbar > .container-fluid .navbar-brand {
|
4366 |
-
margin-left: -15px;
|
4367 |
-
}
|
4368 |
-
}
|
4369 |
-
.sgpb-wrapper .navbar-toggle {
|
4370 |
-
position: relative;
|
4371 |
-
float: right;
|
4372 |
-
margin-right: 15px;
|
4373 |
-
padding: 9px 10px;
|
4374 |
-
margin-top: 13px;
|
4375 |
-
margin-bottom: 13px;
|
4376 |
-
background-color: transparent;
|
4377 |
-
background-image: none;
|
4378 |
-
border: 1px solid transparent;
|
4379 |
-
border-radius: 4px;
|
4380 |
-
}
|
4381 |
-
.sgpb-wrapper .navbar-toggle:focus {
|
4382 |
-
outline: 0;
|
4383 |
-
}
|
4384 |
-
.sgpb-wrapper .navbar-toggle .icon-bar {
|
4385 |
-
display: block;
|
4386 |
-
width: 22px;
|
4387 |
-
height: 2px;
|
4388 |
-
border-radius: 1px;
|
4389 |
-
}
|
4390 |
-
.sgpb-wrapper .navbar-toggle .icon-bar + .icon-bar {
|
4391 |
-
margin-top: 4px;
|
4392 |
-
}
|
4393 |
-
@media (min-width: 768px) {
|
4394 |
-
.sgpb-wrapper .navbar-toggle {
|
4395 |
-
display: none;
|
4396 |
-
}
|
4397 |
-
}
|
4398 |
-
.sgpb-wrapper .navbar-nav {
|
4399 |
-
margin: 9.75px -15px;
|
4400 |
-
}
|
4401 |
-
.sgpb-wrapper .navbar-nav > li > a {
|
4402 |
-
padding-top: 10px;
|
4403 |
-
padding-bottom: 10px;
|
4404 |
-
line-height: 21px;
|
4405 |
-
}
|
4406 |
-
@media (max-width: 767px) {
|
4407 |
-
.sgpb-wrapper .navbar-nav .open .dropdown-menu {
|
4408 |
-
position: static;
|
4409 |
-
float: none;
|
4410 |
-
width: auto;
|
4411 |
-
margin-top: 0;
|
4412 |
-
background-color: transparent;
|
4413 |
-
border: 0;
|
4414 |
-
-webkit-box-shadow: none;
|
4415 |
-
box-shadow: none;
|
4416 |
-
}
|
4417 |
-
.sgpb-wrapper .navbar-nav .open .dropdown-menu > li > a,
|
4418 |
-
.sgpb-wrapper .navbar-nav .open .dropdown-menu .dropdown-header {
|
4419 |
-
padding: 5px 15px 5px 25px;
|
4420 |
-
}
|
4421 |
-
.sgpb-wrapper .navbar-nav .open .dropdown-menu > li > a {
|
4422 |
-
line-height: 21px;
|
4423 |
-
}
|
4424 |
-
.sgpb-wrapper .navbar-nav .open .dropdown-menu > li > a:hover,
|
4425 |
-
.sgpb-wrapper .navbar-nav .open .dropdown-menu > li > a:focus {
|
4426 |
-
background-image: none;
|
4427 |
-
}
|
4428 |
-
}
|
4429 |
-
@media (min-width: 768px) {
|
4430 |
-
.sgpb-wrapper .navbar-nav {
|
4431 |
-
float: left;
|
4432 |
-
margin: 0;
|
4433 |
-
}
|
4434 |
-
.sgpb-wrapper .navbar-nav > li {
|
4435 |
-
float: left;
|
4436 |
-
}
|
4437 |
-
.sgpb-wrapper .navbar-nav > li > a {
|
4438 |
-
padding-top: 19.5px;
|
4439 |
-
padding-bottom: 19.5px;
|
4440 |
-
}
|
4441 |
-
}
|
4442 |
-
.sgpb-wrapper .navbar-form {
|
4443 |
-
margin-left: -15px;
|
4444 |
-
margin-right: -15px;
|
4445 |
-
padding: 10px 15px;
|
4446 |
-
border-top: 1px solid transparent;
|
4447 |
-
border-bottom: 1px solid transparent;
|
4448 |
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
4449 |
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
4450 |
-
margin-top: 7.5px;
|
4451 |
-
margin-bottom: 7.5px;
|
4452 |
-
}
|
4453 |
-
@media (min-width: 768px) {
|
4454 |
-
.sgpb-wrapper .navbar-form .form-group {
|
4455 |
-
display: inline-block;
|
4456 |
-
margin-bottom: 0;
|
4457 |
-
vertical-align: middle;
|
4458 |
-
}
|
4459 |
-
.sgpb-wrapper .navbar-form .form-control {
|
4460 |
-
display: inline-block;
|
4461 |
-
width: auto;
|
4462 |
-
vertical-align: middle;
|
4463 |
-
}
|
4464 |
-
.sgpb-wrapper .navbar-form .form-control-static {
|
4465 |
-
display: inline-block;
|
4466 |
-
}
|
4467 |
-
.sgpb-wrapper .navbar-form .input-group {
|
4468 |
-
display: inline-table;
|
4469 |
-
vertical-align: middle;
|
4470 |
-
}
|
4471 |
-
.sgpb-wrapper .navbar-form .input-group .input-group-addon,
|
4472 |
-
.sgpb-wrapper .navbar-form .input-group .input-group-btn,
|
4473 |
-
.sgpb-wrapper .navbar-form .input-group .form-control {
|
4474 |
-
width: auto;
|
4475 |
-
}
|
4476 |
-
.sgpb-wrapper .navbar-form .input-group > .form-control {
|
4477 |
-
width: 100%;
|
4478 |
-
}
|
4479 |
-
.sgpb-wrapper .navbar-form .control-label {
|
4480 |
-
margin-bottom: 0;
|
4481 |
-
vertical-align: middle;
|
4482 |
-
}
|
4483 |
-
.sgpb-wrapper .navbar-form .radio,
|
4484 |
-
.sgpb-wrapper .navbar-form .checkbox {
|
4485 |
-
display: inline-block;
|
4486 |
-
margin-top: 0;
|
4487 |
-
margin-bottom: 0;
|
4488 |
-
vertical-align: middle;
|
4489 |
-
}
|
4490 |
-
.sgpb-wrapper .navbar-form .radio label,
|
4491 |
-
.sgpb-wrapper .navbar-form .checkbox label {
|
4492 |
-
padding-left: 0;
|
4493 |
-
}
|
4494 |
-
.sgpb-wrapper .navbar-form .radio input[type="radio"],
|
4495 |
-
.sgpb-wrapper .navbar-form .checkbox input[type="checkbox"] {
|
4496 |
-
position: relative;
|
4497 |
-
margin-left: 0;
|
4498 |
-
}
|
4499 |
-
.sgpb-wrapper .navbar-form .has-feedback .form-control-feedback {
|
4500 |
-
top: 0;
|
4501 |
-
}
|
4502 |
-
}
|
4503 |
-
@media (max-width: 767px) {
|
4504 |
-
.sgpb-wrapper .navbar-form .form-group {
|
4505 |
-
margin-bottom: 5px;
|
4506 |
-
}
|
4507 |
-
.sgpb-wrapper .navbar-form .form-group:last-child {
|
4508 |
-
margin-bottom: 0;
|
4509 |
-
}
|
4510 |
-
}
|
4511 |
-
@media (min-width: 768px) {
|
4512 |
-
.sgpb-wrapper .navbar-form {
|
4513 |
-
width: auto;
|
4514 |
-
border: 0;
|
4515 |
-
margin-left: 0;
|
4516 |
-
margin-right: 0;
|
4517 |
-
padding-top: 0;
|
4518 |
-
padding-bottom: 0;
|
4519 |
-
-webkit-box-shadow: none;
|
4520 |
-
box-shadow: none;
|
4521 |
-
}
|
4522 |
-
}
|
4523 |
-
.sgpb-wrapper .navbar-nav > li > .dropdown-menu {
|
4524 |
-
margin-top: 0;
|
4525 |
-
border-top-right-radius: 0;
|
4526 |
-
border-top-left-radius: 0;
|
4527 |
-
}
|
4528 |
-
.sgpb-wrapper .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
|
4529 |
-
margin-bottom: 0;
|
4530 |
-
border-top-right-radius: 4px;
|
4531 |
-
border-top-left-radius: 4px;
|
4532 |
-
border-bottom-right-radius: 0;
|
4533 |
-
border-bottom-left-radius: 0;
|
4534 |
-
}
|
4535 |
-
.sgpb-wrapper .navbar-btn {
|
4536 |
-
margin-top: 7.5px;
|
4537 |
-
margin-bottom: 7.5px;
|
4538 |
-
}
|
4539 |
-
.sgpb-wrapper .navbar-btn.btn-sm {
|
4540 |
-
margin-top: 12.5px;
|
4541 |
-
margin-bottom: 12.5px;
|
4542 |
-
}
|
4543 |
-
.sgpb-wrapper .navbar-btn.btn-xs {
|
4544 |
-
margin-top: 19px;
|
4545 |
-
margin-bottom: 19px;
|
4546 |
-
}
|
4547 |
-
.sgpb-wrapper .navbar-text {
|
4548 |
-
margin-top: 19.5px;
|
4549 |
-
margin-bottom: 19.5px;
|
4550 |
-
}
|
4551 |
-
@media (min-width: 768px) {
|
4552 |
-
.sgpb-wrapper .navbar-text {
|
4553 |
-
float: left;
|
4554 |
-
margin-left: 15px;
|
4555 |
-
margin-right: 15px;
|
4556 |
-
}
|
4557 |
-
}
|
4558 |
-
@media (min-width: 768px) {
|
4559 |
-
.sgpb-wrapper .navbar-left {
|
4560 |
-
float: left !important;
|
4561 |
-
}
|
4562 |
-
.sgpb-wrapper .navbar-right {
|
4563 |
-
float: right !important;
|
4564 |
-
margin-right: -15px;
|
4565 |
-
}
|
4566 |
-
.sgpb-wrapper .navbar-right ~ .navbar-right {
|
4567 |
-
margin-right: 0;
|
4568 |
-
}
|
4569 |
-
}
|
4570 |
-
.sgpb-wrapper .navbar-default {
|
4571 |
-
background-color: #2c3e50;
|
4572 |
-
border-color: transparent;
|
4573 |
-
}
|
4574 |
-
.sgpb-wrapper .navbar-default .navbar-brand {
|
4575 |
-
color: #ffffff;
|
4576 |
-
}
|
4577 |
-
.sgpb-wrapper .navbar-default .navbar-brand:hover,
|
4578 |
-
.sgpb-wrapper .navbar-default .navbar-brand:focus {
|
4579 |
-
color: #18bc9c;
|
4580 |
-
background-color: transparent;
|
4581 |
-
}
|
4582 |
-
.sgpb-wrapper .navbar-default .navbar-text {
|
4583 |
-
color: #ffffff;
|
4584 |
-
}
|
4585 |
-
.sgpb-wrapper .navbar-default .navbar-nav > li > a {
|
4586 |
-
color: #ffffff;
|
4587 |
-
}
|
4588 |
-
.sgpb-wrapper .navbar-default .navbar-nav > li > a:hover,
|
4589 |
-
.sgpb-wrapper .navbar-default .navbar-nav > li > a:focus {
|
4590 |
-
color: #18bc9c;
|
4591 |
-
background-color: transparent;
|
4592 |
-
}
|
4593 |
-
.sgpb-wrapper .navbar-default .navbar-nav > .active > a,
|
4594 |
.sgpb-wrapper .navbar-default .navbar-nav > .active > a:hover,
|
4595 |
-
.sgpb-wrapper .navbar-default .navbar-nav > .
|
4596 |
-
color: #ffffff;
|
4597 |
-
background-color: #1a242f;
|
4598 |
-
}
|
4599 |
-
.sgpb-wrapper .navbar-default .navbar-nav > .disabled > a,
|
4600 |
.sgpb-wrapper .navbar-default .navbar-nav > .disabled > a:hover,
|
4601 |
-
.sgpb-wrapper .navbar-default .navbar-nav
|
4602 |
-
|
4603 |
-
|
4604 |
-
}
|
4605 |
-
.sgpb-wrapper .navbar-default .navbar-toggle {
|
4606 |
-
border-color: #1a242f;
|
4607 |
-
}
|
4608 |
-
.sgpb-wrapper .navbar-default .navbar-toggle:hover,
|
4609 |
-
.sgpb-wrapper .navbar-default .navbar-toggle:focus {
|
4610 |
-
background-color: #1a242f;
|
4611 |
-
}
|
4612 |
-
.sgpb-wrapper .navbar-default .navbar-toggle .icon-bar {
|
4613 |
-
background-color: #ffffff;
|
4614 |
-
}
|
4615 |
-
.sgpb-wrapper .navbar-default .navbar-collapse,
|
4616 |
-
.sgpb-wrapper .navbar-default .navbar-form {
|
4617 |
-
border-color: transparent;
|
4618 |
-
}
|
4619 |
-
.sgpb-wrapper .navbar-default .navbar-nav > .open > a,
|
4620 |
.sgpb-wrapper .navbar-default .navbar-nav > .open > a:hover,
|
4621 |
-
.sgpb-wrapper .navbar-default .navbar-nav > .open > a:
|
4622 |
-
|
4623 |
-
|
4624 |
-
}
|
4625 |
-
|
4626 |
-
|
4627 |
-
|
4628 |
-
}
|
4629 |
-
.sgpb-wrapper .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
|
4630 |
-
.sgpb-wrapper .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
|
4631 |
-
color: #18bc9c;
|
4632 |
-
background-color: transparent;
|
4633 |
-
}
|
4634 |
-
.sgpb-wrapper .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
|
4635 |
-
.sgpb-wrapper .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
|
4636 |
-
.sgpb-wrapper .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
|
4637 |
-
color: #ffffff;
|
4638 |
-
background-color: #1a242f;
|
4639 |
-
}
|
4640 |
-
.sgpb-wrapper .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
|
4641 |
-
.sgpb-wrapper .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
4642 |
-
.sgpb-wrapper .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
4643 |
-
color: #cccccc;
|
4644 |
-
background-color: transparent;
|
4645 |
-
}
|
4646 |
-
}
|
4647 |
-
.sgpb-wrapper .navbar-default .navbar-link {
|
4648 |
-
color: #ffffff;
|
4649 |
-
}
|
4650 |
-
.sgpb-wrapper .navbar-default .navbar-link:hover {
|
4651 |
-
color: #18bc9c;
|
4652 |
-
}
|
4653 |
-
.sgpb-wrapper .navbar-default .btn-link {
|
4654 |
-
color: #ffffff;
|
4655 |
-
}
|
4656 |
-
.sgpb-wrapper .navbar-default .btn-link:hover,
|
4657 |
-
.sgpb-wrapper .navbar-default .btn-link:focus {
|
4658 |
-
color: #18bc9c;
|
4659 |
-
}
|
4660 |
-
.sgpb-wrapper .navbar-default .btn-link[disabled]:hover,
|
4661 |
.sgpb-wrapper fieldset[disabled] .navbar-default .btn-link:hover,
|
4662 |
.sgpb-wrapper .navbar-default .btn-link[disabled]:focus,
|
4663 |
-
.sgpb-wrapper fieldset[disabled] .navbar-default .btn-link:focus {
|
4664 |
-
|
4665 |
-
}
|
4666 |
-
.sgpb-wrapper .navbar-inverse {
|
4667 |
-
background-color: #18bc9c;
|
4668 |
-
border-color: transparent;
|
4669 |
-
}
|
4670 |
-
.sgpb-wrapper .navbar-inverse .navbar-brand {
|
4671 |
-
color: #ffffff;
|
4672 |
-
}
|
4673 |
-
.sgpb-wrapper .navbar-inverse .navbar-brand:hover,
|
4674 |
-
.sgpb-wrapper .navbar-inverse .navbar-brand:focus {
|
4675 |
-
color: #2c3e50;
|
4676 |
-
background-color: transparent;
|
4677 |
-
}
|
4678 |
-
.sgpb-wrapper .navbar-inverse .navbar-text {
|
4679 |
-
color: #ffffff;
|
4680 |
-
}
|
4681 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav > li > a {
|
4682 |
-
color: #ffffff;
|
4683 |
-
}
|
4684 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav > li > a:hover,
|
4685 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav > li > a:focus {
|
4686 |
-
color: #2c3e50;
|
4687 |
-
background-color: transparent;
|
4688 |
-
}
|
4689 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav > .active > a,
|
4690 |
.sgpb-wrapper .navbar-inverse .navbar-nav > .active > a:hover,
|
4691 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav > .
|
4692 |
-
color: #ffffff;
|
4693 |
-
background-color: #15a589;
|
4694 |
-
}
|
4695 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav > .disabled > a,
|
4696 |
.sgpb-wrapper .navbar-inverse .navbar-nav > .disabled > a:hover,
|
4697 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav
|
4698 |
-
|
4699 |
-
|
4700 |
-
}
|
4701 |
-
.sgpb-wrapper .navbar-inverse .navbar-toggle {
|
4702 |
-
border-color: #128f76;
|
4703 |
-
}
|
4704 |
-
.sgpb-wrapper .navbar-inverse .navbar-toggle:hover,
|
4705 |
-
.sgpb-wrapper .navbar-inverse .navbar-toggle:focus {
|
4706 |
-
background-color: #128f76;
|
4707 |
-
}
|
4708 |
-
.sgpb-wrapper .navbar-inverse .navbar-toggle .icon-bar {
|
4709 |
-
background-color: #ffffff;
|
4710 |
-
}
|
4711 |
-
.sgpb-wrapper .navbar-inverse .navbar-collapse,
|
4712 |
-
.sgpb-wrapper .navbar-inverse .navbar-form {
|
4713 |
-
border-color: #149c82;
|
4714 |
-
}
|
4715 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav > .open > a,
|
4716 |
.sgpb-wrapper .navbar-inverse .navbar-nav > .open > a:hover,
|
4717 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav
|
4718 |
-
|
4719 |
-
|
4720 |
-
|
4721 |
-
|
4722 |
-
|
4723 |
-
|
4724 |
-
|
4725 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
|
4726 |
-
background-color: transparent;
|
4727 |
-
}
|
4728 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
|
4729 |
-
color: #ffffff;
|
4730 |
-
}
|
4731 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
|
4732 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
|
4733 |
-
color: #2c3e50;
|
4734 |
-
background-color: transparent;
|
4735 |
-
}
|
4736 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
|
4737 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
|
4738 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
|
4739 |
-
color: #ffffff;
|
4740 |
-
background-color: #15a589;
|
4741 |
-
}
|
4742 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
|
4743 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
4744 |
-
.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
4745 |
-
color: #cccccc;
|
4746 |
-
background-color: transparent;
|
4747 |
-
}
|
4748 |
-
}
|
4749 |
-
.sgpb-wrapper .navbar-inverse .navbar-link {
|
4750 |
-
color: #ffffff;
|
4751 |
-
}
|
4752 |
-
.sgpb-wrapper .navbar-inverse .navbar-link:hover {
|
4753 |
-
color: #2c3e50;
|
4754 |
-
}
|
4755 |
-
.sgpb-wrapper .navbar-inverse .btn-link {
|
4756 |
-
color: #ffffff;
|
4757 |
-
}
|
4758 |
-
.sgpb-wrapper .navbar-inverse .btn-link:hover,
|
4759 |
-
.sgpb-wrapper .navbar-inverse .btn-link:focus {
|
4760 |
-
color: #2c3e50;
|
4761 |
-
}
|
4762 |
-
.sgpb-wrapper .navbar-inverse .btn-link[disabled]:hover,
|
4763 |
.sgpb-wrapper fieldset[disabled] .navbar-inverse .btn-link:hover,
|
4764 |
.sgpb-wrapper .navbar-inverse .btn-link[disabled]:focus,
|
4765 |
-
.sgpb-wrapper fieldset[disabled] .navbar-inverse .btn-link:focus
|
4766 |
-
|
4767 |
-
}
|
4768 |
-
.sgpb-wrapper .breadcrumb
|
4769 |
-
|
4770 |
-
|
4771 |
-
|
4772 |
-
|
4773 |
-
|
4774 |
-
}
|
4775 |
-
.sgpb-wrapper .
|
4776 |
-
display: inline-block;
|
4777 |
-
}
|
4778 |
-
.sgpb-wrapper .breadcrumb > li + li:before {
|
4779 |
-
content: "/\00a0";
|
4780 |
-
padding: 0 5px;
|
4781 |
-
color: #cccccc;
|
4782 |
-
}
|
4783 |
-
.sgpb-wrapper .breadcrumb > .active {
|
4784 |
-
color: #95a5a6;
|
4785 |
-
}
|
4786 |
-
.sgpb-wrapper .pagination {
|
4787 |
-
display: inline-block;
|
4788 |
-
padding-left: 0;
|
4789 |
-
margin: 21px 0;
|
4790 |
-
border-radius: 4px;
|
4791 |
-
}
|
4792 |
-
.sgpb-wrapper .pagination > li {
|
4793 |
-
display: inline;
|
4794 |
-
}
|
4795 |
-
.sgpb-wrapper .pagination > li > a,
|
4796 |
-
.sgpb-wrapper .pagination > li > span {
|
4797 |
-
position: relative;
|
4798 |
-
float: left;
|
4799 |
-
padding: 10px 15px;
|
4800 |
-
line-height: 1.42857143;
|
4801 |
-
text-decoration: none;
|
4802 |
-
color: #ffffff;
|
4803 |
-
background-color: #18bc9c;
|
4804 |
-
border: 1px solid transparent;
|
4805 |
-
margin-left: -1px;
|
4806 |
-
}
|
4807 |
-
.sgpb-wrapper .pagination > li:first-child > a,
|
4808 |
-
.sgpb-wrapper .pagination > li:first-child > span {
|
4809 |
-
margin-left: 0;
|
4810 |
-
border-bottom-left-radius: 4px;
|
4811 |
-
border-top-left-radius: 4px;
|
4812 |
-
}
|
4813 |
-
.sgpb-wrapper .pagination > li:last-child > a,
|
4814 |
-
.sgpb-wrapper .pagination > li:last-child > span {
|
4815 |
-
border-bottom-right-radius: 4px;
|
4816 |
-
border-top-right-radius: 4px;
|
4817 |
-
}
|
4818 |
-
.sgpb-wrapper .pagination > li > a:hover,
|
4819 |
.sgpb-wrapper .pagination > li > span:hover,
|
4820 |
.sgpb-wrapper .pagination > li > a:focus,
|
4821 |
-
.sgpb-wrapper .pagination
|
4822 |
-
z-index: 2;
|
4823 |
-
color: #ffffff;
|
4824 |
-
background-color: #0f7864;
|
4825 |
-
border-color: transparent;
|
4826 |
-
}
|
4827 |
-
.sgpb-wrapper .pagination > .active > a,
|
4828 |
.sgpb-wrapper .pagination > .active > span,
|
4829 |
.sgpb-wrapper .pagination > .active > a:hover,
|
4830 |
.sgpb-wrapper .pagination > .active > span:hover,
|
4831 |
.sgpb-wrapper .pagination > .active > a:focus,
|
4832 |
-
.sgpb-wrapper .pagination > .
|
4833 |
-
z-index: 3;
|
4834 |
-
color: #ffffff;
|
4835 |
-
background-color: #0f7864;
|
4836 |
-
border-color: transparent;
|
4837 |
-
cursor: default;
|
4838 |
-
}
|
4839 |
-
.sgpb-wrapper .pagination > .disabled > span,
|
4840 |
.sgpb-wrapper .pagination > .disabled > span:hover,
|
4841 |
.sgpb-wrapper .pagination > .disabled > span:focus,
|
4842 |
.sgpb-wrapper .pagination > .disabled > a,
|
4843 |
.sgpb-wrapper .pagination > .disabled > a:hover,
|
4844 |
-
.sgpb-wrapper .pagination
|
4845 |
-
|
4846 |
-
|
4847 |
-
|
4848 |
-
|
4849 |
-
|
4850 |
-
.sgpb-wrapper .pagination-
|
4851 |
-
.sgpb-wrapper .pagination-
|
4852 |
-
|
4853 |
-
|
4854 |
-
|
4855 |
-
}
|
4856 |
-
.sgpb-wrapper .
|
4857 |
-
|
4858 |
-
|
4859 |
-
|
4860 |
-
}
|
4861 |
-
.sgpb-wrapper .
|
4862 |
-
.sgpb-wrapper .pagination-lg > li:last-child > span {
|
4863 |
-
border-bottom-right-radius: 6px;
|
4864 |
-
border-top-right-radius: 6px;
|
4865 |
-
}
|
4866 |
-
.sgpb-wrapper .pagination-sm > li > a,
|
4867 |
-
.sgpb-wrapper .pagination-sm > li > span {
|
4868 |
-
padding: 6px 9px;
|
4869 |
-
font-size: 13px;
|
4870 |
-
line-height: 1.5;
|
4871 |
-
}
|
4872 |
-
.sgpb-wrapper .pagination-sm > li:first-child > a,
|
4873 |
-
.sgpb-wrapper .pagination-sm > li:first-child > span {
|
4874 |
-
border-bottom-left-radius: 3px;
|
4875 |
-
border-top-left-radius: 3px;
|
4876 |
-
}
|
4877 |
-
.sgpb-wrapper .pagination-sm > li:last-child > a,
|
4878 |
-
.sgpb-wrapper .pagination-sm > li:last-child > span {
|
4879 |
-
border-bottom-right-radius: 3px;
|
4880 |
-
border-top-right-radius: 3px;
|
4881 |
-
}
|
4882 |
-
.sgpb-wrapper .pager {
|
4883 |
-
padding-left: 0;
|
4884 |
-
margin: 21px 0;
|
4885 |
-
list-style: none;
|
4886 |
-
text-align: center;
|
4887 |
-
}
|
4888 |
-
.sgpb-wrapper .pager li {
|
4889 |
-
display: inline;
|
4890 |
-
}
|
4891 |
-
.sgpb-wrapper .pager li > a,
|
4892 |
-
.sgpb-wrapper .pager li > span {
|
4893 |
-
display: inline-block;
|
4894 |
-
padding: 5px 14px;
|
4895 |
-
background-color: #18bc9c;
|
4896 |
-
border: 1px solid transparent;
|
4897 |
-
border-radius: 15px;
|
4898 |
-
}
|
4899 |
-
.sgpb-wrapper .pager li > a:hover,
|
4900 |
-
.sgpb-wrapper .pager li > a:focus {
|
4901 |
-
text-decoration: none;
|
4902 |
-
background-color: #0f7864;
|
4903 |
-
}
|
4904 |
-
.sgpb-wrapper .pager .next > a,
|
4905 |
-
.sgpb-wrapper .pager .next > span {
|
4906 |
-
float: right;
|
4907 |
-
}
|
4908 |
-
.sgpb-wrapper .pager .previous > a,
|
4909 |
-
.sgpb-wrapper .pager .previous > span {
|
4910 |
-
float: left;
|
4911 |
-
}
|
4912 |
-
.sgpb-wrapper .pager .disabled > a,
|
4913 |
.sgpb-wrapper .pager .disabled > a:hover,
|
4914 |
.sgpb-wrapper .pager .disabled > a:focus,
|
4915 |
-
.sgpb-wrapper .pager .disabled
|
4916 |
-
|
4917 |
-
|
4918 |
-
|
4919 |
-
}
|
4920 |
-
.sgpb-wrapper .label {
|
4921 |
-
|
4922 |
-
|
4923 |
-
|
4924 |
-
|
4925 |
-
|
4926 |
-
|
4927 |
-
|
4928 |
-
|
4929 |
-
|
4930 |
-
|
4931 |
-
}
|
4932 |
-
.sgpb-wrapper a.
|
4933 |
-
.sgpb-wrapper
|
4934 |
-
|
4935 |
-
|
4936 |
-
|
4937 |
-
|
4938 |
-
.sgpb-wrapper .
|
4939 |
-
|
4940 |
-
}
|
4941 |
-
.sgpb-wrapper .
|
4942 |
-
|
4943 |
-
|
4944 |
-
}
|
4945 |
-
.
|
4946 |
-
|
4947 |
-
}
|
4948 |
-
.sgpb-wrapper .label-default[href]:hover,
|
4949 |
-
.sgpb-wrapper .label-default[href]:focus {
|
4950 |
-
background-color: #798d8f;
|
4951 |
-
}
|
4952 |
-
.sgpb-wrapper .label-primary {
|
4953 |
-
background-color: #2c3e50;
|
4954 |
-
}
|
4955 |
-
.sgpb-wrapper .label-primary[href]:hover,
|
4956 |
-
.sgpb-wrapper .label-primary[href]:focus {
|
4957 |
-
background-color: #1a242f;
|
4958 |
-
}
|
4959 |
-
.sgpb-wrapper .label-success {
|
4960 |
-
background-color: #18bc9c;
|
4961 |
-
}
|
4962 |
-
.sgpb-wrapper .label-success[href]:hover,
|
4963 |
-
.sgpb-wrapper .label-success[href]:focus {
|
4964 |
-
background-color: #128f76;
|
4965 |
-
}
|
4966 |
-
.sgpb-wrapper .label-info {
|
4967 |
-
background-color: #3498db;
|
4968 |
-
}
|
4969 |
-
.sgpb-wrapper .label-info[href]:hover,
|
4970 |
-
.sgpb-wrapper .label-info[href]:focus {
|
4971 |
-
background-color: #217dbb;
|
4972 |
-
}
|
4973 |
-
.sgpb-wrapper .label-warning {
|
4974 |
-
background-color: #f39c12;
|
4975 |
-
}
|
4976 |
-
.sgpb-wrapper .label-warning[href]:hover,
|
4977 |
-
.sgpb-wrapper .label-warning[href]:focus {
|
4978 |
-
background-color: #c87f0a;
|
4979 |
-
}
|
4980 |
-
.sgpb-wrapper .label-danger {
|
4981 |
-
background-color: #e74c3c;
|
4982 |
-
}
|
4983 |
-
.sgpb-wrapper .label-danger[href]:hover,
|
4984 |
-
.sgpb-wrapper .label-danger[href]:focus {
|
4985 |
-
background-color: #d62c1a;
|
4986 |
-
}
|
4987 |
-
.sgpb-wrapper .badge {
|
4988 |
-
display: inline-block;
|
4989 |
-
min-width: 10px;
|
4990 |
-
padding: 3px 7px;
|
4991 |
-
font-size: 13px;
|
4992 |
-
font-weight: bold;
|
4993 |
-
color: #ffffff;
|
4994 |
-
line-height: 1;
|
4995 |
-
vertical-align: middle;
|
4996 |
-
white-space: nowrap;
|
4997 |
-
text-align: center;
|
4998 |
-
background-color: #2c3e50;
|
4999 |
-
border-radius: 10px;
|
5000 |
-
}
|
5001 |
-
.sgpb-wrapper .badge:empty {
|
5002 |
-
display: none;
|
5003 |
-
}
|
5004 |
-
.sgpb-wrapper .btn .badge {
|
5005 |
-
position: relative;
|
5006 |
-
top: -1px;
|
5007 |
-
}
|
5008 |
-
.sgpb-wrapper .btn-xs .badge,
|
5009 |
-
.sgpb-wrapper .btn-group-xs > .btn .badge {
|
5010 |
-
top: 0;
|
5011 |
-
padding: 1px 5px;
|
5012 |
-
}
|
5013 |
-
.sgpb-wrapper a.badge:hover,
|
5014 |
-
.sgpb-wrapper a.badge:focus {
|
5015 |
-
color: #ffffff;
|
5016 |
-
text-decoration: none;
|
5017 |
-
cursor: pointer;
|
5018 |
-
}
|
5019 |
-
.sgpb-wrapper .list-group-item.active > .badge,
|
5020 |
-
.sgpb-wrapper .nav-pills > .active > a > .badge {
|
5021 |
-
color: #2c3e50;
|
5022 |
-
background-color: #ffffff;
|
5023 |
-
}
|
5024 |
-
.sgpb-wrapper .list-group-item > .badge {
|
5025 |
-
float: right;
|
5026 |
-
}
|
5027 |
-
.sgpb-wrapper .list-group-item > .badge + .badge {
|
5028 |
-
margin-right: 5px;
|
5029 |
-
}
|
5030 |
-
.sgpb-wrapper .nav-pills > li > a > .badge {
|
5031 |
-
margin-left: 3px;
|
5032 |
-
}
|
5033 |
-
.sgpb-wrapper .jumbotron {
|
5034 |
-
padding-top: 30px;
|
5035 |
-
padding-bottom: 30px;
|
5036 |
-
margin-bottom: 30px;
|
5037 |
-
color: inherit;
|
5038 |
-
background-color: #ecf0f1;
|
5039 |
-
}
|
5040 |
-
.sgpb-wrapper .jumbotron h1,
|
5041 |
-
.sgpb-wrapper .jumbotron .h1 {
|
5042 |
-
color: inherit;
|
5043 |
-
}
|
5044 |
-
.sgpb-wrapper .jumbotron p {
|
5045 |
-
margin-bottom: 15px;
|
5046 |
-
font-size: 23px;
|
5047 |
-
font-weight: 200;
|
5048 |
-
}
|
5049 |
-
.sgpb-wrapper .jumbotron > hr {
|
5050 |
-
border-top-color: #cfd9db;
|
5051 |
-
}
|
5052 |
-
.sgpb-wrapper .container .jumbotron,
|
5053 |
-
.sgpb-wrapper .container-fluid .jumbotron {
|
5054 |
-
border-radius: 6px;
|
5055 |
-
padding-left: 15px;
|
5056 |
-
padding-right: 15px;
|
5057 |
-
}
|
5058 |
-
.sgpb-wrapper .jumbotron .container {
|
5059 |
-
max-width: 100%;
|
5060 |
-
}
|
5061 |
-
@media screen and (min-width: 768px) {
|
5062 |
-
.sgpb-wrapper .jumbotron {
|
5063 |
-
padding-top: 48px;
|
5064 |
-
padding-bottom: 48px;
|
5065 |
-
}
|
5066 |
-
.sgpb-wrapper .container .jumbotron,
|
5067 |
-
.sgpb-wrapper .container-fluid .jumbotron {
|
5068 |
-
padding-left: 60px;
|
5069 |
-
padding-right: 60px;
|
5070 |
-
}
|
5071 |
-
.sgpb-wrapper .jumbotron h1,
|
5072 |
-
.sgpb-wrapper .jumbotron .h1 {
|
5073 |
-
font-size: 68px;
|
5074 |
-
}
|
5075 |
-
}
|
5076 |
-
.sgpb-wrapper .thumbnail {
|
5077 |
-
display: block;
|
5078 |
-
padding: 4px;
|
5079 |
-
margin-bottom: 21px;
|
5080 |
-
line-height: 1.42857143;
|
5081 |
-
background-color: #ffffff;
|
5082 |
-
border: 1px solid #ecf0f1;
|
5083 |
-
border-radius: 4px;
|
5084 |
-
-webkit-transition: border 0.2s ease-in-out;
|
5085 |
-
-o-transition: border 0.2s ease-in-out;
|
5086 |
-
transition: border 0.2s ease-in-out;
|
5087 |
-
}
|
5088 |
-
.sgpb-wrapper .thumbnail > img,
|
5089 |
-
.sgpb-wrapper .thumbnail a > img {
|
5090 |
-
margin-left: auto;
|
5091 |
-
margin-right: auto;
|
5092 |
-
}
|
5093 |
-
.sgpb-wrapper a.thumbnail:hover,
|
5094 |
.sgpb-wrapper a.thumbnail:focus,
|
5095 |
-
.sgpb-wrapper
|
5096 |
-
|
5097 |
-
}
|
5098 |
-
.
|
5099 |
-
|
5100 |
-
|
5101 |
-
}
|
5102 |
-
.sgpb-wrapper .alert
|
5103 |
-
|
5104 |
-
|
5105 |
-
|
5106 |
-
|
5107 |
-
}
|
5108 |
-
.sgpb-wrapper .alert
|
5109 |
-
|
5110 |
-
|
5111 |
-
}
|
5112 |
-
.sgpb-wrapper .
|
5113 |
-
|
5114 |
-
}
|
5115 |
-
.sgpb-wrapper .
|
5116 |
-
.sgpb-wrapper .alert > ul {
|
5117 |
-
margin-bottom: 0;
|
5118 |
-
}
|
5119 |
-
.sgpb-wrapper .alert > p + p {
|
5120 |
-
margin-top: 5px;
|
5121 |
-
}
|
5122 |
-
.sgpb-wrapper .alert-dismissable,
|
5123 |
-
.sgpb-wrapper .alert-dismissible {
|
5124 |
-
padding-right: 35px;
|
5125 |
-
}
|
5126 |
-
.sgpb-wrapper .alert-dismissable .close,
|
5127 |
-
.sgpb-wrapper .alert-dismissible .close {
|
5128 |
-
position: relative;
|
5129 |
-
top: -2px;
|
5130 |
-
right: -21px;
|
5131 |
-
color: inherit;
|
5132 |
-
}
|
5133 |
-
.sgpb-wrapper .alert-success {
|
5134 |
-
background-color: #18bc9c;
|
5135 |
-
border-color: #18bc9c;
|
5136 |
-
color: #ffffff;
|
5137 |
-
}
|
5138 |
-
.sgpb-wrapper .alert-success hr {
|
5139 |
-
border-top-color: #15a589;
|
5140 |
-
}
|
5141 |
-
.sgpb-wrapper .alert-success .alert-link {
|
5142 |
-
color: #e6e6e6;
|
5143 |
-
}
|
5144 |
-
.sgpb-wrapper .alert-info {
|
5145 |
-
background-color: #3498db;
|
5146 |
-
border-color: #3498db;
|
5147 |
-
color: #ffffff;
|
5148 |
-
}
|
5149 |
-
.sgpb-wrapper .alert-info hr {
|
5150 |
-
border-top-color: #258cd1;
|
5151 |
-
}
|
5152 |
-
.sgpb-wrapper .alert-info .alert-link {
|
5153 |
-
color: #e6e6e6;
|
5154 |
-
}
|
5155 |
-
.sgpb-wrapper .alert-warning {
|
5156 |
-
background-color: #f39c12;
|
5157 |
-
border-color: #f39c12;
|
5158 |
-
color: #ffffff;
|
5159 |
-
}
|
5160 |
-
.sgpb-wrapper .alert-warning hr {
|
5161 |
-
border-top-color: #e08e0b;
|
5162 |
-
}
|
5163 |
-
.sgpb-wrapper .alert-warning .alert-link {
|
5164 |
-
color: #e6e6e6;
|
5165 |
-
}
|
5166 |
-
.sgpb-wrapper .alert-danger {
|
5167 |
-
background-color: #e74c3c;
|
5168 |
-
border-color: #e74c3c;
|
5169 |
-
color: #ffffff;
|
5170 |
-
}
|
5171 |
-
.sgpb-wrapper .alert-danger hr {
|
5172 |
-
border-top-color: #e43725;
|
5173 |
-
}
|
5174 |
-
.sgpb-wrapper .alert-danger .alert-link {
|
5175 |
-
color: #e6e6e6;
|
5176 |
-
}
|
5177 |
-
@-webkit-keyframes progress-bar-stripes {
|
5178 |
-
from {
|
5179 |
-
background-position: 40px 0;
|
5180 |
-
}
|
5181 |
-
to {
|
5182 |
-
background-position: 0 0;
|
5183 |
-
}
|
5184 |
-
}
|
5185 |
-
@-o-keyframes progress-bar-stripes {
|
5186 |
-
from {
|
5187 |
-
background-position: 40px 0;
|
5188 |
-
}
|
5189 |
-
to {
|
5190 |
-
background-position: 0 0;
|
5191 |
-
}
|
5192 |
-
}
|
5193 |
-
@keyframes progress-bar-stripes {
|
5194 |
-
from {
|
5195 |
-
background-position: 40px 0;
|
5196 |
-
}
|
5197 |
-
to {
|
5198 |
-
background-position: 0 0;
|
5199 |
-
}
|
5200 |
-
}
|
5201 |
-
.sgpb-wrapper .progress {
|
5202 |
-
overflow: hidden;
|
5203 |
-
height: 21px;
|
5204 |
-
margin-bottom: 21px;
|
5205 |
-
background-color: #ecf0f1;
|
5206 |
-
border-radius: 4px;
|
5207 |
-
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
5208 |
-
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
5209 |
-
}
|
5210 |
-
.sgpb-wrapper .progress-bar {
|
5211 |
-
float: left;
|
5212 |
-
width: 0%;
|
5213 |
-
height: 100%;
|
5214 |
-
font-size: 13px;
|
5215 |
-
line-height: 21px;
|
5216 |
-
color: #ffffff;
|
5217 |
-
text-align: center;
|
5218 |
-
background-color: #2c3e50;
|
5219 |
-
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
5220 |
-
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
5221 |
-
-webkit-transition: width 0.6s ease;
|
5222 |
-
-o-transition: width 0.6s ease;
|
5223 |
-
transition: width 0.6s ease;
|
5224 |
-
}
|
5225 |
-
.sgpb-wrapper .progress-striped .progress-bar,
|
5226 |
-
.sgpb-wrapper .progress-bar-striped {
|
5227 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5228 |
-
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5229 |
-
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5230 |
-
-webkit-background-size: 40px 40px;
|
5231 |
-
background-size: 40px 40px;
|
5232 |
-
}
|
5233 |
-
.sgpb-wrapper .progress.active .progress-bar,
|
5234 |
-
.sgpb-wrapper .progress-bar.active {
|
5235 |
-
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
5236 |
-
-o-animation: progress-bar-stripes 2s linear infinite;
|
5237 |
-
animation: progress-bar-stripes 2s linear infinite;
|
5238 |
-
}
|
5239 |
-
.sgpb-wrapper .progress-bar-success {
|
5240 |
-
background-color: #18bc9c;
|
5241 |
-
}
|
5242 |
-
.sgpb-wrapper .progress-striped .progress-bar-success {
|
5243 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5244 |
-
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5245 |
-
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5246 |
-
}
|
5247 |
-
.sgpb-wrapper .progress-bar-info {
|
5248 |
-
background-color: #3498db;
|
5249 |
-
}
|
5250 |
-
.sgpb-wrapper .progress-striped .progress-bar-info {
|
5251 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5252 |
-
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5253 |
-
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5254 |
-
}
|
5255 |
-
.sgpb-wrapper .progress-bar-warning {
|
5256 |
-
background-color: #f39c12;
|
5257 |
-
}
|
5258 |
-
.sgpb-wrapper .progress-striped .progress-bar-warning {
|
5259 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5260 |
-
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5261 |
-
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5262 |
-
}
|
5263 |
-
.sgpb-wrapper .progress-bar-danger {
|
5264 |
-
background-color: #e74c3c;
|
5265 |
-
}
|
5266 |
-
.sgpb-wrapper .progress-striped .progress-bar-danger {
|
5267 |
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5268 |
-
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5269 |
-
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5270 |
-
}
|
5271 |
-
.sgpb-wrapper .media {
|
5272 |
-
margin-top: 15px;
|
5273 |
-
}
|
5274 |
-
.sgpb-wrapper .media:first-child {
|
5275 |
-
margin-top: 0;
|
5276 |
-
}
|
5277 |
-
.sgpb-wrapper .media,
|
5278 |
-
.sgpb-wrapper .media-body {
|
5279 |
-
zoom: 1;
|
5280 |
-
overflow: hidden;
|
5281 |
-
}
|
5282 |
-
.sgpb-wrapper .media-body {
|
5283 |
-
width: 10000px;
|
5284 |
-
}
|
5285 |
-
.sgpb-wrapper .media-object {
|
5286 |
-
display: block;
|
5287 |
-
}
|
5288 |
-
.sgpb-wrapper .media-object.img-thumbnail {
|
5289 |
-
max-width: none;
|
5290 |
-
}
|
5291 |
.sgpb-wrapper .media-right,
|
5292 |
-
.sgpb-wrapper .media
|
5293 |
-
|
5294 |
-
}
|
5295 |
-
.sgpb-wrapper .
|
5296 |
-
.sgpb-wrapper .
|
5297 |
-
padding-right: 10px;
|
5298 |
-
}
|
5299 |
-
.sgpb-wrapper .media-left,
|
5300 |
-
.sgpb-wrapper .media-right,
|
5301 |
-
.sgpb-wrapper .media-body {
|
5302 |
-
display: table-cell;
|
5303 |
-
vertical-align: top;
|
5304 |
-
}
|
5305 |
-
.sgpb-wrapper .media-middle {
|
5306 |
-
vertical-align: middle;
|
5307 |
-
}
|
5308 |
-
.sgpb-wrapper .media-bottom {
|
5309 |
-
vertical-align: bottom;
|
5310 |
-
}
|
5311 |
-
.sgpb-wrapper .media-heading {
|
5312 |
-
margin-top: 0;
|
5313 |
-
margin-bottom: 5px;
|
5314 |
-
}
|
5315 |
-
.sgpb-wrapper .media-list {
|
5316 |
-
padding-left: 0;
|
5317 |
-
list-style: none;
|
5318 |
-
}
|
5319 |
-
.sgpb-wrapper .list-group {
|
5320 |
-
margin-bottom: 20px;
|
5321 |
-
padding-left: 0;
|
5322 |
-
}
|
5323 |
-
.sgpb-wrapper .list-group-item {
|
5324 |
-
position: relative;
|
5325 |
-
display: block;
|
5326 |
-
padding: 10px 15px;
|
5327 |
-
margin-bottom: -1px;
|
5328 |
-
background-color: #ffffff;
|
5329 |
-
border: 1px solid #ecf0f1;
|
5330 |
-
}
|
5331 |
-
.sgpb-wrapper .list-group-item:first-child {
|
5332 |
-
border-top-right-radius: 4px;
|
5333 |
-
border-top-left-radius: 4px;
|
5334 |
-
}
|
5335 |
-
.sgpb-wrapper .list-group-item:last-child {
|
5336 |
-
margin-bottom: 0;
|
5337 |
-
border-bottom-right-radius: 4px;
|
5338 |
-
border-bottom-left-radius: 4px;
|
5339 |
-
}
|
5340 |
-
.sgpb-wrapper a.list-group-item,
|
5341 |
-
.sgpb-wrapper button.list-group-item {
|
5342 |
-
color: #555555;
|
5343 |
-
}
|
5344 |
-
.sgpb-wrapper a.list-group-item .list-group-item-heading,
|
5345 |
-
.sgpb-wrapper button.list-group-item .list-group-item-heading {
|
5346 |
-
color: #333333;
|
5347 |
-
}
|
5348 |
-
.sgpb-wrapper a.list-group-item:hover,
|
5349 |
.sgpb-wrapper button.list-group-item:hover,
|
5350 |
.sgpb-wrapper a.list-group-item:focus,
|
5351 |
-
.sgpb-wrapper button.list-group-item:focus {
|
5352 |
-
text-decoration: none;
|
5353 |
-
color: #555555;
|
5354 |
-
background-color: #ecf0f1;
|
5355 |
-
}
|
5356 |
-
.sgpb-wrapper button.list-group-item {
|
5357 |
-
width: 100%;
|
5358 |
-
text-align: left;
|
5359 |
-
}
|
5360 |
-
.sgpb-wrapper .list-group-item.disabled,
|
5361 |
.sgpb-wrapper .list-group-item.disabled:hover,
|
5362 |
-
.sgpb-wrapper .list-group-item.disabled:focus
|
5363 |
-
background-color: #ecf0f1;
|
5364 |
-
color: #b4bcc2;
|
5365 |
-
cursor: not-allowed;
|
5366 |
-
}
|
5367 |
-
.sgpb-wrapper .list-group-item.disabled .list-group-item-heading,
|
5368 |
.sgpb-wrapper .list-group-item.disabled:hover .list-group-item-heading,
|
5369 |
-
.sgpb-wrapper .list-group-item.disabled:focus .list-group-item-heading
|
5370 |
-
color: inherit;
|
5371 |
-
}
|
5372 |
-
.sgpb-wrapper .list-group-item.disabled .list-group-item-text,
|
5373 |
.sgpb-wrapper .list-group-item.disabled:hover .list-group-item-text,
|
5374 |
-
.sgpb-wrapper .list-group-item.disabled:focus .list-group-item-text
|
5375 |
-
color: #b4bcc2;
|
5376 |
-
}
|
5377 |
-
.sgpb-wrapper .list-group-item.active,
|
5378 |
.sgpb-wrapper .list-group-item.active:hover,
|
5379 |
-
.sgpb-wrapper .list-group-item.active:focus
|
5380 |
-
z-index: 2;
|
5381 |
-
color: #ffffff;
|
5382 |
-
background-color: #2c3e50;
|
5383 |
-
border-color: #2c3e50;
|
5384 |
-
}
|
5385 |
-
.sgpb-wrapper .list-group-item.active .list-group-item-heading,
|
5386 |
.sgpb-wrapper .list-group-item.active:hover .list-group-item-heading,
|
5387 |
.sgpb-wrapper .list-group-item.active:focus .list-group-item-heading,
|
5388 |
.sgpb-wrapper .list-group-item.active .list-group-item-heading > small,
|
@@ -5390,299 +1084,108 @@
|
|
5390 |
.sgpb-wrapper .list-group-item.active:focus .list-group-item-heading > small,
|
5391 |
.sgpb-wrapper .list-group-item.active .list-group-item-heading > .small,
|
5392 |
.sgpb-wrapper .list-group-item.active:hover .list-group-item-heading > .small,
|
5393 |
-
.sgpb-wrapper .list-group-item.active:focus .list-group-item-heading
|
5394 |
-
color: inherit;
|
5395 |
-
}
|
5396 |
-
.sgpb-wrapper .list-group-item.active .list-group-item-text,
|
5397 |
.sgpb-wrapper .list-group-item.active:hover .list-group-item-text,
|
5398 |
-
.sgpb-wrapper .list-group-item.active:focus .list-group-item-text {
|
5399 |
-
|
5400 |
-
}
|
5401 |
-
.sgpb-wrapper .list-group-item-success {
|
5402 |
-
color: #ffffff;
|
5403 |
-
background-color: #18bc9c;
|
5404 |
-
}
|
5405 |
-
.sgpb-wrapper a.list-group-item-success,
|
5406 |
-
.sgpb-wrapper button.list-group-item-success {
|
5407 |
-
color: #ffffff;
|
5408 |
-
}
|
5409 |
-
.sgpb-wrapper a.list-group-item-success .list-group-item-heading,
|
5410 |
-
.sgpb-wrapper button.list-group-item-success .list-group-item-heading {
|
5411 |
-
color: inherit;
|
5412 |
-
}
|
5413 |
-
.sgpb-wrapper a.list-group-item-success:hover,
|
5414 |
.sgpb-wrapper button.list-group-item-success:hover,
|
5415 |
.sgpb-wrapper a.list-group-item-success:focus,
|
5416 |
-
.sgpb-wrapper button.list-group-item-success:focus
|
5417 |
-
color: #ffffff;
|
5418 |
-
background-color: #15a589;
|
5419 |
-
}
|
5420 |
-
.sgpb-wrapper a.list-group-item-success.active,
|
5421 |
.sgpb-wrapper button.list-group-item-success.active,
|
5422 |
.sgpb-wrapper a.list-group-item-success.active:hover,
|
5423 |
.sgpb-wrapper button.list-group-item-success.active:hover,
|
5424 |
.sgpb-wrapper a.list-group-item-success.active:focus,
|
5425 |
-
.sgpb-wrapper button.list-group-item-success.active:focus {
|
5426 |
-
|
5427 |
-
|
5428 |
-
border-color: #ffffff;
|
5429 |
-
}
|
5430 |
-
.sgpb-wrapper .list-group-item-info {
|
5431 |
-
color: #ffffff;
|
5432 |
-
background-color: #3498db;
|
5433 |
-
}
|
5434 |
-
.sgpb-wrapper a.list-group-item-info,
|
5435 |
-
.sgpb-wrapper button.list-group-item-info {
|
5436 |
-
color: #ffffff;
|
5437 |
-
}
|
5438 |
-
.sgpb-wrapper a.list-group-item-info .list-group-item-heading,
|
5439 |
-
.sgpb-wrapper button.list-group-item-info .list-group-item-heading {
|
5440 |
-
color: inherit;
|
5441 |
-
}
|
5442 |
-
.sgpb-wrapper a.list-group-item-info:hover,
|
5443 |
.sgpb-wrapper button.list-group-item-info:hover,
|
5444 |
.sgpb-wrapper a.list-group-item-info:focus,
|
5445 |
-
.sgpb-wrapper button.list-group-item-info:focus
|
5446 |
-
color: #ffffff;
|
5447 |
-
background-color: #258cd1;
|
5448 |
-
}
|
5449 |
-
.sgpb-wrapper a.list-group-item-info.active,
|
5450 |
.sgpb-wrapper button.list-group-item-info.active,
|
5451 |
.sgpb-wrapper a.list-group-item-info.active:hover,
|
5452 |
.sgpb-wrapper button.list-group-item-info.active:hover,
|
5453 |
.sgpb-wrapper a.list-group-item-info.active:focus,
|
5454 |
-
.sgpb-wrapper button.list-group-item-info.active:focus {
|
5455 |
-
|
5456 |
-
|
5457 |
-
border-color: #ffffff;
|
5458 |
-
}
|
5459 |
-
.sgpb-wrapper .list-group-item-warning {
|
5460 |
-
color: #ffffff;
|
5461 |
-
background-color: #f39c12;
|
5462 |
-
}
|
5463 |
-
.sgpb-wrapper a.list-group-item-warning,
|
5464 |
-
.sgpb-wrapper button.list-group-item-warning {
|
5465 |
-
color: #ffffff;
|
5466 |
-
}
|
5467 |
-
.sgpb-wrapper a.list-group-item-warning .list-group-item-heading,
|
5468 |
-
.sgpb-wrapper button.list-group-item-warning .list-group-item-heading {
|
5469 |
-
color: inherit;
|
5470 |
-
}
|
5471 |
-
.sgpb-wrapper a.list-group-item-warning:hover,
|
5472 |
.sgpb-wrapper button.list-group-item-warning:hover,
|
5473 |
.sgpb-wrapper a.list-group-item-warning:focus,
|
5474 |
-
.sgpb-wrapper button.list-group-item-warning:focus
|
5475 |
-
color: #ffffff;
|
5476 |
-
background-color: #e08e0b;
|
5477 |
-
}
|
5478 |
-
.sgpb-wrapper a.list-group-item-warning.active,
|
5479 |
.sgpb-wrapper button.list-group-item-warning.active,
|
5480 |
.sgpb-wrapper a.list-group-item-warning.active:hover,
|
5481 |
.sgpb-wrapper button.list-group-item-warning.active:hover,
|
5482 |
.sgpb-wrapper a.list-group-item-warning.active:focus,
|
5483 |
-
.sgpb-wrapper button.list-group-item-warning.active:focus {
|
5484 |
-
|
5485 |
-
|
5486 |
-
border-color: #ffffff;
|
5487 |
-
}
|
5488 |
-
.sgpb-wrapper .list-group-item-danger {
|
5489 |
-
color: #ffffff;
|
5490 |
-
background-color: #e74c3c;
|
5491 |
-
}
|
5492 |
-
.sgpb-wrapper a.list-group-item-danger,
|
5493 |
-
.sgpb-wrapper button.list-group-item-danger {
|
5494 |
-
color: #ffffff;
|
5495 |
-
}
|
5496 |
-
.sgpb-wrapper a.list-group-item-danger .list-group-item-heading,
|
5497 |
-
.sgpb-wrapper button.list-group-item-danger .list-group-item-heading {
|
5498 |
-
color: inherit;
|
5499 |
-
}
|
5500 |
-
.sgpb-wrapper a.list-group-item-danger:hover,
|
5501 |
.sgpb-wrapper button.list-group-item-danger:hover,
|
5502 |
.sgpb-wrapper a.list-group-item-danger:focus,
|
5503 |
-
.sgpb-wrapper button.list-group-item-danger:focus
|
5504 |
-
color: #ffffff;
|
5505 |
-
background-color: #e43725;
|
5506 |
-
}
|
5507 |
-
.sgpb-wrapper a.list-group-item-danger.active,
|
5508 |
.sgpb-wrapper button.list-group-item-danger.active,
|
5509 |
.sgpb-wrapper a.list-group-item-danger.active:hover,
|
5510 |
.sgpb-wrapper button.list-group-item-danger.active:hover,
|
5511 |
.sgpb-wrapper a.list-group-item-danger.active:focus,
|
5512 |
-
.sgpb-wrapper button.list-group-item-danger.active:focus {
|
5513 |
-
|
5514 |
-
|
5515 |
-
|
5516 |
-
}
|
5517 |
-
.sgpb-wrapper .list-group-item-heading {
|
5518 |
-
margin-top: 0;
|
5519 |
-
margin-bottom: 5px;
|
5520 |
-
}
|
5521 |
-
.sgpb-wrapper .list-group-item-text {
|
5522 |
-
margin-bottom: 0;
|
5523 |
-
line-height: 1.3;
|
5524 |
-
}
|
5525 |
-
.sgpb-wrapper .panel {
|
5526 |
-
margin-bottom: 21px;
|
5527 |
-
background-color: #ffffff;
|
5528 |
-
border: 1px solid transparent;
|
5529 |
-
border-radius: 4px;
|
5530 |
-
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
5531 |
-
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
5532 |
-
}
|
5533 |
-
.sgpb-wrapper .panel-body {
|
5534 |
-
padding: 15px;
|
5535 |
-
}
|
5536 |
-
.sgpb-wrapper .panel-heading {
|
5537 |
-
padding: 10px 15px;
|
5538 |
-
border-bottom: 1px solid transparent;
|
5539 |
-
border-top-right-radius: 3px;
|
5540 |
-
border-top-left-radius: 3px;
|
5541 |
-
}
|
5542 |
-
.sgpb-wrapper .panel-heading > .dropdown .dropdown-toggle {
|
5543 |
-
color: inherit;
|
5544 |
-
}
|
5545 |
-
.sgpb-wrapper .panel-title {
|
5546 |
-
margin-top: 0;
|
5547 |
-
margin-bottom: 0;
|
5548 |
-
font-size: 17px;
|
5549 |
-
color: inherit;
|
5550 |
-
}
|
5551 |
-
.sgpb-wrapper .panel-title > a,
|
5552 |
.sgpb-wrapper .panel-title > small,
|
5553 |
.sgpb-wrapper .panel-title > .small,
|
5554 |
.sgpb-wrapper .panel-title > small > a,
|
5555 |
-
.sgpb-wrapper .panel-title
|
5556 |
-
|
5557 |
-
}
|
5558 |
-
.sgpb-wrapper .panel-
|
5559 |
-
|
5560 |
-
|
5561 |
-
border-top: 1px solid #ecf0f1;
|
5562 |
-
border-bottom-right-radius: 3px;
|
5563 |
-
border-bottom-left-radius: 3px;
|
5564 |
-
}
|
5565 |
-
.sgpb-wrapper .panel > .list-group,
|
5566 |
-
.sgpb-wrapper .panel > .panel-collapse > .list-group {
|
5567 |
-
margin-bottom: 0;
|
5568 |
-
}
|
5569 |
-
.sgpb-wrapper .panel > .list-group .list-group-item,
|
5570 |
-
.sgpb-wrapper .panel > .panel-collapse > .list-group .list-group-item {
|
5571 |
-
border-width: 1px 0;
|
5572 |
-
border-radius: 0;
|
5573 |
-
}
|
5574 |
-
.sgpb-wrapper .panel > .list-group:first-child .list-group-item:first-child,
|
5575 |
-
.sgpb-wrapper .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
|
5576 |
-
border-top: 0;
|
5577 |
-
border-top-right-radius: 3px;
|
5578 |
-
border-top-left-radius: 3px;
|
5579 |
-
}
|
5580 |
-
.sgpb-wrapper .panel > .list-group:last-child .list-group-item:last-child,
|
5581 |
-
.sgpb-wrapper .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
|
5582 |
-
border-bottom: 0;
|
5583 |
-
border-bottom-right-radius: 3px;
|
5584 |
-
border-bottom-left-radius: 3px;
|
5585 |
-
}
|
5586 |
-
.sgpb-wrapper .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
|
5587 |
-
border-top-right-radius: 0;
|
5588 |
-
border-top-left-radius: 0;
|
5589 |
-
}
|
5590 |
-
.sgpb-wrapper .panel-heading + .list-group .list-group-item:first-child {
|
5591 |
-
border-top-width: 0;
|
5592 |
-
}
|
5593 |
-
.sgpb-wrapper .list-group + .panel-footer {
|
5594 |
-
border-top-width: 0;
|
5595 |
-
}
|
5596 |
-
.sgpb-wrapper .panel > .table,
|
5597 |
.sgpb-wrapper .panel > .table-responsive > .table,
|
5598 |
-
.sgpb-wrapper .panel
|
5599 |
-
margin-bottom: 0;
|
5600 |
-
}
|
5601 |
-
.sgpb-wrapper .panel > .table caption,
|
5602 |
.sgpb-wrapper .panel > .table-responsive > .table caption,
|
5603 |
-
.sgpb-wrapper .panel > .panel-collapse > .table
|
5604 |
-
|
5605 |
-
|
5606 |
-
}
|
5607 |
-
.sgpb-wrapper .panel > .table:first-child,
|
5608 |
-
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child {
|
5609 |
-
border-top-right-radius: 3px;
|
5610 |
-
border-top-left-radius: 3px;
|
5611 |
-
}
|
5612 |
-
.sgpb-wrapper .panel > .table:first-child > thead:first-child > tr:first-child,
|
5613 |
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
|
5614 |
.sgpb-wrapper .panel > .table:first-child > tbody:first-child > tr:first-child,
|
5615 |
-
.sgpb-wrapper .panel
|
5616 |
-
border-top-left-radius: 3px;
|
5617 |
-
border-top-right-radius: 3px;
|
5618 |
-
}
|
5619 |
-
.sgpb-wrapper .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
5620 |
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
5621 |
.sgpb-wrapper .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
5622 |
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
5623 |
.sgpb-wrapper .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
5624 |
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
5625 |
.sgpb-wrapper .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
|
5626 |
-
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child
|
5627 |
-
border-top-left-radius: 3px;
|
5628 |
-
}
|
5629 |
-
.sgpb-wrapper .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
5630 |
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
5631 |
.sgpb-wrapper .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
|
5632 |
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
|
5633 |
.sgpb-wrapper .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
5634 |
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
5635 |
.sgpb-wrapper .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
|
5636 |
-
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child
|
5637 |
-
|
5638 |
-
}
|
5639 |
-
.sgpb-wrapper .panel > .table:last-child,
|
5640 |
-
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child {
|
5641 |
-
border-bottom-right-radius: 3px;
|
5642 |
-
border-bottom-left-radius: 3px;
|
5643 |
-
}
|
5644 |
-
.sgpb-wrapper .panel > .table:last-child > tbody:last-child > tr:last-child,
|
5645 |
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
|
5646 |
.sgpb-wrapper .panel > .table:last-child > tfoot:last-child > tr:last-child,
|
5647 |
-
.sgpb-wrapper .panel
|
5648 |
-
border-bottom-left-radius: 3px;
|
5649 |
-
border-bottom-right-radius: 3px;
|
5650 |
-
}
|
5651 |
-
.sgpb-wrapper .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
5652 |
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
5653 |
.sgpb-wrapper .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
5654 |
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
5655 |
.sgpb-wrapper .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
5656 |
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
5657 |
.sgpb-wrapper .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
|
5658 |
-
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child
|
5659 |
-
border-bottom-left-radius: 3px;
|
5660 |
-
}
|
5661 |
-
.sgpb-wrapper .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
5662 |
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
5663 |
.sgpb-wrapper .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
|
5664 |
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
|
5665 |
.sgpb-wrapper .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
5666 |
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
5667 |
.sgpb-wrapper .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
|
5668 |
-
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child
|
5669 |
-
border-bottom-right-radius: 3px;
|
5670 |
-
}
|
5671 |
-
.sgpb-wrapper .panel > .panel-body + .table,
|
5672 |
.sgpb-wrapper .panel > .panel-body + .table-responsive,
|
5673 |
.sgpb-wrapper .panel > .table + .panel-body,
|
5674 |
-
.sgpb-wrapper .panel > .table-
|
5675 |
-
|
5676 |
-
}
|
5677 |
-
.sgpb-wrapper .panel > .table >
|
5678 |
-
.sgpb-wrapper .panel > .table > tbody:first-child > tr:first-child td {
|
5679 |
-
border-top: 0;
|
5680 |
-
}
|
5681 |
-
.sgpb-wrapper .panel > .table-bordered,
|
5682 |
-
.sgpb-wrapper .panel > .table-responsive > .table-bordered {
|
5683 |
-
border: 0;
|
5684 |
-
}
|
5685 |
-
.sgpb-wrapper .panel > .table-bordered > thead > tr > th:first-child,
|
5686 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
|
5687 |
.sgpb-wrapper .panel > .table-bordered > tbody > tr > th:first-child,
|
5688 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
|
@@ -5693,10 +1196,7 @@
|
|
5693 |
.sgpb-wrapper .panel > .table-bordered > tbody > tr > td:first-child,
|
5694 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
|
5695 |
.sgpb-wrapper .panel > .table-bordered > tfoot > tr > td:first-child,
|
5696 |
-
.sgpb-wrapper .panel
|
5697 |
-
border-left: 0;
|
5698 |
-
}
|
5699 |
-
.sgpb-wrapper .panel > .table-bordered > thead > tr > th:last-child,
|
5700 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
|
5701 |
.sgpb-wrapper .panel > .table-bordered > tbody > tr > th:last-child,
|
5702 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
|
@@ -5707,830 +1207,93 @@
|
|
5707 |
.sgpb-wrapper .panel > .table-bordered > tbody > tr > td:last-child,
|
5708 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
|
5709 |
.sgpb-wrapper .panel > .table-bordered > tfoot > tr > td:last-child,
|
5710 |
-
.sgpb-wrapper .panel
|
5711 |
-
border-right: 0;
|
5712 |
-
}
|
5713 |
-
.sgpb-wrapper .panel > .table-bordered > thead > tr:first-child > td,
|
5714 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
|
5715 |
.sgpb-wrapper .panel > .table-bordered > tbody > tr:first-child > td,
|
5716 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
|
5717 |
.sgpb-wrapper .panel > .table-bordered > thead > tr:first-child > th,
|
5718 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
|
5719 |
.sgpb-wrapper .panel > .table-bordered > tbody > tr:first-child > th,
|
5720 |
-
.sgpb-wrapper .panel
|
5721 |
-
border-bottom: 0;
|
5722 |
-
}
|
5723 |
-
.sgpb-wrapper .panel > .table-bordered > tbody > tr:last-child > td,
|
5724 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
|
5725 |
.sgpb-wrapper .panel > .table-bordered > tfoot > tr:last-child > td,
|
5726 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
|
5727 |
.sgpb-wrapper .panel > .table-bordered > tbody > tr:last-child > th,
|
5728 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
|
5729 |
.sgpb-wrapper .panel > .table-bordered > tfoot > tr:last-child > th,
|
5730 |
-
.sgpb-wrapper .panel
|
5731 |
-
|
5732 |
-
}
|
5733 |
-
.sgpb-wrapper .panel
|
5734 |
-
|
5735 |
-
|
5736 |
-
}
|
5737 |
-
.sgpb-wrapper .panel-
|
5738 |
-
|
5739 |
-
}
|
5740 |
-
.sgpb-wrapper .panel-group .panel {
|
5741 |
-
margin-bottom: 0;
|
5742 |
-
border-radius: 4px;
|
5743 |
-
}
|
5744 |
-
.sgpb-wrapper .panel-group .panel + .panel {
|
5745 |
-
margin-top: 5px;
|
5746 |
-
}
|
5747 |
-
.sgpb-wrapper .panel-group .panel-heading {
|
5748 |
-
border-bottom: 0;
|
5749 |
-
}
|
5750 |
-
.sgpb-wrapper .panel-group .panel-heading + .panel-collapse > .panel-body,
|
5751 |
-
.sgpb-wrapper .panel-group .panel-heading + .panel-collapse > .list-group {
|
5752 |
-
border-top: 1px solid #ecf0f1;
|
5753 |
-
}
|
5754 |
-
.sgpb-wrapper .panel-group .panel-footer {
|
5755 |
-
border-top: 0;
|
5756 |
-
}
|
5757 |
-
.sgpb-wrapper .panel-group .panel-footer + .panel-collapse .panel-body {
|
5758 |
-
border-bottom: 1px solid #ecf0f1;
|
5759 |
-
}
|
5760 |
-
.sgpb-wrapper .panel-default {
|
5761 |
-
border-color: #ecf0f1;
|
5762 |
-
}
|
5763 |
-
.sgpb-wrapper .panel-default > .panel-heading {
|
5764 |
-
color: #2c3e50;
|
5765 |
-
background-color: #ecf0f1;
|
5766 |
-
border-color: #ecf0f1;
|
5767 |
-
}
|
5768 |
-
.sgpb-wrapper .panel-default > .panel-heading + .panel-collapse > .panel-body {
|
5769 |
-
border-top-color: #ecf0f1;
|
5770 |
-
}
|
5771 |
-
.sgpb-wrapper .panel-default > .panel-heading .badge {
|
5772 |
-
color: #ecf0f1;
|
5773 |
-
background-color: #2c3e50;
|
5774 |
-
}
|
5775 |
-
.sgpb-wrapper .panel-default > .panel-footer + .panel-collapse > .panel-body {
|
5776 |
-
border-bottom-color: #ecf0f1;
|
5777 |
-
}
|
5778 |
-
.sgpb-wrapper .panel-primary {
|
5779 |
-
border-color: #2c3e50;
|
5780 |
-
}
|
5781 |
-
.sgpb-wrapper .panel-primary > .panel-heading {
|
5782 |
-
color: #ffffff;
|
5783 |
-
background-color: #2c3e50;
|
5784 |
-
border-color: #2c3e50;
|
5785 |
-
}
|
5786 |
-
.sgpb-wrapper .panel-primary > .panel-heading + .panel-collapse > .panel-body {
|
5787 |
-
border-top-color: #2c3e50;
|
5788 |
-
}
|
5789 |
-
.sgpb-wrapper .panel-primary > .panel-heading .badge {
|
5790 |
-
color: #2c3e50;
|
5791 |
-
background-color: #ffffff;
|
5792 |
-
}
|
5793 |
-
.sgpb-wrapper .panel-primary > .panel-footer + .panel-collapse > .panel-body {
|
5794 |
-
border-bottom-color: #2c3e50;
|
5795 |
-
}
|
5796 |
-
.sgpb-wrapper .panel-success {
|
5797 |
-
border-color: #18bc9c;
|
5798 |
-
}
|
5799 |
-
.sgpb-wrapper .panel-success > .panel-heading {
|
5800 |
-
color: #ffffff;
|
5801 |
-
background-color: #18bc9c;
|
5802 |
-
border-color: #18bc9c;
|
5803 |
-
}
|
5804 |
-
.sgpb-wrapper .panel-success > .panel-heading + .panel-collapse > .panel-body {
|
5805 |
-
border-top-color: #18bc9c;
|
5806 |
-
}
|
5807 |
-
.sgpb-wrapper .panel-success > .panel-heading .badge {
|
5808 |
-
color: #18bc9c;
|
5809 |
-
background-color: #ffffff;
|
5810 |
-
}
|
5811 |
-
.sgpb-wrapper .panel-success > .panel-footer + .panel-collapse > .panel-body {
|
5812 |
-
border-bottom-color: #18bc9c;
|
5813 |
-
}
|
5814 |
-
.sgpb-wrapper .panel-info {
|
5815 |
-
border-color: #3498db;
|
5816 |
-
}
|
5817 |
-
.sgpb-wrapper .panel-info > .panel-heading {
|
5818 |
-
color: #ffffff;
|
5819 |
-
background-color: #3498db;
|
5820 |
-
border-color: #3498db;
|
5821 |
-
}
|
5822 |
-
.sgpb-wrapper .panel-info > .panel-heading + .panel-collapse > .panel-body {
|
5823 |
-
border-top-color: #3498db;
|
5824 |
-
}
|
5825 |
-
.sgpb-wrapper .panel-info > .panel-heading .badge {
|
5826 |
-
color: #3498db;
|
5827 |
-
background-color: #ffffff;
|
5828 |
-
}
|
5829 |
-
.sgpb-wrapper .panel-info > .panel-footer + .panel-collapse > .panel-body {
|
5830 |
-
border-bottom-color: #3498db;
|
5831 |
-
}
|
5832 |
-
.sgpb-wrapper .panel-warning {
|
5833 |
-
border-color: #f39c12;
|
5834 |
-
}
|
5835 |
-
.sgpb-wrapper .panel-warning > .panel-heading {
|
5836 |
-
color: #ffffff;
|
5837 |
-
background-color: #f39c12;
|
5838 |
-
border-color: #f39c12;
|
5839 |
-
}
|
5840 |
-
.sgpb-wrapper .panel-warning > .panel-heading + .panel-collapse > .panel-body {
|
5841 |
-
border-top-color: #f39c12;
|
5842 |
-
}
|
5843 |
-
.sgpb-wrapper .panel-warning > .panel-heading .badge {
|
5844 |
-
color: #f39c12;
|
5845 |
-
background-color: #ffffff;
|
5846 |
-
}
|
5847 |
-
.sgpb-wrapper .panel-warning > .panel-footer + .panel-collapse > .panel-body {
|
5848 |
-
border-bottom-color: #f39c12;
|
5849 |
-
}
|
5850 |
-
.sgpb-wrapper .panel-danger {
|
5851 |
-
border-color: #e74c3c;
|
5852 |
-
}
|
5853 |
-
.sgpb-wrapper .panel-danger > .panel-heading {
|
5854 |
-
color: #ffffff;
|
5855 |
-
background-color: #e74c3c;
|
5856 |
-
border-color: #e74c3c;
|
5857 |
-
}
|
5858 |
-
.sgpb-wrapper .panel-danger > .panel-heading + .panel-collapse > .panel-body {
|
5859 |
-
border-top-color: #e74c3c;
|
5860 |
-
}
|
5861 |
-
.sgpb-wrapper .panel-danger > .panel-heading .badge {
|
5862 |
-
color: #e74c3c;
|
5863 |
-
background-color: #ffffff;
|
5864 |
-
}
|
5865 |
-
.sgpb-wrapper .panel-danger > .panel-footer + .panel-collapse > .panel-body {
|
5866 |
-
border-bottom-color: #e74c3c;
|
5867 |
-
}
|
5868 |
-
.sgpb-wrapper .embed-responsive {
|
5869 |
-
position: relative;
|
5870 |
-
display: block;
|
5871 |
-
height: 0;
|
5872 |
-
padding: 0;
|
5873 |
-
overflow: hidden;
|
5874 |
-
}
|
5875 |
-
.sgpb-wrapper .embed-responsive .embed-responsive-item,
|
5876 |
.sgpb-wrapper .embed-responsive iframe,
|
5877 |
.sgpb-wrapper .embed-responsive embed,
|
5878 |
.sgpb-wrapper .embed-responsive object,
|
5879 |
-
.sgpb-wrapper .embed-responsive
|
5880 |
-
|
5881 |
-
|
5882 |
-
|
5883 |
-
|
5884 |
-
|
5885 |
-
|
5886 |
-
|
5887 |
-
}
|
5888 |
-
.sgpb-wrapper .
|
5889 |
-
|
5890 |
-
}
|
5891 |
-
.sgpb-wrapper .
|
5892 |
-
|
5893 |
-
}
|
5894 |
-
.sgpb-wrapper
|
5895 |
-
|
5896 |
-
|
5897 |
-
|
5898 |
-
|
5899 |
-
|
5900 |
-
|
5901 |
-
|
5902 |
-
|
5903 |
-
}
|
5904 |
-
.
|
5905 |
-
|
5906 |
-
|
5907 |
-
}
|
5908 |
-
.sgpb-wrapper
|
5909 |
-
|
5910 |
-
|
5911 |
-
}
|
5912 |
-
.sgpb-wrapper .
|
5913 |
-
|
5914 |
-
|
5915 |
-
}
|
5916 |
-
.sgpb-wrapper .
|
5917 |
-
|
5918 |
-
|
5919 |
-
|
5920 |
-
line-height: 1;
|
5921 |
-
color: #000000;
|
5922 |
-
text-shadow: none;
|
5923 |
-
opacity: 0.2;
|
5924 |
-
filter: alpha(opacity=20);
|
5925 |
-
}
|
5926 |
-
.sgpb-wrapper .close:hover,
|
5927 |
-
.sgpb-wrapper .close:focus {
|
5928 |
-
color: #000000;
|
5929 |
-
text-decoration: none;
|
5930 |
-
cursor: pointer;
|
5931 |
-
opacity: 0.5;
|
5932 |
-
filter: alpha(opacity=50);
|
5933 |
-
}
|
5934 |
-
.sgpb-wrapper button.close {
|
5935 |
-
padding: 0;
|
5936 |
-
cursor: pointer;
|
5937 |
-
background: transparent;
|
5938 |
-
border: 0;
|
5939 |
-
-webkit-appearance: none;
|
5940 |
-
}
|
5941 |
-
.sgpb-wrapper .modal-open {
|
5942 |
-
overflow: hidden;
|
5943 |
-
}
|
5944 |
-
.sgpb-wrapper .modal {
|
5945 |
-
display: none;
|
5946 |
-
overflow: hidden;
|
5947 |
-
position: fixed;
|
5948 |
-
top: 0;
|
5949 |
-
right: 0;
|
5950 |
-
bottom: 0;
|
5951 |
-
left: 0;
|
5952 |
-
z-index: 1050;
|
5953 |
-
-webkit-overflow-scrolling: touch;
|
5954 |
-
outline: 0;
|
5955 |
-
}
|
5956 |
-
.sgpb-wrapper .modal.fade .modal-dialog {
|
5957 |
-
-webkit-transform: translate(0, -25%);
|
5958 |
-
-ms-transform: translate(0, -25%);
|
5959 |
-
-o-transform: translate(0, -25%);
|
5960 |
-
transform: translate(0, -25%);
|
5961 |
-
-webkit-transition: -webkit-transform 0.3s ease-out;
|
5962 |
-
-o-transition: -o-transform 0.3s ease-out;
|
5963 |
-
transition: transform 0.3s ease-out;
|
5964 |
-
}
|
5965 |
-
.sgpb-wrapper .modal.in .modal-dialog {
|
5966 |
-
-webkit-transform: translate(0, 0);
|
5967 |
-
-ms-transform: translate(0, 0);
|
5968 |
-
-o-transform: translate(0, 0);
|
5969 |
-
transform: translate(0, 0);
|
5970 |
-
}
|
5971 |
-
.sgpb-wrapper .modal-open .modal {
|
5972 |
-
overflow-x: hidden;
|
5973 |
-
overflow-y: auto;
|
5974 |
-
}
|
5975 |
-
.sgpb-wrapper .modal-dialog {
|
5976 |
-
position: relative;
|
5977 |
-
width: auto;
|
5978 |
-
margin: 10px;
|
5979 |
-
}
|
5980 |
-
.sgpb-wrapper .modal-content {
|
5981 |
-
position: relative;
|
5982 |
-
background-color: #ffffff;
|
5983 |
-
border: 1px solid #999999;
|
5984 |
-
border: 1px solid rgba(0, 0, 0, 0.2);
|
5985 |
-
border-radius: 6px;
|
5986 |
-
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
5987 |
-
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
5988 |
-
-webkit-background-clip: padding-box;
|
5989 |
-
background-clip: padding-box;
|
5990 |
-
outline: 0;
|
5991 |
-
}
|
5992 |
-
.sgpb-wrapper .modal-backdrop {
|
5993 |
-
position: fixed;
|
5994 |
-
top: 0;
|
5995 |
-
right: 0;
|
5996 |
-
bottom: 0;
|
5997 |
-
left: 0;
|
5998 |
-
z-index: 1040;
|
5999 |
-
background-color: #000000;
|
6000 |
-
}
|
6001 |
-
.sgpb-wrapper .modal-backdrop.fade {
|
6002 |
-
opacity: 0;
|
6003 |
-
filter: alpha(opacity=0);
|
6004 |
-
}
|
6005 |
-
.sgpb-wrapper .modal-backdrop.in {
|
6006 |
-
opacity: 0.5;
|
6007 |
-
filter: alpha(opacity=50);
|
6008 |
-
}
|
6009 |
-
.sgpb-wrapper .modal-header {
|
6010 |
-
padding: 15px;
|
6011 |
-
border-bottom: 1px solid #e5e5e5;
|
6012 |
-
}
|
6013 |
-
.sgpb-wrapper .modal-header .close {
|
6014 |
-
margin-top: -2px;
|
6015 |
-
}
|
6016 |
-
.sgpb-wrapper .modal-title {
|
6017 |
-
margin: 0;
|
6018 |
-
line-height: 1.42857143;
|
6019 |
-
}
|
6020 |
-
.sgpb-wrapper .modal-body {
|
6021 |
-
position: relative;
|
6022 |
-
padding: 20px;
|
6023 |
-
}
|
6024 |
-
.sgpb-wrapper .modal-footer {
|
6025 |
-
padding: 20px;
|
6026 |
-
text-align: right;
|
6027 |
-
border-top: 1px solid #e5e5e5;
|
6028 |
-
}
|
6029 |
-
.sgpb-wrapper .modal-footer .btn + .btn {
|
6030 |
-
margin-left: 5px;
|
6031 |
-
margin-bottom: 0;
|
6032 |
-
}
|
6033 |
-
.sgpb-wrapper .modal-footer .btn-group .btn + .btn {
|
6034 |
-
margin-left: -1px;
|
6035 |
-
}
|
6036 |
-
.sgpb-wrapper .modal-footer .btn-block + .btn-block {
|
6037 |
-
margin-left: 0;
|
6038 |
-
}
|
6039 |
-
.sgpb-wrapper .modal-scrollbar-measure {
|
6040 |
-
position: absolute;
|
6041 |
-
top: -9999px;
|
6042 |
-
width: 50px;
|
6043 |
-
height: 50px;
|
6044 |
-
overflow: scroll;
|
6045 |
-
}
|
6046 |
-
@media (min-width: 768px) {
|
6047 |
-
.sgpb-wrapper .modal-dialog {
|
6048 |
-
width: 600px;
|
6049 |
-
margin: 30px auto;
|
6050 |
-
}
|
6051 |
-
.sgpb-wrapper .modal-content {
|
6052 |
-
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
6053 |
-
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
6054 |
-
}
|
6055 |
-
.sgpb-wrapper .modal-sm {
|
6056 |
-
width: 300px;
|
6057 |
-
}
|
6058 |
-
}
|
6059 |
-
@media (min-width: 992px) {
|
6060 |
-
.sgpb-wrapper .modal-lg {
|
6061 |
-
width: 900px;
|
6062 |
-
}
|
6063 |
-
}
|
6064 |
-
.sgpb-wrapper .tooltip {
|
6065 |
-
position: absolute;
|
6066 |
-
z-index: 1070;
|
6067 |
-
display: block;
|
6068 |
-
font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
6069 |
-
font-style: normal;
|
6070 |
-
font-weight: normal;
|
6071 |
-
letter-spacing: normal;
|
6072 |
-
line-break: auto;
|
6073 |
-
line-height: 1.42857143;
|
6074 |
-
text-align: left;
|
6075 |
-
text-align: start;
|
6076 |
-
text-decoration: none;
|
6077 |
-
text-shadow: none;
|
6078 |
-
text-transform: none;
|
6079 |
-
white-space: normal;
|
6080 |
-
word-break: normal;
|
6081 |
-
word-spacing: normal;
|
6082 |
-
word-wrap: normal;
|
6083 |
-
font-size: 13px;
|
6084 |
-
opacity: 0;
|
6085 |
-
filter: alpha(opacity=0);
|
6086 |
-
}
|
6087 |
-
.sgpb-wrapper .tooltip.in {
|
6088 |
-
opacity: 0.9;
|
6089 |
-
filter: alpha(opacity=90);
|
6090 |
-
}
|
6091 |
-
.sgpb-wrapper .tooltip.top {
|
6092 |
-
margin-top: -3px;
|
6093 |
-
padding: 5px 0;
|
6094 |
-
}
|
6095 |
-
.sgpb-wrapper .tooltip.right {
|
6096 |
-
margin-left: 3px;
|
6097 |
-
padding: 0 5px;
|
6098 |
-
}
|
6099 |
-
.sgpb-wrapper .tooltip.bottom {
|
6100 |
-
margin-top: 3px;
|
6101 |
-
padding: 5px 0;
|
6102 |
-
}
|
6103 |
-
.sgpb-wrapper .tooltip.left {
|
6104 |
-
margin-left: -3px;
|
6105 |
-
padding: 0 5px;
|
6106 |
-
}
|
6107 |
-
.sgpb-wrapper .tooltip-inner {
|
6108 |
-
max-width: 200px;
|
6109 |
-
padding: 3px 8px;
|
6110 |
-
color: #ffffff;
|
6111 |
-
text-align: center;
|
6112 |
-
background-color: #000000;
|
6113 |
-
border-radius: 4px;
|
6114 |
-
}
|
6115 |
-
.sgpb-wrapper .tooltip-arrow {
|
6116 |
-
position: absolute;
|
6117 |
-
width: 0;
|
6118 |
-
height: 0;
|
6119 |
-
border-color: transparent;
|
6120 |
-
border-style: solid;
|
6121 |
-
}
|
6122 |
-
.sgpb-wrapper .tooltip.top .tooltip-arrow {
|
6123 |
-
bottom: 0;
|
6124 |
-
left: 50%;
|
6125 |
-
margin-left: -5px;
|
6126 |
-
border-width: 5px 5px 0;
|
6127 |
-
border-top-color: #000000;
|
6128 |
-
}
|
6129 |
-
.sgpb-wrapper .tooltip.top-left .tooltip-arrow {
|
6130 |
-
bottom: 0;
|
6131 |
-
right: 5px;
|
6132 |
-
margin-bottom: -5px;
|
6133 |
-
border-width: 5px 5px 0;
|
6134 |
-
border-top-color: #000000;
|
6135 |
-
}
|
6136 |
-
.sgpb-wrapper .tooltip.top-right .tooltip-arrow {
|
6137 |
-
bottom: 0;
|
6138 |
-
left: 5px;
|
6139 |
-
margin-bottom: -5px;
|
6140 |
-
border-width: 5px 5px 0;
|
6141 |
-
border-top-color: #000000;
|
6142 |
-
}
|
6143 |
-
.sgpb-wrapper .tooltip.right .tooltip-arrow {
|
6144 |
-
top: 50%;
|
6145 |
-
left: 0;
|
6146 |
-
margin-top: -5px;
|
6147 |
-
border-width: 5px 5px 5px 0;
|
6148 |
-
border-right-color: #000000;
|
6149 |
-
}
|
6150 |
-
.sgpb-wrapper .tooltip.left .tooltip-arrow {
|
6151 |
-
top: 50%;
|
6152 |
-
right: 0;
|
6153 |
-
margin-top: -5px;
|
6154 |
-
border-width: 5px 0 5px 5px;
|
6155 |
-
border-left-color: #000000;
|
6156 |
-
}
|
6157 |
-
.sgpb-wrapper .tooltip.bottom .tooltip-arrow {
|
6158 |
-
top: 0;
|
6159 |
-
left: 50%;
|
6160 |
-
margin-left: -5px;
|
6161 |
-
border-width: 0 5px 5px;
|
6162 |
-
border-bottom-color: #000000;
|
6163 |
-
}
|
6164 |
-
.sgpb-wrapper .tooltip.bottom-left .tooltip-arrow {
|
6165 |
-
top: 0;
|
6166 |
-
right: 5px;
|
6167 |
-
margin-top: -5px;
|
6168 |
-
border-width: 0 5px 5px;
|
6169 |
-
border-bottom-color: #000000;
|
6170 |
-
}
|
6171 |
-
.sgpb-wrapper .tooltip.bottom-right .tooltip-arrow {
|
6172 |
-
top: 0;
|
6173 |
-
left: 5px;
|
6174 |
-
margin-top: -5px;
|
6175 |
-
border-width: 0 5px 5px;
|
6176 |
-
border-bottom-color: #000000;
|
6177 |
-
}
|
6178 |
-
.sgpb-wrapper .popover {
|
6179 |
-
position: absolute;
|
6180 |
-
top: 0;
|
6181 |
-
left: 0;
|
6182 |
-
z-index: 1060;
|
6183 |
-
display: none;
|
6184 |
-
max-width: 276px;
|
6185 |
-
padding: 1px;
|
6186 |
-
font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
6187 |
-
font-style: normal;
|
6188 |
-
font-weight: normal;
|
6189 |
-
letter-spacing: normal;
|
6190 |
-
line-break: auto;
|
6191 |
-
line-height: 1.42857143;
|
6192 |
-
text-align: left;
|
6193 |
-
text-align: start;
|
6194 |
-
text-decoration: none;
|
6195 |
-
text-shadow: none;
|
6196 |
-
text-transform: none;
|
6197 |
-
white-space: normal;
|
6198 |
-
word-break: normal;
|
6199 |
-
word-spacing: normal;
|
6200 |
-
word-wrap: normal;
|
6201 |
-
font-size: 15px;
|
6202 |
-
background-color: #ffffff;
|
6203 |
-
-webkit-background-clip: padding-box;
|
6204 |
-
background-clip: padding-box;
|
6205 |
-
border: 1px solid #cccccc;
|
6206 |
-
border: 1px solid rgba(0, 0, 0, 0.2);
|
6207 |
-
border-radius: 6px;
|
6208 |
-
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
6209 |
-
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
6210 |
-
}
|
6211 |
-
.sgpb-wrapper .popover.top {
|
6212 |
-
margin-top: -10px;
|
6213 |
-
}
|
6214 |
-
.sgpb-wrapper .popover.right {
|
6215 |
-
margin-left: 10px;
|
6216 |
-
}
|
6217 |
-
.sgpb-wrapper .popover.bottom {
|
6218 |
-
margin-top: 10px;
|
6219 |
-
}
|
6220 |
-
.sgpb-wrapper .popover.left {
|
6221 |
-
margin-left: -10px;
|
6222 |
-
}
|
6223 |
-
.sgpb-wrapper .popover-title {
|
6224 |
-
margin: 0;
|
6225 |
-
padding: 8px 14px;
|
6226 |
-
font-size: 15px;
|
6227 |
-
background-color: #f7f7f7;
|
6228 |
-
border-bottom: 1px solid #ebebeb;
|
6229 |
-
border-radius: 5px 5px 0 0;
|
6230 |
-
}
|
6231 |
-
.sgpb-wrapper .popover-content {
|
6232 |
-
padding: 9px 14px;
|
6233 |
-
}
|
6234 |
-
.sgpb-wrapper .popover > .arrow,
|
6235 |
-
.sgpb-wrapper .popover > .arrow:after {
|
6236 |
-
position: absolute;
|
6237 |
-
display: block;
|
6238 |
-
width: 0;
|
6239 |
-
height: 0;
|
6240 |
-
border-color: transparent;
|
6241 |
-
border-style: solid;
|
6242 |
-
}
|
6243 |
-
.sgpb-wrapper .popover > .arrow {
|
6244 |
-
border-width: 11px;
|
6245 |
-
}
|
6246 |
-
.sgpb-wrapper .popover > .arrow:after {
|
6247 |
-
border-width: 10px;
|
6248 |
-
content: "";
|
6249 |
-
}
|
6250 |
-
.sgpb-wrapper .popover.top > .arrow {
|
6251 |
-
left: 50%;
|
6252 |
-
margin-left: -11px;
|
6253 |
-
border-bottom-width: 0;
|
6254 |
-
border-top-color: #999999;
|
6255 |
-
border-top-color: rgba(0, 0, 0, 0.25);
|
6256 |
-
bottom: -11px;
|
6257 |
-
}
|
6258 |
-
.sgpb-wrapper .popover.top > .arrow:after {
|
6259 |
-
content: " ";
|
6260 |
-
bottom: 1px;
|
6261 |
-
margin-left: -10px;
|
6262 |
-
border-bottom-width: 0;
|
6263 |
-
border-top-color: #ffffff;
|
6264 |
-
}
|
6265 |
-
.sgpb-wrapper .popover.right > .arrow {
|
6266 |
-
top: 50%;
|
6267 |
-
left: -11px;
|
6268 |
-
margin-top: -11px;
|
6269 |
-
border-left-width: 0;
|
6270 |
-
border-right-color: #999999;
|
6271 |
-
border-right-color: rgba(0, 0, 0, 0.25);
|
6272 |
-
}
|
6273 |
-
.sgpb-wrapper .popover.right > .arrow:after {
|
6274 |
-
content: " ";
|
6275 |
-
left: 1px;
|
6276 |
-
bottom: -10px;
|
6277 |
-
border-left-width: 0;
|
6278 |
-
border-right-color: #ffffff;
|
6279 |
-
}
|
6280 |
-
.sgpb-wrapper .popover.bottom > .arrow {
|
6281 |
-
left: 50%;
|
6282 |
-
margin-left: -11px;
|
6283 |
-
border-top-width: 0;
|
6284 |
-
border-bottom-color: #999999;
|
6285 |
-
border-bottom-color: rgba(0, 0, 0, 0.25);
|
6286 |
-
top: -11px;
|
6287 |
-
}
|
6288 |
-
.sgpb-wrapper .popover.bottom > .arrow:after {
|
6289 |
-
content: " ";
|
6290 |
-
top: 1px;
|
6291 |
-
margin-left: -10px;
|
6292 |
-
border-top-width: 0;
|
6293 |
-
border-bottom-color: #ffffff;
|
6294 |
-
}
|
6295 |
-
.sgpb-wrapper .popover.left > .arrow {
|
6296 |
-
top: 50%;
|
6297 |
-
right: -11px;
|
6298 |
-
margin-top: -11px;
|
6299 |
-
border-right-width: 0;
|
6300 |
-
border-left-color: #999999;
|
6301 |
-
border-left-color: rgba(0, 0, 0, 0.25);
|
6302 |
-
}
|
6303 |
-
.sgpb-wrapper .popover.left > .arrow:after {
|
6304 |
-
content: " ";
|
6305 |
-
right: 1px;
|
6306 |
-
border-right-width: 0;
|
6307 |
-
border-left-color: #ffffff;
|
6308 |
-
bottom: -10px;
|
6309 |
-
}
|
6310 |
-
.sgpb-wrapper .carousel {
|
6311 |
-
position: relative;
|
6312 |
-
}
|
6313 |
-
.sgpb-wrapper .carousel-inner {
|
6314 |
-
position: relative;
|
6315 |
-
overflow: hidden;
|
6316 |
-
width: 100%;
|
6317 |
-
}
|
6318 |
-
.sgpb-wrapper .carousel-inner > .item {
|
6319 |
-
display: none;
|
6320 |
-
position: relative;
|
6321 |
-
-webkit-transition: 0.6s ease-in-out left;
|
6322 |
-
-o-transition: 0.6s ease-in-out left;
|
6323 |
-
transition: 0.6s ease-in-out left;
|
6324 |
-
}
|
6325 |
-
.sgpb-wrapper .carousel-inner > .item > img,
|
6326 |
-
.sgpb-wrapper .carousel-inner > .item > a > img {
|
6327 |
-
line-height: 1;
|
6328 |
-
}
|
6329 |
-
@media all and (transform-3d), (-webkit-transform-3d) {
|
6330 |
-
.sgpb-wrapper .carousel-inner > .item {
|
6331 |
-
-webkit-transition: -webkit-transform 0.6s ease-in-out;
|
6332 |
-
-o-transition: -o-transform 0.6s ease-in-out;
|
6333 |
-
transition: transform 0.6s ease-in-out;
|
6334 |
-
-webkit-backface-visibility: hidden;
|
6335 |
-
backface-visibility: hidden;
|
6336 |
-
-webkit-perspective: 1000px;
|
6337 |
-
perspective: 1000px;
|
6338 |
-
}
|
6339 |
-
.sgpb-wrapper .carousel-inner > .item.next,
|
6340 |
-
.sgpb-wrapper .carousel-inner > .item.active.right {
|
6341 |
-
-webkit-transform: translate3d(100%, 0, 0);
|
6342 |
-
transform: translate3d(100%, 0, 0);
|
6343 |
-
left: 0;
|
6344 |
-
}
|
6345 |
-
.sgpb-wrapper .carousel-inner > .item.prev,
|
6346 |
-
.sgpb-wrapper .carousel-inner > .item.active.left {
|
6347 |
-
-webkit-transform: translate3d(-100%, 0, 0);
|
6348 |
-
transform: translate3d(-100%, 0, 0);
|
6349 |
-
left: 0;
|
6350 |
-
}
|
6351 |
-
.sgpb-wrapper .carousel-inner > .item.next.left,
|
6352 |
-
.sgpb-wrapper .carousel-inner > .item.prev.right,
|
6353 |
-
.sgpb-wrapper .carousel-inner > .item.active {
|
6354 |
-
-webkit-transform: translate3d(0, 0, 0);
|
6355 |
-
transform: translate3d(0, 0, 0);
|
6356 |
-
left: 0;
|
6357 |
-
}
|
6358 |
-
}
|
6359 |
-
.sgpb-wrapper .carousel-inner > .active,
|
6360 |
.sgpb-wrapper .carousel-inner > .next,
|
6361 |
-
.sgpb-wrapper .carousel-inner > .
|
6362 |
-
|
6363 |
-
}
|
6364 |
-
.sgpb-wrapper .carousel-
|
6365 |
-
left: 0;
|
6366 |
-
}
|
6367 |
-
.sgpb-wrapper .carousel-inner > .next,
|
6368 |
-
.sgpb-wrapper .carousel-inner > .prev {
|
6369 |
-
position: absolute;
|
6370 |
-
top: 0;
|
6371 |
-
width: 100%;
|
6372 |
-
}
|
6373 |
-
.sgpb-wrapper .carousel-inner > .next {
|
6374 |
-
left: 100%;
|
6375 |
-
}
|
6376 |
-
.sgpb-wrapper .carousel-inner > .prev {
|
6377 |
-
left: -100%;
|
6378 |
-
}
|
6379 |
-
.sgpb-wrapper .carousel-inner > .next.left,
|
6380 |
-
.sgpb-wrapper .carousel-inner > .prev.right {
|
6381 |
-
left: 0;
|
6382 |
-
}
|
6383 |
-
.sgpb-wrapper .carousel-inner > .active.left {
|
6384 |
-
left: -100%;
|
6385 |
-
}
|
6386 |
-
.sgpb-wrapper .carousel-inner > .active.right {
|
6387 |
-
left: 100%;
|
6388 |
-
}
|
6389 |
-
.sgpb-wrapper .carousel-control {
|
6390 |
-
position: absolute;
|
6391 |
-
top: 0;
|
6392 |
-
left: 0;
|
6393 |
-
bottom: 0;
|
6394 |
-
width: 15%;
|
6395 |
-
opacity: 0.5;
|
6396 |
-
filter: alpha(opacity=50);
|
6397 |
-
font-size: 20px;
|
6398 |
-
color: #ffffff;
|
6399 |
-
text-align: center;
|
6400 |
-
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
6401 |
-
background-color: rgba(0, 0, 0, 0);
|
6402 |
-
}
|
6403 |
-
.sgpb-wrapper .carousel-control.left {
|
6404 |
-
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
6405 |
-
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
6406 |
-
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
|
6407 |
-
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
6408 |
-
background-repeat: repeat-x;
|
6409 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
|
6410 |
-
}
|
6411 |
-
.sgpb-wrapper .carousel-control.right {
|
6412 |
-
left: auto;
|
6413 |
-
right: 0;
|
6414 |
-
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
6415 |
-
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
6416 |
-
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
|
6417 |
-
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
6418 |
-
background-repeat: repeat-x;
|
6419 |
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
|
6420 |
-
}
|
6421 |
-
.sgpb-wrapper .carousel-control:hover,
|
6422 |
-
.sgpb-wrapper .carousel-control:focus {
|
6423 |
-
outline: 0;
|
6424 |
-
color: #ffffff;
|
6425 |
-
text-decoration: none;
|
6426 |
-
opacity: 0.9;
|
6427 |
-
filter: alpha(opacity=90);
|
6428 |
-
}
|
6429 |
-
.sgpb-wrapper .carousel-control .icon-prev,
|
6430 |
.sgpb-wrapper .carousel-control .icon-next,
|
6431 |
.sgpb-wrapper .carousel-control .glyphicon-chevron-left,
|
6432 |
-
.sgpb-wrapper .carousel-control .glyphicon-chevron-right
|
6433 |
-
|
6434 |
-
|
6435 |
-
|
6436 |
-
|
6437 |
-
|
6438 |
-
}
|
6439 |
-
.sgpb-wrapper .carousel-control .
|
6440 |
-
.sgpb-wrapper .carousel-control .glyphicon-chevron-
|
6441 |
-
left: 50%;
|
6442 |
-
margin-left: -10px;
|
6443 |
-
}
|
6444 |
-
.sgpb-wrapper .carousel-control .icon-next,
|
6445 |
-
.sgpb-wrapper .carousel-control .glyphicon-chevron-right {
|
6446 |
-
right: 50%;
|
6447 |
-
margin-right: -10px;
|
6448 |
-
}
|
6449 |
.sgpb-wrapper .carousel-control .icon-prev,
|
6450 |
-
.sgpb-wrapper .carousel-control .icon-next
|
6451 |
-
|
6452 |
-
|
6453 |
-
line-height: 1;
|
6454 |
-
font-family: serif;
|
6455 |
-
}
|
6456 |
-
.sgpb-wrapper .carousel-control .icon-prev:before {
|
6457 |
-
content: '\2039';
|
6458 |
-
}
|
6459 |
-
.sgpb-wrapper .carousel-control .icon-next:before {
|
6460 |
-
content: '\203a';
|
6461 |
-
}
|
6462 |
-
.sgpb-wrapper .carousel-indicators {
|
6463 |
-
position: absolute;
|
6464 |
-
bottom: 10px;
|
6465 |
-
left: 50%;
|
6466 |
-
z-index: 15;
|
6467 |
-
width: 60%;
|
6468 |
-
margin-left: -30%;
|
6469 |
-
padding-left: 0;
|
6470 |
-
list-style: none;
|
6471 |
-
text-align: center;
|
6472 |
-
}
|
6473 |
-
.sgpb-wrapper .carousel-indicators li {
|
6474 |
-
display: inline-block;
|
6475 |
-
width: 10px;
|
6476 |
-
height: 10px;
|
6477 |
-
margin: 1px;
|
6478 |
-
text-indent: -999px;
|
6479 |
-
border: 1px solid #ffffff;
|
6480 |
-
border-radius: 10px;
|
6481 |
-
cursor: pointer;
|
6482 |
-
background-color: #000 \9;
|
6483 |
-
background-color: rgba(0, 0, 0, 0);
|
6484 |
-
}
|
6485 |
-
.sgpb-wrapper .carousel-indicators .active {
|
6486 |
-
margin: 0;
|
6487 |
-
width: 12px;
|
6488 |
-
height: 12px;
|
6489 |
-
background-color: #ffffff;
|
6490 |
-
}
|
6491 |
-
.sgpb-wrapper .carousel-caption {
|
6492 |
-
position: absolute;
|
6493 |
-
left: 15%;
|
6494 |
-
right: 15%;
|
6495 |
-
bottom: 20px;
|
6496 |
-
z-index: 10;
|
6497 |
-
padding-top: 20px;
|
6498 |
-
padding-bottom: 20px;
|
6499 |
-
color: #ffffff;
|
6500 |
-
text-align: center;
|
6501 |
-
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
6502 |
-
}
|
6503 |
-
.sgpb-wrapper .carousel-caption .btn {
|
6504 |
-
text-shadow: none;
|
6505 |
-
}
|
6506 |
-
@media screen and (min-width: 768px) {
|
6507 |
-
.sgpb-wrapper .carousel-control .glyphicon-chevron-left,
|
6508 |
-
.sgpb-wrapper .carousel-control .glyphicon-chevron-right,
|
6509 |
-
.sgpb-wrapper .carousel-control .icon-prev,
|
6510 |
-
.sgpb-wrapper .carousel-control .icon-next {
|
6511 |
-
width: 30px;
|
6512 |
-
height: 30px;
|
6513 |
-
margin-top: -10px;
|
6514 |
-
font-size: 30px;
|
6515 |
-
}
|
6516 |
-
.sgpb-wrapper .carousel-control .glyphicon-chevron-left,
|
6517 |
-
.sgpb-wrapper .carousel-control .icon-prev {
|
6518 |
-
margin-left: -10px;
|
6519 |
-
}
|
6520 |
-
.sgpb-wrapper .carousel-control .glyphicon-chevron-right,
|
6521 |
-
.sgpb-wrapper .carousel-control .icon-next {
|
6522 |
-
margin-right: -10px;
|
6523 |
-
}
|
6524 |
-
.sgpb-wrapper .carousel-caption {
|
6525 |
-
left: 20%;
|
6526 |
-
right: 20%;
|
6527 |
-
padding-bottom: 30px;
|
6528 |
-
}
|
6529 |
-
.sgpb-wrapper .carousel-indicators {
|
6530 |
-
bottom: 20px;
|
6531 |
-
}
|
6532 |
-
}
|
6533 |
-
.sgpb-wrapper .clearfix:before,
|
6534 |
.sgpb-wrapper .clearfix:after,
|
6535 |
.sgpb-wrapper .dl-horizontal dd:before,
|
6536 |
.sgpb-wrapper .dl-horizontal dd:after,
|
@@ -6561,11 +1324,7 @@
|
|
6561 |
.sgpb-wrapper .modal-header:before,
|
6562 |
.sgpb-wrapper .modal-header:after,
|
6563 |
.sgpb-wrapper .modal-footer:before,
|
6564 |
-
.sgpb-wrapper .modal-footer:after
|
6565 |
-
content: " ";
|
6566 |
-
display: table;
|
6567 |
-
}
|
6568 |
-
.sgpb-wrapper .clearfix:after,
|
6569 |
.sgpb-wrapper .dl-horizontal dd:after,
|
6570 |
.sgpb-wrapper .container:after,
|
6571 |
.sgpb-wrapper .container-fluid:after,
|
@@ -6580,52 +1339,15 @@
|
|
6580 |
.sgpb-wrapper .pager:after,
|
6581 |
.sgpb-wrapper .panel-body:after,
|
6582 |
.sgpb-wrapper .modal-header:after,
|
6583 |
-
.sgpb-wrapper .modal-footer:after {
|
6584 |
-
|
6585 |
-
}
|
6586 |
-
.sgpb-wrapper .
|
6587 |
-
|
6588 |
-
|
6589 |
-
margin-right: auto;
|
6590 |
-
}
|
6591 |
-
.sgpb-wrapper .pull-right {
|
6592 |
-
float: right !important;
|
6593 |
-
}
|
6594 |
-
.sgpb-wrapper .pull-left {
|
6595 |
-
float: left !important;
|
6596 |
-
}
|
6597 |
-
.sgpb-wrapper .hide {
|
6598 |
-
display: none !important;
|
6599 |
-
}
|
6600 |
-
.sgpb-wrapper .show {
|
6601 |
-
display: block !important;
|
6602 |
-
}
|
6603 |
-
.sgpb-wrapper .invisible {
|
6604 |
-
visibility: hidden;
|
6605 |
-
}
|
6606 |
-
.sgpb-wrapper .text-hide {
|
6607 |
-
font: 0/0 a;
|
6608 |
-
color: transparent;
|
6609 |
-
text-shadow: none;
|
6610 |
-
background-color: transparent;
|
6611 |
-
border: 0;
|
6612 |
-
}
|
6613 |
-
.sgpb-wrapper .hidden {
|
6614 |
-
display: none !important;
|
6615 |
-
}
|
6616 |
-
.sgpb-wrapper .affix {
|
6617 |
-
position: fixed;
|
6618 |
-
}
|
6619 |
-
@-ms-viewport {
|
6620 |
-
width: device-width;
|
6621 |
-
}
|
6622 |
-
.sgpb-wrapper .visible-xs,
|
6623 |
.sgpb-wrapper .visible-sm,
|
6624 |
.sgpb-wrapper .visible-md,
|
6625 |
-
.sgpb-wrapper .visible-lg
|
6626 |
-
display: none !important;
|
6627 |
-
}
|
6628 |
-
.sgpb-wrapper .visible-xs-block,
|
6629 |
.sgpb-wrapper .visible-xs-inline,
|
6630 |
.sgpb-wrapper .visible-xs-inline-block,
|
6631 |
.sgpb-wrapper .visible-sm-block,
|
@@ -6636,260 +1358,37 @@
|
|
6636 |
.sgpb-wrapper .visible-md-inline-block,
|
6637 |
.sgpb-wrapper .visible-lg-block,
|
6638 |
.sgpb-wrapper .visible-lg-inline,
|
6639 |
-
.sgpb-wrapper .visible-lg-inline-block {
|
6640 |
-
|
6641 |
-
}
|
6642 |
-
@media (max-width:
|
6643 |
-
|
6644 |
-
|
6645 |
-
|
6646 |
-
|
6647 |
-
|
6648 |
-
|
6649 |
-
|
6650 |
-
|
6651 |
-
|
6652 |
-
|
6653 |
-
|
6654 |
-
|
6655 |
-
|
6656 |
-
}
|
6657 |
-
|
6658 |
-
|
6659 |
-
|
6660 |
-
|
6661 |
-
}
|
6662 |
-
@media (max-width: 767px) {
|
6663 |
-
.sgpb-wrapper .visible-xs-inline {
|
6664 |
-
display: inline !important;
|
6665 |
-
}
|
6666 |
-
}
|
6667 |
-
@media (max-width: 767px) {
|
6668 |
-
.sgpb-wrapper .visible-xs-inline-block {
|
6669 |
-
display: inline-block !important;
|
6670 |
-
}
|
6671 |
-
}
|
6672 |
-
@media (min-width: 768px) and (max-width: 991px) {
|
6673 |
-
.sgpb-wrapper .visible-sm {
|
6674 |
-
display: block !important;
|
6675 |
-
}
|
6676 |
-
.sgpb-wrapper table.visible-sm {
|
6677 |
-
display: table !important;
|
6678 |
-
}
|
6679 |
-
.sgpb-wrapper tr.visible-sm {
|
6680 |
-
display: table-row !important;
|
6681 |
-
}
|
6682 |
-
.sgpb-wrapper th.visible-sm,
|
6683 |
-
.sgpb-wrapper td.visible-sm {
|
6684 |
-
display: table-cell !important;
|
6685 |
-
}
|
6686 |
-
}
|
6687 |
-
@media (min-width: 768px) and (max-width: 991px) {
|
6688 |
-
.sgpb-wrapper .visible-sm-block {
|
6689 |
-
display: block !important;
|
6690 |
-
}
|
6691 |
-
}
|
6692 |
-
@media (min-width: 768px) and (max-width: 991px) {
|
6693 |
-
.sgpb-wrapper .visible-sm-inline {
|
6694 |
-
display: inline !important;
|
6695 |
-
}
|
6696 |
-
}
|
6697 |
-
@media (min-width: 768px) and (max-width: 991px) {
|
6698 |
-
.sgpb-wrapper .visible-sm-inline-block {
|
6699 |
-
display: inline-block !important;
|
6700 |
-
}
|
6701 |
-
}
|
6702 |
-
@media (min-width: 992px) and (max-width: 1199px) {
|
6703 |
-
.sgpb-wrapper .visible-md {
|
6704 |
-
display: block !important;
|
6705 |
-
}
|
6706 |
-
.sgpb-wrapper table.visible-md {
|
6707 |
-
display: table !important;
|
6708 |
-
}
|
6709 |
-
.sgpb-wrapper tr.visible-md {
|
6710 |
-
display: table-row !important;
|
6711 |
-
}
|
6712 |
-
.sgpb-wrapper th.visible-md,
|
6713 |
-
.sgpb-wrapper td.visible-md {
|
6714 |
-
display: table-cell !important;
|
6715 |
-
}
|
6716 |
-
}
|
6717 |
-
@media (min-width: 992px) and (max-width: 1199px) {
|
6718 |
-
.sgpb-wrapper .visible-md-block {
|
6719 |
-
display: block !important;
|
6720 |
-
}
|
6721 |
-
}
|
6722 |
-
@media (min-width: 992px) and (max-width: 1199px) {
|
6723 |
-
.sgpb-wrapper .visible-md-inline {
|
6724 |
-
display: inline !important;
|
6725 |
-
}
|
6726 |
-
}
|
6727 |
-
@media (min-width: 992px) and (max-width: 1199px) {
|
6728 |
-
.sgpb-wrapper .visible-md-inline-block {
|
6729 |
-
display: inline-block !important;
|
6730 |
-
}
|
6731 |
-
}
|
6732 |
-
@media (min-width: 1200px) {
|
6733 |
-
.sgpb-wrapper .visible-lg {
|
6734 |
-
display: block !important;
|
6735 |
-
}
|
6736 |
-
.sgpb-wrapper table.visible-lg {
|
6737 |
-
display: table !important;
|
6738 |
-
}
|
6739 |
-
.sgpb-wrapper tr.visible-lg {
|
6740 |
-
display: table-row !important;
|
6741 |
-
}
|
6742 |
-
.sgpb-wrapper th.visible-lg,
|
6743 |
-
.sgpb-wrapper td.visible-lg {
|
6744 |
-
display: table-cell !important;
|
6745 |
-
}
|
6746 |
-
}
|
6747 |
-
@media (min-width: 1200px) {
|
6748 |
-
.sgpb-wrapper .visible-lg-block {
|
6749 |
-
display: block !important;
|
6750 |
-
}
|
6751 |
-
}
|
6752 |
-
@media (min-width: 1200px) {
|
6753 |
-
.sgpb-wrapper .visible-lg-inline {
|
6754 |
-
display: inline !important;
|
6755 |
-
}
|
6756 |
-
}
|
6757 |
-
@media (min-width: 1200px) {
|
6758 |
-
.sgpb-wrapper .visible-lg-inline-block {
|
6759 |
-
display: inline-block !important;
|
6760 |
-
}
|
6761 |
-
}
|
6762 |
-
@media (max-width: 767px) {
|
6763 |
-
.sgpb-wrapper .hidden-xs {
|
6764 |
-
display: none !important;
|
6765 |
-
}
|
6766 |
-
}
|
6767 |
-
@media (min-width: 768px) and (max-width: 991px) {
|
6768 |
-
.sgpb-wrapper .hidden-sm {
|
6769 |
-
display: none !important;
|
6770 |
-
}
|
6771 |
-
}
|
6772 |
-
@media (min-width: 992px) and (max-width: 1199px) {
|
6773 |
-
.sgpb-wrapper .hidden-md {
|
6774 |
-
display: none !important;
|
6775 |
-
}
|
6776 |
-
}
|
6777 |
-
@media (min-width: 1200px) {
|
6778 |
-
.sgpb-wrapper .hidden-lg {
|
6779 |
-
display: none !important;
|
6780 |
-
}
|
6781 |
-
}
|
6782 |
-
.sgpb-wrapper .visible-print {
|
6783 |
-
display: none !important;
|
6784 |
-
}
|
6785 |
-
@media print {
|
6786 |
-
.sgpb-wrapper .visible-print {
|
6787 |
-
display: block !important;
|
6788 |
-
}
|
6789 |
-
.sgpb-wrapper table.visible-print {
|
6790 |
-
display: table !important;
|
6791 |
-
}
|
6792 |
-
.sgpb-wrapper tr.visible-print {
|
6793 |
-
display: table-row !important;
|
6794 |
-
}
|
6795 |
-
.sgpb-wrapper th.visible-print,
|
6796 |
-
.sgpb-wrapper td.visible-print {
|
6797 |
-
display: table-cell !important;
|
6798 |
-
}
|
6799 |
-
}
|
6800 |
-
.sgpb-wrapper .visible-print-block {
|
6801 |
-
display: none !important;
|
6802 |
-
}
|
6803 |
-
@media print {
|
6804 |
-
.sgpb-wrapper .visible-print-block {
|
6805 |
-
display: block !important;
|
6806 |
-
}
|
6807 |
-
}
|
6808 |
-
.sgpb-wrapper .visible-print-inline {
|
6809 |
-
display: none !important;
|
6810 |
-
}
|
6811 |
-
@media print {
|
6812 |
-
.sgpb-wrapper .visible-print-inline {
|
6813 |
-
display: inline !important;
|
6814 |
-
}
|
6815 |
-
}
|
6816 |
-
.sgpb-wrapper .visible-print-inline-block {
|
6817 |
-
display: none !important;
|
6818 |
-
}
|
6819 |
-
@media print {
|
6820 |
-
.sgpb-wrapper .visible-print-inline-block {
|
6821 |
-
display: inline-block !important;
|
6822 |
-
}
|
6823 |
-
}
|
6824 |
-
@media print {
|
6825 |
-
.sgpb-wrapper .hidden-print {
|
6826 |
-
display: none !important;
|
6827 |
-
}
|
6828 |
-
}
|
6829 |
-
.sgpb-wrapper .navbar {
|
6830 |
-
border-width: 0;
|
6831 |
-
}
|
6832 |
-
.sgpb-wrapper .navbar-default .badge {
|
6833 |
-
background-color: #fff;
|
6834 |
-
color: #2c3e50;
|
6835 |
-
}
|
6836 |
-
.sgpb-wrapper .navbar-inverse .badge {
|
6837 |
-
background-color: #fff;
|
6838 |
-
color: #18bc9c;
|
6839 |
-
}
|
6840 |
-
.sgpb-wrapper .navbar-brand {
|
6841 |
-
line-height: 1;
|
6842 |
-
}
|
6843 |
-
.sgpb-wrapper .btn {
|
6844 |
-
border-width: 2px;
|
6845 |
-
}
|
6846 |
-
.sgpb-wrapper .btn:active {
|
6847 |
-
-webkit-box-shadow: none;
|
6848 |
-
box-shadow: none;
|
6849 |
-
}
|
6850 |
-
.sgpb-wrapper .btn-group.open .dropdown-toggle {
|
6851 |
-
-webkit-box-shadow: none;
|
6852 |
-
box-shadow: none;
|
6853 |
-
}
|
6854 |
-
.sgpb-wrapper .text-primary,
|
6855 |
-
.sgpb-wrapper .text-primary:hover {
|
6856 |
-
color: #2c3e50;
|
6857 |
-
}
|
6858 |
-
.sgpb-wrapper .text-success,
|
6859 |
-
.sgpb-wrapper .text-success:hover {
|
6860 |
-
color: #18bc9c;
|
6861 |
-
}
|
6862 |
-
.sgpb-wrapper .text-danger,
|
6863 |
-
.sgpb-wrapper .text-danger:hover {
|
6864 |
-
color: #e74c3c;
|
6865 |
-
}
|
6866 |
-
.sgpb-wrapper .text-warning,
|
6867 |
-
.sgpb-wrapper .text-warning:hover {
|
6868 |
-
color: #f39c12;
|
6869 |
-
}
|
6870 |
-
.sgpb-wrapper .text-info,
|
6871 |
-
.sgpb-wrapper .text-info:hover {
|
6872 |
-
color: #3498db;
|
6873 |
-
}
|
6874 |
-
.sgpb-wrapper table a:not(.btn),
|
6875 |
-
.sgpb-wrapper .table a:not(.btn) {
|
6876 |
-
text-decoration: underline;
|
6877 |
-
}
|
6878 |
-
.sgpb-wrapper table .dropdown-menu a,
|
6879 |
-
.sgpb-wrapper .table .dropdown-menu a {
|
6880 |
-
text-decoration: none;
|
6881 |
-
}
|
6882 |
-
.sgpb-wrapper table .success,
|
6883 |
.sgpb-wrapper .table .success,
|
6884 |
.sgpb-wrapper table .warning,
|
6885 |
.sgpb-wrapper .table .warning,
|
6886 |
.sgpb-wrapper table .danger,
|
6887 |
.sgpb-wrapper .table .danger,
|
6888 |
.sgpb-wrapper table .info,
|
6889 |
-
.sgpb-wrapper .table
|
6890 |
-
|
6891 |
-
}
|
6892 |
-
.sgpb-wrapper table .success > th > a,
|
6893 |
.sgpb-wrapper .table .success > th > a,
|
6894 |
.sgpb-wrapper table .warning > th > a,
|
6895 |
.sgpb-wrapper .table .warning > th > a,
|
@@ -6912,10 +1411,7 @@
|
|
6912 |
.sgpb-wrapper table .danger > a,
|
6913 |
.sgpb-wrapper .table .danger > a,
|
6914 |
.sgpb-wrapper table .info > a,
|
6915 |
-
.sgpb-wrapper .table .info >
|
6916 |
-
color: #fff;
|
6917 |
-
}
|
6918 |
-
.sgpb-wrapper table > thead > tr > th,
|
6919 |
.sgpb-wrapper .table > thead > tr > th,
|
6920 |
.sgpb-wrapper table > tbody > tr > th,
|
6921 |
.sgpb-wrapper .table > tbody > tr > th,
|
@@ -6926,10 +1422,7 @@
|
|
6926 |
.sgpb-wrapper table > tbody > tr > td,
|
6927 |
.sgpb-wrapper .table > tbody > tr > td,
|
6928 |
.sgpb-wrapper table > tfoot > tr > td,
|
6929 |
-
.sgpb-wrapper .table >
|
6930 |
-
border: none;
|
6931 |
-
}
|
6932 |
-
.sgpb-wrapper table-bordered > thead > tr > th,
|
6933 |
.sgpb-wrapper .table-bordered > thead > tr > th,
|
6934 |
.sgpb-wrapper table-bordered > tbody > tr > th,
|
6935 |
.sgpb-wrapper .table-bordered > tbody > tr > th,
|
@@ -6940,21 +1433,11 @@
|
|
6940 |
.sgpb-wrapper table-bordered > tbody > tr > td,
|
6941 |
.sgpb-wrapper .table-bordered > tbody > tr > td,
|
6942 |
.sgpb-wrapper table-bordered > tfoot > tr > td,
|
6943 |
-
.sgpb-wrapper .table-bordered
|
6944 |
-
|
6945 |
-
|
6946 |
-
.sgpb-wrapper .form-control,
|
6947 |
-
.sgpb-wrapper input
|
6948 |
-
border-width: 2px;
|
6949 |
-
-webkit-box-shadow: none;
|
6950 |
-
box-shadow: none;
|
6951 |
-
}
|
6952 |
-
.sgpb-wrapper .form-control:focus,
|
6953 |
-
.sgpb-wrapper input:focus {
|
6954 |
-
-webkit-box-shadow: none;
|
6955 |
-
box-shadow: none;
|
6956 |
-
}
|
6957 |
-
.sgpb-wrapper .has-warning .help-block,
|
6958 |
.sgpb-wrapper .has-warning .control-label,
|
6959 |
.sgpb-wrapper .has-warning .radio,
|
6960 |
.sgpb-wrapper .has-warning .checkbox,
|
@@ -6964,17 +1447,9 @@
|
|
6964 |
.sgpb-wrapper .has-warning.checkbox label,
|
6965 |
.sgpb-wrapper .has-warning.radio-inline label,
|
6966 |
.sgpb-wrapper .has-warning.checkbox-inline label,
|
6967 |
-
.sgpb-wrapper .has-warning .form-control-feedback
|
6968 |
-
|
6969 |
-
}
|
6970 |
-
.sgpb-wrapper .has-warning .form-control,
|
6971 |
-
.sgpb-wrapper .has-warning .form-control:focus {
|
6972 |
-
border: 2px solid #f39c12;
|
6973 |
-
}
|
6974 |
-
.sgpb-wrapper .has-warning .input-group-addon {
|
6975 |
-
border-color: #f39c12;
|
6976 |
-
}
|
6977 |
-
.sgpb-wrapper .has-error .help-block,
|
6978 |
.sgpb-wrapper .has-error .control-label,
|
6979 |
.sgpb-wrapper .has-error .radio,
|
6980 |
.sgpb-wrapper .has-error .checkbox,
|
@@ -6984,17 +1459,9 @@
|
|
6984 |
.sgpb-wrapper .has-error.checkbox label,
|
6985 |
.sgpb-wrapper .has-error.radio-inline label,
|
6986 |
.sgpb-wrapper .has-error.checkbox-inline label,
|
6987 |
-
.sgpb-wrapper .has-error .form-control-feedback
|
6988 |
-
|
6989 |
-
}
|
6990 |
-
.sgpb-wrapper .has-error .form-control,
|
6991 |
-
.sgpb-wrapper .has-error .form-control:focus {
|
6992 |
-
border: 2px solid #e74c3c;
|
6993 |
-
}
|
6994 |
-
.sgpb-wrapper .has-error .input-group-addon {
|
6995 |
-
border-color: #e74c3c;
|
6996 |
-
}
|
6997 |
-
.sgpb-wrapper .has-success .help-block,
|
6998 |
.sgpb-wrapper .has-success .control-label,
|
6999 |
.sgpb-wrapper .has-success .radio,
|
7000 |
.sgpb-wrapper .has-success .checkbox,
|
@@ -7004,90 +1471,24 @@
|
|
7004 |
.sgpb-wrapper .has-success.checkbox label,
|
7005 |
.sgpb-wrapper .has-success.radio-inline label,
|
7006 |
.sgpb-wrapper .has-success.checkbox-inline label,
|
7007 |
-
.sgpb-wrapper .has-success .form-control-feedback
|
7008 |
-
|
7009 |
-
}
|
7010 |
-
.sgpb-wrapper .has-success .form-control,
|
7011 |
-
.sgpb-wrapper .has-success .form-control:focus {
|
7012 |
-
border: 2px solid #18bc9c;
|
7013 |
-
}
|
7014 |
-
.sgpb-wrapper .has-success .input-group-addon {
|
7015 |
-
border-color: #18bc9c;
|
7016 |
-
}
|
7017 |
-
.sgpb-wrapper .nav .open > a,
|
7018 |
.sgpb-wrapper .nav .open > a:hover,
|
7019 |
-
.sgpb-wrapper .nav .open
|
7020 |
-
|
7021 |
-
}
|
7022 |
-
.sgpb-wrapper .pager a,
|
7023 |
-
.sgpb-wrapper .pager a:hover {
|
7024 |
-
color: #fff;
|
7025 |
-
}
|
7026 |
-
.sgpb-wrapper .pager .disabled > a,
|
7027 |
.sgpb-wrapper .pager .disabled > a:hover,
|
7028 |
.sgpb-wrapper .pager .disabled > a:focus,
|
7029 |
-
.sgpb-wrapper .pager .disabled
|
7030 |
-
|
7031 |
-
}
|
7032 |
-
.sgpb-wrapper .
|
7033 |
-
|
7034 |
-
text-decoration: none;
|
7035 |
-
opacity: 0.4;
|
7036 |
-
}
|
7037 |
-
.sgpb-wrapper .close:hover,
|
7038 |
-
.sgpb-wrapper .close:focus {
|
7039 |
-
color: #fff;
|
7040 |
-
opacity: 1;
|
7041 |
-
}
|
7042 |
-
.sgpb-wrapper .alert .alert-link {
|
7043 |
-
color: #fff;
|
7044 |
-
text-decoration: underline;
|
7045 |
-
}
|
7046 |
-
.sgpb-wrapper .progress {
|
7047 |
-
height: 10px;
|
7048 |
-
-webkit-box-shadow: none;
|
7049 |
-
box-shadow: none;
|
7050 |
-
}
|
7051 |
-
.sgpb-wrapper .progress .progress-bar {
|
7052 |
-
font-size: 10px;
|
7053 |
-
line-height: 10px;
|
7054 |
-
}
|
7055 |
-
.sgpb-wrapper .well {
|
7056 |
-
-webkit-box-shadow: none;
|
7057 |
-
box-shadow: none;
|
7058 |
-
}
|
7059 |
-
.sgpb-wrapper a.list-group-item.active,
|
7060 |
.sgpb-wrapper a.list-group-item.active:hover,
|
7061 |
-
.sgpb-wrapper a.list-group-item.active:focus {
|
7062 |
-
|
7063 |
-
}
|
7064 |
-
.sgpb-wrapper a.list-group-item-
|
7065 |
-
|
7066 |
-
}
|
7067 |
-
.
|
7068 |
-
.sgpb-wrapper a.list-group-item-success.active:focus {
|
7069 |
-
background-color: #15a589;
|
7070 |
-
}
|
7071 |
-
.sgpb-wrapper a.list-group-item-warning.active {
|
7072 |
-
background-color: #f39c12;
|
7073 |
-
}
|
7074 |
-
.sgpb-wrapper a.list-group-item-warning.active:hover,
|
7075 |
-
.sgpb-wrapper a.list-group-item-warning.active:focus {
|
7076 |
-
background-color: #e08e0b;
|
7077 |
-
}
|
7078 |
-
.sgpb-wrapper a.list-group-item-danger.active {
|
7079 |
-
background-color: #e74c3c;
|
7080 |
-
}
|
7081 |
-
.sgpb-wrapper a.list-group-item-danger.active:hover,
|
7082 |
-
.sgpb-wrapper a.list-group-item-danger.active:focus {
|
7083 |
-
background-color: #e43725;
|
7084 |
-
}
|
7085 |
-
.sgpb-wrapper .panel-default .close {
|
7086 |
-
color: #2c3e50;
|
7087 |
-
}
|
7088 |
-
.sgpb-wrapper .modal .close {
|
7089 |
-
color: #2c3e50;
|
7090 |
-
}
|
7091 |
-
.sgpb-wrapper .popover {
|
7092 |
-
color: #2c3e50;
|
7093 |
-
}
|
1 |
+
.sgpb-wrapper
|
2 |
+
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}.sgpb-wrapper
|
3 |
+
body{margin:0}.sgpb-wrapper article,
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
.sgpb-wrapper aside,
|
5 |
.sgpb-wrapper details,
|
6 |
.sgpb-wrapper figcaption,
|
12 |
.sgpb-wrapper menu,
|
13 |
.sgpb-wrapper nav,
|
14 |
.sgpb-wrapper section,
|
15 |
+
.sgpb-wrapper
|
16 |
+
summary{display:block}.sgpb-wrapper audio,
|
|
|
|
|
17 |
.sgpb-wrapper canvas,
|
18 |
.sgpb-wrapper progress,
|
19 |
+
.sgpb-wrapper
|
20 |
+
video{display:inline-block;vertical-align:baseline}.sgpb-wrapper audio:not([controls]){display:none;height:0}.sgpb-wrapper [hidden],
|
21 |
+
.sgpb-wrapper
|
22 |
+
template{display:none}.sgpb-wrapper
|
23 |
+
a{background-color:transparent}.sgpb-wrapper a:active,
|
24 |
+
.sgpb-wrapper a:hover{outline:0}.sgpb-wrapper abbr[title]{border-bottom:1px dotted}.sgpb-wrapper b,
|
25 |
+
.sgpb-wrapper
|
26 |
+
strong{font-weight:bold}.sgpb-wrapper
|
27 |
+
dfn{font-style:italic}.sgpb-wrapper
|
28 |
+
h1{font-size:2em;margin:0.67em 0}.sgpb-wrapper
|
29 |
+
mark{background:#ff0;color:#000}.sgpb-wrapper
|
30 |
+
small{font-size:80%}.sgpb-wrapper sub,
|
31 |
+
.sgpb-wrapper
|
32 |
+
sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.sgpb-wrapper
|
33 |
+
sup{top:-0.5em}.sgpb-wrapper
|
34 |
+
sub{bottom:-0.25em}.sgpb-wrapper
|
35 |
+
img{border:0}.sgpb-wrapper svg:not(:root){overflow:hidden}.sgpb-wrapper
|
36 |
+
figure{margin:1em
|
37 |
+
40px}.sgpb-wrapper
|
38 |
+
hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}.sgpb-wrapper
|
39 |
+
pre{overflow:auto}.sgpb-wrapper code,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
.sgpb-wrapper kbd,
|
41 |
.sgpb-wrapper pre,
|
42 |
+
.sgpb-wrapper
|
43 |
+
samp{font-family:monospace,monospace;font-size:1em}.sgpb-wrapper button,
|
|
|
|
|
|
|
44 |
.sgpb-wrapper input,
|
45 |
.sgpb-wrapper optgroup,
|
46 |
.sgpb-wrapper select,
|
47 |
+
.sgpb-wrapper
|
48 |
+
textarea{color:inherit;font:inherit;margin:0}.sgpb-wrapper
|
49 |
+
button{overflow:visible}.sgpb-wrapper button,
|
50 |
+
.sgpb-wrapper
|
51 |
+
select{text-transform:none}.sgpb-wrapper button,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
.sgpb-wrapper html input[type="button"],
|
53 |
.sgpb-wrapper input[type="reset"],
|
54 |
+
.sgpb-wrapper input[type="submit"]{-webkit-appearance:button;cursor:pointer}.sgpb-wrapper button[disabled],
|
55 |
+
.sgpb-wrapper html input[disabled]{cursor:default}.sgpb-wrapper button::-moz-focus-inner,
|
56 |
+
.sgpb-wrapper input::-moz-focus-inner{border:0;padding:0}.sgpb-wrapper
|
57 |
+
input{line-height:normal}.sgpb-wrapper input[type="checkbox"],
|
58 |
+
.sgpb-wrapper input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}.sgpb-wrapper input[type="number"]::-webkit-inner-spin-button,
|
59 |
+
.sgpb-wrapper input[type="number"]::-webkit-outer-spin-button{height:auto}.sgpb-wrapper input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.sgpb-wrapper input[type="search"]::-webkit-search-cancel-button,
|
60 |
+
.sgpb-wrapper input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}.sgpb-wrapper
|
61 |
+
fieldset{border:1px
|
62 |
+
solid #c0c0c0;margin:0
|
63 |
+
2px;padding:0.35em 0.625em 0.75em}.sgpb-wrapper
|
64 |
+
legend{border:0;padding:0}.sgpb-wrapper
|
65 |
+
textarea{overflow:auto}.sgpb-wrapper
|
66 |
+
optgroup{font-weight:bold}.sgpb-wrapper
|
67 |
+
table{border-collapse:collapse;border-spacing:0}.sgpb-wrapper td,
|
68 |
+
.sgpb-wrapper
|
69 |
+
th{padding:0}@media
|
70 |
+
print{.sgpb-wrapper *,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
.sgpb-wrapper *:before,
|
72 |
+
.sgpb-wrapper *:after{background:transparent !important;color:#000 !important;-webkit-box-shadow:none !important;box-shadow:none !important;text-shadow:none !important}.sgpb-wrapper a,
|
73 |
+
.sgpb-wrapper a:visited{text-decoration:underline}.sgpb-wrapper a[href]:after{content:" (" attr(href) ")"}.sgpb-wrapper abbr[title]:after{content:" (" attr(title) ")"}.sgpb-wrapper a[href^="#"]:after,
|
74 |
+
.sgpb-wrapper a[href^="javascript:"]:after{content:""}.sgpb-wrapper pre,
|
75 |
+
.sgpb-wrapper
|
76 |
+
blockquote{border:1px
|
77 |
+
solid #999;page-break-inside:avoid}.sgpb-wrapper
|
78 |
+
thead{display:table-header-group}.sgpb-wrapper tr,
|
79 |
+
.sgpb-wrapper
|
80 |
+
img{page-break-inside:avoid}.sgpb-wrapper
|
81 |
+
img{max-width:100% !important}.sgpb-wrapper p,
|
82 |
+
.sgpb-wrapper h2,
|
83 |
+
.sgpb-wrapper
|
84 |
+
h3{orphans:3;widows:3}.sgpb-wrapper h2,
|
85 |
+
.sgpb-wrapper
|
86 |
+
h3{page-break-after:avoid}.sgpb-wrapper
|
87 |
+
.navbar{display:none}.sgpb-wrapper .btn > .caret,
|
88 |
+
.sgpb-wrapper .dropup>.btn>.caret{border-top-color:#000 !important}.sgpb-wrapper
|
89 |
+
.label{border:1px
|
90 |
+
solid #000}.sgpb-wrapper
|
91 |
+
.table{border-collapse:collapse !important}.sgpb-wrapper .table td,
|
92 |
+
.sgpb-wrapper .table
|
93 |
+
th{background-color:#fff !important}.sgpb-wrapper .table-bordered th,
|
94 |
+
.sgpb-wrapper .table-bordered
|
95 |
+
td{border:1px
|
96 |
+
solid #ddd !important}}.sgpb-wrapper
|
97 |
+
.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.sgpb-wrapper .glyphicon-asterisk:before{content:"\002a"}.sgpb-wrapper .glyphicon-plus:before{content:"\002b"}.sgpb-wrapper .glyphicon-euro:before,
|
98 |
+
.sgpb-wrapper .glyphicon-eur:before{content:"\20ac"}.sgpb-wrapper .glyphicon-minus:before{content:"\2212"}.sgpb-wrapper .glyphicon-cloud:before{content:"\2601"}.sgpb-wrapper .glyphicon-envelope:before{content:"\2709"}.sgpb-wrapper .glyphicon-pencil:before{content:"\270f"}.sgpb-wrapper .glyphicon-glass:before{content:"\e001"}.sgpb-wrapper .glyphicon-music:before{content:"\e002"}.sgpb-wrapper .glyphicon-search:before{content:"\e003"}.sgpb-wrapper .glyphicon-heart:before{content:"\e005"}.sgpb-wrapper .glyphicon-star:before{content:"\e006"}.sgpb-wrapper .glyphicon-star-empty:before{content:"\e007"}.sgpb-wrapper .glyphicon-user:before{content:"\e008"}.sgpb-wrapper .glyphicon-film:before{content:"\e009"}.sgpb-wrapper .glyphicon-th-large:before{content:"\e010"}.sgpb-wrapper .glyphicon-th:before{content:"\e011"}.sgpb-wrapper .glyphicon-th-list:before{content:"\e012"}.sgpb-wrapper .glyphicon-ok:before{content:"\e013"}.sgpb-wrapper .glyphicon-remove:before{content:"\e014"}.sgpb-wrapper .glyphicon-zoom-in:before{content:"\e015"}.sgpb-wrapper .glyphicon-zoom-out:before{content:"\e016"}.sgpb-wrapper .glyphicon-off:before{content:"\e017"}.sgpb-wrapper .glyphicon-signal:before{content:"\e018"}.sgpb-wrapper .glyphicon-cog:before{content:"\e019"}.sgpb-wrapper .glyphicon-trash:before{content:"\e020"}.sgpb-wrapper .glyphicon-home:before{content:"\e021"}.sgpb-wrapper .glyphicon-file:before{content:"\e022"}.sgpb-wrapper .glyphicon-time:before{content:"\e023"}.sgpb-wrapper .glyphicon-road:before{content:"\e024"}.sgpb-wrapper .glyphicon-download-alt:before{content:"\e025"}.sgpb-wrapper .glyphicon-download:before{content:"\e026"}.sgpb-wrapper .glyphicon-upload:before{content:"\e027"}.sgpb-wrapper .glyphicon-inbox:before{content:"\e028"}.sgpb-wrapper .glyphicon-play-circle:before{content:"\e029"}.sgpb-wrapper .glyphicon-repeat:before{content:"\e030"}.sgpb-wrapper .glyphicon-refresh:before{content:"\e031"}.sgpb-wrapper .glyphicon-list-alt:before{content:"\e032"}.sgpb-wrapper .glyphicon-lock:before{content:"\e033"}.sgpb-wrapper .glyphicon-flag:before{content:"\e034"}.sgpb-wrapper .glyphicon-headphones:before{content:"\e035"}.sgpb-wrapper .glyphicon-volume-off:before{content:"\e036"}.sgpb-wrapper .glyphicon-volume-down:before{content:"\e037"}.sgpb-wrapper .glyphicon-volume-up:before{content:"\e038"}.sgpb-wrapper .glyphicon-qrcode:before{content:"\e039"}.sgpb-wrapper .glyphicon-barcode:before{content:"\e040"}.sgpb-wrapper .glyphicon-tag:before{content:"\e041"}.sgpb-wrapper .glyphicon-tags:before{content:"\e042"}.sgpb-wrapper .glyphicon-book:before{content:"\e043"}.sgpb-wrapper .glyphicon-bookmark:before{content:"\e044"}.sgpb-wrapper .glyphicon-print:before{content:"\e045"}.sgpb-wrapper .glyphicon-camera:before{content:"\e046"}.sgpb-wrapper .glyphicon-font:before{content:"\e047"}.sgpb-wrapper .glyphicon-bold:before{content:"\e048"}.sgpb-wrapper .glyphicon-italic:before{content:"\e049"}.sgpb-wrapper .glyphicon-text-height:before{content:"\e050"}.sgpb-wrapper .glyphicon-text-width:before{content:"\e051"}.sgpb-wrapper .glyphicon-align-left:before{content:"\e052"}.sgpb-wrapper .glyphicon-align-center:before{content:"\e053"}.sgpb-wrapper .glyphicon-align-right:before{content:"\e054"}.sgpb-wrapper .glyphicon-align-justify:before{content:"\e055"}.sgpb-wrapper .glyphicon-list:before{content:"\e056"}.sgpb-wrapper .glyphicon-indent-left:before{content:"\e057"}.sgpb-wrapper .glyphicon-indent-right:before{content:"\e058"}.sgpb-wrapper .glyphicon-facetime-video:before{content:"\e059"}.sgpb-wrapper .glyphicon-picture:before{content:"\e060"}.sgpb-wrapper .glyphicon-map-marker:before{content:"\e062"}.sgpb-wrapper .glyphicon-adjust:before{content:"\e063"}.sgpb-wrapper .glyphicon-tint:before{content:"\e064"}.sgpb-wrapper .glyphicon-edit:before{content:"\e065"}.sgpb-wrapper .glyphicon-share:before{content:"\e066"}.sgpb-wrapper .glyphicon-check:before{content:"\e067"}.sgpb-wrapper .glyphicon-move:before{content:"\e068"}.sgpb-wrapper .glyphicon-step-backward:before{content:"\e069"}.sgpb-wrapper .glyphicon-fast-backward:before{content:"\e070"}.sgpb-wrapper .glyphicon-backward:before{content:"\e071"}.sgpb-wrapper .glyphicon-play:before{content:"\e072"}.sgpb-wrapper .glyphicon-pause:before{content:"\e073"}.sgpb-wrapper .glyphicon-stop:before{content:"\e074"}.sgpb-wrapper .glyphicon-forward:before{content:"\e075"}.sgpb-wrapper .glyphicon-fast-forward:before{content:"\e076"}.sgpb-wrapper .glyphicon-step-forward:before{content:"\e077"}.sgpb-wrapper .glyphicon-eject:before{content:"\e078"}.sgpb-wrapper .glyphicon-chevron-left:before{content:"\e079"}.sgpb-wrapper .glyphicon-chevron-right:before{content:"\e080"}.sgpb-wrapper .glyphicon-plus-sign:before{content:"\e081"}.sgpb-wrapper .glyphicon-minus-sign:before{content:"\e082"}.sgpb-wrapper .glyphicon-remove-sign:before{content:"\e083"}.sgpb-wrapper .glyphicon-ok-sign:before{content:"\e084"}.sgpb-wrapper .glyphicon-question-sign:before{content:"\e085"}.sgpb-wrapper .glyphicon-info-sign:before{content:"\e086"}.sgpb-wrapper .glyphicon-screenshot:before{content:"\e087"}.sgpb-wrapper .glyphicon-remove-circle:before{content:"\e088"}.sgpb-wrapper .glyphicon-ok-circle:before{content:"\e089"}.sgpb-wrapper .glyphicon-ban-circle:before{content:"\e090"}.sgpb-wrapper .glyphicon-arrow-left:before{content:"\e091"}.sgpb-wrapper .glyphicon-arrow-right:before{content:"\e092"}.sgpb-wrapper .glyphicon-arrow-up:before{content:"\e093"}.sgpb-wrapper .glyphicon-arrow-down:before{content:"\e094"}.sgpb-wrapper .glyphicon-share-alt:before{content:"\e095"}.sgpb-wrapper .glyphicon-resize-full:before{content:"\e096"}.sgpb-wrapper .glyphicon-resize-small:before{content:"\e097"}.sgpb-wrapper .glyphicon-exclamation-sign:before{content:"\e101"}.sgpb-wrapper .glyphicon-gift:before{content:"\e102"}.sgpb-wrapper .glyphicon-leaf:before{content:"\e103"}.sgpb-wrapper .glyphicon-fire:before{content:"\e104"}.sgpb-wrapper .glyphicon-eye-open:before{content:"\e105"}.sgpb-wrapper .glyphicon-eye-close:before{content:"\e106"}.sgpb-wrapper .glyphicon-warning-sign:before{content:"\e107"}.sgpb-wrapper .glyphicon-plane:before{content:"\e108"}.sgpb-wrapper .glyphicon-calendar:before{content:"\e109"}.sgpb-wrapper .glyphicon-random:before{content:"\e110"}.sgpb-wrapper .glyphicon-comment:before{content:"\e111"}.sgpb-wrapper .glyphicon-magnet:before{content:"\e112"}.sgpb-wrapper .glyphicon-chevron-up:before{content:"\e113"}.sgpb-wrapper .glyphicon-chevron-down:before{content:"\e114"}.sgpb-wrapper .glyphicon-retweet:before{content:"\e115"}.sgpb-wrapper .glyphicon-shopping-cart:before{content:"\e116"}.sgpb-wrapper .glyphicon-folder-close:before{content:"\e117"}.sgpb-wrapper .glyphicon-folder-open:before{content:"\e118"}.sgpb-wrapper .glyphicon-resize-vertical:before{content:"\e119"}.sgpb-wrapper .glyphicon-resize-horizontal:before{content:"\e120"}.sgpb-wrapper .glyphicon-hdd:before{content:"\e121"}.sgpb-wrapper .glyphicon-bullhorn:before{content:"\e122"}.sgpb-wrapper .glyphicon-bell:before{content:"\e123"}.sgpb-wrapper .glyphicon-certificate:before{content:"\e124"}.sgpb-wrapper .glyphicon-thumbs-up:before{content:"\e125"}.sgpb-wrapper .glyphicon-thumbs-down:before{content:"\e126"}.sgpb-wrapper .glyphicon-hand-right:before{content:"\e127"}.sgpb-wrapper .glyphicon-hand-left:before{content:"\e128"}.sgpb-wrapper .glyphicon-hand-up:before{content:"\e129"}.sgpb-wrapper .glyphicon-hand-down:before{content:"\e130"}.sgpb-wrapper .glyphicon-circle-arrow-right:before{content:"\e131"}.sgpb-wrapper .glyphicon-circle-arrow-left:before{content:"\e132"}.sgpb-wrapper .glyphicon-circle-arrow-up:before{content:"\e133"}.sgpb-wrapper .glyphicon-circle-arrow-down:before{content:"\e134"}.sgpb-wrapper .glyphicon-globe:before{content:"\e135"}.sgpb-wrapper .glyphicon-wrench:before{content:"\e136"}.sgpb-wrapper .glyphicon-tasks:before{content:"\e137"}.sgpb-wrapper .glyphicon-filter:before{content:"\e138"}.sgpb-wrapper .glyphicon-briefcase:before{content:"\e139"}.sgpb-wrapper .glyphicon-fullscreen:before{content:"\e140"}.sgpb-wrapper .glyphicon-dashboard:before{content:"\e141"}.sgpb-wrapper .glyphicon-paperclip:before{content:"\e142"}.sgpb-wrapper .glyphicon-heart-empty:before{content:"\e143"}.sgpb-wrapper .glyphicon-link:before{content:"\e144"}.sgpb-wrapper .glyphicon-phone:before{content:"\e145"}.sgpb-wrapper .glyphicon-pushpin:before{content:"\e146"}.sgpb-wrapper .glyphicon-usd:before{content:"\e148"}.sgpb-wrapper .glyphicon-gbp:before{content:"\e149"}.sgpb-wrapper .glyphicon-sort:before{content:"\e150"}.sgpb-wrapper .glyphicon-sort-by-alphabet:before{content:"\e151"}.sgpb-wrapper .glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.sgpb-wrapper .glyphicon-sort-by-order:before{content:"\e153"}.sgpb-wrapper .glyphicon-sort-by-order-alt:before{content:"\e154"}.sgpb-wrapper .glyphicon-sort-by-attributes:before{content:"\e155"}.sgpb-wrapper .glyphicon-sort-by-attributes-alt:before{content:"\e156"}.sgpb-wrapper .glyphicon-unchecked:before{content:"\e157"}.sgpb-wrapper .glyphicon-expand:before{content:"\e158"}.sgpb-wrapper .glyphicon-collapse-down:before{content:"\e159"}.sgpb-wrapper .glyphicon-collapse-up:before{content:"\e160"}.sgpb-wrapper .glyphicon-log-in:before{content:"\e161"}.sgpb-wrapper .glyphicon-flash:before{content:"\e162"}.sgpb-wrapper .glyphicon-log-out:before{content:"\e163"}.sgpb-wrapper .glyphicon-new-window:before{content:"\e164"}.sgpb-wrapper .glyphicon-record:before{content:"\e165"}.sgpb-wrapper .glyphicon-save:before{content:"\e166"}.sgpb-wrapper .glyphicon-open:before{content:"\e167"}.sgpb-wrapper .glyphicon-saved:before{content:"\e168"}.sgpb-wrapper .glyphicon-import:before{content:"\e169"}.sgpb-wrapper .glyphicon-export:before{content:"\e170"}.sgpb-wrapper .glyphicon-send:before{content:"\e171"}.sgpb-wrapper .glyphicon-floppy-disk:before{content:"\e172"}.sgpb-wrapper .glyphicon-floppy-saved:before{content:"\e173"}.sgpb-wrapper .glyphicon-floppy-remove:before{content:"\e174"}.sgpb-wrapper .glyphicon-floppy-save:before{content:"\e175"}.sgpb-wrapper .glyphicon-floppy-open:before{content:"\e176"}.sgpb-wrapper .glyphicon-credit-card:before{content:"\e177"}.sgpb-wrapper .glyphicon-transfer:before{content:"\e178"}.sgpb-wrapper .glyphicon-cutlery:before{content:"\e179"}.sgpb-wrapper .glyphicon-header:before{content:"\e180"}.sgpb-wrapper .glyphicon-compressed:before{content:"\e181"}.sgpb-wrapper .glyphicon-earphone:before{content:"\e182"}.sgpb-wrapper .glyphicon-phone-alt:before{content:"\e183"}.sgpb-wrapper .glyphicon-tower:before{content:"\e184"}.sgpb-wrapper .glyphicon-stats:before{content:"\e185"}.sgpb-wrapper .glyphicon-sd-video:before{content:"\e186"}.sgpb-wrapper .glyphicon-hd-video:before{content:"\e187"}.sgpb-wrapper .glyphicon-subtitles:before{content:"\e188"}.sgpb-wrapper .glyphicon-sound-stereo:before{content:"\e189"}.sgpb-wrapper .glyphicon-sound-dolby:before{content:"\e190"}.sgpb-wrapper .glyphicon-sound-5-1:before{content:"\e191"}.sgpb-wrapper .glyphicon-sound-6-1:before{content:"\e192"}.sgpb-wrapper .glyphicon-sound-7-1:before{content:"\e193"}.sgpb-wrapper .glyphicon-copyright-mark:before{content:"\e194"}.sgpb-wrapper .glyphicon-registration-mark:before{content:"\e195"}.sgpb-wrapper .glyphicon-cloud-download:before{content:"\e197"}.sgpb-wrapper .glyphicon-cloud-upload:before{content:"\e198"}.sgpb-wrapper .glyphicon-tree-conifer:before{content:"\e199"}.sgpb-wrapper .glyphicon-tree-deciduous:before{content:"\e200"}.sgpb-wrapper .glyphicon-cd:before{content:"\e201"}.sgpb-wrapper .glyphicon-save-file:before{content:"\e202"}.sgpb-wrapper .glyphicon-open-file:before{content:"\e203"}.sgpb-wrapper .glyphicon-level-up:before{content:"\e204"}.sgpb-wrapper .glyphicon-copy:before{content:"\e205"}.sgpb-wrapper .glyphicon-paste:before{content:"\e206"}.sgpb-wrapper .glyphicon-alert:before{content:"\e209"}.sgpb-wrapper .glyphicon-equalizer:before{content:"\e210"}.sgpb-wrapper .glyphicon-king:before{content:"\e211"}.sgpb-wrapper .glyphicon-queen:before{content:"\e212"}.sgpb-wrapper .glyphicon-pawn:before{content:"\e213"}.sgpb-wrapper .glyphicon-bishop:before{content:"\e214"}.sgpb-wrapper .glyphicon-knight:before{content:"\e215"}.sgpb-wrapper .glyphicon-baby-formula:before{content:"\e216"}.sgpb-wrapper .glyphicon-tent:before{content:"\26fa"}.sgpb-wrapper .glyphicon-blackboard:before{content:"\e218"}.sgpb-wrapper .glyphicon-bed:before{content:"\e219"}.sgpb-wrapper .glyphicon-apple:before{content:"\f8ff"}.sgpb-wrapper .glyphicon-erase:before{content:"\e221"}.sgpb-wrapper .glyphicon-hourglass:before{content:"\231b"}.sgpb-wrapper .glyphicon-lamp:before{content:"\e223"}.sgpb-wrapper .glyphicon-duplicate:before{content:"\e224"}.sgpb-wrapper .glyphicon-piggy-bank:before{content:"\e225"}.sgpb-wrapper .glyphicon-scissors:before{content:"\e226"}.sgpb-wrapper .glyphicon-bitcoin:before{content:"\e227"}.sgpb-wrapper .glyphicon-btc:before{content:"\e227"}.sgpb-wrapper .glyphicon-xbt:before{content:"\e227"}.sgpb-wrapper .glyphicon-yen:before{content:"\00a5"}.sgpb-wrapper .glyphicon-jpy:before{content:"\00a5"}.sgpb-wrapper .glyphicon-ruble:before{content:"\20bd"}.sgpb-wrapper .glyphicon-rub:before{content:"\20bd"}.sgpb-wrapper .glyphicon-scale:before{content:"\e230"}.sgpb-wrapper .glyphicon-ice-lolly:before{content:"\e231"}.sgpb-wrapper .glyphicon-ice-lolly-tasted:before{content:"\e232"}.sgpb-wrapper .glyphicon-education:before{content:"\e233"}.sgpb-wrapper .glyphicon-option-horizontal:before{content:"\e234"}.sgpb-wrapper .glyphicon-option-vertical:before{content:"\e235"}.sgpb-wrapper .glyphicon-menu-hamburger:before{content:"\e236"}.sgpb-wrapper .glyphicon-modal-window:before{content:"\e237"}.sgpb-wrapper .glyphicon-oil:before{content:"\e238"}.sgpb-wrapper .glyphicon-grain:before{content:"\e239"}.sgpb-wrapper .glyphicon-sunglasses:before{content:"\e240"}.sgpb-wrapper .glyphicon-text-size:before{content:"\e241"}.sgpb-wrapper .glyphicon-text-color:before{content:"\e242"}.sgpb-wrapper .glyphicon-text-background:before{content:"\e243"}.sgpb-wrapper .glyphicon-object-align-top:before{content:"\e244"}.sgpb-wrapper .glyphicon-object-align-bottom:before{content:"\e245"}.sgpb-wrapper .glyphicon-object-align-horizontal:before{content:"\e246"}.sgpb-wrapper .glyphicon-object-align-left:before{content:"\e247"}.sgpb-wrapper .glyphicon-object-align-vertical:before{content:"\e248"}.sgpb-wrapper .glyphicon-object-align-right:before{content:"\e249"}.sgpb-wrapper .glyphicon-triangle-right:before{content:"\e250"}.sgpb-wrapper .glyphicon-triangle-left:before{content:"\e251"}.sgpb-wrapper .glyphicon-triangle-bottom:before{content:"\e252"}.sgpb-wrapper .glyphicon-triangle-top:before{content:"\e253"}.sgpb-wrapper .glyphicon-console:before{content:"\e254"}.sgpb-wrapper .glyphicon-superscript:before{content:"\e255"}.sgpb-wrapper .glyphicon-subscript:before{content:"\e256"}.sgpb-wrapper .glyphicon-menu-left:before{content:"\e257"}.sgpb-wrapper .glyphicon-menu-right:before{content:"\e258"}.sgpb-wrapper .glyphicon-menu-down:before{content:"\e259"}.sgpb-wrapper .glyphicon-menu-up:before{content:"\e260"}.sgpb-wrapper
|
99 |
+
*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sgpb-wrapper *:before,
|
100 |
+
.sgpb-wrapper *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sgpb-wrapper
|
101 |
+
html{font-size:10px;-webkit-tap-highlight-color:rgba(0, 0, 0, 0)}.sgpb-wrapper
|
102 |
+
body{font-family:"Lato","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:15px;line-height:1.42857143;color:#2c3e50;background-color:#fff}.sgpb-wrapper input,
|
103 |
.sgpb-wrapper button,
|
104 |
.sgpb-wrapper select,
|
105 |
+
.sgpb-wrapper
|
106 |
+
textarea{font-family:inherit;font-size:inherit;line-height:inherit}.sgpb-wrapper
|
107 |
+
a{color:#18bc9c;text-decoration:none}.sgpb-wrapper a:hover,
|
108 |
+
.sgpb-wrapper a:focus{color:#18bc9c;text-decoration:underline}.sgpb-wrapper a:focus{outline:5px
|
109 |
+
auto -webkit-focus-ring-color;outline-offset:-2px}.sgpb-wrapper
|
110 |
+
figure{margin:0}.sgpb-wrapper
|
111 |
+
img{vertical-align:middle}.sgpb-wrapper .img-responsive,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
.sgpb-wrapper .thumbnail > img,
|
113 |
.sgpb-wrapper .thumbnail a > img,
|
114 |
.sgpb-wrapper .carousel-inner > .item > img,
|
115 |
+
.sgpb-wrapper .carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.sgpb-wrapper .img-rounded{border-radius:6px}.sgpb-wrapper .img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px
|
116 |
+
solid #ecf0f1;border-radius:4px;-webkit-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;display:inline-block;max-width:100%;height:auto}.sgpb-wrapper .img-circle{border-radius:50%}.sgpb-wrapper
|
117 |
+
hr{margin-top:21px;margin-bottom:21px;border:0;border-top:1px solid #ecf0f1}.sgpb-wrapper .sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sgpb-wrapper .sr-only-focusable:active,
|
118 |
+
.sgpb-wrapper .sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.sgpb-wrapper [role="button"]{cursor:pointer}.sgpb-wrapper h1,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
.sgpb-wrapper h2,
|
120 |
.sgpb-wrapper h3,
|
121 |
.sgpb-wrapper h4,
|
126 |
.sgpb-wrapper .h3,
|
127 |
.sgpb-wrapper .h4,
|
128 |
.sgpb-wrapper .h5,
|
129 |
+
.sgpb-wrapper
|
130 |
+
.h6{font-family:"Lato","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:400;line-height:1.1;color:inherit}.sgpb-wrapper h1 small,
|
|
|
|
|
|
|
|
|
|
|
131 |
.sgpb-wrapper h2 small,
|
132 |
.sgpb-wrapper h3 small,
|
133 |
.sgpb-wrapper h4 small,
|
150 |
.sgpb-wrapper .h3 .small,
|
151 |
.sgpb-wrapper .h4 .small,
|
152 |
.sgpb-wrapper .h5 .small,
|
153 |
+
.sgpb-wrapper .h6
|
154 |
+
.small{font-weight:normal;line-height:1;color:#b4bcc2}.sgpb-wrapper h1,
|
|
|
|
|
|
|
|
|
155 |
.sgpb-wrapper .h1,
|
156 |
.sgpb-wrapper h2,
|
157 |
.sgpb-wrapper .h2,
|
158 |
.sgpb-wrapper h3,
|
159 |
+
.sgpb-wrapper
|
160 |
+
.h3{margin-top:21px;margin-bottom:10.5px}.sgpb-wrapper h1 small,
|
|
|
|
|
|
|
161 |
.sgpb-wrapper .h1 small,
|
162 |
.sgpb-wrapper h2 small,
|
163 |
.sgpb-wrapper .h2 small,
|
168 |
.sgpb-wrapper h2 .small,
|
169 |
.sgpb-wrapper .h2 .small,
|
170 |
.sgpb-wrapper h3 .small,
|
171 |
+
.sgpb-wrapper .h3
|
172 |
+
.small{font-size:65%}.sgpb-wrapper h4,
|
|
|
|
|
173 |
.sgpb-wrapper .h4,
|
174 |
.sgpb-wrapper h5,
|
175 |
.sgpb-wrapper .h5,
|
176 |
.sgpb-wrapper h6,
|
177 |
+
.sgpb-wrapper
|
178 |
+
.h6{margin-top:10.5px;margin-bottom:10.5px}.sgpb-wrapper h4 small,
|
|
|
|
|
|
|
179 |
.sgpb-wrapper .h4 small,
|
180 |
.sgpb-wrapper h5 small,
|
181 |
.sgpb-wrapper .h5 small,
|
186 |
.sgpb-wrapper h5 .small,
|
187 |
.sgpb-wrapper .h5 .small,
|
188 |
.sgpb-wrapper h6 .small,
|
189 |
+
.sgpb-wrapper .h6
|
190 |
+
.small{font-size:75%}.sgpb-wrapper h1,
|
191 |
+
.sgpb-wrapper
|
192 |
+
.h1{font-size:39px}.sgpb-wrapper h2,
|
193 |
+
.sgpb-wrapper
|
194 |
+
.h2{font-size:32px}.sgpb-wrapper h3,
|
195 |
+
.sgpb-wrapper
|
196 |
+
.h3{font-size:26px}.sgpb-wrapper h4,
|
197 |
+
.sgpb-wrapper
|
198 |
+
.h4{font-size:19px}.sgpb-wrapper h5,
|
199 |
+
.sgpb-wrapper
|
200 |
+
.h5{font-size:15px}.sgpb-wrapper h6,
|
201 |
+
.sgpb-wrapper
|
202 |
+
.h6{font-size:13px}.sgpb-wrapper
|
203 |
+
p{margin:0
|
204 |
+
0 10.5px}.sgpb-wrapper
|
205 |
+
.lead{margin-bottom:21px;font-size:17px;font-weight:300;line-height:1.4}@media (min-width: 768px){.sgpb-wrapper
|
206 |
+
.lead{font-size:22.5px}}.sgpb-wrapper small,
|
207 |
+
.sgpb-wrapper
|
208 |
+
.small{font-size:86%}.sgpb-wrapper mark,
|
209 |
+
.sgpb-wrapper
|
210 |
+
.mark{background-color:#f39c12;padding: .2em}.sgpb-wrapper .text-left{text-align:left}.sgpb-wrapper .text-right{text-align:right}.sgpb-wrapper .text-center{text-align:center}.sgpb-wrapper .text-justify{text-align:justify}.sgpb-wrapper .text-nowrap{white-space:nowrap}.sgpb-wrapper .text-lowercase{text-transform:lowercase}.sgpb-wrapper .text-uppercase{text-transform:uppercase}.sgpb-wrapper .text-capitalize{text-transform:capitalize}.sgpb-wrapper .text-muted{color:#b4bcc2}.sgpb-wrapper .text-primary{color:#2c3e50}.sgpb-wrapper a.text-primary:hover,
|
211 |
+
.sgpb-wrapper a.text-primary:focus{color:#1a242f}.sgpb-wrapper .text-success{color:#fff}.sgpb-wrapper a.text-success:hover,
|
212 |
+
.sgpb-wrapper a.text-success:focus{color:#e6e6e6}.sgpb-wrapper .text-info{color:#fff}.sgpb-wrapper a.text-info:hover,
|
213 |
+
.sgpb-wrapper a.text-info:focus{color:#e6e6e6}.sgpb-wrapper .text-warning{color:#fff}.sgpb-wrapper a.text-warning:hover,
|
214 |
+
.sgpb-wrapper a.text-warning:focus{color:#e6e6e6}.sgpb-wrapper .text-danger{color:#fff}.sgpb-wrapper a.text-danger:hover,
|
215 |
+
.sgpb-wrapper a.text-danger:focus{color:#e6e6e6}.sgpb-wrapper .bg-primary{color:#fff;background-color:#2c3e50}.sgpb-wrapper a.bg-primary:hover,
|
216 |
+
.sgpb-wrapper a.bg-primary:focus{background-color:#1a242f}.sgpb-wrapper .bg-success{background-color:#18bc9c}.sgpb-wrapper a.bg-success:hover,
|
217 |
+
.sgpb-wrapper a.bg-success:focus{background-color:#128f76}.sgpb-wrapper .bg-info{background-color:#3498db}.sgpb-wrapper a.bg-info:hover,
|
218 |
+
.sgpb-wrapper a.bg-info:focus{background-color:#217dbb}.sgpb-wrapper .bg-warning{background-color:#f39c12}.sgpb-wrapper a.bg-warning:hover,
|
219 |
+
.sgpb-wrapper a.bg-warning:focus{background-color:#c87f0a}.sgpb-wrapper .bg-danger{background-color:#e74c3c}.sgpb-wrapper a.bg-danger:hover,
|
220 |
+
.sgpb-wrapper a.bg-danger:focus{background-color:#d62c1a}.sgpb-wrapper .page-header{padding-bottom:9.5px;margin:42px
|
221 |
+
0 21px;border-bottom:1px solid transparent}.sgpb-wrapper ul,
|
222 |
+
.sgpb-wrapper
|
223 |
+
ol{margin-top:0;margin-bottom:10.5px}.sgpb-wrapper ul ul,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
.sgpb-wrapper ol ul,
|
225 |
.sgpb-wrapper ul ol,
|
226 |
+
.sgpb-wrapper ol
|
227 |
+
ol{margin-bottom:0}.sgpb-wrapper .list-unstyled{padding-left:0;list-style:none}.sgpb-wrapper .list-inline{padding-left:0;list-style:none;margin-left:-5px}.sgpb-wrapper .list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}.sgpb-wrapper
|
228 |
+
dl{margin-top:0;margin-bottom:21px}.sgpb-wrapper dt,
|
229 |
+
.sgpb-wrapper
|
230 |
+
dd{line-height:1.42857143}.sgpb-wrapper
|
231 |
+
dt{font-weight:bold}.sgpb-wrapper
|
232 |
+
dd{margin-left:0}@media (min-width: 768px){.sgpb-wrapper .dl-horizontal
|
233 |
+
dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sgpb-wrapper .dl-horizontal
|
234 |
+
dd{margin-left:180px}}.sgpb-wrapper abbr[title],
|
235 |
+
.sgpb-wrapper abbr[data-original-title]{cursor:help;border-bottom:1px dotted #b4bcc2}.sgpb-wrapper
|
236 |
+
.initialism{font-size:90%;text-transform:uppercase}.sgpb-wrapper
|
237 |
+
blockquote{padding:10.5px 21px;margin:0
|
238 |
+
0 21px;font-size:18.75px;border-left:5px solid #ecf0f1}.sgpb-wrapper blockquote p:last-child,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
.sgpb-wrapper blockquote ul:last-child,
|
240 |
+
.sgpb-wrapper blockquote ol:last-child{margin-bottom:0}.sgpb-wrapper blockquote footer,
|
|
|
|
|
|
|
241 |
.sgpb-wrapper blockquote small,
|
242 |
+
.sgpb-wrapper blockquote
|
243 |
+
.small{display:block;font-size:80%;line-height:1.42857143;color:#b4bcc2}.sgpb-wrapper blockquote footer:before,
|
|
|
|
|
|
|
|
|
|
|
244 |
.sgpb-wrapper blockquote small:before,
|
245 |
+
.sgpb-wrapper blockquote .small:before{content:'\2014 \00A0'}.sgpb-wrapper .blockquote-reverse,
|
246 |
+
.sgpb-wrapper blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #ecf0f1;border-left:0;text-align:right}.sgpb-wrapper .blockquote-reverse footer:before,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
.sgpb-wrapper blockquote.pull-right footer:before,
|
248 |
.sgpb-wrapper .blockquote-reverse small:before,
|
249 |
.sgpb-wrapper blockquote.pull-right small:before,
|
250 |
.sgpb-wrapper .blockquote-reverse .small:before,
|
251 |
+
.sgpb-wrapper blockquote.pull-right .small:before{content:''}.sgpb-wrapper .blockquote-reverse footer:after,
|
|
|
|
|
|
|
252 |
.sgpb-wrapper blockquote.pull-right footer:after,
|
253 |
.sgpb-wrapper .blockquote-reverse small:after,
|
254 |
.sgpb-wrapper blockquote.pull-right small:after,
|
255 |
.sgpb-wrapper .blockquote-reverse .small:after,
|
256 |
+
.sgpb-wrapper blockquote.pull-right .small:after{content:'\00A0 \2014'}.sgpb-wrapper
|
257 |
+
address{margin-bottom:21px;font-style:normal;line-height:1.42857143}.sgpb-wrapper code,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
.sgpb-wrapper kbd,
|
259 |
.sgpb-wrapper pre,
|
260 |
+
.sgpb-wrapper
|
261 |
+
samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}.sgpb-wrapper
|
262 |
+
code{padding:2px
|
263 |
+
4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}.sgpb-wrapper
|
264 |
+
kbd{padding:2px
|
265 |
+
4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.25);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.25)}.sgpb-wrapper kbd
|
266 |
+
kbd{padding:0;font-size:100%;font-weight:bold;-webkit-box-shadow:none;box-shadow:none}.sgpb-wrapper
|
267 |
+
pre{display:block;padding:10px;margin:0
|
268 |
+
0 10.5px;font-size:14px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#7b8a8b;background-color:#ecf0f1;border:1px
|
269 |
+
solid #ccc;border-radius:4px}.sgpb-wrapper pre
|
270 |
+
code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.sgpb-wrapper .pre-scrollable{max-height:340px;overflow-y:scroll}.sgpb-wrapper
|
271 |
+
.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width: 768px){.sgpb-wrapper
|
272 |
+
.container{width:750px}}@media (min-width: 992px){.sgpb-wrapper
|
273 |
+
.container{width:970px}}@media (min-width: 1200px){.sgpb-wrapper
|
274 |
+
.container{width:1170px}}.sgpb-wrapper .container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.sgpb-wrapper
|
275 |
+
.row{margin-left:-15px;margin-right:-15px}.sgpb-wrapper .col-xs-1,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
276 |
.sgpb-wrapper .col-sm-1,
|
277 |
.sgpb-wrapper .col-md-1,
|
278 |
.sgpb-wrapper .col-lg-1,
|
319 |
.sgpb-wrapper .col-xs-12,
|
320 |
.sgpb-wrapper .col-sm-12,
|
321 |
.sgpb-wrapper .col-md-12,
|
322 |
+
.sgpb-wrapper .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.sgpb-wrapper .col-xs-1,
|
|
|
|
|
|
|
|
|
|
|
|
|
323 |
.sgpb-wrapper .col-xs-2,
|
324 |
.sgpb-wrapper .col-xs-3,
|
325 |
.sgpb-wrapper .col-xs-4,
|
330 |
.sgpb-wrapper .col-xs-9,
|
331 |
.sgpb-wrapper .col-xs-10,
|
332 |
.sgpb-wrapper .col-xs-11,
|
333 |
+
.sgpb-wrapper .col-xs-12{float:left}.sgpb-wrapper .col-xs-12{width:100%}.sgpb-wrapper .col-xs-11{width:91.66666667%}.sgpb-wrapper .col-xs-10{width:83.33333333%}.sgpb-wrapper .col-xs-9{width:75%}.sgpb-wrapper .col-xs-8{width:66.66666667%}.sgpb-wrapper .col-xs-7{width:58.33333333%}.sgpb-wrapper .col-xs-6{width:50%}.sgpb-wrapper .col-xs-5{width:41.66666667%}.sgpb-wrapper .col-xs-4{width:33.33333333%}.sgpb-wrapper .col-xs-3{width:25%}.sgpb-wrapper .col-xs-2{width:16.66666667%}.sgpb-wrapper .col-xs-1{width:8.33333333%}.sgpb-wrapper .col-xs-pull-12{right:100%}.sgpb-wrapper .col-xs-pull-11{right:91.66666667%}.sgpb-wrapper .col-xs-pull-10{right:83.33333333%}.sgpb-wrapper .col-xs-pull-9{right:75%}.sgpb-wrapper .col-xs-pull-8{right:66.66666667%}.sgpb-wrapper .col-xs-pull-7{right:58.33333333%}.sgpb-wrapper .col-xs-pull-6{right:50%}.sgpb-wrapper .col-xs-pull-5{right:41.66666667%}.sgpb-wrapper .col-xs-pull-4{right:33.33333333%}.sgpb-wrapper .col-xs-pull-3{right:25%}.sgpb-wrapper .col-xs-pull-2{right:16.66666667%}.sgpb-wrapper .col-xs-pull-1{right:8.33333333%}.sgpb-wrapper .col-xs-pull-0{right:auto}.sgpb-wrapper .col-xs-push-12{left:100%}.sgpb-wrapper .col-xs-push-11{left:91.66666667%}.sgpb-wrapper .col-xs-push-10{left:83.33333333%}.sgpb-wrapper .col-xs-push-9{left:75%}.sgpb-wrapper .col-xs-push-8{left:66.66666667%}.sgpb-wrapper .col-xs-push-7{left:58.33333333%}.sgpb-wrapper .col-xs-push-6{left:50%}.sgpb-wrapper .col-xs-push-5{left:41.66666667%}.sgpb-wrapper .col-xs-push-4{left:33.33333333%}.sgpb-wrapper .col-xs-push-3{left:25%}.sgpb-wrapper .col-xs-push-2{left:16.66666667%}.sgpb-wrapper .col-xs-push-1{left:8.33333333%}.sgpb-wrapper .col-xs-push-0{left:auto}.sgpb-wrapper .col-xs-offset-12{margin-left:100%}.sgpb-wrapper .col-xs-offset-11{margin-left:91.66666667%}.sgpb-wrapper .col-xs-offset-10{margin-left:83.33333333%}.sgpb-wrapper .col-xs-offset-9{margin-left:75%}.sgpb-wrapper .col-xs-offset-8{margin-left:66.66666667%}.sgpb-wrapper .col-xs-offset-7{margin-left:58.33333333%}.sgpb-wrapper .col-xs-offset-6{margin-left:50%}.sgpb-wrapper .col-xs-offset-5{margin-left:41.66666667%}.sgpb-wrapper .col-xs-offset-4{margin-left:33.33333333%}.sgpb-wrapper .col-xs-offset-3{margin-left:25%}.sgpb-wrapper .col-xs-offset-2{margin-left:16.66666667%}.sgpb-wrapper .col-xs-offset-1{margin-left:8.33333333%}.sgpb-wrapper .col-xs-offset-0{margin-left:0%}@media (min-width: 768px){.sgpb-wrapper .col-sm-1,
|
334 |
+
.sgpb-wrapper .col-sm-2,
|
335 |
+
.sgpb-wrapper .col-sm-3,
|
336 |
+
.sgpb-wrapper .col-sm-4,
|
337 |
+
.sgpb-wrapper .col-sm-5,
|
338 |
+
.sgpb-wrapper .col-sm-6,
|
339 |
+
.sgpb-wrapper .col-sm-7,
|
340 |
+
.sgpb-wrapper .col-sm-8,
|
341 |
+
.sgpb-wrapper .col-sm-9,
|
342 |
+
.sgpb-wrapper .col-sm-10,
|
343 |
+
.sgpb-wrapper .col-sm-11,
|
344 |
+
.sgpb-wrapper .col-sm-12{float:left}.sgpb-wrapper .col-sm-12{width:100%}.sgpb-wrapper .col-sm-11{width:91.66666667%}.sgpb-wrapper .col-sm-10{width:83.33333333%}.sgpb-wrapper .col-sm-9{width:75%}.sgpb-wrapper .col-sm-8{width:66.66666667%}.sgpb-wrapper .col-sm-7{width:58.33333333%}.sgpb-wrapper .col-sm-6{width:50%}.sgpb-wrapper .col-sm-5{width:41.66666667%}.sgpb-wrapper .col-sm-4{width:33.33333333%}.sgpb-wrapper .col-sm-3{width:25%}.sgpb-wrapper .col-sm-2{width:16.66666667%}.sgpb-wrapper .col-sm-1{width:8.33333333%}.sgpb-wrapper .col-sm-pull-12{right:100%}.sgpb-wrapper .col-sm-pull-11{right:91.66666667%}.sgpb-wrapper .col-sm-pull-10{right:83.33333333%}.sgpb-wrapper .col-sm-pull-9{right:75%}.sgpb-wrapper .col-sm-pull-8{right:66.66666667%}.sgpb-wrapper .col-sm-pull-7{right:58.33333333%}.sgpb-wrapper .col-sm-pull-6{right:50%}.sgpb-wrapper .col-sm-pull-5{right:41.66666667%}.sgpb-wrapper .col-sm-pull-4{right:33.33333333%}.sgpb-wrapper .col-sm-pull-3{right:25%}.sgpb-wrapper .col-sm-pull-2{right:16.66666667%}.sgpb-wrapper .col-sm-pull-1{right:8.33333333%}.sgpb-wrapper .col-sm-pull-0{right:auto}.sgpb-wrapper .col-sm-push-12{left:100%}.sgpb-wrapper .col-sm-push-11{left:91.66666667%}.sgpb-wrapper .col-sm-push-10{left:83.33333333%}.sgpb-wrapper .col-sm-push-9{left:75%}.sgpb-wrapper .col-sm-push-8{left:66.66666667%}.sgpb-wrapper .col-sm-push-7{left:58.33333333%}.sgpb-wrapper .col-sm-push-6{left:50%}.sgpb-wrapper .col-sm-push-5{left:41.66666667%}.sgpb-wrapper .col-sm-push-4{left:33.33333333%}.sgpb-wrapper .col-sm-push-3{left:25%}.sgpb-wrapper .col-sm-push-2{left:16.66666667%}.sgpb-wrapper .col-sm-push-1{left:8.33333333%}.sgpb-wrapper .col-sm-push-0{left:auto}.sgpb-wrapper .col-sm-offset-12{margin-left:100%}.sgpb-wrapper .col-sm-offset-11{margin-left:91.66666667%}.sgpb-wrapper .col-sm-offset-10{margin-left:83.33333333%}.sgpb-wrapper .col-sm-offset-9{margin-left:75%}.sgpb-wrapper .col-sm-offset-8{margin-left:66.66666667%}.sgpb-wrapper .col-sm-offset-7{margin-left:58.33333333%}.sgpb-wrapper .col-sm-offset-6{margin-left:50%}.sgpb-wrapper .col-sm-offset-5{margin-left:41.66666667%}.sgpb-wrapper .col-sm-offset-4{margin-left:33.33333333%}.sgpb-wrapper .col-sm-offset-3{margin-left:25%}.sgpb-wrapper .col-sm-offset-2{margin-left:16.66666667%}.sgpb-wrapper .col-sm-offset-1{margin-left:8.33333333%}.sgpb-wrapper .col-sm-offset-0{margin-left:0%}}@media (min-width: 992px){.sgpb-wrapper .col-md-1,
|
345 |
+
.sgpb-wrapper .col-md-2,
|
346 |
+
.sgpb-wrapper .col-md-3,
|
347 |
+
.sgpb-wrapper .col-md-4,
|
348 |
+
.sgpb-wrapper .col-md-5,
|
349 |
+
.sgpb-wrapper .col-md-6,
|
350 |
+
.sgpb-wrapper .col-md-7,
|
351 |
+
.sgpb-wrapper .col-md-8,
|
352 |
+
.sgpb-wrapper .col-md-9,
|
353 |
+
.sgpb-wrapper .col-md-10,
|
354 |
+
.sgpb-wrapper .col-md-11,
|
355 |
+
.sgpb-wrapper .col-md-12{float:left}.sgpb-wrapper .col-md-12{width:100%}.sgpb-wrapper .col-md-11{width:91.66666667%}.sgpb-wrapper .col-md-10{width:83.33333333%}.sgpb-wrapper .col-md-9{width:75%}.sgpb-wrapper .col-md-8{width:66.66666667%}.sgpb-wrapper .col-md-7{width:58.33333333%}.sgpb-wrapper .col-md-6{width:50%}.sgpb-wrapper .col-md-5{width:41.66666667%}.sgpb-wrapper .col-md-4{width:33.33333333%}.sgpb-wrapper .col-md-3{width:25%}.sgpb-wrapper .col-md-2{width:16.66666667%}.sgpb-wrapper .col-md-1{width:8.33333333%}.sgpb-wrapper .col-md-pull-12{right:100%}.sgpb-wrapper .col-md-pull-11{right:91.66666667%}.sgpb-wrapper .col-md-pull-10{right:83.33333333%}.sgpb-wrapper .col-md-pull-9{right:75%}.sgpb-wrapper .col-md-pull-8{right:66.66666667%}.sgpb-wrapper .col-md-pull-7{right:58.33333333%}.sgpb-wrapper .col-md-pull-6{right:50%}.sgpb-wrapper .col-md-pull-5{right:41.66666667%}.sgpb-wrapper .col-md-pull-4{right:33.33333333%}.sgpb-wrapper .col-md-pull-3{right:25%}.sgpb-wrapper .col-md-pull-2{right:16.66666667%}.sgpb-wrapper .col-md-pull-1{right:8.33333333%}.sgpb-wrapper .col-md-pull-0{right:auto}.sgpb-wrapper .col-md-push-12{left:100%}.sgpb-wrapper .col-md-push-11{left:91.66666667%}.sgpb-wrapper .col-md-push-10{left:83.33333333%}.sgpb-wrapper .col-md-push-9{left:75%}.sgpb-wrapper .col-md-push-8{left:66.66666667%}.sgpb-wrapper .col-md-push-7{left:58.33333333%}.sgpb-wrapper .col-md-push-6{left:50%}.sgpb-wrapper .col-md-push-5{left:41.66666667%}.sgpb-wrapper .col-md-push-4{left:33.33333333%}.sgpb-wrapper .col-md-push-3{left:25%}.sgpb-wrapper .col-md-push-2{left:16.66666667%}.sgpb-wrapper .col-md-push-1{left:8.33333333%}.sgpb-wrapper .col-md-push-0{left:auto}.sgpb-wrapper .col-md-offset-12{margin-left:100%}.sgpb-wrapper .col-md-offset-11{margin-left:91.66666667%}.sgpb-wrapper .col-md-offset-10{margin-left:83.33333333%}.sgpb-wrapper .col-md-offset-9{margin-left:75%}.sgpb-wrapper .col-md-offset-8{margin-left:66.66666667%}.sgpb-wrapper .col-md-offset-7{margin-left:58.33333333%}.sgpb-wrapper .col-md-offset-6{margin-left:50%}.sgpb-wrapper .col-md-offset-5{margin-left:41.66666667%}.sgpb-wrapper .col-md-offset-4{margin-left:33.33333333%}.sgpb-wrapper .col-md-offset-3{margin-left:25%}.sgpb-wrapper .col-md-offset-2{margin-left:16.66666667%}.sgpb-wrapper .col-md-offset-1{margin-left:8.33333333%}.sgpb-wrapper .col-md-offset-0{margin-left:0%}}@media (min-width: 1200px){.sgpb-wrapper .col-lg-1,
|
356 |
+
.sgpb-wrapper .col-lg-2,
|
357 |
+
.sgpb-wrapper .col-lg-3,
|
358 |
+
.sgpb-wrapper .col-lg-4,
|
359 |
+
.sgpb-wrapper .col-lg-5,
|
360 |
+
.sgpb-wrapper .col-lg-6,
|
361 |
+
.sgpb-wrapper .col-lg-7,
|
362 |
+
.sgpb-wrapper .col-lg-8,
|
363 |
+
.sgpb-wrapper .col-lg-9,
|
364 |
+
.sgpb-wrapper .col-lg-10,
|
365 |
+
.sgpb-wrapper .col-lg-11,
|
366 |
+
.sgpb-wrapper .col-lg-12{float:left}.sgpb-wrapper .col-lg-12{width:100%}.sgpb-wrapper .col-lg-11{width:91.66666667%}.sgpb-wrapper .col-lg-10{width:83.33333333%}.sgpb-wrapper .col-lg-9{width:75%}.sgpb-wrapper .col-lg-8{width:66.66666667%}.sgpb-wrapper .col-lg-7{width:58.33333333%}.sgpb-wrapper .col-lg-6{width:50%}.sgpb-wrapper .col-lg-5{width:41.66666667%}.sgpb-wrapper .col-lg-4{width:33.33333333%}.sgpb-wrapper .col-lg-3{width:25%}.sgpb-wrapper .col-lg-2{width:16.66666667%}.sgpb-wrapper .col-lg-1{width:8.33333333%}.sgpb-wrapper .col-lg-pull-12{right:100%}.sgpb-wrapper .col-lg-pull-11{right:91.66666667%}.sgpb-wrapper .col-lg-pull-10{right:83.33333333%}.sgpb-wrapper .col-lg-pull-9{right:75%}.sgpb-wrapper .col-lg-pull-8{right:66.66666667%}.sgpb-wrapper .col-lg-pull-7{right:58.33333333%}.sgpb-wrapper .col-lg-pull-6{right:50%}.sgpb-wrapper .col-lg-pull-5{right:41.66666667%}.sgpb-wrapper .col-lg-pull-4{right:33.33333333%}.sgpb-wrapper .col-lg-pull-3{right:25%}.sgpb-wrapper .col-lg-pull-2{right:16.66666667%}.sgpb-wrapper .col-lg-pull-1{right:8.33333333%}.sgpb-wrapper .col-lg-pull-0{right:auto}.sgpb-wrapper .col-lg-push-12{left:100%}.sgpb-wrapper .col-lg-push-11{left:91.66666667%}.sgpb-wrapper .col-lg-push-10{left:83.33333333%}.sgpb-wrapper .col-lg-push-9{left:75%}.sgpb-wrapper .col-lg-push-8{left:66.66666667%}.sgpb-wrapper .col-lg-push-7{left:58.33333333%}.sgpb-wrapper .col-lg-push-6{left:50%}.sgpb-wrapper .col-lg-push-5{left:41.66666667%}.sgpb-wrapper .col-lg-push-4{left:33.33333333%}.sgpb-wrapper .col-lg-push-3{left:25%}.sgpb-wrapper .col-lg-push-2{left:16.66666667%}.sgpb-wrapper .col-lg-push-1{left:8.33333333%}.sgpb-wrapper .col-lg-push-0{left:auto}.sgpb-wrapper .col-lg-offset-12{margin-left:100%}.sgpb-wrapper .col-lg-offset-11{margin-left:91.66666667%}.sgpb-wrapper .col-lg-offset-10{margin-left:83.33333333%}.sgpb-wrapper .col-lg-offset-9{margin-left:75%}.sgpb-wrapper .col-lg-offset-8{margin-left:66.66666667%}.sgpb-wrapper .col-lg-offset-7{margin-left:58.33333333%}.sgpb-wrapper .col-lg-offset-6{margin-left:50%}.sgpb-wrapper .col-lg-offset-5{margin-left:41.66666667%}.sgpb-wrapper .col-lg-offset-4{margin-left:33.33333333%}.sgpb-wrapper .col-lg-offset-3{margin-left:25%}.sgpb-wrapper .col-lg-offset-2{margin-left:16.66666667%}.sgpb-wrapper .col-lg-offset-1{margin-left:8.33333333%}.sgpb-wrapper .col-lg-offset-0{margin-left:0%}}.sgpb-wrapper
|
367 |
+
table{background-color:transparent}.sgpb-wrapper
|
368 |
+
caption{padding-top:8px;padding-bottom:8px;color:#b4bcc2;text-align:left}.sgpb-wrapper
|
369 |
+
th{text-align:left}.sgpb-wrapper
|
370 |
+
.table{width:100%;max-width:100%;margin-bottom:21px}.sgpb-wrapper .table > thead > tr > th,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
371 |
.sgpb-wrapper .table > tbody > tr > th,
|
372 |
.sgpb-wrapper .table > tfoot > tr > th,
|
373 |
.sgpb-wrapper .table > thead > tr > td,
|
374 |
.sgpb-wrapper .table > tbody > tr > td,
|
375 |
+
.sgpb-wrapper .table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ecf0f1}.sgpb-wrapper .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ecf0f1}.sgpb-wrapper .table > caption + thead > tr:first-child > th,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
376 |
.sgpb-wrapper .table > colgroup + thead > tr:first-child > th,
|
377 |
.sgpb-wrapper .table > thead:first-child > tr:first-child > th,
|
378 |
.sgpb-wrapper .table > caption + thead > tr:first-child > td,
|
379 |
.sgpb-wrapper .table > colgroup + thead > tr:first-child > td,
|
380 |
+
.sgpb-wrapper .table>thead:first-child>tr:first-child>td{border-top:0}.sgpb-wrapper .table>tbody+tbody{border-top:2px solid #ecf0f1}.sgpb-wrapper .table
|
381 |
+
.table{background-color:#fff}.sgpb-wrapper .table-condensed > thead > tr > th,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
.sgpb-wrapper .table-condensed > tbody > tr > th,
|
383 |
.sgpb-wrapper .table-condensed > tfoot > tr > th,
|
384 |
.sgpb-wrapper .table-condensed > thead > tr > td,
|
385 |
.sgpb-wrapper .table-condensed > tbody > tr > td,
|
386 |
+
.sgpb-wrapper .table-condensed>tfoot>tr>td{padding:5px}.sgpb-wrapper .table-bordered{border:1px
|
387 |
+
solid #ecf0f1}.sgpb-wrapper .table-bordered > thead > tr > th,
|
|
|
|
|
|
|
|
|
|
|
388 |
.sgpb-wrapper .table-bordered > tbody > tr > th,
|
389 |
.sgpb-wrapper .table-bordered > tfoot > tr > th,
|
390 |
.sgpb-wrapper .table-bordered > thead > tr > td,
|
391 |
.sgpb-wrapper .table-bordered > tbody > tr > td,
|
392 |
+
.sgpb-wrapper .table-bordered>tfoot>tr>td{border:1px
|
393 |
+
solid #ecf0f1}.sgpb-wrapper .table-bordered > thead > tr > th,
|
394 |
+
.sgpb-wrapper .table-bordered>thead>tr>td{border-bottom-width:2px}.sgpb-wrapper .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.sgpb-wrapper .table-hover>tbody>tr:hover{background-color:#ecf0f1}.sgpb-wrapper table col[class*="col-"]{position:static;float:none;display:table-column}.sgpb-wrapper table td[class*="col-"],
|
395 |
+
.sgpb-wrapper table th[class*="col-"]{position:static;float:none;display:table-cell}.sgpb-wrapper .table > thead > tr > td.active,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
.sgpb-wrapper .table > tbody > tr > td.active,
|
397 |
.sgpb-wrapper .table > tfoot > tr > td.active,
|
398 |
.sgpb-wrapper .table > thead > tr > th.active,
|
403 |
.sgpb-wrapper .table > tfoot > tr.active > td,
|
404 |
.sgpb-wrapper .table > thead > tr.active > th,
|
405 |
.sgpb-wrapper .table > tbody > tr.active > th,
|
406 |
+
.sgpb-wrapper .table>tfoot>tr.active>th{background-color:#ecf0f1}.sgpb-wrapper .table-hover > tbody > tr > td.active:hover,
|
|
|
|
|
|
|
407 |
.sgpb-wrapper .table-hover > tbody > tr > th.active:hover,
|
408 |
.sgpb-wrapper .table-hover > tbody > tr.active:hover > td,
|
409 |
.sgpb-wrapper .table-hover > tbody > tr:hover > .active,
|
410 |
+
.sgpb-wrapper .table-hover>tbody>tr.active:hover>th{background-color:#dde4e6}.sgpb-wrapper .table > thead > tr > td.success,
|
|
|
|
|
|
|
411 |
.sgpb-wrapper .table > tbody > tr > td.success,
|
412 |
.sgpb-wrapper .table > tfoot > tr > td.success,
|
413 |
.sgpb-wrapper .table > thead > tr > th.success,
|
418 |
.sgpb-wrapper .table > tfoot > tr.success > td,
|
419 |
.sgpb-wrapper .table > thead > tr.success > th,
|
420 |
.sgpb-wrapper .table > tbody > tr.success > th,
|
421 |
+
.sgpb-wrapper .table>tfoot>tr.success>th{background-color:#18bc9c}.sgpb-wrapper .table-hover > tbody > tr > td.success:hover,
|
|
|
|
|
|
|
422 |
.sgpb-wrapper .table-hover > tbody > tr > th.success:hover,
|
423 |
.sgpb-wrapper .table-hover > tbody > tr.success:hover > td,
|
424 |
.sgpb-wrapper .table-hover > tbody > tr:hover > .success,
|
425 |
+
.sgpb-wrapper .table-hover>tbody>tr.success:hover>th{background-color:#15a589}.sgpb-wrapper .table > thead > tr > td.info,
|
|
|
|
|
|
|
426 |
.sgpb-wrapper .table > tbody > tr > td.info,
|
427 |
.sgpb-wrapper .table > tfoot > tr > td.info,
|
428 |
.sgpb-wrapper .table > thead > tr > th.info,
|
433 |
.sgpb-wrapper .table > tfoot > tr.info > td,
|
434 |
.sgpb-wrapper .table > thead > tr.info > th,
|
435 |
.sgpb-wrapper .table > tbody > tr.info > th,
|
436 |
+
.sgpb-wrapper .table>tfoot>tr.info>th{background-color:#3498db}.sgpb-wrapper .table-hover > tbody > tr > td.info:hover,
|
|
|
|
|
|
|
437 |
.sgpb-wrapper .table-hover > tbody > tr > th.info:hover,
|
438 |
.sgpb-wrapper .table-hover > tbody > tr.info:hover > td,
|
439 |
.sgpb-wrapper .table-hover > tbody > tr:hover > .info,
|
440 |
+
.sgpb-wrapper .table-hover>tbody>tr.info:hover>th{background-color:#258cd1}.sgpb-wrapper .table > thead > tr > td.warning,
|
|
|
|
|
|
|
441 |
.sgpb-wrapper .table > tbody > tr > td.warning,
|
442 |
.sgpb-wrapper .table > tfoot > tr > td.warning,
|
443 |
.sgpb-wrapper .table > thead > tr > th.warning,
|
448 |
.sgpb-wrapper .table > tfoot > tr.warning > td,
|
449 |
.sgpb-wrapper .table > thead > tr.warning > th,
|
450 |
.sgpb-wrapper .table > tbody > tr.warning > th,
|
451 |
+
.sgpb-wrapper .table>tfoot>tr.warning>th{background-color:#f39c12}.sgpb-wrapper .table-hover > tbody > tr > td.warning:hover,
|
|
|
|
|
|
|
452 |
.sgpb-wrapper .table-hover > tbody > tr > th.warning:hover,
|
453 |
.sgpb-wrapper .table-hover > tbody > tr.warning:hover > td,
|
454 |
.sgpb-wrapper .table-hover > tbody > tr:hover > .warning,
|
455 |
+
.sgpb-wrapper .table-hover>tbody>tr.warning:hover>th{background-color:#e08e0b}.sgpb-wrapper .table > thead > tr > td.danger,
|
|
|
|
|
|
|
456 |
.sgpb-wrapper .table > tbody > tr > td.danger,
|
457 |
.sgpb-wrapper .table > tfoot > tr > td.danger,
|
458 |
.sgpb-wrapper .table > thead > tr > th.danger,
|
463 |
.sgpb-wrapper .table > tfoot > tr.danger > td,
|
464 |
.sgpb-wrapper .table > thead > tr.danger > th,
|
465 |
.sgpb-wrapper .table > tbody > tr.danger > th,
|
466 |
+
.sgpb-wrapper .table>tfoot>tr.danger>th{background-color:#e74c3c}.sgpb-wrapper .table-hover > tbody > tr > td.danger:hover,
|
|
|
|
|
|
|
467 |
.sgpb-wrapper .table-hover > tbody > tr > th.danger:hover,
|
468 |
.sgpb-wrapper .table-hover > tbody > tr.danger:hover > td,
|
469 |
.sgpb-wrapper .table-hover > tbody > tr:hover > .danger,
|
470 |
+
.sgpb-wrapper .table-hover>tbody>tr.danger:hover>th{background-color:#e43725}.sgpb-wrapper .table-responsive{overflow-x:auto;min-height:0.01%}@media screen and (max-width: 767px){.sgpb-wrapper .table-responsive{width:100%;margin-bottom:15.75px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px
|
471 |
+
solid #ecf0f1}.sgpb-wrapper .table-responsive>.table{margin-bottom:0}.sgpb-wrapper .table-responsive > .table > thead > tr > th,
|
472 |
+
.sgpb-wrapper .table-responsive > .table > tbody > tr > th,
|
473 |
+
.sgpb-wrapper .table-responsive > .table > tfoot > tr > th,
|
474 |
+
.sgpb-wrapper .table-responsive > .table > thead > tr > td,
|
475 |
+
.sgpb-wrapper .table-responsive > .table > tbody > tr > td,
|
476 |
+
.sgpb-wrapper .table-responsive>.table>tfoot>tr>td{white-space:nowrap}.sgpb-wrapper .table-responsive>.table-bordered{border:0}.sgpb-wrapper .table-responsive > .table-bordered > thead > tr > th:first-child,
|
477 |
+
.sgpb-wrapper .table-responsive > .table-bordered > tbody > tr > th:first-child,
|
478 |
+
.sgpb-wrapper .table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
479 |
+
.sgpb-wrapper .table-responsive > .table-bordered > thead > tr > td:first-child,
|
480 |
+
.sgpb-wrapper .table-responsive > .table-bordered > tbody > tr > td:first-child,
|
481 |
+
.sgpb-wrapper .table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.sgpb-wrapper .table-responsive > .table-bordered > thead > tr > th:last-child,
|
482 |
+
.sgpb-wrapper .table-responsive > .table-bordered > tbody > tr > th:last-child,
|
483 |
+
.sgpb-wrapper .table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
484 |
+
.sgpb-wrapper .table-responsive > .table-bordered > thead > tr > td:last-child,
|
485 |
+
.sgpb-wrapper .table-responsive > .table-bordered > tbody > tr > td:last-child,
|
486 |
+
.sgpb-wrapper .table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.sgpb-wrapper .table-responsive > .table-bordered > tbody > tr:last-child > th,
|
487 |
+
.sgpb-wrapper .table-responsive > .table-bordered > tfoot > tr:last-child > th,
|
488 |
+
.sgpb-wrapper .table-responsive > .table-bordered > tbody > tr:last-child > td,
|
489 |
+
.sgpb-wrapper .table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}.sgpb-wrapper
|
490 |
+
fieldset{padding:0;margin:0;border:0;min-width:0}.sgpb-wrapper
|
491 |
+
legend{display:block;width:100%;padding:0;margin-bottom:21px;font-size:22.5px;line-height:inherit;color:#2c3e50;border:0;border-bottom:1px solid transparent}.sgpb-wrapper
|
492 |
+
label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}.sgpb-wrapper input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sgpb-wrapper input[type="radio"],
|
493 |
+
.sgpb-wrapper input[type="checkbox"]{margin:4px
|
494 |
+
0 0;margin-top:1px \9;line-height:normal}.sgpb-wrapper input[type="file"]{display:block}.sgpb-wrapper input[type="range"]{display:block;width:100%}.sgpb-wrapper select[multiple],
|
495 |
+
.sgpb-wrapper select[size]{height:auto}.sgpb-wrapper input[type="file"]:focus,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
496 |
.sgpb-wrapper input[type="radio"]:focus,
|
497 |
+
.sgpb-wrapper input[type="checkbox"]:focus{outline:5px
|
498 |
+
auto -webkit-focus-ring-color;outline-offset:-2px}.sgpb-wrapper
|
499 |
+
output{display:block;padding-top:11px;font-size:15px;line-height:1.42857143;color:#2c3e50}.sgpb-wrapper .form-control{display:block;width:100%;height:45px;padding:10px
|
500 |
+
15px;font-size:15px;line-height:1.42857143;color:#2c3e50;background-color:#fff;background-image:none;border:1px
|
501 |
+
solid #dce4ec;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;-o-transition:border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;transition:border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s}.sgpb-wrapper .form-control:focus{border-color:#2c3e50;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(44, 62, 80, 0.6);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(44, 62, 80, 0.6)}.sgpb-wrapper .form-control::-moz-placeholder{color:#acb6c0;opacity:1}.sgpb-wrapper .form-control:-ms-input-placeholder{color:#acb6c0}.sgpb-wrapper .form-control::-webkit-input-placeholder{color:#acb6c0}.sgpb-wrapper .form-control::-ms-expand{border:0;background-color:transparent}.sgpb-wrapper .form-control[disabled],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
502 |
.sgpb-wrapper .form-control[readonly],
|
503 |
+
.sgpb-wrapper fieldset[disabled] .form-control{background-color:#ecf0f1;opacity:1}.sgpb-wrapper .form-control[disabled],
|
504 |
+
.sgpb-wrapper fieldset[disabled] .form-control{cursor:not-allowed}.sgpb-wrapper textarea.form-control{height:auto}.sgpb-wrapper input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio: 0){.sgpb-wrapper input[type="date"].form-control,
|
505 |
+
.sgpb-wrapper input[type="time"].form-control,
|
506 |
+
.sgpb-wrapper input[type="datetime-local"].form-control,
|
507 |
+
.sgpb-wrapper input[type="month"].form-control{line-height:45px}.sgpb-wrapper input[type="date"].input-sm,
|
508 |
+
.sgpb-wrapper input[type="time"].input-sm,
|
509 |
+
.sgpb-wrapper input[type="datetime-local"].input-sm,
|
510 |
+
.sgpb-wrapper input[type="month"].input-sm,
|
511 |
+
.sgpb-wrapper .input-group-sm input[type="date"],
|
512 |
+
.sgpb-wrapper .input-group-sm input[type="time"],
|
513 |
+
.sgpb-wrapper .input-group-sm input[type="datetime-local"],
|
514 |
+
.sgpb-wrapper .input-group-sm input[type="month"]{line-height:35px}.sgpb-wrapper input[type="date"].input-lg,
|
515 |
+
.sgpb-wrapper input[type="time"].input-lg,
|
516 |
+
.sgpb-wrapper input[type="datetime-local"].input-lg,
|
517 |
+
.sgpb-wrapper input[type="month"].input-lg,
|
518 |
+
.sgpb-wrapper .input-group-lg input[type="date"],
|
519 |
+
.sgpb-wrapper .input-group-lg input[type="time"],
|
520 |
+
.sgpb-wrapper .input-group-lg input[type="datetime-local"],
|
521 |
+
.sgpb-wrapper .input-group-lg input[type="month"]{line-height:66px}}.sgpb-wrapper .form-group{margin-bottom:15px}.sgpb-wrapper .radio,
|
522 |
+
.sgpb-wrapper
|
523 |
+
.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.sgpb-wrapper .radio label,
|
524 |
+
.sgpb-wrapper .checkbox
|
525 |
+
label{min-height:21px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.sgpb-wrapper .radio input[type="radio"],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
526 |
.sgpb-wrapper .radio-inline input[type="radio"],
|
527 |
.sgpb-wrapper .checkbox input[type="checkbox"],
|
528 |
+
.sgpb-wrapper .checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.sgpb-wrapper .radio + .radio,
|
529 |
+
.sgpb-wrapper .checkbox+.checkbox{margin-top:-5px}.sgpb-wrapper .radio-inline,
|
530 |
+
.sgpb-wrapper .checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.sgpb-wrapper .radio-inline + .radio-inline,
|
531 |
+
.sgpb-wrapper .checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}.sgpb-wrapper input[type="radio"][disabled],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
532 |
.sgpb-wrapper input[type="checkbox"][disabled],
|
533 |
.sgpb-wrapper input[type="radio"].disabled,
|
534 |
.sgpb-wrapper input[type="checkbox"].disabled,
|
535 |
.sgpb-wrapper fieldset[disabled] input[type="radio"],
|
536 |
+
.sgpb-wrapper fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.sgpb-wrapper .radio-inline.disabled,
|
|
|
|
|
|
|
537 |
.sgpb-wrapper .checkbox-inline.disabled,
|
538 |
.sgpb-wrapper fieldset[disabled] .radio-inline,
|
539 |
+
.sgpb-wrapper fieldset[disabled] .checkbox-inline{cursor:not-allowed}.sgpb-wrapper .radio.disabled label,
|
|
|
|
|
|
|
540 |
.sgpb-wrapper .checkbox.disabled label,
|
541 |
.sgpb-wrapper fieldset[disabled] .radio label,
|
542 |
+
.sgpb-wrapper fieldset[disabled] .checkbox
|
543 |
+
label{cursor:not-allowed}.sgpb-wrapper .form-control-static{padding-top:11px;padding-bottom:11px;margin-bottom:0;min-height:36px}.sgpb-wrapper .form-control-static.input-lg,
|
544 |
+
.sgpb-wrapper .form-control-static.input-sm{padding-left:0;padding-right:0}.sgpb-wrapper .input-sm{height:35px;padding:6px
|
545 |
+
9px;font-size:13px;line-height:1.5;border-radius:3px}.sgpb-wrapper select.input-sm{height:35px;line-height:35px}.sgpb-wrapper textarea.input-sm,
|
546 |
+
.sgpb-wrapper select[multiple].input-sm{height:auto}.sgpb-wrapper .form-group-sm .form-control{height:35px;padding:6px
|
547 |
+
9px;font-size:13px;line-height:1.5;border-radius:3px}.sgpb-wrapper .form-group-sm select.form-control{height:35px;line-height:35px}.sgpb-wrapper .form-group-sm textarea.form-control,
|
548 |
+
.sgpb-wrapper .form-group-sm select[multiple].form-control{height:auto}.sgpb-wrapper .form-group-sm .form-control-static{height:35px;min-height:34px;padding:7px
|
549 |
+
9px;font-size:13px;line-height:1.5}.sgpb-wrapper .input-lg{height:66px;padding:18px
|
550 |
+
27px;font-size:19px;line-height:1.3333333;border-radius:6px}.sgpb-wrapper select.input-lg{height:66px;line-height:66px}.sgpb-wrapper textarea.input-lg,
|
551 |
+
.sgpb-wrapper select[multiple].input-lg{height:auto}.sgpb-wrapper .form-group-lg .form-control{height:66px;padding:18px
|
552 |
+
27px;font-size:19px;line-height:1.3333333;border-radius:6px}.sgpb-wrapper .form-group-lg select.form-control{height:66px;line-height:66px}.sgpb-wrapper .form-group-lg textarea.form-control,
|
553 |
+
.sgpb-wrapper .form-group-lg select[multiple].form-control{height:auto}.sgpb-wrapper .form-group-lg .form-control-static{height:66px;min-height:40px;padding:19px
|
554 |
+
27px;font-size:19px;line-height:1.3333333}.sgpb-wrapper .has-feedback{position:relative}.sgpb-wrapper .has-feedback .form-control{padding-right:56.25px}.sgpb-wrapper .form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:45px;height:45px;line-height:45px;text-align:center;pointer-events:none}.sgpb-wrapper .input-lg + .form-control-feedback,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
555 |
.sgpb-wrapper .input-group-lg + .form-control-feedback,
|
556 |
+
.sgpb-wrapper .form-group-lg .form-control+.form-control-feedback{width:66px;height:66px;line-height:66px}.sgpb-wrapper .input-sm + .form-control-feedback,
|
|
|
|
|
|
|
|
|
|
|
557 |
.sgpb-wrapper .input-group-sm + .form-control-feedback,
|
558 |
+
.sgpb-wrapper .form-group-sm .form-control+.form-control-feedback{width:35px;height:35px;line-height:35px}.sgpb-wrapper .has-success .help-block,
|
|
|
|
|
|
|
|
|
|
|
559 |
.sgpb-wrapper .has-success .control-label,
|
560 |
.sgpb-wrapper .has-success .radio,
|
561 |
.sgpb-wrapper .has-success .checkbox,
|
564 |
.sgpb-wrapper .has-success.radio label,
|
565 |
.sgpb-wrapper .has-success.checkbox label,
|
566 |
.sgpb-wrapper .has-success.radio-inline label,
|
567 |
+
.sgpb-wrapper .has-success.checkbox-inline
|
568 |
+
label{color:#fff}.sgpb-wrapper .has-success .form-control{border-color:#fff;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075)}.sgpb-wrapper .has-success .form-control:focus{border-color:#e6e6e6;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #fff;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #fff}.sgpb-wrapper .has-success .input-group-addon{color:#fff;border-color:#fff;background-color:#18bc9c}.sgpb-wrapper .has-success .form-control-feedback{color:#fff}.sgpb-wrapper .has-warning .help-block,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
569 |
.sgpb-wrapper .has-warning .control-label,
|
570 |
.sgpb-wrapper .has-warning .radio,
|
571 |
.sgpb-wrapper .has-warning .checkbox,
|
574 |
.sgpb-wrapper .has-warning.radio label,
|
575 |
.sgpb-wrapper .has-warning.checkbox label,
|
576 |
.sgpb-wrapper .has-warning.radio-inline label,
|
577 |
+
.sgpb-wrapper .has-warning.checkbox-inline
|
578 |
+
label{color:#fff}.sgpb-wrapper .has-warning .form-control{border-color:#fff;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075)}.sgpb-wrapper .has-warning .form-control:focus{border-color:#e6e6e6;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #fff;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #fff}.sgpb-wrapper .has-warning .input-group-addon{color:#fff;border-color:#fff;background-color:#f39c12}.sgpb-wrapper .has-warning .form-control-feedback{color:#fff}.sgpb-wrapper .has-error .help-block,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
579 |
.sgpb-wrapper .has-error .control-label,
|
580 |
.sgpb-wrapper .has-error .radio,
|
581 |
.sgpb-wrapper .has-error .checkbox,
|
584 |
.sgpb-wrapper .has-error.radio label,
|
585 |
.sgpb-wrapper .has-error.checkbox label,
|
586 |
.sgpb-wrapper .has-error.radio-inline label,
|
587 |
+
.sgpb-wrapper .has-error.checkbox-inline
|
588 |
+
label{color:#fff}.sgpb-wrapper .has-error .form-control{border-color:#fff;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075)}.sgpb-wrapper .has-error .form-control:focus{border-color:#e6e6e6;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #fff;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #fff}.sgpb-wrapper .has-error .input-group-addon{color:#fff;border-color:#fff;background-color:#e74c3c}.sgpb-wrapper .has-error .form-control-feedback{color:#fff}.sgpb-wrapper .has-feedback label~.form-control-feedback{top:26px}.sgpb-wrapper .has-feedback label.sr-only~.form-control-feedback{top:0}.sgpb-wrapper .help-block{display:block;margin-top:5px;margin-bottom:10px;color:#597ea2}@media (min-width: 768px){.sgpb-wrapper .form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.sgpb-wrapper .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.sgpb-wrapper .form-inline .form-control-static{display:inline-block}.sgpb-wrapper .form-inline .input-group{display:inline-table;vertical-align:middle}.sgpb-wrapper .form-inline .input-group .input-group-addon,
|
589 |
+
.sgpb-wrapper .form-inline .input-group .input-group-btn,
|
590 |
+
.sgpb-wrapper .form-inline .input-group .form-control{width:auto}.sgpb-wrapper .form-inline .input-group>.form-control{width:100%}.sgpb-wrapper .form-inline .control-label{margin-bottom:0;vertical-align:middle}.sgpb-wrapper .form-inline .radio,
|
591 |
+
.sgpb-wrapper .form-inline
|
592 |
+
.checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.sgpb-wrapper .form-inline .radio label,
|
593 |
+
.sgpb-wrapper .form-inline .checkbox
|
594 |
+
label{padding-left:0}.sgpb-wrapper .form-inline .radio input[type="radio"],
|
595 |
+
.sgpb-wrapper .form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.sgpb-wrapper .form-inline .has-feedback .form-control-feedback{top:0}}.sgpb-wrapper .form-horizontal .radio,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
596 |
.sgpb-wrapper .form-horizontal .checkbox,
|
597 |
.sgpb-wrapper .form-horizontal .radio-inline,
|
598 |
+
.sgpb-wrapper .form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:11px}.sgpb-wrapper .form-horizontal .radio,
|
599 |
+
.sgpb-wrapper .form-horizontal
|
600 |
+
.checkbox{min-height:32px}.sgpb-wrapper .form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width: 768px){.sgpb-wrapper .form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:11px}}.sgpb-wrapper .form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width: 768px){.sgpb-wrapper .form-horizontal .form-group-lg .control-label{padding-top:19px;font-size:19px}}@media (min-width: 768px){.sgpb-wrapper .form-horizontal .form-group-sm .control-label{padding-top:7px;font-size:13px}}.sgpb-wrapper
|
601 |
+
.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px
|
602 |
+
solid transparent;white-space:nowrap;padding:10px
|
603 |
+
15px;font-size:15px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sgpb-wrapper .btn:focus,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
604 |
.sgpb-wrapper .btn:active:focus,
|
605 |
.sgpb-wrapper .btn.active:focus,
|
606 |
.sgpb-wrapper .btn.focus,
|
607 |
.sgpb-wrapper .btn:active.focus,
|
608 |
+
.sgpb-wrapper
|
609 |
+
.btn.active.focus{outline:5px
|
610 |
+
auto -webkit-focus-ring-color;outline-offset:-2px}.sgpb-wrapper .btn:hover,
|
|
|
|
|
611 |
.sgpb-wrapper .btn:focus,
|
612 |
+
.sgpb-wrapper
|
613 |
+
.btn.focus{color:#fff;text-decoration:none}.sgpb-wrapper .btn:active,
|
614 |
+
.sgpb-wrapper
|
615 |
+
.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125)}.sgpb-wrapper .btn.disabled,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
616 |
.sgpb-wrapper .btn[disabled],
|
617 |
+
.sgpb-wrapper fieldset[disabled] .btn{cursor:not-allowed;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.sgpb-wrapper a.btn.disabled,
|
618 |
+
.sgpb-wrapper fieldset[disabled] a.btn{pointer-events:none}.sgpb-wrapper .btn-default{color:#fff;background-color:#95a5a6;border-color:#95a5a6}.sgpb-wrapper .btn-default:focus,
|
619 |
+
.sgpb-wrapper .btn-default.focus{color:#fff;background-color:#798d8f;border-color:#566566}.sgpb-wrapper .btn-default:hover{color:#fff;background-color:#798d8f;border-color:#74898a}.sgpb-wrapper .btn-default:active,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
620 |
.sgpb-wrapper .btn-default.active,
|
621 |
+
.sgpb-wrapper .open>.dropdown-toggle.btn-default{color:#fff;background-color:#798d8f;border-color:#74898a}.sgpb-wrapper .btn-default:active:hover,
|
|
|
|
|
|
|
|
|
|
|
622 |
.sgpb-wrapper .btn-default.active:hover,
|
623 |
.sgpb-wrapper .open > .dropdown-toggle.btn-default:hover,
|
624 |
.sgpb-wrapper .btn-default:active:focus,
|
626 |
.sgpb-wrapper .open > .dropdown-toggle.btn-default:focus,
|
627 |
.sgpb-wrapper .btn-default:active.focus,
|
628 |
.sgpb-wrapper .btn-default.active.focus,
|
629 |
+
.sgpb-wrapper .open>.dropdown-toggle.btn-default.focus{color:#fff;background-color:#687b7c;border-color:#566566}.sgpb-wrapper .btn-default:active,
|
|
|
|
|
|
|
|
|
|
|
630 |
.sgpb-wrapper .btn-default.active,
|
631 |
+
.sgpb-wrapper .open>.dropdown-toggle.btn-default{background-image:none}.sgpb-wrapper .btn-default.disabled:hover,
|
|
|
|
|
|
|
632 |
.sgpb-wrapper .btn-default[disabled]:hover,
|
633 |
.sgpb-wrapper fieldset[disabled] .btn-default:hover,
|
634 |
.sgpb-wrapper .btn-default.disabled:focus,
|
636 |
.sgpb-wrapper fieldset[disabled] .btn-default:focus,
|
637 |
.sgpb-wrapper .btn-default.disabled.focus,
|
638 |
.sgpb-wrapper .btn-default[disabled].focus,
|
639 |
+
.sgpb-wrapper fieldset[disabled] .btn-default.focus{background-color:#95a5a6;border-color:#95a5a6}.sgpb-wrapper .btn-default
|
640 |
+
.badge{color:#95a5a6;background-color:#fff}.sgpb-wrapper .btn-primary{color:#fff;background-color:#2c3e50;border-color:#2c3e50}.sgpb-wrapper .btn-primary:focus,
|
641 |
+
.sgpb-wrapper .btn-primary.focus{color:#fff;background-color:#1a242f;border-color:#000}.sgpb-wrapper .btn-primary:hover{color:#fff;background-color:#1a242f;border-color:#161f29}.sgpb-wrapper .btn-primary:active,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
642 |
.sgpb-wrapper .btn-primary.active,
|
643 |
+
.sgpb-wrapper .open>.dropdown-toggle.btn-primary{color:#fff;background-color:#1a242f;border-color:#161f29}.sgpb-wrapper .btn-primary:active:hover,
|
|
|
|
|
|
|
|
|
|
|
644 |
.sgpb-wrapper .btn-primary.active:hover,
|
645 |
.sgpb-wrapper .open > .dropdown-toggle.btn-primary:hover,
|
646 |
.sgpb-wrapper .btn-primary:active:focus,
|
648 |
.sgpb-wrapper .open > .dropdown-toggle.btn-primary:focus,
|
649 |
.sgpb-wrapper .btn-primary:active.focus,
|
650 |
.sgpb-wrapper .btn-primary.active.focus,
|
651 |
+
.sgpb-wrapper .open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#0d1318;border-color:#000}.sgpb-wrapper .btn-primary:active,
|
|
|
|
|
|
|
|
|
|
|
652 |
.sgpb-wrapper .btn-primary.active,
|
653 |
+
.sgpb-wrapper .open>.dropdown-toggle.btn-primary{background-image:none}.sgpb-wrapper .btn-primary.disabled:hover,
|
|
|
|
|
|
|
654 |
.sgpb-wrapper .btn-primary[disabled]:hover,
|
655 |
.sgpb-wrapper fieldset[disabled] .btn-primary:hover,
|
656 |
.sgpb-wrapper .btn-primary.disabled:focus,
|
658 |
.sgpb-wrapper fieldset[disabled] .btn-primary:focus,
|
659 |
.sgpb-wrapper .btn-primary.disabled.focus,
|
660 |
.sgpb-wrapper .btn-primary[disabled].focus,
|
661 |
+
.sgpb-wrapper fieldset[disabled] .btn-primary.focus{background-color:#2c3e50;border-color:#2c3e50}.sgpb-wrapper .btn-primary
|
662 |
+
.badge{color:#2c3e50;background-color:#fff}.sgpb-wrapper .btn-success{color:#fff;background-color:#18bc9c;border-color:#18bc9c}.sgpb-wrapper .btn-success:focus,
|
663 |
+
.sgpb-wrapper .btn-success.focus{color:#fff;background-color:#128f76;border-color:#0a4b3e}.sgpb-wrapper .btn-success:hover{color:#fff;background-color:#128f76;border-color:#11866f}.sgpb-wrapper .btn-success:active,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
664 |
.sgpb-wrapper .btn-success.active,
|
665 |
+
.sgpb-wrapper .open>.dropdown-toggle.btn-success{color:#fff;background-color:#128f76;border-color:#11866f}.sgpb-wrapper .btn-success:active:hover,
|
|
|
|
|
|
|
|
|
|
|
666 |
.sgpb-wrapper .btn-success.active:hover,
|
667 |
.sgpb-wrapper .open > .dropdown-toggle.btn-success:hover,
|
668 |
.sgpb-wrapper .btn-success:active:focus,
|
670 |
.sgpb-wrapper .open > .dropdown-toggle.btn-success:focus,
|
671 |
.sgpb-wrapper .btn-success:active.focus,
|
672 |
.sgpb-wrapper .btn-success.active.focus,
|
673 |
+
.sgpb-wrapper .open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#0e6f5c;border-color:#0a4b3e}.sgpb-wrapper .btn-success:active,
|
|
|
|
|
|
|
|
|
|
|
674 |
.sgpb-wrapper .btn-success.active,
|
675 |
+
.sgpb-wrapper .open>.dropdown-toggle.btn-success{background-image:none}.sgpb-wrapper .btn-success.disabled:hover,
|
|
|
|
|
|
|
676 |
.sgpb-wrapper .btn-success[disabled]:hover,
|
677 |
.sgpb-wrapper fieldset[disabled] .btn-success:hover,
|
678 |
.sgpb-wrapper .btn-success.disabled:focus,
|
680 |
.sgpb-wrapper fieldset[disabled] .btn-success:focus,
|
681 |
.sgpb-wrapper .btn-success.disabled.focus,
|
682 |
.sgpb-wrapper .btn-success[disabled].focus,
|
683 |
+
.sgpb-wrapper fieldset[disabled] .btn-success.focus{background-color:#18bc9c;border-color:#18bc9c}.sgpb-wrapper .btn-success
|
684 |
+
.badge{color:#18bc9c;background-color:#fff}.sgpb-wrapper .btn-info{color:#fff;background-color:#3498db;border-color:#3498db}.sgpb-wrapper .btn-info:focus,
|
685 |
+
.sgpb-wrapper .btn-info.focus{color:#fff;background-color:#217dbb;border-color:#16527a}.sgpb-wrapper .btn-info:hover{color:#fff;background-color:#217dbb;border-color:#2077b2}.sgpb-wrapper .btn-info:active,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
686 |
.sgpb-wrapper .btn-info.active,
|
687 |
+
.sgpb-wrapper .open>.dropdown-toggle.btn-info{color:#fff;background-color:#217dbb;border-color:#2077b2}.sgpb-wrapper .btn-info:active:hover,
|
|
|
|
|
|
|
|
|
|
|
688 |
.sgpb-wrapper .btn-info.active:hover,
|
689 |
.sgpb-wrapper .open > .dropdown-toggle.btn-info:hover,
|
690 |
.sgpb-wrapper .btn-info:active:focus,
|
692 |
.sgpb-wrapper .open > .dropdown-toggle.btn-info:focus,
|
693 |
.sgpb-wrapper .btn-info:active.focus,
|
694 |
.sgpb-wrapper .btn-info.active.focus,
|
695 |
+
.sgpb-wrapper .open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#1c699d;border-color:#16527a}.sgpb-wrapper .btn-info:active,
|
|
|
|
|
|
|
|
|
|
|
696 |
.sgpb-wrapper .btn-info.active,
|
697 |
+
.sgpb-wrapper .open>.dropdown-toggle.btn-info{background-image:none}.sgpb-wrapper .btn-info.disabled:hover,
|
|
|
|
|
|
|
698 |
.sgpb-wrapper .btn-info[disabled]:hover,
|
699 |
.sgpb-wrapper fieldset[disabled] .btn-info:hover,
|
700 |
.sgpb-wrapper .btn-info.disabled:focus,
|
702 |
.sgpb-wrapper fieldset[disabled] .btn-info:focus,
|
703 |
.sgpb-wrapper .btn-info.disabled.focus,
|
704 |
.sgpb-wrapper .btn-info[disabled].focus,
|
705 |
+
.sgpb-wrapper fieldset[disabled] .btn-info.focus{background-color:#3498db;border-color:#3498db}.sgpb-wrapper .btn-info
|
706 |
+
.badge{color:#3498db;background-color:#fff}.sgpb-wrapper .btn-warning{color:#fff;background-color:#f39c12;border-color:#f39c12}.sgpb-wrapper .btn-warning:focus,
|
707 |
+
.sgpb-wrapper .btn-warning.focus{color:#fff;background-color:#c87f0a;border-color:#7f5006}.sgpb-wrapper .btn-warning:hover{color:#fff;background-color:#c87f0a;border-color:#be780a}.sgpb-wrapper .btn-warning:active,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
708 |
.sgpb-wrapper .btn-warning.active,
|
709 |
+
.sgpb-wrapper .open>.dropdown-toggle.btn-warning{color:#fff;background-color:#c87f0a;border-color:#be780a}.sgpb-wrapper .btn-warning:active:hover,
|
|
|
|
|
|
|
|
|
|
|
710 |
.sgpb-wrapper .btn-warning.active:hover,
|
711 |
.sgpb-wrapper .open > .dropdown-toggle.btn-warning:hover,
|
712 |
.sgpb-wrapper .btn-warning:active:focus,
|
714 |
.sgpb-wrapper .open > .dropdown-toggle.btn-warning:focus,
|
715 |
.sgpb-wrapper .btn-warning:active.focus,
|
716 |
.sgpb-wrapper .btn-warning.active.focus,
|
717 |
+
.sgpb-wrapper .open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#a66908;border-color:#7f5006}.sgpb-wrapper .btn-warning:active,
|
|
|
|
|
|
|
|
|
|
|
718 |
.sgpb-wrapper .btn-warning.active,
|
719 |
+
.sgpb-wrapper .open>.dropdown-toggle.btn-warning{background-image:none}.sgpb-wrapper .btn-warning.disabled:hover,
|
|
|
|
|
|
|
720 |
.sgpb-wrapper .btn-warning[disabled]:hover,
|
721 |
.sgpb-wrapper fieldset[disabled] .btn-warning:hover,
|
722 |
.sgpb-wrapper .btn-warning.disabled:focus,
|
724 |
.sgpb-wrapper fieldset[disabled] .btn-warning:focus,
|
725 |
.sgpb-wrapper .btn-warning.disabled.focus,
|
726 |
.sgpb-wrapper .btn-warning[disabled].focus,
|
727 |
+
.sgpb-wrapper fieldset[disabled] .btn-warning.focus{background-color:#f39c12;border-color:#f39c12}.sgpb-wrapper .btn-warning
|
728 |
+
.badge{color:#f39c12;background-color:#fff}.sgpb-wrapper .btn-danger{color:#fff;background-color:#e74c3c;border-color:#e74c3c}.sgpb-wrapper .btn-danger:focus,
|
729 |
+
.sgpb-wrapper .btn-danger.focus{color:#fff;background-color:#d62c1a;border-color:#921e12}.sgpb-wrapper .btn-danger:hover{color:#fff;background-color:#d62c1a;border-color:#cd2a19}.sgpb-wrapper .btn-danger:active,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
730 |
.sgpb-wrapper .btn-danger.active,
|
731 |
+
.sgpb-wrapper .open>.dropdown-toggle.btn-danger{color:#fff;background-color:#d62c1a;border-color:#cd2a19}.sgpb-wrapper .btn-danger:active:hover,
|
|
|
|
|
|
|
|
|
|
|
732 |
.sgpb-wrapper .btn-danger.active:hover,
|
733 |
.sgpb-wrapper .open > .dropdown-toggle.btn-danger:hover,
|
734 |
.sgpb-wrapper .btn-danger:active:focus,
|
736 |
.sgpb-wrapper .open > .dropdown-toggle.btn-danger:focus,
|
737 |
.sgpb-wrapper .btn-danger:active.focus,
|
738 |
.sgpb-wrapper .btn-danger.active.focus,
|
739 |
+
.sgpb-wrapper .open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#b62516;border-color:#921e12}.sgpb-wrapper .btn-danger:active,
|
|
|
|
|
|
|
|
|
|
|
740 |
.sgpb-wrapper .btn-danger.active,
|
741 |
+
.sgpb-wrapper .open>.dropdown-toggle.btn-danger{background-image:none}.sgpb-wrapper .btn-danger.disabled:hover,
|
|
|
|
|
|
|
742 |
.sgpb-wrapper .btn-danger[disabled]:hover,
|
743 |
.sgpb-wrapper fieldset[disabled] .btn-danger:hover,
|
744 |
.sgpb-wrapper .btn-danger.disabled:focus,
|
746 |
.sgpb-wrapper fieldset[disabled] .btn-danger:focus,
|
747 |
.sgpb-wrapper .btn-danger.disabled.focus,
|
748 |
.sgpb-wrapper .btn-danger[disabled].focus,
|
749 |
+
.sgpb-wrapper fieldset[disabled] .btn-danger.focus{background-color:#e74c3c;border-color:#e74c3c}.sgpb-wrapper .btn-danger
|
750 |
+
.badge{color:#e74c3c;background-color:#fff}.sgpb-wrapper .btn-link{color:#18bc9c;font-weight:normal;border-radius:0}.sgpb-wrapper .btn-link,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
751 |
.sgpb-wrapper .btn-link:active,
|
752 |
.sgpb-wrapper .btn-link.active,
|
753 |
.sgpb-wrapper .btn-link[disabled],
|
754 |
+
.sgpb-wrapper fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.sgpb-wrapper .btn-link,
|
|
|
|
|
|
|
|
|
|
|
755 |
.sgpb-wrapper .btn-link:hover,
|
756 |
.sgpb-wrapper .btn-link:focus,
|
757 |
+
.sgpb-wrapper .btn-link:active{border-color:transparent}.sgpb-wrapper .btn-link:hover,
|
758 |
+
.sgpb-wrapper .btn-link:focus{color:#18bc9c;text-decoration:underline;background-color:transparent}.sgpb-wrapper .btn-link[disabled]:hover,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
759 |
.sgpb-wrapper fieldset[disabled] .btn-link:hover,
|
760 |
.sgpb-wrapper .btn-link[disabled]:focus,
|
761 |
+
.sgpb-wrapper fieldset[disabled] .btn-link:focus{color:#b4bcc2;text-decoration:none}.sgpb-wrapper .btn-lg,
|
762 |
+
.sgpb-wrapper .btn-group-lg>.btn{padding:18px
|
763 |
+
27px;font-size:19px;line-height:1.3333333;border-radius:6px}.sgpb-wrapper .btn-sm,
|
764 |
+
.sgpb-wrapper .btn-group-sm>.btn{padding:6px
|
765 |
+
9px;font-size:13px;line-height:1.5;border-radius:3px}.sgpb-wrapper .btn-xs,
|
766 |
+
.sgpb-wrapper .btn-group-xs>.btn{padding:1px
|
767 |
+
5px;font-size:13px;line-height:1.5;border-radius:3px}.sgpb-wrapper .btn-block{display:block;width:100%}.sgpb-wrapper .btn-block+.btn-block{margin-top:5px}.sgpb-wrapper input[type="submit"].btn-block,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
768 |
.sgpb-wrapper input[type="reset"].btn-block,
|
769 |
+
.sgpb-wrapper input[type="button"].btn-block{width:100%}.sgpb-wrapper
|
770 |
+
.fade{opacity:0;-webkit-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear}.sgpb-wrapper
|
771 |
+
.fade.in{opacity:1}.sgpb-wrapper
|
772 |
+
.collapse{display:none}.sgpb-wrapper
|
773 |
+
.collapse.in{display:block}.sgpb-wrapper
|
774 |
+
tr.collapse.in{display:table-row}.sgpb-wrapper
|
775 |
+
tbody.collapse.in{display:table-row-group}.sgpb-wrapper
|
776 |
+
.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;-o-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:0.35s;-o-transition-duration:0.35s;transition-duration:0.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.sgpb-wrapper
|
777 |
+
.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.sgpb-wrapper .dropup,
|
778 |
+
.sgpb-wrapper
|
779 |
+
.dropdown{position:relative}.sgpb-wrapper .dropdown-toggle:focus{outline:0}.sgpb-wrapper .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px
|
780 |
+
0;margin:2px
|
781 |
+
0 0;list-style:none;font-size:15px;text-align:left;background-color:#fff;border:1px
|
782 |
+
solid #ccc;border:1px
|
783 |
+
solid rgba(0, 0, 0, 0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0, 0, 0, 0.175);box-shadow:0 6px 12px rgba(0, 0, 0, 0.175);-webkit-background-clip:padding-box;background-clip:padding-box}.sgpb-wrapper .dropdown-menu.pull-right{right:0;left:auto}.sgpb-wrapper .dropdown-menu
|
784 |
+
.divider{height:1px;margin:9.5px 0;overflow:hidden;background-color:#e5e5e5}.sgpb-wrapper .dropdown-menu>li>a{display:block;padding:3px
|
785 |
+
20px;clear:both;font-weight:normal;line-height:1.42857143;color:#7b8a8b;white-space:nowrap}.sgpb-wrapper .dropdown-menu > li > a:hover,
|
786 |
+
.sgpb-wrapper .dropdown-menu>li>a:focus{text-decoration:none;color:#fff;background-color:#2c3e50}.sgpb-wrapper .dropdown-menu > .active > a,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
787 |
.sgpb-wrapper .dropdown-menu > .active > a:hover,
|
788 |
+
.sgpb-wrapper .dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#2c3e50}.sgpb-wrapper .dropdown-menu > .disabled > a,
|
|
|
|
|
|
|
|
|
|
|
|
|
789 |
.sgpb-wrapper .dropdown-menu > .disabled > a:hover,
|
790 |
+
.sgpb-wrapper .dropdown-menu>.disabled>a:focus{color:#b4bcc2}.sgpb-wrapper .dropdown-menu > .disabled > a:hover,
|
791 |
+
.sgpb-wrapper .dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.sgpb-wrapper .open>.dropdown-menu{display:block}.sgpb-wrapper .open>a{outline:0}.sgpb-wrapper .dropdown-menu-right{left:auto;right:0}.sgpb-wrapper .dropdown-menu-left{left:0;right:auto}.sgpb-wrapper .dropdown-header{display:block;padding:3px
|
792 |
+
20px;font-size:13px;line-height:1.42857143;color:#b4bcc2;white-space:nowrap}.sgpb-wrapper .dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.sgpb-wrapper .pull-right>.dropdown-menu{right:0;left:auto}.sgpb-wrapper .dropup .caret,
|
793 |
+
.sgpb-wrapper .navbar-fixed-bottom .dropdown
|
794 |
+
.caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.sgpb-wrapper .dropup .dropdown-menu,
|
795 |
+
.sgpb-wrapper .navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width: 768px){.sgpb-wrapper .navbar-right .dropdown-menu{left:auto;right:0}.sgpb-wrapper .navbar-right .dropdown-menu-left{left:0;right:auto}}.sgpb-wrapper .btn-group,
|
796 |
+
.sgpb-wrapper .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.sgpb-wrapper .btn-group > .btn,
|
797 |
+
.sgpb-wrapper .btn-group-vertical>.btn{position:relative;float:left}.sgpb-wrapper .btn-group > .btn:hover,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
798 |
.sgpb-wrapper .btn-group-vertical > .btn:hover,
|
799 |
.sgpb-wrapper .btn-group > .btn:focus,
|
800 |
.sgpb-wrapper .btn-group-vertical > .btn:focus,
|
801 |
.sgpb-wrapper .btn-group > .btn:active,
|
802 |
.sgpb-wrapper .btn-group-vertical > .btn:active,
|
803 |
.sgpb-wrapper .btn-group > .btn.active,
|
804 |
+
.sgpb-wrapper .btn-group-vertical>.btn.active{z-index:2}.sgpb-wrapper .btn-group .btn + .btn,
|
|
|
|
|
|
|
805 |
.sgpb-wrapper .btn-group .btn + .btn-group,
|
806 |
.sgpb-wrapper .btn-group .btn-group + .btn,
|
807 |
+
.sgpb-wrapper .btn-group .btn-group+.btn-group{margin-left:-1px}.sgpb-wrapper .btn-toolbar{margin-left:-5px}.sgpb-wrapper .btn-toolbar .btn,
|
|
|
|
|
|
|
|
|
|
|
|
|
808 |
.sgpb-wrapper .btn-toolbar .btn-group,
|
809 |
+
.sgpb-wrapper .btn-toolbar .input-group{float:left}.sgpb-wrapper .btn-toolbar > .btn,
|
|
|
|
|
|
|
810 |
.sgpb-wrapper .btn-toolbar > .btn-group,
|
811 |
+
.sgpb-wrapper .btn-toolbar>.input-group{margin-left:5px}.sgpb-wrapper .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.sgpb-wrapper .btn-group>.btn:first-child{margin-left:0}.sgpb-wrapper .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.sgpb-wrapper .btn-group > .btn:last-child:not(:first-child),
|
812 |
+
.sgpb-wrapper .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.sgpb-wrapper .btn-group>.btn-group{float:left}.sgpb-wrapper .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.sgpb-wrapper .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
|
813 |
+
.sgpb-wrapper .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.sgpb-wrapper .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.sgpb-wrapper .btn-group .dropdown-toggle:active,
|
814 |
+
.sgpb-wrapper .btn-group.open .dropdown-toggle{outline:0}.sgpb-wrapper .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.sgpb-wrapper .btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.sgpb-wrapper .btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125)}.sgpb-wrapper .btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.sgpb-wrapper .btn
|
815 |
+
.caret{margin-left:0}.sgpb-wrapper .btn-lg
|
816 |
+
.caret{border-width:5px 5px 0;border-bottom-width:0}.sgpb-wrapper .dropup .btn-lg
|
817 |
+
.caret{border-width:0 5px 5px}.sgpb-wrapper .btn-group-vertical > .btn,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
818 |
.sgpb-wrapper .btn-group-vertical > .btn-group,
|
819 |
+
.sgpb-wrapper .btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.sgpb-wrapper .btn-group-vertical>.btn-group>.btn{float:none}.sgpb-wrapper .btn-group-vertical > .btn + .btn,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
820 |
.sgpb-wrapper .btn-group-vertical > .btn + .btn-group,
|
821 |
.sgpb-wrapper .btn-group-vertical > .btn-group + .btn,
|
822 |
+
.sgpb-wrapper .btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.sgpb-wrapper .btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.sgpb-wrapper .btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.sgpb-wrapper .btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.sgpb-wrapper .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.sgpb-wrapper .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
|
823 |
+
.sgpb-wrapper .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.sgpb-wrapper .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.sgpb-wrapper .btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.sgpb-wrapper .btn-group-justified > .btn,
|
824 |
+
.sgpb-wrapper .btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.sgpb-wrapper .btn-group-justified > .btn-group
|
825 |
+
.btn{width:100%}.sgpb-wrapper .btn-group-justified > .btn-group .dropdown-menu{left:auto}.sgpb-wrapper [data-toggle="buttons"] > .btn input[type="radio"],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
826 |
.sgpb-wrapper [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
|
827 |
.sgpb-wrapper [data-toggle="buttons"] > .btn input[type="checkbox"],
|
828 |
+
.sgpb-wrapper [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.sgpb-wrapper .input-group{position:relative;display:table;border-collapse:separate}.sgpb-wrapper .input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.sgpb-wrapper .input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.sgpb-wrapper .input-group .form-control:focus{z-index:3}.sgpb-wrapper .input-group-lg > .form-control,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
829 |
.sgpb-wrapper .input-group-lg > .input-group-addon,
|
830 |
+
.sgpb-wrapper .input-group-lg>.input-group-btn>.btn{height:66px;padding:18px
|
831 |
+
27px;font-size:19px;line-height:1.3333333;border-radius:6px}.sgpb-wrapper select.input-group-lg > .form-control,
|
|
|
|
|
|
|
|
|
|
|
|
|
832 |
.sgpb-wrapper select.input-group-lg > .input-group-addon,
|
833 |
+
.sgpb-wrapper select.input-group-lg>.input-group-btn>.btn{height:66px;line-height:66px}.sgpb-wrapper textarea.input-group-lg > .form-control,
|
|
|
|
|
|
|
|
|
834 |
.sgpb-wrapper textarea.input-group-lg > .input-group-addon,
|
835 |
.sgpb-wrapper textarea.input-group-lg > .input-group-btn > .btn,
|
836 |
.sgpb-wrapper select[multiple].input-group-lg > .form-control,
|
837 |
.sgpb-wrapper select[multiple].input-group-lg > .input-group-addon,
|
838 |
+
.sgpb-wrapper select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.sgpb-wrapper .input-group-sm > .form-control,
|
|
|
|
|
|
|
839 |
.sgpb-wrapper .input-group-sm > .input-group-addon,
|
840 |
+
.sgpb-wrapper .input-group-sm>.input-group-btn>.btn{height:35px;padding:6px
|
841 |
+
9px;font-size:13px;line-height:1.5;border-radius:3px}.sgpb-wrapper select.input-group-sm > .form-control,
|
|
|
|
|
|
|
|
|
|
|
|
|
842 |
.sgpb-wrapper select.input-group-sm > .input-group-addon,
|
843 |
+
.sgpb-wrapper select.input-group-sm>.input-group-btn>.btn{height:35px;line-height:35px}.sgpb-wrapper textarea.input-group-sm > .form-control,
|
|
|
|
|
|
|
|
|
844 |
.sgpb-wrapper textarea.input-group-sm > .input-group-addon,
|
845 |
.sgpb-wrapper textarea.input-group-sm > .input-group-btn > .btn,
|
846 |
.sgpb-wrapper select[multiple].input-group-sm > .form-control,
|
847 |
.sgpb-wrapper select[multiple].input-group-sm > .input-group-addon,
|
848 |
+
.sgpb-wrapper select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.sgpb-wrapper .input-group-addon,
|
|
|
|
|
|
|
849 |
.sgpb-wrapper .input-group-btn,
|
850 |
+
.sgpb-wrapper .input-group .form-control{display:table-cell}.sgpb-wrapper .input-group-addon:not(:first-child):not(:last-child),
|
|
|
|
|
|
|
851 |
.sgpb-wrapper .input-group-btn:not(:first-child):not(:last-child),
|
852 |
+
.sgpb-wrapper .input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.sgpb-wrapper .input-group-addon,
|
853 |
+
.sgpb-wrapper .input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.sgpb-wrapper .input-group-addon{padding:10px
|
854 |
+
15px;font-size:15px;font-weight:normal;line-height:1;color:#2c3e50;text-align:center;background-color:#ecf0f1;border:1px
|
855 |
+
solid #dce4ec;border-radius:4px}.sgpb-wrapper .input-group-addon.input-sm{padding:6px
|
856 |
+
9px;font-size:13px;border-radius:3px}.sgpb-wrapper .input-group-addon.input-lg{padding:18px
|
857 |
+
27px;font-size:19px;border-radius:6px}.sgpb-wrapper .input-group-addon input[type="radio"],
|
858 |
+
.sgpb-wrapper .input-group-addon input[type="checkbox"]{margin-top:0}.sgpb-wrapper .input-group .form-control:first-child,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
859 |
.sgpb-wrapper .input-group-addon:first-child,
|
860 |
.sgpb-wrapper .input-group-btn:first-child > .btn,
|
861 |
.sgpb-wrapper .input-group-btn:first-child > .btn-group > .btn,
|
862 |
.sgpb-wrapper .input-group-btn:first-child > .dropdown-toggle,
|
863 |
.sgpb-wrapper .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
|
864 |
+
.sgpb-wrapper .input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.sgpb-wrapper .input-group-addon:first-child{border-right:0}.sgpb-wrapper .input-group .form-control:last-child,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
865 |
.sgpb-wrapper .input-group-addon:last-child,
|
866 |
.sgpb-wrapper .input-group-btn:last-child > .btn,
|
867 |
.sgpb-wrapper .input-group-btn:last-child > .btn-group > .btn,
|
868 |
.sgpb-wrapper .input-group-btn:last-child > .dropdown-toggle,
|
869 |
.sgpb-wrapper .input-group-btn:first-child > .btn:not(:first-child),
|
870 |
+
.sgpb-wrapper .input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.sgpb-wrapper .input-group-addon:last-child{border-left:0}.sgpb-wrapper .input-group-btn{position:relative;font-size:0;white-space:nowrap}.sgpb-wrapper .input-group-btn>.btn{position:relative}.sgpb-wrapper .input-group-btn>.btn+.btn{margin-left:-1px}.sgpb-wrapper .input-group-btn > .btn:hover,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
871 |
.sgpb-wrapper .input-group-btn > .btn:focus,
|
872 |
+
.sgpb-wrapper .input-group-btn>.btn:active{z-index:2}.sgpb-wrapper .input-group-btn:first-child > .btn,
|
873 |
+
.sgpb-wrapper .input-group-btn:first-child>.btn-group{margin-right:-1px}.sgpb-wrapper .input-group-btn:last-child > .btn,
|
874 |
+
.sgpb-wrapper .input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.sgpb-wrapper
|
875 |
+
.nav{margin-bottom:0;padding-left:0;list-style:none}.sgpb-wrapper .nav>li{position:relative;display:block}.sgpb-wrapper .nav>li>a{position:relative;display:block;padding:10px
|
876 |
+
15px}.sgpb-wrapper .nav > li > a:hover,
|
877 |
+
.sgpb-wrapper .nav>li>a:focus{text-decoration:none;background-color:#ecf0f1}.sgpb-wrapper .nav>li.disabled>a{color:#b4bcc2}.sgpb-wrapper .nav > li.disabled > a:hover,
|
878 |
+
.sgpb-wrapper .nav>li.disabled>a:focus{color:#b4bcc2;text-decoration:none;background-color:transparent;cursor:not-allowed}.sgpb-wrapper .nav .open > a,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
879 |
.sgpb-wrapper .nav .open > a:hover,
|
880 |
+
.sgpb-wrapper .nav .open>a:focus{background-color:#ecf0f1;border-color:#18bc9c}.sgpb-wrapper .nav .nav-divider{height:1px;margin:9.5px 0;overflow:hidden;background-color:#e5e5e5}.sgpb-wrapper .nav>li>a>img{max-width:none}.sgpb-wrapper .nav-tabs{border-bottom:1px solid #ecf0f1}.sgpb-wrapper .nav-tabs>li{float:left;margin-bottom:-1px}.sgpb-wrapper .nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px
|
881 |
+
solid transparent;border-radius:4px 4px 0 0}.sgpb-wrapper .nav-tabs>li>a:hover{border-color:#ecf0f1 #ecf0f1 #ecf0f1}.sgpb-wrapper .nav-tabs > li.active > a,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
882 |
.sgpb-wrapper .nav-tabs > li.active > a:hover,
|
883 |
+
.sgpb-wrapper .nav-tabs>li.active>a:focus{color:#2c3e50;background-color:#fff;border:1px
|
884 |
+
solid #ecf0f1;border-bottom-color:transparent;cursor:default}.sgpb-wrapper .nav-tabs.nav-justified{width:100%;border-bottom:0}.sgpb-wrapper .nav-tabs.nav-justified>li{float:none}.sgpb-wrapper .nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.sgpb-wrapper .nav-tabs.nav-justified > .dropdown .dropdown-menu{top:auto;left:auto}@media (min-width: 768px){.sgpb-wrapper .nav-tabs.nav-justified>li{display:table-cell;width:1%}.sgpb-wrapper .nav-tabs.nav-justified>li>a{margin-bottom:0}}.sgpb-wrapper .nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.sgpb-wrapper .nav-tabs.nav-justified > .active > a,
|
885 |
+
.sgpb-wrapper .nav-tabs.nav-justified > .active > a:hover,
|
886 |
+
.sgpb-wrapper .nav-tabs.nav-justified>.active>a:focus{border:1px
|
887 |
+
solid #ecf0f1}@media (min-width: 768px){.sgpb-wrapper .nav-tabs.nav-justified>li>a{border-bottom:1px solid #ecf0f1;border-radius:4px 4px 0 0}.sgpb-wrapper .nav-tabs.nav-justified > .active > a,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
888 |
.sgpb-wrapper .nav-tabs.nav-justified > .active > a:hover,
|
889 |
+
.sgpb-wrapper .nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.sgpb-wrapper .nav-pills>li{float:left}.sgpb-wrapper .nav-pills>li>a{border-radius:4px}.sgpb-wrapper .nav-pills>li+li{margin-left:2px}.sgpb-wrapper .nav-pills > li.active > a,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
890 |
.sgpb-wrapper .nav-pills > li.active > a:hover,
|
891 |
+
.sgpb-wrapper .nav-pills>li.active>a:focus{color:#fff;background-color:#2c3e50}.sgpb-wrapper .nav-stacked>li{float:none}.sgpb-wrapper .nav-stacked>li+li{margin-top:2px;margin-left:0}.sgpb-wrapper .nav-justified{width:100%}.sgpb-wrapper .nav-justified>li{float:none}.sgpb-wrapper .nav-justified>li>a{text-align:center;margin-bottom:5px}.sgpb-wrapper .nav-justified > .dropdown .dropdown-menu{top:auto;left:auto}@media (min-width: 768px){.sgpb-wrapper .nav-justified>li{display:table-cell;width:1%}.sgpb-wrapper .nav-justified>li>a{margin-bottom:0}}.sgpb-wrapper .nav-tabs-justified{border-bottom:0}.sgpb-wrapper .nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.sgpb-wrapper .nav-tabs-justified > .active > a,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
892 |
.sgpb-wrapper .nav-tabs-justified > .active > a:hover,
|
893 |
+
.sgpb-wrapper .nav-tabs-justified>.active>a:focus{border:1px
|
894 |
+
solid #ecf0f1}@media (min-width: 768px){.sgpb-wrapper .nav-tabs-justified>li>a{border-bottom:1px solid #ecf0f1;border-radius:4px 4px 0 0}.sgpb-wrapper .nav-tabs-justified > .active > a,
|
895 |
+
.sgpb-wrapper .nav-tabs-justified > .active > a:hover,
|
896 |
+
.sgpb-wrapper .nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.sgpb-wrapper .tab-content>.tab-pane{display:none}.sgpb-wrapper .tab-content>.active{display:block}.sgpb-wrapper .nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.sgpb-wrapper
|
897 |
+
.navbar{position:relative;min-height:60px;margin-bottom:21px;border:1px
|
898 |
+
solid transparent}@media (min-width: 768px){.sgpb-wrapper
|
899 |
+
.navbar{border-radius:4px}}@media (min-width: 768px){.sgpb-wrapper .navbar-header{float:left}}.sgpb-wrapper .navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1);-webkit-overflow-scrolling:touch}.sgpb-wrapper .navbar-collapse.in{overflow-y:auto}@media (min-width: 768px){.sgpb-wrapper .navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.sgpb-wrapper .navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.sgpb-wrapper .navbar-collapse.in{overflow-y:visible}.sgpb-wrapper .navbar-fixed-top .navbar-collapse,
|
900 |
+
.sgpb-wrapper .navbar-static-top .navbar-collapse,
|
901 |
+
.sgpb-wrapper .navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.sgpb-wrapper .navbar-fixed-top .navbar-collapse,
|
902 |
+
.sgpb-wrapper .navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width: 480px) and (orientation: landscape){.sgpb-wrapper .navbar-fixed-top .navbar-collapse,
|
903 |
+
.sgpb-wrapper .navbar-fixed-bottom .navbar-collapse{max-height:200px}}.sgpb-wrapper .container > .navbar-header,
|
904 |
+
.sgpb-wrapper .container-fluid > .navbar-header,
|
905 |
+
.sgpb-wrapper .container > .navbar-collapse,
|
906 |
+
.sgpb-wrapper .container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width: 768px){.sgpb-wrapper .container > .navbar-header,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
907 |
.sgpb-wrapper .container-fluid > .navbar-header,
|
908 |
.sgpb-wrapper .container > .navbar-collapse,
|
909 |
+
.sgpb-wrapper .container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.sgpb-wrapper .navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width: 768px){.sgpb-wrapper .navbar-static-top{border-radius:0}}.sgpb-wrapper .navbar-fixed-top,
|
910 |
+
.sgpb-wrapper .navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width: 768px){.sgpb-wrapper .navbar-fixed-top,
|
911 |
+
.sgpb-wrapper .navbar-fixed-bottom{border-radius:0}}.sgpb-wrapper .navbar-fixed-top{top:0;border-width:0 0 1px}.sgpb-wrapper .navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.sgpb-wrapper .navbar-brand{float:left;padding:19.5px 15px;font-size:19px;line-height:21px;height:60px}.sgpb-wrapper .navbar-brand:hover,
|
912 |
+
.sgpb-wrapper .navbar-brand:focus{text-decoration:none}.sgpb-wrapper .navbar-brand>img{display:block}@media (min-width: 768px){.sgpb-wrapper .navbar > .container .navbar-brand,
|
913 |
+
.sgpb-wrapper .navbar > .container-fluid .navbar-brand{margin-left:-15px}}.sgpb-wrapper .navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px
|
914 |
+
10px;margin-top:13px;margin-bottom:13px;background-color:transparent;background-image:none;border:1px
|
915 |
+
solid transparent;border-radius:4px}.sgpb-wrapper .navbar-toggle:focus{outline:0}.sgpb-wrapper .navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.sgpb-wrapper .navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width: 768px){.sgpb-wrapper .navbar-toggle{display:none}}.sgpb-wrapper .navbar-nav{margin:9.75px -15px}.sgpb-wrapper .navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:21px}@media (max-width: 767px){.sgpb-wrapper .navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.sgpb-wrapper .navbar-nav .open .dropdown-menu > li > a,
|
916 |
+
.sgpb-wrapper .navbar-nav .open .dropdown-menu .dropdown-header{padding:5px
|
917 |
+
15px 5px 25px}.sgpb-wrapper .navbar-nav .open .dropdown-menu>li>a{line-height:21px}.sgpb-wrapper .navbar-nav .open .dropdown-menu > li > a:hover,
|
918 |
+
.sgpb-wrapper .navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width: 768px){.sgpb-wrapper .navbar-nav{float:left;margin:0}.sgpb-wrapper .navbar-nav>li{float:left}.sgpb-wrapper .navbar-nav>li>a{padding-top:19.5px;padding-bottom:19.5px}}.sgpb-wrapper .navbar-form{margin-left:-15px;margin-right:-15px;padding:10px
|
919 |
+
15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);margin-top:7.5px;margin-bottom:7.5px}@media (min-width: 768px){.sgpb-wrapper .navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.sgpb-wrapper .navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.sgpb-wrapper .navbar-form .form-control-static{display:inline-block}.sgpb-wrapper .navbar-form .input-group{display:inline-table;vertical-align:middle}.sgpb-wrapper .navbar-form .input-group .input-group-addon,
|
920 |
+
.sgpb-wrapper .navbar-form .input-group .input-group-btn,
|
921 |
+
.sgpb-wrapper .navbar-form .input-group .form-control{width:auto}.sgpb-wrapper .navbar-form .input-group>.form-control{width:100%}.sgpb-wrapper .navbar-form .control-label{margin-bottom:0;vertical-align:middle}.sgpb-wrapper .navbar-form .radio,
|
922 |
+
.sgpb-wrapper .navbar-form
|
923 |
+
.checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.sgpb-wrapper .navbar-form .radio label,
|
924 |
+
.sgpb-wrapper .navbar-form .checkbox
|
925 |
+
label{padding-left:0}.sgpb-wrapper .navbar-form .radio input[type="radio"],
|
926 |
+
.sgpb-wrapper .navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.sgpb-wrapper .navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width: 767px){.sgpb-wrapper .navbar-form .form-group{margin-bottom:5px}.sgpb-wrapper .navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width: 768px){.sgpb-wrapper .navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.sgpb-wrapper .navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.sgpb-wrapper .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.sgpb-wrapper .navbar-btn{margin-top:7.5px;margin-bottom:7.5px}.sgpb-wrapper .navbar-btn.btn-sm{margin-top:12.5px;margin-bottom:12.5px}.sgpb-wrapper .navbar-btn.btn-xs{margin-top:19px;margin-bottom:19px}.sgpb-wrapper .navbar-text{margin-top:19.5px;margin-bottom:19.5px}@media (min-width: 768px){.sgpb-wrapper .navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width: 768px){.sgpb-wrapper .navbar-left{float:left !important}.sgpb-wrapper .navbar-right{float:right !important;margin-right:-15px}.sgpb-wrapper .navbar-right~.navbar-right{margin-right:0}}.sgpb-wrapper .navbar-default{background-color:#2c3e50;border-color:transparent}.sgpb-wrapper .navbar-default .navbar-brand{color:#fff}.sgpb-wrapper .navbar-default .navbar-brand:hover,
|
927 |
+
.sgpb-wrapper .navbar-default .navbar-brand:focus{color:#18bc9c;background-color:transparent}.sgpb-wrapper .navbar-default .navbar-text{color:#fff}.sgpb-wrapper .navbar-default .navbar-nav>li>a{color:#fff}.sgpb-wrapper .navbar-default .navbar-nav > li > a:hover,
|
928 |
+
.sgpb-wrapper .navbar-default .navbar-nav>li>a:focus{color:#18bc9c;background-color:transparent}.sgpb-wrapper .navbar-default .navbar-nav > .active > a,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
929 |
.sgpb-wrapper .navbar-default .navbar-nav > .active > a:hover,
|
930 |
+
.sgpb-wrapper .navbar-default .navbar-nav>.active>a:focus{color:#fff;background-color:#1a242f}.sgpb-wrapper .navbar-default .navbar-nav > .disabled > a,
|
|
|
|
|
|
|
|
|
931 |
.sgpb-wrapper .navbar-default .navbar-nav > .disabled > a:hover,
|
932 |
+
.sgpb-wrapper .navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.sgpb-wrapper .navbar-default .navbar-toggle{border-color:#1a242f}.sgpb-wrapper .navbar-default .navbar-toggle:hover,
|
933 |
+
.sgpb-wrapper .navbar-default .navbar-toggle:focus{background-color:#1a242f}.sgpb-wrapper .navbar-default .navbar-toggle .icon-bar{background-color:#fff}.sgpb-wrapper .navbar-default .navbar-collapse,
|
934 |
+
.sgpb-wrapper .navbar-default .navbar-form{border-color:transparent}.sgpb-wrapper .navbar-default .navbar-nav > .open > a,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
935 |
.sgpb-wrapper .navbar-default .navbar-nav > .open > a:hover,
|
936 |
+
.sgpb-wrapper .navbar-default .navbar-nav>.open>a:focus{background-color:#1a242f;color:#fff}@media (max-width: 767px){.sgpb-wrapper .navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#fff}.sgpb-wrapper .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
|
937 |
+
.sgpb-wrapper .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#18bc9c;background-color:transparent}.sgpb-wrapper .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
|
938 |
+
.sgpb-wrapper .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
|
939 |
+
.sgpb-wrapper .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#1a242f}.sgpb-wrapper .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
|
940 |
+
.sgpb-wrapper .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
941 |
+
.sgpb-wrapper .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.sgpb-wrapper .navbar-default .navbar-link{color:#fff}.sgpb-wrapper .navbar-default .navbar-link:hover{color:#18bc9c}.sgpb-wrapper .navbar-default .btn-link{color:#fff}.sgpb-wrapper .navbar-default .btn-link:hover,
|
942 |
+
.sgpb-wrapper .navbar-default .btn-link:focus{color:#18bc9c}.sgpb-wrapper .navbar-default .btn-link[disabled]:hover,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
943 |
.sgpb-wrapper fieldset[disabled] .navbar-default .btn-link:hover,
|
944 |
.sgpb-wrapper .navbar-default .btn-link[disabled]:focus,
|
945 |
+
.sgpb-wrapper fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.sgpb-wrapper .navbar-inverse{background-color:#18bc9c;border-color:transparent}.sgpb-wrapper .navbar-inverse .navbar-brand{color:#fff}.sgpb-wrapper .navbar-inverse .navbar-brand:hover,
|
946 |
+
.sgpb-wrapper .navbar-inverse .navbar-brand:focus{color:#2c3e50;background-color:transparent}.sgpb-wrapper .navbar-inverse .navbar-text{color:#fff}.sgpb-wrapper .navbar-inverse .navbar-nav>li>a{color:#fff}.sgpb-wrapper .navbar-inverse .navbar-nav > li > a:hover,
|
947 |
+
.sgpb-wrapper .navbar-inverse .navbar-nav>li>a:focus{color:#2c3e50;background-color:transparent}.sgpb-wrapper .navbar-inverse .navbar-nav > .active > a,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
948 |
.sgpb-wrapper .navbar-inverse .navbar-nav > .active > a:hover,
|
949 |
+
.sgpb-wrapper .navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#15a589}.sgpb-wrapper .navbar-inverse .navbar-nav > .disabled > a,
|
|
|
|
|
|
|
|
|
950 |
.sgpb-wrapper .navbar-inverse .navbar-nav > .disabled > a:hover,
|
951 |
+
.sgpb-wrapper .navbar-inverse .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.sgpb-wrapper .navbar-inverse .navbar-toggle{border-color:#128f76}.sgpb-wrapper .navbar-inverse .navbar-toggle:hover,
|
952 |
+
.sgpb-wrapper .navbar-inverse .navbar-toggle:focus{background-color:#128f76}.sgpb-wrapper .navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.sgpb-wrapper .navbar-inverse .navbar-collapse,
|
953 |
+
.sgpb-wrapper .navbar-inverse .navbar-form{border-color:#149c82}.sgpb-wrapper .navbar-inverse .navbar-nav > .open > a,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
954 |
.sgpb-wrapper .navbar-inverse .navbar-nav > .open > a:hover,
|
955 |
+
.sgpb-wrapper .navbar-inverse .navbar-nav>.open>a:focus{background-color:#15a589;color:#fff}@media (max-width: 767px){.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:transparent}.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu
|
956 |
+
.divider{background-color:transparent}.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#fff}.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
|
957 |
+
.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#2c3e50;background-color:transparent}.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
|
958 |
+
.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
|
959 |
+
.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#15a589}.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
|
960 |
+
.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
961 |
+
.sgpb-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.sgpb-wrapper .navbar-inverse .navbar-link{color:#fff}.sgpb-wrapper .navbar-inverse .navbar-link:hover{color:#2c3e50}.sgpb-wrapper .navbar-inverse .btn-link{color:#fff}.sgpb-wrapper .navbar-inverse .btn-link:hover,
|
962 |
+
.sgpb-wrapper .navbar-inverse .btn-link:focus{color:#2c3e50}.sgpb-wrapper .navbar-inverse .btn-link[disabled]:hover,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
963 |
.sgpb-wrapper fieldset[disabled] .navbar-inverse .btn-link:hover,
|
964 |
.sgpb-wrapper .navbar-inverse .btn-link[disabled]:focus,
|
965 |
+
.sgpb-wrapper fieldset[disabled] .navbar-inverse .btn-link:focus{color:#ccc}.sgpb-wrapper
|
966 |
+
.breadcrumb{padding:8px
|
967 |
+
15px;margin-bottom:21px;list-style:none;background-color:#ecf0f1;border-radius:4px}.sgpb-wrapper .breadcrumb>li{display:inline-block}.sgpb-wrapper .breadcrumb>li+li:before{content:"/\00a0";padding:0
|
968 |
+
5px;color:#ccc}.sgpb-wrapper .breadcrumb>.active{color:#95a5a6}.sgpb-wrapper
|
969 |
+
.pagination{display:inline-block;padding-left:0;margin:21px
|
970 |
+
0;border-radius:4px}.sgpb-wrapper .pagination>li{display:inline}.sgpb-wrapper .pagination > li > a,
|
971 |
+
.sgpb-wrapper .pagination>li>span{position:relative;float:left;padding:10px
|
972 |
+
15px;line-height:1.42857143;text-decoration:none;color:#fff;background-color:#18bc9c;border:1px
|
973 |
+
solid transparent;margin-left:-1px}.sgpb-wrapper .pagination > li:first-child > a,
|
974 |
+
.sgpb-wrapper .pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.sgpb-wrapper .pagination > li:last-child > a,
|
975 |
+
.sgpb-wrapper .pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.sgpb-wrapper .pagination > li > a:hover,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
976 |
.sgpb-wrapper .pagination > li > span:hover,
|
977 |
.sgpb-wrapper .pagination > li > a:focus,
|
978 |
+
.sgpb-wrapper .pagination>li>span:focus{z-index:2;color:#fff;background-color:#0f7864;border-color:transparent}.sgpb-wrapper .pagination > .active > a,
|
|
|
|
|
|
|
|
|
|
|
|
|
979 |
.sgpb-wrapper .pagination > .active > span,
|
980 |
.sgpb-wrapper .pagination > .active > a:hover,
|
981 |
.sgpb-wrapper .pagination > .active > span:hover,
|
982 |
.sgpb-wrapper .pagination > .active > a:focus,
|
983 |
+
.sgpb-wrapper .pagination>.active>span:focus{z-index:3;color:#fff;background-color:#0f7864;border-color:transparent;cursor:default}.sgpb-wrapper .pagination > .disabled > span,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
984 |
.sgpb-wrapper .pagination > .disabled > span:hover,
|
985 |
.sgpb-wrapper .pagination > .disabled > span:focus,
|
986 |
.sgpb-wrapper .pagination > .disabled > a,
|
987 |
.sgpb-wrapper .pagination > .disabled > a:hover,
|
988 |
+
.sgpb-wrapper .pagination>.disabled>a:focus{color:#ecf0f1;background-color:#3be6c4;border-color:transparent;cursor:not-allowed}.sgpb-wrapper .pagination-lg > li > a,
|
989 |
+
.sgpb-wrapper .pagination-lg>li>span{padding:18px
|
990 |
+
27px;font-size:19px;line-height:1.3333333}.sgpb-wrapper .pagination-lg > li:first-child > a,
|
991 |
+
.sgpb-wrapper .pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.sgpb-wrapper .pagination-lg > li:last-child > a,
|
992 |
+
.sgpb-wrapper .pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.sgpb-wrapper .pagination-sm > li > a,
|
993 |
+
.sgpb-wrapper .pagination-sm>li>span{padding:6px
|
994 |
+
9px;font-size:13px;line-height:1.5}.sgpb-wrapper .pagination-sm > li:first-child > a,
|
995 |
+
.sgpb-wrapper .pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.sgpb-wrapper .pagination-sm > li:last-child > a,
|
996 |
+
.sgpb-wrapper .pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.sgpb-wrapper
|
997 |
+
.pager{padding-left:0;margin:21px
|
998 |
+
0;list-style:none;text-align:center}.sgpb-wrapper .pager
|
999 |
+
li{display:inline}.sgpb-wrapper .pager li > a,
|
1000 |
+
.sgpb-wrapper .pager li>span{display:inline-block;padding:5px
|
1001 |
+
14px;background-color:#18bc9c;border:1px
|
1002 |
+
solid transparent;border-radius:15px}.sgpb-wrapper .pager li > a:hover,
|
1003 |
+
.sgpb-wrapper .pager li>a:focus{text-decoration:none;background-color:#0f7864}.sgpb-wrapper .pager .next > a,
|
1004 |
+
.sgpb-wrapper .pager .next>span{float:right}.sgpb-wrapper .pager .previous > a,
|
1005 |
+
.sgpb-wrapper .pager .previous>span{float:left}.sgpb-wrapper .pager .disabled > a,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1006 |
.sgpb-wrapper .pager .disabled > a:hover,
|
1007 |
.sgpb-wrapper .pager .disabled > a:focus,
|
1008 |
+
.sgpb-wrapper .pager .disabled>span{color:#fff;background-color:#18bc9c;cursor:not-allowed}.sgpb-wrapper
|
1009 |
+
.label{display:inline;padding: .2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius: .25em}.sgpb-wrapper a.label:hover,
|
1010 |
+
.sgpb-wrapper a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.sgpb-wrapper .label:empty{display:none}.sgpb-wrapper .btn
|
1011 |
+
.label{position:relative;top:-1px}.sgpb-wrapper .label-default{background-color:#95a5a6}.sgpb-wrapper .label-default[href]:hover,
|
1012 |
+
.sgpb-wrapper .label-default[href]:focus{background-color:#798d8f}.sgpb-wrapper .label-primary{background-color:#2c3e50}.sgpb-wrapper .label-primary[href]:hover,
|
1013 |
+
.sgpb-wrapper .label-primary[href]:focus{background-color:#1a242f}.sgpb-wrapper .label-success{background-color:#18bc9c}.sgpb-wrapper .label-success[href]:hover,
|
1014 |
+
.sgpb-wrapper .label-success[href]:focus{background-color:#128f76}.sgpb-wrapper .label-info{background-color:#3498db}.sgpb-wrapper .label-info[href]:hover,
|
1015 |
+
.sgpb-wrapper .label-info[href]:focus{background-color:#217dbb}.sgpb-wrapper .label-warning{background-color:#f39c12}.sgpb-wrapper .label-warning[href]:hover,
|
1016 |
+
.sgpb-wrapper .label-warning[href]:focus{background-color:#c87f0a}.sgpb-wrapper .label-danger{background-color:#e74c3c}.sgpb-wrapper .label-danger[href]:hover,
|
1017 |
+
.sgpb-wrapper .label-danger[href]:focus{background-color:#d62c1a}.sgpb-wrapper
|
1018 |
+
.badge{display:inline-block;min-width:10px;padding:3px
|
1019 |
+
7px;font-size:13px;font-weight:bold;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#2c3e50;border-radius:10px}.sgpb-wrapper .badge:empty{display:none}.sgpb-wrapper .btn
|
1020 |
+
.badge{position:relative;top:-1px}.sgpb-wrapper .btn-xs .badge,
|
1021 |
+
.sgpb-wrapper .btn-group-xs > .btn
|
1022 |
+
.badge{top:0;padding:1px
|
1023 |
+
5px}.sgpb-wrapper a.badge:hover,
|
1024 |
+
.sgpb-wrapper a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.sgpb-wrapper .list-group-item.active > .badge,
|
1025 |
+
.sgpb-wrapper .nav-pills>.active>a>.badge{color:#2c3e50;background-color:#fff}.sgpb-wrapper .list-group-item>.badge{float:right}.sgpb-wrapper .list-group-item>.badge+.badge{margin-right:5px}.sgpb-wrapper .nav-pills>li>a>.badge{margin-left:3px}.sgpb-wrapper
|
1026 |
+
.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#ecf0f1}.sgpb-wrapper .jumbotron h1,
|
1027 |
+
.sgpb-wrapper .jumbotron
|
1028 |
+
.h1{color:inherit}.sgpb-wrapper .jumbotron
|
1029 |
+
p{margin-bottom:15px;font-size:23px;font-weight:200}.sgpb-wrapper .jumbotron>hr{border-top-color:#cfd9db}.sgpb-wrapper .container .jumbotron,
|
1030 |
+
.sgpb-wrapper .container-fluid
|
1031 |
+
.jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.sgpb-wrapper .jumbotron
|
1032 |
+
.container{max-width:100%}@media screen and (min-width: 768px){.sgpb-wrapper
|
1033 |
+
.jumbotron{padding-top:48px;padding-bottom:48px}.sgpb-wrapper .container .jumbotron,
|
1034 |
+
.sgpb-wrapper .container-fluid
|
1035 |
+
.jumbotron{padding-left:60px;padding-right:60px}.sgpb-wrapper .jumbotron h1,
|
1036 |
+
.sgpb-wrapper .jumbotron
|
1037 |
+
.h1{font-size:68px}}.sgpb-wrapper
|
1038 |
+
.thumbnail{display:block;padding:4px;margin-bottom:21px;line-height:1.42857143;background-color:#fff;border:1px
|
1039 |
+
solid #ecf0f1;border-radius:4px;-webkit-transition:border 0.2s ease-in-out;-o-transition:border 0.2s ease-in-out;transition:border 0.2s ease-in-out}.sgpb-wrapper .thumbnail > img,
|
1040 |
+
.sgpb-wrapper .thumbnail a>img{margin-left:auto;margin-right:auto}.sgpb-wrapper a.thumbnail:hover,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1041 |
.sgpb-wrapper a.thumbnail:focus,
|
1042 |
+
.sgpb-wrapper
|
1043 |
+
a.thumbnail.active{border-color:#18bc9c}.sgpb-wrapper .thumbnail
|
1044 |
+
.caption{padding:9px;color:#2c3e50}.sgpb-wrapper
|
1045 |
+
.alert{padding:15px;margin-bottom:21px;border:1px
|
1046 |
+
solid transparent;border-radius:4px}.sgpb-wrapper .alert
|
1047 |
+
h4{margin-top:0;color:inherit}.sgpb-wrapper .alert .alert-link{font-weight:bold}.sgpb-wrapper .alert > p,
|
1048 |
+
.sgpb-wrapper .alert>ul{margin-bottom:0}.sgpb-wrapper .alert>p+p{margin-top:5px}.sgpb-wrapper .alert-dismissable,
|
1049 |
+
.sgpb-wrapper .alert-dismissible{padding-right:35px}.sgpb-wrapper .alert-dismissable .close,
|
1050 |
+
.sgpb-wrapper .alert-dismissible
|
1051 |
+
.close{position:relative;top:-2px;right:-21px;color:inherit}.sgpb-wrapper .alert-success{background-color:#18bc9c;border-color:#18bc9c;color:#fff}.sgpb-wrapper .alert-success
|
1052 |
+
hr{border-top-color:#15a589}.sgpb-wrapper .alert-success .alert-link{color:#e6e6e6}.sgpb-wrapper .alert-info{background-color:#3498db;border-color:#3498db;color:#fff}.sgpb-wrapper .alert-info
|
1053 |
+
hr{border-top-color:#258cd1}.sgpb-wrapper .alert-info .alert-link{color:#e6e6e6}.sgpb-wrapper .alert-warning{background-color:#f39c12;border-color:#f39c12;color:#fff}.sgpb-wrapper .alert-warning
|
1054 |
+
hr{border-top-color:#e08e0b}.sgpb-wrapper .alert-warning .alert-link{color:#e6e6e6}.sgpb-wrapper .alert-danger{background-color:#e74c3c;border-color:#e74c3c;color:#fff}.sgpb-wrapper .alert-danger
|
1055 |
+
hr{border-top-color:#e43725}.sgpb-wrapper .alert-danger .alert-link{color:#e6e6e6}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.sgpb-wrapper
|
1056 |
+
.progress{overflow:hidden;height:21px;margin-bottom:21px;background-color:#ecf0f1;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1)}.sgpb-wrapper .progress-bar{float:left;width:0%;height:100%;font-size:13px;line-height:21px;color:#fff;text-align:center;background-color:#2c3e50;-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease}.sgpb-wrapper .progress-striped .progress-bar,
|
1057 |
+
.sgpb-wrapper .progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.sgpb-wrapper .progress.active .progress-bar,
|
1058 |
+
.sgpb-wrapper .progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.sgpb-wrapper .progress-bar-success{background-color:#18bc9c}.sgpb-wrapper .progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)}.sgpb-wrapper .progress-bar-info{background-color:#3498db}.sgpb-wrapper .progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)}.sgpb-wrapper .progress-bar-warning{background-color:#f39c12}.sgpb-wrapper .progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)}.sgpb-wrapper .progress-bar-danger{background-color:#e74c3c}.sgpb-wrapper .progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)}.sgpb-wrapper
|
1059 |
+
.media{margin-top:15px}.sgpb-wrapper .media:first-child{margin-top:0}.sgpb-wrapper .media,
|
1060 |
+
.sgpb-wrapper .media-body{zoom:1;overflow:hidden}.sgpb-wrapper .media-body{width:10000px}.sgpb-wrapper .media-object{display:block}.sgpb-wrapper .media-object.img-thumbnail{max-width:none}.sgpb-wrapper .media-right,
|
1061 |
+
.sgpb-wrapper .media>.pull-right{padding-left:10px}.sgpb-wrapper .media-left,
|
1062 |
+
.sgpb-wrapper .media>.pull-left{padding-right:10px}.sgpb-wrapper .media-left,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1063 |
.sgpb-wrapper .media-right,
|
1064 |
+
.sgpb-wrapper .media-body{display:table-cell;vertical-align:top}.sgpb-wrapper .media-middle{vertical-align:middle}.sgpb-wrapper .media-bottom{vertical-align:bottom}.sgpb-wrapper .media-heading{margin-top:0;margin-bottom:5px}.sgpb-wrapper .media-list{padding-left:0;list-style:none}.sgpb-wrapper .list-group{margin-bottom:20px;padding-left:0}.sgpb-wrapper .list-group-item{position:relative;display:block;padding:10px
|
1065 |
+
15px;margin-bottom:-1px;background-color:#fff;border:1px
|
1066 |
+
solid #ecf0f1}.sgpb-wrapper .list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.sgpb-wrapper .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.sgpb-wrapper a.list-group-item,
|
1067 |
+
.sgpb-wrapper button.list-group-item{color:#555}.sgpb-wrapper a.list-group-item .list-group-item-heading,
|
1068 |
+
.sgpb-wrapper button.list-group-item .list-group-item-heading{color:#333}.sgpb-wrapper a.list-group-item:hover,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1069 |
.sgpb-wrapper button.list-group-item:hover,
|
1070 |
.sgpb-wrapper a.list-group-item:focus,
|
1071 |
+
.sgpb-wrapper button.list-group-item:focus{text-decoration:none;color:#555;background-color:#ecf0f1}.sgpb-wrapper button.list-group-item{width:100%;text-align:left}.sgpb-wrapper .list-group-item.disabled,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1072 |
.sgpb-wrapper .list-group-item.disabled:hover,
|
1073 |
+
.sgpb-wrapper .list-group-item.disabled:focus{background-color:#ecf0f1;color:#b4bcc2;cursor:not-allowed}.sgpb-wrapper .list-group-item.disabled .list-group-item-heading,
|
|
|
|
|
|
|
|
|
|
|
1074 |
.sgpb-wrapper .list-group-item.disabled:hover .list-group-item-heading,
|
1075 |
+
.sgpb-wrapper .list-group-item.disabled:focus .list-group-item-heading{color:inherit}.sgpb-wrapper .list-group-item.disabled .list-group-item-text,
|
|
|
|
|
|
|
1076 |
.sgpb-wrapper .list-group-item.disabled:hover .list-group-item-text,
|
1077 |
+
.sgpb-wrapper .list-group-item.disabled:focus .list-group-item-text{color:#b4bcc2}.sgpb-wrapper .list-group-item.active,
|
|
|
|
|
|
|
1078 |
.sgpb-wrapper .list-group-item.active:hover,
|
1079 |
+
.sgpb-wrapper .list-group-item.active:focus{z-index:2;color:#fff;background-color:#2c3e50;border-color:#2c3e50}.sgpb-wrapper .list-group-item.active .list-group-item-heading,
|
|
|
|
|
|
|
|
|
|
|
|
|
1080 |
.sgpb-wrapper .list-group-item.active:hover .list-group-item-heading,
|
1081 |
.sgpb-wrapper .list-group-item.active:focus .list-group-item-heading,
|
1082 |
.sgpb-wrapper .list-group-item.active .list-group-item-heading > small,
|
1084 |
.sgpb-wrapper .list-group-item.active:focus .list-group-item-heading > small,
|
1085 |
.sgpb-wrapper .list-group-item.active .list-group-item-heading > .small,
|
1086 |
.sgpb-wrapper .list-group-item.active:hover .list-group-item-heading > .small,
|
1087 |
+
.sgpb-wrapper .list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.sgpb-wrapper .list-group-item.active .list-group-item-text,
|
|
|
|
|
|
|
1088 |
.sgpb-wrapper .list-group-item.active:hover .list-group-item-text,
|
1089 |
+
.sgpb-wrapper .list-group-item.active:focus .list-group-item-text{color:#8aa4be}.sgpb-wrapper .list-group-item-success{color:#fff;background-color:#18bc9c}.sgpb-wrapper a.list-group-item-success,
|
1090 |
+
.sgpb-wrapper button.list-group-item-success{color:#fff}.sgpb-wrapper a.list-group-item-success .list-group-item-heading,
|
1091 |
+
.sgpb-wrapper button.list-group-item-success .list-group-item-heading{color:inherit}.sgpb-wrapper a.list-group-item-success:hover,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1092 |
.sgpb-wrapper button.list-group-item-success:hover,
|
1093 |
.sgpb-wrapper a.list-group-item-success:focus,
|
1094 |
+
.sgpb-wrapper button.list-group-item-success:focus{color:#fff;background-color:#15a589}.sgpb-wrapper a.list-group-item-success.active,
|
|
|
|
|
|
|
|
|
1095 |
.sgpb-wrapper button.list-group-item-success.active,
|
1096 |
.sgpb-wrapper a.list-group-item-success.active:hover,
|
1097 |
.sgpb-wrapper button.list-group-item-success.active:hover,
|
1098 |
.sgpb-wrapper a.list-group-item-success.active:focus,
|
1099 |
+
.sgpb-wrapper button.list-group-item-success.active:focus{color:#fff;background-color:#fff;border-color:#fff}.sgpb-wrapper .list-group-item-info{color:#fff;background-color:#3498db}.sgpb-wrapper a.list-group-item-info,
|
1100 |
+
.sgpb-wrapper button.list-group-item-info{color:#fff}.sgpb-wrapper a.list-group-item-info .list-group-item-heading,
|
1101 |
+
.sgpb-wrapper button.list-group-item-info .list-group-item-heading{color:inherit}.sgpb-wrapper a.list-group-item-info:hover,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1102 |
.sgpb-wrapper button.list-group-item-info:hover,
|
1103 |
.sgpb-wrapper a.list-group-item-info:focus,
|
1104 |
+
.sgpb-wrapper button.list-group-item-info:focus{color:#fff;background-color:#258cd1}.sgpb-wrapper a.list-group-item-info.active,
|
|
|
|
|
|
|
|
|
1105 |
.sgpb-wrapper button.list-group-item-info.active,
|
1106 |
.sgpb-wrapper a.list-group-item-info.active:hover,
|
1107 |
.sgpb-wrapper button.list-group-item-info.active:hover,
|
1108 |
.sgpb-wrapper a.list-group-item-info.active:focus,
|
1109 |
+
.sgpb-wrapper button.list-group-item-info.active:focus{color:#fff;background-color:#fff;border-color:#fff}.sgpb-wrapper .list-group-item-warning{color:#fff;background-color:#f39c12}.sgpb-wrapper a.list-group-item-warning,
|
1110 |
+
.sgpb-wrapper button.list-group-item-warning{color:#fff}.sgpb-wrapper a.list-group-item-warning .list-group-item-heading,
|
1111 |
+
.sgpb-wrapper button.list-group-item-warning .list-group-item-heading{color:inherit}.sgpb-wrapper a.list-group-item-warning:hover,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1112 |
.sgpb-wrapper button.list-group-item-warning:hover,
|
1113 |
.sgpb-wrapper a.list-group-item-warning:focus,
|
1114 |
+
.sgpb-wrapper button.list-group-item-warning:focus{color:#fff;background-color:#e08e0b}.sgpb-wrapper a.list-group-item-warning.active,
|
|
|
|
|
|
|
|
|
1115 |
.sgpb-wrapper button.list-group-item-warning.active,
|
1116 |
.sgpb-wrapper a.list-group-item-warning.active:hover,
|
1117 |
.sgpb-wrapper button.list-group-item-warning.active:hover,
|
1118 |
.sgpb-wrapper a.list-group-item-warning.active:focus,
|
1119 |
+
.sgpb-wrapper button.list-group-item-warning.active:focus{color:#fff;background-color:#fff;border-color:#fff}.sgpb-wrapper .list-group-item-danger{color:#fff;background-color:#e74c3c}.sgpb-wrapper a.list-group-item-danger,
|
1120 |
+
.sgpb-wrapper button.list-group-item-danger{color:#fff}.sgpb-wrapper a.list-group-item-danger .list-group-item-heading,
|
1121 |
+
.sgpb-wrapper button.list-group-item-danger .list-group-item-heading{color:inherit}.sgpb-wrapper a.list-group-item-danger:hover,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1122 |
.sgpb-wrapper button.list-group-item-danger:hover,
|
1123 |
.sgpb-wrapper a.list-group-item-danger:focus,
|
1124 |
+
.sgpb-wrapper button.list-group-item-danger:focus{color:#fff;background-color:#e43725}.sgpb-wrapper a.list-group-item-danger.active,
|
|
|
|
|
|
|
|
|
1125 |
.sgpb-wrapper button.list-group-item-danger.active,
|
1126 |
.sgpb-wrapper a.list-group-item-danger.active:hover,
|
1127 |
.sgpb-wrapper button.list-group-item-danger.active:hover,
|
1128 |
.sgpb-wrapper a.list-group-item-danger.active:focus,
|
1129 |
+
.sgpb-wrapper button.list-group-item-danger.active:focus{color:#fff;background-color:#fff;border-color:#fff}.sgpb-wrapper .list-group-item-heading{margin-top:0;margin-bottom:5px}.sgpb-wrapper .list-group-item-text{margin-bottom:0;line-height:1.3}.sgpb-wrapper
|
1130 |
+
.panel{margin-bottom:21px;background-color:#fff;border:1px
|
1131 |
+
solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:0 1px 1px rgba(0, 0, 0, 0.05)}.sgpb-wrapper .panel-body{padding:15px}.sgpb-wrapper .panel-heading{padding:10px
|
1132 |
+
15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.sgpb-wrapper .panel-heading > .dropdown .dropdown-toggle{color:inherit}.sgpb-wrapper .panel-title{margin-top:0;margin-bottom:0;font-size:17px;color:inherit}.sgpb-wrapper .panel-title > a,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1133 |
.sgpb-wrapper .panel-title > small,
|
1134 |
.sgpb-wrapper .panel-title > .small,
|
1135 |
.sgpb-wrapper .panel-title > small > a,
|
1136 |
+
.sgpb-wrapper .panel-title>.small>a{color:inherit}.sgpb-wrapper .panel-footer{padding:10px
|
1137 |
+
15px;background-color:#ecf0f1;border-top:1px solid #ecf0f1;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.sgpb-wrapper .panel > .list-group,
|
1138 |
+
.sgpb-wrapper .panel>.panel-collapse>.list-group{margin-bottom:0}.sgpb-wrapper .panel > .list-group .list-group-item,
|
1139 |
+
.sgpb-wrapper .panel > .panel-collapse > .list-group .list-group-item{border-width:1px 0;border-radius:0}.sgpb-wrapper .panel > .list-group:first-child .list-group-item:first-child,
|
1140 |
+
.sgpb-wrapper .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.sgpb-wrapper .panel > .list-group:last-child .list-group-item:last-child,
|
1141 |
+
.sgpb-wrapper .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.sgpb-wrapper .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.sgpb-wrapper .panel-heading + .list-group .list-group-item:first-child{border-top-width:0}.sgpb-wrapper .list-group+.panel-footer{border-top-width:0}.sgpb-wrapper .panel > .table,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1142 |
.sgpb-wrapper .panel > .table-responsive > .table,
|
1143 |
+
.sgpb-wrapper .panel>.panel-collapse>.table{margin-bottom:0}.sgpb-wrapper .panel > .table caption,
|
|
|
|
|
|
|
1144 |
.sgpb-wrapper .panel > .table-responsive > .table caption,
|
1145 |
+
.sgpb-wrapper .panel > .panel-collapse > .table
|
1146 |
+
caption{padding-left:15px;padding-right:15px}.sgpb-wrapper .panel > .table:first-child,
|
1147 |
+
.sgpb-wrapper .panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.sgpb-wrapper .panel > .table:first-child > thead:first-child > tr:first-child,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1148 |
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
|
1149 |
.sgpb-wrapper .panel > .table:first-child > tbody:first-child > tr:first-child,
|
1150 |
+
.sgpb-wrapper .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.sgpb-wrapper .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
|
|
|
|
|
|
|
|
1151 |
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
|
1152 |
.sgpb-wrapper .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
1153 |
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
|
1154 |
.sgpb-wrapper .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
1155 |
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
|
1156 |
.sgpb-wrapper .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
|
1157 |
+
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child{border-top-left-radius:3px}.sgpb-wrapper .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
|
|
|
|
|
|
1158 |
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
|
1159 |
.sgpb-wrapper .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
|
1160 |
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
|
1161 |
.sgpb-wrapper .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
1162 |
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
|
1163 |
.sgpb-wrapper .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
|
1164 |
+
.sgpb-wrapper .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child{border-top-right-radius:3px}.sgpb-wrapper .panel > .table:last-child,
|
1165 |
+
.sgpb-wrapper .panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.sgpb-wrapper .panel > .table:last-child > tbody:last-child > tr:last-child,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1166 |
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
|
1167 |
.sgpb-wrapper .panel > .table:last-child > tfoot:last-child > tr:last-child,
|
1168 |
+
.sgpb-wrapper .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.sgpb-wrapper .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
|
|
|
|
|
|
|
|
1169 |
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
|
1170 |
.sgpb-wrapper .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
1171 |
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
|
1172 |
.sgpb-wrapper .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
1173 |
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
|
1174 |
.sgpb-wrapper .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
|
1175 |
+
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child{border-bottom-left-radius:3px}.sgpb-wrapper .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
|
|
|
|
|
|
1176 |
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
|
1177 |
.sgpb-wrapper .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
|
1178 |
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
|
1179 |
.sgpb-wrapper .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
1180 |
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
|
1181 |
.sgpb-wrapper .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
|
1182 |
+
.sgpb-wrapper .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child{border-bottom-right-radius:3px}.sgpb-wrapper .panel > .panel-body + .table,
|
|
|
|
|
|
|
1183 |
.sgpb-wrapper .panel > .panel-body + .table-responsive,
|
1184 |
.sgpb-wrapper .panel > .table + .panel-body,
|
1185 |
+
.sgpb-wrapper .panel>.table-responsive+.panel-body{border-top:1px solid #ecf0f1}.sgpb-wrapper .panel > .table > tbody:first-child > tr:first-child th,
|
1186 |
+
.sgpb-wrapper .panel > .table > tbody:first-child > tr:first-child
|
1187 |
+
td{border-top:0}.sgpb-wrapper .panel > .table-bordered,
|
1188 |
+
.sgpb-wrapper .panel>.table-responsive>.table-bordered{border:0}.sgpb-wrapper .panel > .table-bordered > thead > tr > th:first-child,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1189 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
|
1190 |
.sgpb-wrapper .panel > .table-bordered > tbody > tr > th:first-child,
|
1191 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
|
1196 |
.sgpb-wrapper .panel > .table-bordered > tbody > tr > td:first-child,
|
1197 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
|
1198 |
.sgpb-wrapper .panel > .table-bordered > tfoot > tr > td:first-child,
|
1199 |
+
.sgpb-wrapper .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.sgpb-wrapper .panel > .table-bordered > thead > tr > th:last-child,
|
|
|
|
|
|
|
1200 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
|
1201 |
.sgpb-wrapper .panel > .table-bordered > tbody > tr > th:last-child,
|
1202 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
|
1207 |
.sgpb-wrapper .panel > .table-bordered > tbody > tr > td:last-child,
|
1208 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
|
1209 |
.sgpb-wrapper .panel > .table-bordered > tfoot > tr > td:last-child,
|
1210 |
+
.sgpb-wrapper .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.sgpb-wrapper .panel > .table-bordered > thead > tr:first-child > td,
|
|
|
|
|
|
|
1211 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
|
1212 |
.sgpb-wrapper .panel > .table-bordered > tbody > tr:first-child > td,
|
1213 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
|
1214 |
.sgpb-wrapper .panel > .table-bordered > thead > tr:first-child > th,
|
1215 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
|
1216 |
.sgpb-wrapper .panel > .table-bordered > tbody > tr:first-child > th,
|
1217 |
+
.sgpb-wrapper .panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.sgpb-wrapper .panel > .table-bordered > tbody > tr:last-child > td,
|
|
|
|
|
|
|
1218 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
|
1219 |
.sgpb-wrapper .panel > .table-bordered > tfoot > tr:last-child > td,
|
1220 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
|
1221 |
.sgpb-wrapper .panel > .table-bordered > tbody > tr:last-child > th,
|
1222 |
.sgpb-wrapper .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
|
1223 |
.sgpb-wrapper .panel > .table-bordered > tfoot > tr:last-child > th,
|
1224 |
+
.sgpb-wrapper .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.sgpb-wrapper .panel>.table-responsive{border:0;margin-bottom:0}.sgpb-wrapper .panel-group{margin-bottom:21px}.sgpb-wrapper .panel-group
|
1225 |
+
.panel{margin-bottom:0;border-radius:4px}.sgpb-wrapper .panel-group .panel+.panel{margin-top:5px}.sgpb-wrapper .panel-group .panel-heading{border-bottom:0}.sgpb-wrapper .panel-group .panel-heading + .panel-collapse > .panel-body,
|
1226 |
+
.sgpb-wrapper .panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ecf0f1}.sgpb-wrapper .panel-group .panel-footer{border-top:0}.sgpb-wrapper .panel-group .panel-footer + .panel-collapse .panel-body{border-bottom:1px solid #ecf0f1}.sgpb-wrapper .panel-default{border-color:#ecf0f1}.sgpb-wrapper .panel-default>.panel-heading{color:#2c3e50;background-color:#ecf0f1;border-color:#ecf0f1}.sgpb-wrapper .panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ecf0f1}.sgpb-wrapper .panel-default > .panel-heading
|
1227 |
+
.badge{color:#ecf0f1;background-color:#2c3e50}.sgpb-wrapper .panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ecf0f1}.sgpb-wrapper .panel-primary{border-color:#2c3e50}.sgpb-wrapper .panel-primary>.panel-heading{color:#fff;background-color:#2c3e50;border-color:#2c3e50}.sgpb-wrapper .panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#2c3e50}.sgpb-wrapper .panel-primary > .panel-heading
|
1228 |
+
.badge{color:#2c3e50;background-color:#fff}.sgpb-wrapper .panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#2c3e50}.sgpb-wrapper .panel-success{border-color:#18bc9c}.sgpb-wrapper .panel-success>.panel-heading{color:#fff;background-color:#18bc9c;border-color:#18bc9c}.sgpb-wrapper .panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#18bc9c}.sgpb-wrapper .panel-success > .panel-heading
|
1229 |
+
.badge{color:#18bc9c;background-color:#fff}.sgpb-wrapper .panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#18bc9c}.sgpb-wrapper .panel-info{border-color:#3498db}.sgpb-wrapper .panel-info>.panel-heading{color:#fff;background-color:#3498db;border-color:#3498db}.sgpb-wrapper .panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#3498db}.sgpb-wrapper .panel-info > .panel-heading
|
1230 |
+
.badge{color:#3498db;background-color:#fff}.sgpb-wrapper .panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#3498db}.sgpb-wrapper .panel-warning{border-color:#f39c12}.sgpb-wrapper .panel-warning>.panel-heading{color:#fff;background-color:#f39c12;border-color:#f39c12}.sgpb-wrapper .panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#f39c12}.sgpb-wrapper .panel-warning > .panel-heading
|
1231 |
+
.badge{color:#f39c12;background-color:#fff}.sgpb-wrapper .panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#f39c12}.sgpb-wrapper .panel-danger{border-color:#e74c3c}.sgpb-wrapper .panel-danger>.panel-heading{color:#fff;background-color:#e74c3c;border-color:#e74c3c}.sgpb-wrapper .panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#e74c3c}.sgpb-wrapper .panel-danger > .panel-heading
|
1232 |
+
.badge{color:#e74c3c;background-color:#fff}.sgpb-wrapper .panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#e74c3c}.sgpb-wrapper .embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.sgpb-wrapper .embed-responsive .embed-responsive-item,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1233 |
.sgpb-wrapper .embed-responsive iframe,
|
1234 |
.sgpb-wrapper .embed-responsive embed,
|
1235 |
.sgpb-wrapper .embed-responsive object,
|
1236 |
+
.sgpb-wrapper .embed-responsive
|
1237 |
+
video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.sgpb-wrapper .embed-responsive-16by9{padding-bottom:56.25%}.sgpb-wrapper .embed-responsive-4by3{padding-bottom:75%}.sgpb-wrapper
|
1238 |
+
.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#ecf0f1;border:1px
|
1239 |
+
solid transparent;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05)}.sgpb-wrapper .well
|
1240 |
+
blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15)}.sgpb-wrapper .well-lg{padding:24px;border-radius:6px}.sgpb-wrapper .well-sm{padding:9px;border-radius:3px}.sgpb-wrapper
|
1241 |
+
.close{float:right;font-size:22.5px;font-weight:bold;line-height:1;color:#000;text-shadow:none;opacity:0.2;filter:alpha(opacity=20)}.sgpb-wrapper .close:hover,
|
1242 |
+
.sgpb-wrapper .close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:0.5;filter:alpha(opacity=50)}.sgpb-wrapper
|
1243 |
+
button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.sgpb-wrapper .modal-open{overflow:hidden}.sgpb-wrapper
|
1244 |
+
.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.sgpb-wrapper .modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.sgpb-wrapper .modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.sgpb-wrapper .modal-open
|
1245 |
+
.modal{overflow-x:hidden;overflow-y:auto}.sgpb-wrapper .modal-dialog{position:relative;width:auto;margin:10px}.sgpb-wrapper .modal-content{position:relative;background-color:#fff;border:1px
|
1246 |
+
solid #999;border:1px
|
1247 |
+
solid rgba(0, 0, 0, 0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0, 0, 0, 0.5);box-shadow:0 3px 9px rgba(0, 0, 0, 0.5);-webkit-background-clip:padding-box;background-clip:padding-box;outline:0}.sgpb-wrapper .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.sgpb-wrapper .modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.sgpb-wrapper .modal-backdrop.in{opacity:0.5;filter:alpha(opacity=50)}.sgpb-wrapper .modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.sgpb-wrapper .modal-header
|
1248 |
+
.close{margin-top:-2px}.sgpb-wrapper .modal-title{margin:0;line-height:1.42857143}.sgpb-wrapper .modal-body{position:relative;padding:20px}.sgpb-wrapper .modal-footer{padding:20px;text-align:right;border-top:1px solid #e5e5e5}.sgpb-wrapper .modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.sgpb-wrapper .modal-footer .btn-group .btn+.btn{margin-left:-1px}.sgpb-wrapper .modal-footer .btn-block+.btn-block{margin-left:0}.sgpb-wrapper .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 768px){.sgpb-wrapper .modal-dialog{width:600px;margin:30px
|
1249 |
+
auto}.sgpb-wrapper .modal-content{-webkit-box-shadow:0 5px 15px rgba(0, 0, 0, 0.5);box-shadow:0 5px 15px rgba(0, 0, 0, 0.5)}.sgpb-wrapper .modal-sm{width:300px}}@media (min-width: 992px){.sgpb-wrapper .modal-lg{width:900px}}.sgpb-wrapper
|
1250 |
+
.tooltip{position:absolute;z-index:1070;display:block;font-family:"Lato","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:13px;opacity:0;filter:alpha(opacity=0)}.sgpb-wrapper
|
1251 |
+
.tooltip.in{opacity:0.9;filter:alpha(opacity=90)}.sgpb-wrapper
|
1252 |
+
.tooltip.top{margin-top:-3px;padding:5px
|
1253 |
+
0}.sgpb-wrapper
|
1254 |
+
.tooltip.right{margin-left:3px;padding:0
|
1255 |
+
5px}.sgpb-wrapper
|
1256 |
+
.tooltip.bottom{margin-top:3px;padding:5px
|
1257 |
+
0}.sgpb-wrapper
|
1258 |
+
.tooltip.left{margin-left:-3px;padding:0
|
1259 |
+
5px}.sgpb-wrapper .tooltip-inner{max-width:200px;padding:3px
|
1260 |
+
8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.sgpb-wrapper .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.sgpb-wrapper .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.sgpb-wrapper .tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.sgpb-wrapper .tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.sgpb-wrapper .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.sgpb-wrapper .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.sgpb-wrapper .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.sgpb-wrapper .tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.sgpb-wrapper .tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.sgpb-wrapper
|
1261 |
+
.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Lato","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:15px;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px
|
1262 |
+
solid #ccc;border:1px
|
1263 |
+
solid rgba(0, 0, 0, 0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2)}.sgpb-wrapper
|
1264 |
+
.popover.top{margin-top:-10px}.sgpb-wrapper
|
1265 |
+
.popover.right{margin-left:10px}.sgpb-wrapper
|
1266 |
+
.popover.bottom{margin-top:10px}.sgpb-wrapper
|
1267 |
+
.popover.left{margin-left:-10px}.sgpb-wrapper .popover-title{margin:0;padding:8px
|
1268 |
+
14px;font-size:15px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.sgpb-wrapper .popover-content{padding:9px
|
1269 |
+
14px}.sgpb-wrapper .popover > .arrow,
|
1270 |
+
.sgpb-wrapper .popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.sgpb-wrapper .popover>.arrow{border-width:11px}.sgpb-wrapper .popover>.arrow:after{border-width:10px;content:""}.sgpb-wrapper .popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0, 0, 0, 0.25);bottom:-11px}.sgpb-wrapper .popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.sgpb-wrapper .popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0, 0, 0, 0.25)}.sgpb-wrapper .popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.sgpb-wrapper .popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0, 0, 0, 0.25);top:-11px}.sgpb-wrapper .popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.sgpb-wrapper .popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0, 0, 0, 0.25)}.sgpb-wrapper .popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.sgpb-wrapper
|
1271 |
+
.carousel{position:relative}.sgpb-wrapper .carousel-inner{position:relative;overflow:hidden;width:100%}.sgpb-wrapper .carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left}.sgpb-wrapper .carousel-inner > .item > img,
|
1272 |
+
.sgpb-wrapper .carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.sgpb-wrapper .carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.sgpb-wrapper .carousel-inner > .item.next,
|
1273 |
+
.sgpb-wrapper .carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}.sgpb-wrapper .carousel-inner > .item.prev,
|
1274 |
+
.sgpb-wrapper .carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}.sgpb-wrapper .carousel-inner > .item.next.left,
|
1275 |
+
.sgpb-wrapper .carousel-inner > .item.prev.right,
|
1276 |
+
.sgpb-wrapper .carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}.sgpb-wrapper .carousel-inner > .active,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1277 |
.sgpb-wrapper .carousel-inner > .next,
|
1278 |
+
.sgpb-wrapper .carousel-inner>.prev{display:block}.sgpb-wrapper .carousel-inner>.active{left:0}.sgpb-wrapper .carousel-inner > .next,
|
1279 |
+
.sgpb-wrapper .carousel-inner>.prev{position:absolute;top:0;width:100%}.sgpb-wrapper .carousel-inner>.next{left:100%}.sgpb-wrapper .carousel-inner>.prev{left:-100%}.sgpb-wrapper .carousel-inner > .next.left,
|
1280 |
+
.sgpb-wrapper .carousel-inner>.prev.right{left:0}.sgpb-wrapper .carousel-inner>.active.left{left:-100%}.sgpb-wrapper .carousel-inner>.active.right{left:100%}.sgpb-wrapper .carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:0.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0, 0, 0, 0.6);background-color:rgba(0, 0, 0, 0)}.sgpb-wrapper .carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);background-image:-webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.sgpb-wrapper .carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);background-image:-o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);background-image:-webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));background-image:linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.sgpb-wrapper .carousel-control:hover,
|
1281 |
+
.sgpb-wrapper .carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90)}.sgpb-wrapper .carousel-control .icon-prev,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1282 |
.sgpb-wrapper .carousel-control .icon-next,
|
1283 |
.sgpb-wrapper .carousel-control .glyphicon-chevron-left,
|
1284 |
+
.sgpb-wrapper .carousel-control .glyphicon-chevron-right{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.sgpb-wrapper .carousel-control .icon-prev,
|
1285 |
+
.sgpb-wrapper .carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.sgpb-wrapper .carousel-control .icon-next,
|
1286 |
+
.sgpb-wrapper .carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.sgpb-wrapper .carousel-control .icon-prev,
|
1287 |
+
.sgpb-wrapper .carousel-control .icon-next{width:20px;height:20px;line-height:1;font-family:serif}.sgpb-wrapper .carousel-control .icon-prev:before{content:'\2039'}.sgpb-wrapper .carousel-control .icon-next:before{content:'\203a'}.sgpb-wrapper .carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.sgpb-wrapper .carousel-indicators
|
1288 |
+
li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px
|
1289 |
+
solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0, 0, 0, 0)}.sgpb-wrapper .carousel-indicators
|
1290 |
+
.active{margin:0;width:12px;height:12px;background-color:#fff}.sgpb-wrapper .carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0, 0, 0, 0.6)}.sgpb-wrapper .carousel-caption
|
1291 |
+
.btn{text-shadow:none}@media screen and (min-width: 768px){.sgpb-wrapper .carousel-control .glyphicon-chevron-left,
|
1292 |
+
.sgpb-wrapper .carousel-control .glyphicon-chevron-right,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1293 |
.sgpb-wrapper .carousel-control .icon-prev,
|
1294 |
+
.sgpb-wrapper .carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.sgpb-wrapper .carousel-control .glyphicon-chevron-left,
|
1295 |
+
.sgpb-wrapper .carousel-control .icon-prev{margin-left:-10px}.sgpb-wrapper .carousel-control .glyphicon-chevron-right,
|
1296 |
+
.sgpb-wrapper .carousel-control .icon-next{margin-right:-10px}.sgpb-wrapper .carousel-caption{left:20%;right:20%;padding-bottom:30px}.sgpb-wrapper .carousel-indicators{bottom:20px}}.sgpb-wrapper .clearfix:before,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1297 |
.sgpb-wrapper .clearfix:after,
|
1298 |
.sgpb-wrapper .dl-horizontal dd:before,
|
1299 |
.sgpb-wrapper .dl-horizontal dd:after,
|
1324 |
.sgpb-wrapper .modal-header:before,
|
1325 |
.sgpb-wrapper .modal-header:after,
|
1326 |
.sgpb-wrapper .modal-footer:before,
|
1327 |
+
.sgpb-wrapper .modal-footer:after{content:" ";display:table}.sgpb-wrapper .clearfix:after,
|
|
|
|
|
|
|
|
|
1328 |
.sgpb-wrapper .dl-horizontal dd:after,
|
1329 |
.sgpb-wrapper .container:after,
|
1330 |
.sgpb-wrapper .container-fluid:after,
|
1339 |
.sgpb-wrapper .pager:after,
|
1340 |
.sgpb-wrapper .panel-body:after,
|
1341 |
.sgpb-wrapper .modal-header:after,
|
1342 |
+
.sgpb-wrapper .modal-footer:after{clear:both}.sgpb-wrapper .center-block{display:block;margin-left:auto;margin-right:auto}.sgpb-wrapper .pull-right{float:right !important}.sgpb-wrapper .pull-left{float:left !important}.sgpb-wrapper
|
1343 |
+
.hide{display:none !important}.sgpb-wrapper
|
1344 |
+
.show{display:block !important}.sgpb-wrapper
|
1345 |
+
.invisible{visibility:hidden}.sgpb-wrapper .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.sgpb-wrapper
|
1346 |
+
.hidden{display:none !important}.sgpb-wrapper
|
1347 |
+
.affix{position:fixed}@-ms-viewport{width:device-width}.sgpb-wrapper .visible-xs,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1348 |
.sgpb-wrapper .visible-sm,
|
1349 |
.sgpb-wrapper .visible-md,
|
1350 |
+
.sgpb-wrapper .visible-lg{display:none !important}.sgpb-wrapper .visible-xs-block,
|
|
|
|
|
|
|
1351 |
.sgpb-wrapper .visible-xs-inline,
|
1352 |
.sgpb-wrapper .visible-xs-inline-block,
|
1353 |
.sgpb-wrapper .visible-sm-block,
|
1358 |
.sgpb-wrapper .visible-md-inline-block,
|
1359 |
.sgpb-wrapper .visible-lg-block,
|
1360 |
.sgpb-wrapper .visible-lg-inline,
|
1361 |
+
.sgpb-wrapper .visible-lg-inline-block{display:none !important}@media (max-width: 767px){.sgpb-wrapper .visible-xs{display:block !important}.sgpb-wrapper table.visible-xs{display:table !important}.sgpb-wrapper tr.visible-xs{display:table-row !important}.sgpb-wrapper th.visible-xs,
|
1362 |
+
.sgpb-wrapper td.visible-xs{display:table-cell !important}}@media (max-width: 767px){.sgpb-wrapper .visible-xs-block{display:block !important}}@media (max-width: 767px){.sgpb-wrapper .visible-xs-inline{display:inline !important}}@media (max-width: 767px){.sgpb-wrapper .visible-xs-inline-block{display:inline-block !important}}@media (min-width: 768px) and (max-width: 991px){.sgpb-wrapper .visible-sm{display:block !important}.sgpb-wrapper table.visible-sm{display:table !important}.sgpb-wrapper tr.visible-sm{display:table-row !important}.sgpb-wrapper th.visible-sm,
|
1363 |
+
.sgpb-wrapper td.visible-sm{display:table-cell !important}}@media (min-width: 768px) and (max-width: 991px){.sgpb-wrapper .visible-sm-block{display:block !important}}@media (min-width: 768px) and (max-width: 991px){.sgpb-wrapper .visible-sm-inline{display:inline !important}}@media (min-width: 768px) and (max-width: 991px){.sgpb-wrapper .visible-sm-inline-block{display:inline-block !important}}@media (min-width: 992px) and (max-width: 1199px){.sgpb-wrapper .visible-md{display:block !important}.sgpb-wrapper table.visible-md{display:table !important}.sgpb-wrapper tr.visible-md{display:table-row !important}.sgpb-wrapper th.visible-md,
|
1364 |
+
.sgpb-wrapper td.visible-md{display:table-cell !important}}@media (min-width: 992px) and (max-width: 1199px){.sgpb-wrapper .visible-md-block{display:block !important}}@media (min-width: 992px) and (max-width: 1199px){.sgpb-wrapper .visible-md-inline{display:inline !important}}@media (min-width: 992px) and (max-width: 1199px){.sgpb-wrapper .visible-md-inline-block{display:inline-block !important}}@media (min-width: 1200px){.sgpb-wrapper .visible-lg{display:block !important}.sgpb-wrapper table.visible-lg{display:table !important}.sgpb-wrapper tr.visible-lg{display:table-row !important}.sgpb-wrapper th.visible-lg,
|
1365 |
+
.sgpb-wrapper td.visible-lg{display:table-cell !important}}@media (min-width: 1200px){.sgpb-wrapper .visible-lg-block{display:block !important}}@media (min-width: 1200px){.sgpb-wrapper .visible-lg-inline{display:inline !important}}@media (min-width: 1200px){.sgpb-wrapper .visible-lg-inline-block{display:inline-block !important}}@media (max-width: 767px){.sgpb-wrapper .hidden-xs{display:none !important}}@media (min-width: 768px) and (max-width: 991px){.sgpb-wrapper .hidden-sm{display:none !important}}@media (min-width: 992px) and (max-width: 1199px){.sgpb-wrapper .hidden-md{display:none !important}}@media (min-width: 1200px){.sgpb-wrapper .hidden-lg{display:none !important}}.sgpb-wrapper .visible-print{display:none !important}@media
|
1366 |
+
print{.sgpb-wrapper .visible-print{display:block !important}.sgpb-wrapper table.visible-print{display:table !important}.sgpb-wrapper tr.visible-print{display:table-row !important}.sgpb-wrapper th.visible-print,
|
1367 |
+
.sgpb-wrapper td.visible-print{display:table-cell !important}}.sgpb-wrapper .visible-print-block{display:none !important}@media
|
1368 |
+
print{.sgpb-wrapper .visible-print-block{display:block !important}}.sgpb-wrapper .visible-print-inline{display:none !important}@media
|
1369 |
+
print{.sgpb-wrapper .visible-print-inline{display:inline !important}}.sgpb-wrapper .visible-print-inline-block{display:none !important}@media
|
1370 |
+
print{.sgpb-wrapper .visible-print-inline-block{display:inline-block !important}}@media
|
1371 |
+
print{.sgpb-wrapper .hidden-print{display:none !important}}.sgpb-wrapper
|
1372 |
+
.navbar{border-width:0}.sgpb-wrapper .navbar-default
|
1373 |
+
.badge{background-color:#fff;color:#2c3e50}.sgpb-wrapper .navbar-inverse
|
1374 |
+
.badge{background-color:#fff;color:#18bc9c}.sgpb-wrapper .navbar-brand{line-height:1}.sgpb-wrapper
|
1375 |
+
.btn{border-width:2px}.sgpb-wrapper .btn:active{-webkit-box-shadow:none;box-shadow:none}.sgpb-wrapper .btn-group.open .dropdown-toggle{-webkit-box-shadow:none;box-shadow:none}.sgpb-wrapper .text-primary,
|
1376 |
+
.sgpb-wrapper .text-primary:hover{color:#2c3e50}.sgpb-wrapper .text-success,
|
1377 |
+
.sgpb-wrapper .text-success:hover{color:#18bc9c}.sgpb-wrapper .text-danger,
|
1378 |
+
.sgpb-wrapper .text-danger:hover{color:#e74c3c}.sgpb-wrapper .text-warning,
|
1379 |
+
.sgpb-wrapper .text-warning:hover{color:#f39c12}.sgpb-wrapper .text-info,
|
1380 |
+
.sgpb-wrapper .text-info:hover{color:#3498db}.sgpb-wrapper table a:not(.btn),
|
1381 |
+
.sgpb-wrapper .table a:not(.btn){text-decoration:underline}.sgpb-wrapper table .dropdown-menu a,
|
1382 |
+
.sgpb-wrapper .table .dropdown-menu
|
1383 |
+
a{text-decoration:none}.sgpb-wrapper table .success,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1384 |
.sgpb-wrapper .table .success,
|
1385 |
.sgpb-wrapper table .warning,
|
1386 |
.sgpb-wrapper .table .warning,
|
1387 |
.sgpb-wrapper table .danger,
|
1388 |
.sgpb-wrapper .table .danger,
|
1389 |
.sgpb-wrapper table .info,
|
1390 |
+
.sgpb-wrapper .table
|
1391 |
+
.info{color:#fff}.sgpb-wrapper table .success > th > a,
|
|
|
|
|
1392 |
.sgpb-wrapper .table .success > th > a,
|
1393 |
.sgpb-wrapper table .warning > th > a,
|
1394 |
.sgpb-wrapper .table .warning > th > a,
|
1411 |
.sgpb-wrapper table .danger > a,
|
1412 |
.sgpb-wrapper .table .danger > a,
|
1413 |
.sgpb-wrapper table .info > a,
|
1414 |
+
.sgpb-wrapper .table .info>a{color:#fff}.sgpb-wrapper table > thead > tr > th,
|
|
|
|
|
|
|
1415 |
.sgpb-wrapper .table > thead > tr > th,
|
1416 |
.sgpb-wrapper table > tbody > tr > th,
|
1417 |
.sgpb-wrapper .table > tbody > tr > th,
|
1422 |
.sgpb-wrapper table > tbody > tr > td,
|
1423 |
.sgpb-wrapper .table > tbody > tr > td,
|
1424 |
.sgpb-wrapper table > tfoot > tr > td,
|
1425 |
+
.sgpb-wrapper .table>tfoot>tr>td{border:none}.sgpb-wrapper table-bordered > thead > tr > th,
|
|
|
|
|
|
|
1426 |
.sgpb-wrapper .table-bordered > thead > tr > th,
|
1427 |
.sgpb-wrapper table-bordered > tbody > tr > th,
|
1428 |
.sgpb-wrapper .table-bordered > tbody > tr > th,
|
1433 |
.sgpb-wrapper table-bordered > tbody > tr > td,
|
1434 |
.sgpb-wrapper .table-bordered > tbody > tr > td,
|
1435 |
.sgpb-wrapper table-bordered > tfoot > tr > td,
|
1436 |
+
.sgpb-wrapper .table-bordered>tfoot>tr>td{border:1px
|
1437 |
+
solid #ecf0f1}.sgpb-wrapper .form-control,
|
1438 |
+
.sgpb-wrapper
|
1439 |
+
input{border-width:2px;-webkit-box-shadow:none;box-shadow:none}.sgpb-wrapper .form-control:focus,
|
1440 |
+
.sgpb-wrapper input:focus{-webkit-box-shadow:none;box-shadow:none}.sgpb-wrapper .has-warning .help-block,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1441 |
.sgpb-wrapper .has-warning .control-label,
|
1442 |
.sgpb-wrapper .has-warning .radio,
|
1443 |
.sgpb-wrapper .has-warning .checkbox,
|
1447 |
.sgpb-wrapper .has-warning.checkbox label,
|
1448 |
.sgpb-wrapper .has-warning.radio-inline label,
|
1449 |
.sgpb-wrapper .has-warning.checkbox-inline label,
|
1450 |
+
.sgpb-wrapper .has-warning .form-control-feedback{color:#f39c12}.sgpb-wrapper .has-warning .form-control,
|
1451 |
+
.sgpb-wrapper .has-warning .form-control:focus{border:2px
|
1452 |
+
solid #f39c12}.sgpb-wrapper .has-warning .input-group-addon{border-color:#f39c12}.sgpb-wrapper .has-error .help-block,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1453 |
.sgpb-wrapper .has-error .control-label,
|
1454 |
.sgpb-wrapper .has-error .radio,
|
1455 |
.sgpb-wrapper .has-error .checkbox,
|
1459 |
.sgpb-wrapper .has-error.checkbox label,
|
1460 |
.sgpb-wrapper .has-error.radio-inline label,
|
1461 |
.sgpb-wrapper .has-error.checkbox-inline label,
|
1462 |
+
.sgpb-wrapper .has-error .form-control-feedback{color:#e74c3c}.sgpb-wrapper .has-error .form-control,
|
1463 |
+
.sgpb-wrapper .has-error .form-control:focus{border:2px
|
1464 |
+
solid #e74c3c}.sgpb-wrapper .has-error .input-group-addon{border-color:#e74c3c}.sgpb-wrapper .has-success .help-block,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1465 |
.sgpb-wrapper .has-success .control-label,
|
1466 |
.sgpb-wrapper .has-success .radio,
|
1467 |
.sgpb-wrapper .has-success .checkbox,
|
1471 |
.sgpb-wrapper .has-success.checkbox label,
|
1472 |
.sgpb-wrapper .has-success.radio-inline label,
|
1473 |
.sgpb-wrapper .has-success.checkbox-inline label,
|
1474 |
+
.sgpb-wrapper .has-success .form-control-feedback{color:#18bc9c}.sgpb-wrapper .has-success .form-control,
|
1475 |
+
.sgpb-wrapper .has-success .form-control:focus{border:2px
|
1476 |
+
solid #18bc9c}.sgpb-wrapper .has-success .input-group-addon{border-color:#18bc9c}.sgpb-wrapper .nav .open > a,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1477 |
.sgpb-wrapper .nav .open > a:hover,
|
1478 |
+
.sgpb-wrapper .nav .open>a:focus{border-color:transparent}.sgpb-wrapper .pager a,
|
1479 |
+
.sgpb-wrapper .pager a:hover{color:#fff}.sgpb-wrapper .pager .disabled > a,
|
|
|
|
|
|
|
|
|
|
|
|
|
1480 |
.sgpb-wrapper .pager .disabled > a:hover,
|
1481 |
.sgpb-wrapper .pager .disabled > a:focus,
|
1482 |
+
.sgpb-wrapper .pager .disabled>span{background-color:#3be6c4}.sgpb-wrapper
|
1483 |
+
.close{color:#fff;text-decoration:none;opacity:0.4}.sgpb-wrapper .close:hover,
|
1484 |
+
.sgpb-wrapper .close:focus{color:#fff;opacity:1}.sgpb-wrapper .alert .alert-link{color:#fff;text-decoration:underline}.sgpb-wrapper
|
1485 |
+
.progress{height:10px;-webkit-box-shadow:none;box-shadow:none}.sgpb-wrapper .progress .progress-bar{font-size:10px;line-height:10px}.sgpb-wrapper
|
1486 |
+
.well{-webkit-box-shadow:none;box-shadow:none}.sgpb-wrapper a.list-group-item.active,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1487 |
.sgpb-wrapper a.list-group-item.active:hover,
|
1488 |
+
.sgpb-wrapper a.list-group-item.active:focus{border-color:#ecf0f1}.sgpb-wrapper a.list-group-item-success.active{background-color:#18bc9c}.sgpb-wrapper a.list-group-item-success.active:hover,
|
1489 |
+
.sgpb-wrapper a.list-group-item-success.active:focus{background-color:#15a589}.sgpb-wrapper a.list-group-item-warning.active{background-color:#f39c12}.sgpb-wrapper a.list-group-item-warning.active:hover,
|
1490 |
+
.sgpb-wrapper a.list-group-item-warning.active:focus{background-color:#e08e0b}.sgpb-wrapper a.list-group-item-danger.active{background-color:#e74c3c}.sgpb-wrapper a.list-group-item-danger.active:hover,
|
1491 |
+
.sgpb-wrapper a.list-group-item-danger.active:focus{background-color:#e43725}.sgpb-wrapper .panel-default
|
1492 |
+
.close{color:#2c3e50}.sgpb-wrapper .modal
|
1493 |
+
.close{color:#2c3e50}.sgpb-wrapper
|
1494 |
+
.popover{color:#2c3e50}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public/css/theme.css
CHANGED
File without changes
|
public/js/Backend.js
CHANGED
@@ -1,1824 +1,190 @@
|
|
1 |
-
function SGPBBackend()
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
}
|
37 |
-
|
38 |
-
|
39 |
-
{
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
};
|
47 |
-
|
48 |
-
|
49 |
-
{
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
}
|
83 |
-
|
84 |
-
SGPBBackend.
|
85 |
-
{
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
};
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
}
|
110 |
-
|
111 |
-
SGPBBackend.prototype.
|
112 |
-
|
113 |
-
}
|
114 |
-
|
115 |
-
|
116 |
-
{
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
}
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
SGPBBackend.prototype.
|
137 |
-
{
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
jQuery(window).on('sgpbMultichoiceChanged', function() {
|
192 |
-
that.accordion();
|
193 |
-
});
|
194 |
-
};
|
195 |
-
|
196 |
-
SGPBBackend.prototype.customButtonColorPicker = function()
|
197 |
-
{
|
198 |
-
var that = this;
|
199 |
-
var colorPicker = jQuery('.sgpb-custom-button-color-picker');
|
200 |
-
if (!colorPicker.length) {
|
201 |
-
return false;
|
202 |
-
}
|
203 |
-
colorPicker.wpColorPicker({
|
204 |
-
change: function() {
|
205 |
-
var colorPickerElement = jQuery(this);
|
206 |
-
that.changeColor(colorPickerElement);
|
207 |
-
}
|
208 |
-
});
|
209 |
-
jQuery('.wp-picker-holder').bind('click', function() {
|
210 |
-
var selectedInput = jQuery(this).prev().find('.sgpb-color-picker');
|
211 |
-
that.changeColor(selectedInput);
|
212 |
-
});
|
213 |
-
};
|
214 |
-
|
215 |
-
|
216 |
-
SGPBBackend.prototype.insertHTMLButtonToEditor = function()
|
217 |
-
{
|
218 |
-
jQuery('.sgpb-insert-custom-button-to-editor').unbind('click').bind('click', function () {
|
219 |
-
var buttonTitle = jQuery('#sgpb-custom-btn-title').val();
|
220 |
-
var style = '';
|
221 |
-
jQuery('.sgpb-custom-button-settings').each(function() {
|
222 |
-
var styleType = jQuery(this).data('style-type');
|
223 |
-
var val = jQuery(this).val();
|
224 |
-
style += styleType+': '+val+';';
|
225 |
-
});
|
226 |
-
var defaultStyles = {
|
227 |
-
padding: 0,
|
228 |
-
'font-size': '22px',
|
229 |
-
'font-weight': 900
|
230 |
-
};
|
231 |
-
|
232 |
-
for (var styleType in defaultStyles) {
|
233 |
-
style += styleType+': '+defaultStyles[styleType]+';';
|
234 |
-
}
|
235 |
-
|
236 |
-
|
237 |
-
var serizlizedOption = jQuery('#sgpb-custom-button-wrapper').find('select,textarea, input');
|
238 |
-
var allOptionsObj = {};
|
239 |
-
|
240 |
-
serizlizedOption.each(function() {
|
241 |
-
var name = jQuery(this).attr('name');
|
242 |
-
if (jQuery(this).attr('type') == 'checkbox') {
|
243 |
-
if (jQuery(this).is(':checked')) {
|
244 |
-
var value = jQuery(this).val();
|
245 |
-
allOptionsObj[name] = value;
|
246 |
-
}
|
247 |
-
return true;
|
248 |
-
}
|
249 |
-
if (jQuery(this).attr('type') == 'radio') {
|
250 |
-
if (jQuery(this).is(':checked')) {
|
251 |
-
var value = jQuery(this).val();
|
252 |
-
allOptionsObj[name] = value;
|
253 |
-
}
|
254 |
-
}
|
255 |
-
else {
|
256 |
-
var value = jQuery(this).val();
|
257 |
-
allOptionsObj[name] = value;
|
258 |
-
}
|
259 |
-
});
|
260 |
-
var bgColor = allOptionsObj['sgpb-custom-btn-bg-color'];
|
261 |
-
var hoverBgColor = allOptionsObj['sgpb-custom-btn-bg-color'];
|
262 |
-
|
263 |
-
var allOptionsJson = encodeURI(JSON.stringify(allOptionsObj));
|
264 |
-
var id = Math.floor(Math.random() * Math.floor(100000));
|
265 |
-
|
266 |
-
var button = '<button style="'+style+'" class="sgpb-html-custom-button sgpb-html-custom-button-'+id+'" data-options='+allOptionsJson+' onMouseOver="this.style.backgroundColor="'+hoverBgColor+'" onMouseOut="this.style.backgroundColor="'+bgColor+'" ">'+buttonTitle+'</button>';
|
267 |
-
button += '<style>.sgpb-html-custom-button-'+id+':hover {background-color: '+hoverBgColor+' !important;}</style>';
|
268 |
-
if (allOptionsObj['sgpb-custom-button'] == 'openPopup') {
|
269 |
-
var currentPopupId = allOptionsObj['sgpb-custom-button-popup'];
|
270 |
-
button = '[sg_popup id="'+currentPopupId+'" insidePopup="on"] <br>'+button+'<br>[/sg_popup]';
|
271 |
-
}
|
272 |
-
window.send_to_editor(button);
|
273 |
-
});
|
274 |
-
};
|
275 |
-
|
276 |
-
SGPBBackend.prototype.closeMediaButtonPopup = function(popup)
|
277 |
-
{
|
278 |
-
jQuery('.sgpb-close-media-popup-js').on('click', function() {
|
279 |
-
popup.close();
|
280 |
-
});
|
281 |
-
};
|
282 |
-
|
283 |
-
SGPBBackend.prototype.resetToDefaultValue = function()
|
284 |
-
{
|
285 |
-
var htmlTarget = jQuery('.js-sgpb-reset-default-value');
|
286 |
-
|
287 |
-
if (!htmlTarget.length) {
|
288 |
-
return false;
|
289 |
-
}
|
290 |
-
|
291 |
-
htmlTarget.each(function() {
|
292 |
-
jQuery(this).bind('change', function() {
|
293 |
-
var currentValue = jQuery(this).val();
|
294 |
-
var defaultValue = jQuery(this).data('default');
|
295 |
-
|
296 |
-
if (!defaultValue || currentValue) {
|
297 |
-
return false;
|
298 |
-
}
|
299 |
-
jQuery(this).val(defaultValue)
|
300 |
-
});
|
301 |
-
})
|
302 |
-
};
|
303 |
-
|
304 |
-
SGPBBackend.prototype.showInfo = function()
|
305 |
-
{
|
306 |
-
jQuery('.sgpb-info-icon').hover(
|
307 |
-
function() {
|
308 |
-
jQuery(this).nextAll('.sgpb-info-text').first().css({'display' : 'inline-block'});
|
309 |
-
},
|
310 |
-
function() {
|
311 |
-
jQuery(this).nextAll('.sgpb-info-text').first().css({'display' : 'none'});
|
312 |
-
}
|
313 |
-
);
|
314 |
-
};
|
315 |
-
|
316 |
-
SGPBBackend.prototype.soundPreview = function()
|
317 |
-
{
|
318 |
-
var songValue = 1;
|
319 |
-
var lastSong = undefined;
|
320 |
-
|
321 |
-
jQuery('.js-preview-sound').bind('click', function() {
|
322 |
-
var uploadFile = jQuery('#js-sound-open-url').val();
|
323 |
-
if (typeof lastSong == 'undefined') {
|
324 |
-
lastSong = new Audio (uploadFile);
|
325 |
-
}
|
326 |
-
|
327 |
-
/*
|
328 |
-
* songValue == 1 should be song
|
329 |
-
* songValue == 2 song should be pause
|
330 |
-
*/
|
331 |
-
if (songValue == 1) {
|
332 |
-
lastSong.play();
|
333 |
-
songValue = 2;
|
334 |
-
|
335 |
-
}
|
336 |
-
else if (songValue == 2) {
|
337 |
-
lastSong.pause();
|
338 |
-
songValue = 1;
|
339 |
-
|
340 |
-
}
|
341 |
-
|
342 |
-
lastSong.onended = function()
|
343 |
-
{
|
344 |
-
lastSong = undefined;
|
345 |
-
songValue = 1;
|
346 |
-
}
|
347 |
-
});
|
348 |
-
|
349 |
-
jQuery('#js-sound-open-url').change(function() {
|
350 |
-
if (typeof lastSong != 'undefined') {
|
351 |
-
lastSong.pause();
|
352 |
-
lastSong = undefined;
|
353 |
-
}
|
354 |
-
songValue = 1;
|
355 |
-
});
|
356 |
-
|
357 |
-
jQuery('#js-reset-to-default-song').click(function(e) {
|
358 |
-
e.preventDefault();
|
359 |
-
|
360 |
-
if (typeof lastSong != 'undefined') {
|
361 |
-
lastSong.pause();
|
362 |
-
lastSong = undefined;
|
363 |
-
}
|
364 |
-
songValue = 1;
|
365 |
-
|
366 |
-
var defaultSong = jQuery(this).data('default-song');
|
367 |
-
jQuery('#js-sound-open-url').val(defaultSong).change();
|
368 |
-
});
|
369 |
-
};
|
370 |
-
|
371 |
-
SGPBBackend.prototype.resetSound = function()
|
372 |
-
{
|
373 |
-
var resetButton = jQuery('#js-reset-to-default-song');
|
374 |
-
|
375 |
-
if (!resetButton.length) {
|
376 |
-
return false;
|
377 |
-
}
|
378 |
-
|
379 |
-
resetButton.bind('click', function() {
|
380 |
-
var defaultSoundUrl = jQuery(this).data('default-song');
|
381 |
-
jQuery('#js-sound-open-url').val(defaultSoundUrl).change();
|
382 |
-
});
|
383 |
-
};
|
384 |
-
|
385 |
-
SGPBBackend.prototype.soundUpload = function()
|
386 |
-
{
|
387 |
-
var uploadButton = jQuery('#js-upload-open-sound-button');
|
388 |
-
var supportedAudioTypes = ['audio/mp3', 'audio/m4a', 'audio/ogg', 'audio/wav', 'audio/mpeg'];
|
389 |
-
|
390 |
-
if (!uploadButton.length) {
|
391 |
-
return false;
|
392 |
-
}
|
393 |
-
var uploader;
|
394 |
-
uploadButton.bind('click', function(e) {
|
395 |
-
e.preventDefault();
|
396 |
-
|
397 |
-
if (uploader) {
|
398 |
-
uploader.open();
|
399 |
-
return false;
|
400 |
-
}
|
401 |
-
|
402 |
-
/* Extend the wp.media object */
|
403 |
-
uploader = wp.media.frames.file_frame = wp.media({
|
404 |
-
titleFF : SGPB_JS_LOCALIZATION.changeSound,
|
405 |
-
button : {
|
406 |
-
text : SGPB_JS_LOCALIZATION.changeSound
|
407 |
-
},
|
408 |
-
library : {type : ['audio/mpeg', 'audio/wav']},
|
409 |
-
multiple : false
|
410 |
-
});
|
411 |
-
|
412 |
-
/* When a file is selected, grab the URL and set it as the text field's value */
|
413 |
-
uploader.on('select', function() {
|
414 |
-
var attachment = uploader.state().get('selection').first().toJSON();
|
415 |
-
if (supportedAudioTypes.indexOf(attachment.mime) === -1) {
|
416 |
-
alert(SGPB_JS_LOCALIZATION.audioSupportAlertMessage);
|
417 |
-
return;
|
418 |
-
}
|
419 |
-
jQuery('#js-sound-open-url').val(attachment.url).change();
|
420 |
-
});
|
421 |
-
/* Open the uploader dialog */
|
422 |
-
uploader.open();
|
423 |
-
});
|
424 |
-
};
|
425 |
-
|
426 |
-
SGPBBackend.prototype.openAnimationPreview = function()
|
427 |
-
{
|
428 |
-
var openAnimationPreview = jQuery('.sgpb-preview-animation');
|
429 |
-
|
430 |
-
if (!openAnimationPreview.length) {
|
431 |
-
return false;
|
432 |
-
}
|
433 |
-
var openAnimation = jQuery('.sgpb-preview-open-animation');
|
434 |
-
var openAnimationDiv = jQuery('#js-open-animation-effect');
|
435 |
-
var speed = jQuery('#sgpb-open-animation-speed');
|
436 |
-
|
437 |
-
var openAnimationAction = function() {
|
438 |
-
var speedVal = parseInt(speed.val());
|
439 |
-
|
440 |
-
if (!speedVal) {
|
441 |
-
speedVal = 1;
|
442 |
-
}
|
443 |
-
var speedSeconds = speedVal * 1000;
|
444 |
-
|
445 |
-
setTimeout(function() {
|
446 |
-
openAnimationDiv.hide();
|
447 |
-
}, speedSeconds);
|
448 |
-
openAnimationDiv.removeClass();
|
449 |
-
openAnimationDiv.show();
|
450 |
-
openAnimationDiv.css({'animationDuration' : speedSeconds + 'ms'});
|
451 |
-
openAnimationDiv.addClass('sg-animated ' + jQuery('.sgpb-open-animation-effects option:selected').val());
|
452 |
-
};
|
453 |
-
|
454 |
-
jQuery('.sgpb-open-animation-effects').bind('change', openAnimationAction);
|
455 |
-
openAnimationPreview.bind('click', openAnimationAction);
|
456 |
-
};
|
457 |
-
|
458 |
-
SGPBBackend.prototype.closeAnimationPreview = function()
|
459 |
-
{
|
460 |
-
var closeAnimationPreview = jQuery('.sgpb-preview-close-animation');
|
461 |
-
|
462 |
-
if (!closeAnimationPreview.length) {
|
463 |
-
return false;
|
464 |
-
}
|
465 |
-
var closeAnimation = jQuery('.sgpb-preview-close-animation');
|
466 |
-
var closeAnimationDiv = jQuery('#js-close-animation-effect');
|
467 |
-
var speed = jQuery('#sgpb-close-animation-speed');
|
468 |
-
|
469 |
-
var closeAnimationAction = function() {
|
470 |
-
var speedVal = parseInt(speed.val());
|
471 |
-
|
472 |
-
if (!speedVal) {
|
473 |
-
speedVal = 1;
|
474 |
-
}
|
475 |
-
var speedSeconds = speedVal * 1000;
|
476 |
-
|
477 |
-
setTimeout(function() {
|
478 |
-
closeAnimationDiv.hide();
|
479 |
-
}, speedSeconds);
|
480 |
-
closeAnimationDiv.removeClass();
|
481 |
-
closeAnimationDiv.show();
|
482 |
-
closeAnimationDiv.css({'animationDuration' : speedSeconds + 'ms'});
|
483 |
-
closeAnimationDiv.addClass('sg-animated ' + jQuery('.sgpb-close-animation-effects option:selected').val());
|
484 |
-
};
|
485 |
-
|
486 |
-
jQuery('.sgpb-close-animation-effects').bind('change', closeAnimationAction);
|
487 |
-
closeAnimationPreview.bind('click', closeAnimationAction);
|
488 |
-
};
|
489 |
-
|
490 |
-
SGPBBackend.prototype.multipleChoiceButton = function()
|
491 |
-
{
|
492 |
-
if (!jQuery('.sgpb-choice-wrapper input').length) {
|
493 |
-
return false;
|
494 |
-
}
|
495 |
-
var that = this;
|
496 |
-
|
497 |
-
jQuery('.sgpb-choice-option-wrapper input').each(function() {
|
498 |
-
if (jQuery(this).is(':checked')) {
|
499 |
-
that.buildChoiceShowOption(jQuery(this));
|
500 |
-
}
|
501 |
-
|
502 |
-
jQuery(this).on("click", function() {
|
503 |
-
that.hideAllChoiceWrapper(jQuery('.sgpb-choice-option-wrapper'));
|
504 |
-
that.buildChoiceShowOption(jQuery(this));
|
505 |
-
jQuery(window).trigger('sgpbMultichoiceChanged');
|
506 |
-
});
|
507 |
-
})
|
508 |
-
};
|
509 |
-
|
510 |
-
SGPBBackend.prototype.hideAllChoiceWrapper = function(choiceOptionsWrapper)
|
511 |
-
{
|
512 |
-
choiceOptionsWrapper.each(function() {
|
513 |
-
var choiceInput = jQuery(this).find('input');
|
514 |
-
if (!choiceInput.length) {
|
515 |
-
return;
|
516 |
-
}
|
517 |
-
var choiceInputWrapperId = choiceInput.attr('data-attr-href');
|
518 |
-
jQuery('#'+choiceInputWrapperId).addClass('sg-hide');
|
519 |
-
})
|
520 |
-
};
|
521 |
-
|
522 |
-
SGPBBackend.prototype.buildChoiceShowOption = function(currentRadioButton)
|
523 |
-
{
|
524 |
-
var choiceOptions = currentRadioButton.attr('data-attr-href');
|
525 |
-
var currentOptionWrapper = currentRadioButton.parents('.sgpb-choice-wrapper').first();
|
526 |
-
var choiceOptionWrapper = jQuery('#'+choiceOptions).removeClass('sg-hide');
|
527 |
-
currentOptionWrapper.after(choiceOptionWrapper);
|
528 |
-
};
|
529 |
-
|
530 |
-
SGPBBackend.prototype.initRadioAccordions = function()
|
531 |
-
{
|
532 |
-
var radioButtonsList = [
|
533 |
-
jQuery("[name='sgpb-content-click-behavior']"),
|
534 |
-
jQuery("[name='sgpb-popup-dimension-mode']")
|
535 |
-
];
|
536 |
-
|
537 |
-
for (var radioButtonIndex in radioButtonsList) {
|
538 |
-
|
539 |
-
var radioButton = radioButtonsList[radioButtonIndex];
|
540 |
-
if (typeof radioButton != 'object') {
|
541 |
-
continue;
|
542 |
-
}
|
543 |
-
var that = this;
|
544 |
-
radioButton.each(function() {
|
545 |
-
that.buildRadioAccordionActions(jQuery(this));
|
546 |
-
});
|
547 |
-
radioButton.on("change", function() {
|
548 |
-
that.buildRadioAccordionActions(jQuery(this), 'change');
|
549 |
-
});
|
550 |
-
}
|
551 |
-
};
|
552 |
-
|
553 |
-
SGPBBackend.prototype.buildRadioAccordionActions = function(currentRadioButton, event)
|
554 |
-
{
|
555 |
-
if (event == 'change') {
|
556 |
-
currentRadioButton.parents('.sg-radio-option-behavior').first().find('.js-radio-accordion').addClass('sg-hide');
|
557 |
-
}
|
558 |
-
|
559 |
-
var value = currentRadioButton.val();
|
560 |
-
var toggleContent = jQuery('.js-accordion-'+value);
|
561 |
-
toggleContent.addClass('sg-hide');
|
562 |
-
var addAfter = currentRadioButton;
|
563 |
-
|
564 |
-
if (currentRadioButton.is(':checked')) {
|
565 |
-
if (currentRadioButton.parents('.row').first().length) {
|
566 |
-
addAfter = currentRadioButton.parents('.row').first();
|
567 |
-
}
|
568 |
-
jQuery('.js-accordion-'+value).removeClass('sg-hide');
|
569 |
-
addAfter.after(toggleContent);
|
570 |
-
}
|
571 |
-
};
|
572 |
-
|
573 |
-
SGPBBackend.prototype.accordion = function()
|
574 |
-
{
|
575 |
-
var that = this;
|
576 |
-
var element = jQuery(".js-checkbox-accordion");
|
577 |
-
element.each(function() {
|
578 |
-
that.checkboxAccordion(jQuery(this));
|
579 |
-
});
|
580 |
-
|
581 |
-
element.click(function() {
|
582 |
-
var elements = jQuery(this);
|
583 |
-
that.checkboxAccordion(jQuery(this));
|
584 |
-
if (jQuery(this).attr('id') == 'sgpb-show-background') {
|
585 |
-
SGPBBackend.prototype.backgroundRangeSliderInit();
|
586 |
-
}
|
587 |
-
else if (jQuery(this).attr('id') == 'sgpb-enable-popup-overlay') {
|
588 |
-
SGPBBackend.prototype.overlayRangeSliderInit();
|
589 |
-
}
|
590 |
-
});
|
591 |
-
};
|
592 |
-
|
593 |
-
SGPBBackend.prototype.checkboxAccordion = function(element)
|
594 |
-
{
|
595 |
-
if (!element.is(':checked')) {
|
596 |
-
element.parents('.row').first().nextAll('div').first().find('input').attr('disabled', 'disabled');
|
597 |
-
element.parents('.row').first().nextAll('div').first().css({'display': 'none'});
|
598 |
-
if (element.attr('id') == 'schedule-status') {
|
599 |
-
element.parents('.row').first().nextAll('div').first().find('select').removeAttr('required');
|
600 |
-
}
|
601 |
-
}
|
602 |
-
else {
|
603 |
-
element.parents('.row').first().nextAll('div').first().find('input:disabled').removeAttr('disabled');
|
604 |
-
element.parents('.row').first().nextAll('div').first().css({'display':'inline-block'});
|
605 |
-
if (element.attr('id') == 'schedule-status') {
|
606 |
-
element.parents('.row').first().nextAll('div').first().find('select').attr('required', 'required');
|
607 |
-
}
|
608 |
-
}
|
609 |
-
};
|
610 |
-
|
611 |
-
SGPBBackend.prototype.sgTabs = function()
|
612 |
-
{
|
613 |
-
jQuery('.events-tabs').each(function() {
|
614 |
-
jQuery(this).tabs();
|
615 |
-
});
|
616 |
-
};
|
617 |
-
|
618 |
-
SGPBBackend.prototype.targetCondition = function()
|
619 |
-
{
|
620 |
-
this.addRuleRow();
|
621 |
-
this.addGroupRow();
|
622 |
-
this.removeRuleButton();
|
623 |
-
this.editOpenPopup();
|
624 |
-
this.changeConditionParams();
|
625 |
-
};
|
626 |
-
|
627 |
-
SGPBBackend.prototype.reInitRulesConfigButton = function()
|
628 |
-
{
|
629 |
-
this.addRuleRow();
|
630 |
-
this.addGroupRow();
|
631 |
-
this.removeRuleButton();
|
632 |
-
this.changeConditionParams();
|
633 |
-
this.editOpenPopup();
|
634 |
-
this.popupSelect2();
|
635 |
-
this.sgTabs();
|
636 |
-
this.showInfo();
|
637 |
-
};
|
638 |
-
|
639 |
-
SGPBBackend.prototype.editOpenPopup = function()
|
640 |
-
{
|
641 |
-
if (jQuery('.sg-rules-edit-rule').length == 0) {
|
642 |
-
return;
|
643 |
-
}
|
644 |
-
var that = this;
|
645 |
-
that.unbindPopup();
|
646 |
-
|
647 |
-
jQuery('.sg-rules-edit-rule').each(function() {
|
648 |
-
jQuery(this).on('click', function(e) {
|
649 |
-
e.preventDefault();
|
650 |
-
var hiddenDivId = jQuery(this).attr('data-id');
|
651 |
-
var popupConfigObj = new PopupConfig();
|
652 |
-
popupConfigObj.magicCall('setContentPadding', 8);
|
653 |
-
popupConfigObj.magicCall('setMinWidth', 500);
|
654 |
-
popupConfigObj.magicCall('setSrcElement', hiddenDivId);
|
655 |
-
popupConfigObj.magicCall('setOverlayColor', 'black');
|
656 |
-
var config = popupConfigObj.combineConfigObj();
|
657 |
-
config.willOpen = function() {
|
658 |
-
that.reInitRulesConfigButton();
|
659 |
-
};
|
660 |
-
var popup = new SGPopup(config);
|
661 |
-
popup.open();
|
662 |
-
jQuery(window).bind('sgpbDidOpen', function() {
|
663 |
-
that.popupContentTabs();
|
664 |
-
that.popupHiddenContentAccordions();
|
665 |
-
});
|
666 |
-
jQuery('.sgpb-popup-option-save').on('click', function(e) {
|
667 |
-
e.preventDefault();
|
668 |
-
|
669 |
-
var parent = jQuery(this).parents('.sgpb-wrapper').first();
|
670 |
-
var elements = parent.find('.sgpb-popup-option');
|
671 |
-
|
672 |
-
if (elements.length) {
|
673 |
-
elements.each(function() {
|
674 |
-
var currentValue = jQuery(this).val();
|
675 |
-
var type = jQuery(this).attr('type');
|
676 |
-
if (type == 'checkbox') {
|
677 |
-
var currChecked = jQuery(this).is(':checked');
|
678 |
-
jQuery(this).prop('defaultChecked', '');
|
679 |
-
|
680 |
-
if (currChecked) {
|
681 |
-
jQuery(this).prop('defaultChecked', 'checked')
|
682 |
-
}
|
683 |
-
}
|
684 |
-
else if (type == 'text') {
|
685 |
-
jQuery(this).attr("value", jQuery(this).val());
|
686 |
-
}
|
687 |
-
else if (type == 'number') {
|
688 |
-
currentValue = parseInt(currentValue);
|
689 |
-
if (isNaN(currentValue)) {
|
690 |
-
/*If user write string inside Expiry time we change the value to 0*/
|
691 |
-
currentValue = 0;
|
692 |
-
}
|
693 |
-
jQuery(this).attr("value", currentValue);
|
694 |
-
}
|
695 |
-
});
|
696 |
-
}
|
697 |
-
popup.close();
|
698 |
-
});
|
699 |
-
|
700 |
-
jQuery('.events-option-close').on('click', function() {
|
701 |
-
popup.close();
|
702 |
-
});
|
703 |
-
|
704 |
-
that.unbindPopup();
|
705 |
-
|
706 |
-
});
|
707 |
-
});
|
708 |
-
};
|
709 |
-
|
710 |
-
SGPBBackend.prototype.unbindPopup = function()
|
711 |
-
{
|
712 |
-
jQuery('.sg-rules-edit-rule').each(function() {
|
713 |
-
jQuery(this).unbind();
|
714 |
-
})
|
715 |
-
};
|
716 |
-
|
717 |
-
SGPBBackend.prototype.addRuleRow = function()
|
718 |
-
{
|
719 |
-
var that = this;
|
720 |
-
|
721 |
-
jQuery('.sg-rules-add-rule ').unbind();
|
722 |
-
jQuery('.sg-rules-add-rule ').on('click', function(e) {
|
723 |
-
e.preventDefault();
|
724 |
-
that.eventsAddButtonSpinner(jQuery(this), 'show');
|
725 |
-
var prevRuleDiv = jQuery(this).parents('.sg-target-rule').first();
|
726 |
-
var currentGroupDiv = jQuery(this).parents('.sg-target-group').first();
|
727 |
-
var lastRuleId = parseInt(prevRuleDiv.attr('data-rule-id'));
|
728 |
-
var groupId = parseInt(currentGroupDiv.attr('data-group-id'));
|
729 |
-
var conditionName = jQuery(this).parents('.popup-conditions-wrapper').attr('data-condition-type');
|
730 |
-
var ruleId = lastRuleId + 1;
|
731 |
-
|
732 |
-
var data = {
|
733 |
-
action: 'add_condition_rule_row',
|
734 |
-
nonce_ajax: SGPB_JS_PARAMS.nonce,
|
735 |
-
conditionName: conditionName,
|
736 |
-
ruleId: ruleId,
|
737 |
-
groupId: groupId
|
738 |
-
};
|
739 |
-
|
740 |
-
jQuery.post(ajaxurl, data, function(response) {
|
741 |
-
prevRuleDiv.after(response);
|
742 |
-
jQuery('.popup-conditions-'+conditionName+' > .sg-target-group-'+groupId+' .sg-target-rule-'+lastRuleId+' .sg-rules-add-button-wrapper').hide();
|
743 |
-
that.reInitRulesConfigButton();
|
744 |
-
that.eventsAddButtonSpinner(jQuery(this), 'hide');
|
745 |
-
});
|
746 |
-
});
|
747 |
-
if (typeof SGPBSelect2 === 'function') {
|
748 |
-
SGPBSelect2.prototype.hideProOptions();
|
749 |
-
}
|
750 |
-
};
|
751 |
-
|
752 |
-
SGPBBackend.prototype.addGroupRow = function()
|
753 |
-
{
|
754 |
-
var that = this;
|
755 |
-
jQuery('.sg-rules-add-group').unbind();
|
756 |
-
jQuery('.sg-rules-add-group').on('click', function(e) {
|
757 |
-
e.preventDefault();
|
758 |
-
var prevGroupDiv = jQuery(this).prevAll('.sg-target-group').first();
|
759 |
-
var currentGroupId = parseInt(prevGroupDiv.attr('data-group-id'));
|
760 |
-
var newGroupId = currentGroupId + 1;
|
761 |
-
var conditionName = jQuery(this).parents('.popup-conditions-wrapper').attr('data-condition-type');
|
762 |
-
|
763 |
-
var data = {
|
764 |
-
action: 'add_condition_group_row',
|
765 |
-
nonce_ajax: SGPB_JS_PARAMS.nonce,
|
766 |
-
conditionName: conditionName,
|
767 |
-
groupId: newGroupId
|
768 |
-
};
|
769 |
-
|
770 |
-
jQuery.post(ajaxurl, data, function(response) {
|
771 |
-
prevGroupDiv.after(response);
|
772 |
-
that.reInitRulesConfigButton();
|
773 |
-
});
|
774 |
-
});
|
775 |
-
};
|
776 |
-
|
777 |
-
SGPBBackend.prototype.removeRuleButton = function()
|
778 |
-
{
|
779 |
-
jQuery('.sg-rules-delete-rule').unbind();
|
780 |
-
jQuery('.sg-rules-delete-rule').on('click', function(e) {
|
781 |
-
e.preventDefault();
|
782 |
-
var currentTargetWrapperDiv = jQuery(this).parents('.popup-conditions-wrapper').first();
|
783 |
-
var currentGroupDiv = jQuery(this).parents('.sg-target-group').first();
|
784 |
-
var currentRuleDiv = jQuery(this).parents('.sg-target-rule').first();
|
785 |
-
var firstGroupDiv = currentTargetWrapperDiv.find('.sg-target-group').first();
|
786 |
-
var lastRuleDiv = currentGroupDiv.find('.sg-target-rule').last();
|
787 |
-
var firstRuleDiv = currentGroupDiv.find('.sg-target-rule').first();
|
788 |
-
var currentGroupsLength = currentTargetWrapperDiv.find('.sg-target-group').length;
|
789 |
-
var currentRulesLength = currentGroupDiv.find('.sg-target-rule').length;
|
790 |
-
|
791 |
-
var currentGroupId = currentGroupDiv.attr('data-group-id');
|
792 |
-
var firstGroupId = firstGroupDiv.attr('data-group-id');
|
793 |
-
var currentRulId = currentRuleDiv.attr('data-rule-id');
|
794 |
-
var lastRuleId = lastRuleDiv.attr('data-rule-id');
|
795 |
-
var firstRuleId = firstRuleDiv.attr('data-rule-id');
|
796 |
-
|
797 |
-
|
798 |
-
if (currentRulId > firstRuleId) {
|
799 |
-
currentRuleDiv.remove();
|
800 |
-
}
|
801 |
-
|
802 |
-
/*When the last rule*/
|
803 |
-
if (currentGroupId == firstGroupId && currentGroupsLength == 1 && currentRulId == lastRuleId && currentRulesLength == 1) {
|
804 |
-
alert('You can not delete the last rule.');
|
805 |
-
}
|
806 |
-
else {
|
807 |
-
currentRuleDiv.remove();
|
808 |
-
}
|
809 |
-
|
810 |
-
if (currentRulId == lastRuleId) {
|
811 |
-
lastRuleDiv = currentGroupDiv.find('.sg-target-rule').last();
|
812 |
-
lastRuleDiv.find('.sg-rules-add-button-wrapper').removeAttr('style');
|
813 |
-
lastRuleDiv.find('.sg-rules-add-button-wrapper').show();
|
814 |
-
}
|
815 |
-
|
816 |
-
if (currentRulId == firstRuleId && currentGroupsLength > 1) {
|
817 |
-
|
818 |
-
if (currentRulesLength == 1) {
|
819 |
-
if (currentGroupId == firstGroupId) {
|
820 |
-
currentGroupDiv.next('.sg-rules-or').remove();
|
821 |
-
}
|
822 |
-
else {
|
823 |
-
currentGroupDiv.prev('.sg-rules-or').remove();
|
824 |
-
}
|
825 |
-
|
826 |
-
currentGroupDiv.remove();
|
827 |
-
}
|
828 |
-
else {
|
829 |
-
currentRuleDiv.remove();
|
830 |
-
}
|
831 |
-
}
|
832 |
-
});
|
833 |
-
};
|
834 |
-
|
835 |
-
SGPBBackend.getParamFromUrl = function(param)
|
836 |
-
{
|
837 |
-
var url = window.location.href;
|
838 |
-
param = param.replace(/[\[\]]/g, "\\$&");
|
839 |
-
var regex = new RegExp("[?&]" + param + "(=([^&#]*)|&|#|$)"),
|
840 |
-
results = regex.exec(url);
|
841 |
-
if (!results) {
|
842 |
-
return null;
|
843 |
-
}
|
844 |
-
if (!results[2]) {
|
845 |
-
return '';
|
846 |
-
}
|
847 |
-
return decodeURIComponent(results[2].replace(/\+/g, " "));
|
848 |
-
};
|
849 |
-
|
850 |
-
SGPBBackend.prototype.changeConditionParams = function()
|
851 |
-
{
|
852 |
-
var that = this;
|
853 |
-
|
854 |
-
jQuery('.popup-conditions-wrapper .sg-condition-param-wrapper select').each(function() {
|
855 |
-
jQuery(this).unbind('change').change(function(e) {
|
856 |
-
/* if value hasn't change, don't do anything */
|
857 |
-
if (this.options[this.selectedIndex].defaultSelected) {
|
858 |
-
return;
|
859 |
-
}
|
860 |
-
|
861 |
-
e.preventDefault();
|
862 |
-
that.eventsAddButtonSpinner(jQuery(this).parent().parent().find('.sg-rules-add-rule'), 'show');
|
863 |
-
var prevRuleDiv = jQuery(this).parents('.sg-target-rule').first();
|
864 |
-
var currentGroupDiv = jQuery(this).parents('.sg-target-group').first();
|
865 |
-
var currentTargetDiv = jQuery(this).parents('.popup-conditions-wrapper').first();
|
866 |
-
|
867 |
-
var groupId = parseInt(currentGroupDiv.attr('data-group-id'));
|
868 |
-
var ruleId = parseInt(prevRuleDiv.attr('data-rule-id'));
|
869 |
-
var conditionName = currentTargetDiv.attr('data-condition-type');
|
870 |
-
|
871 |
-
var parentDiv = currentTargetDiv.find('.sg-target-rule-'+ruleId).prev();
|
872 |
-
if (!parentDiv.length) {
|
873 |
-
parentDiv = null;
|
874 |
-
}
|
875 |
-
var paramSavedValue = jQuery(this).val();
|
876 |
-
|
877 |
-
var data = {
|
878 |
-
action: 'change_condition_rule_row',
|
879 |
-
nonce_ajax: SGPB_JS_PARAMS.nonce,
|
880 |
-
conditionName: conditionName,
|
881 |
-
paramName: paramSavedValue,
|
882 |
-
popupId: SGPBBackend.getParamFromUrl('post'),
|
883 |
-
ruleId: ruleId,
|
884 |
-
groupId: groupId
|
885 |
-
};
|
886 |
-
|
887 |
-
jQuery.post(ajaxurl, data, function(response) {
|
888 |
-
currentTargetDiv.find('.sg-target-rule-'+ruleId).after(response);
|
889 |
-
currentTargetDiv.find('.sg-target-rule-'+ruleId).first().remove();
|
890 |
-
|
891 |
-
jQuery('.popup-conditions-'+conditionName+' > .sg-target-group-'+groupId+' .sg-target-rule-'+ruleId+' .sg-rules-add-button-wrapper').hide();
|
892 |
-
that.reInitRulesConfigButton();
|
893 |
-
|
894 |
-
if (!currentTargetDiv.find('.sg-target-rule-'+ruleId).next().length) {
|
895 |
-
currentTargetDiv.find('.sg-rules-add-button-wrapper').last().show();
|
896 |
-
}
|
897 |
-
that.eventsAddButtonSpinner(jQuery(this).parent().parent().find('.sg-rules-add-rule'), 'hide');
|
898 |
-
});
|
899 |
-
|
900 |
-
});
|
901 |
-
});
|
902 |
-
|
903 |
-
/*
|
904 |
-
This junky code was added because the code related to the column creation is not abstract enough.
|
905 |
-
TODO: throw away all related code and create new architecture for the purpose.
|
906 |
-
*/
|
907 |
-
jQuery('.popup-special-conditions-wrapper .sg-condition-operator-wrapper select').each(function() {
|
908 |
-
jQuery(this).change(function(e) {
|
909 |
-
e.preventDefault();
|
910 |
-
|
911 |
-
var paramSavedValue = jQuery(this).val();
|
912 |
-
var currentTargetDiv = jQuery(this).closest('.popup-special-conditions-wrapper');
|
913 |
-
var conditionName = currentTargetDiv.data('condition-type');
|
914 |
-
var paramValue = currentTargetDiv.find('.sg-condition-param-wrapper select').first().val();
|
915 |
-
var ruleId = 0;
|
916 |
-
var groupId = 0;
|
917 |
-
var prevRuleDiv = jQuery(this).parents('.sg-target-rule').first();
|
918 |
-
var currentGroupDiv = jQuery(this).parents('.sg-target-group').first();
|
919 |
-
var currentTargetDiv = jQuery(this).parents('.popup-conditions-wrapper').first();
|
920 |
-
|
921 |
-
var groupId = parseInt(currentGroupDiv.attr('data-group-id'));
|
922 |
-
var ruleId = parseInt(prevRuleDiv.attr('data-rule-id'));
|
923 |
-
|
924 |
-
var data = {
|
925 |
-
action: 'change_condition_rule_row',
|
926 |
-
nonce_ajax: SGPB_JS_PARAMS.nonce,
|
927 |
-
conditionName: conditionName,
|
928 |
-
paramName: paramSavedValue,
|
929 |
-
paramValue: paramValue,
|
930 |
-
popupId: SGPBBackend.getParamFromUrl('post'),
|
931 |
-
ruleId: ruleId,
|
932 |
-
groupId: groupId
|
933 |
-
};
|
934 |
-
|
935 |
-
jQuery.post(ajaxurl, data, function(response) {
|
936 |
-
currentTargetDiv.find('.sg-target-rule-'+ruleId).after(response);
|
937 |
-
currentTargetDiv.find('.sg-target-rule-'+ruleId).first().remove();
|
938 |
-
|
939 |
-
that.reInitRulesConfigButton();
|
940 |
-
if (currentTargetDiv.find('.sg-target-rule-'+ruleId).next().length) {
|
941 |
-
jQuery('.popup-conditions-'+conditionName+' > .sg-target-group-'+groupId+' .sg-target-rule-'+ruleId+' .sg-rules-add-button-wrapper').hide();
|
942 |
-
}
|
943 |
-
});
|
944 |
-
});
|
945 |
-
});
|
946 |
-
};
|
947 |
-
|
948 |
-
SGPBBackend.prototype.popupSelect2 = function()
|
949 |
-
{
|
950 |
-
if (!jQuery('.js-sg-select2').length) {
|
951 |
-
return;
|
952 |
-
}
|
953 |
-
|
954 |
-
jQuery('select.js-sg-select2').each(function() {
|
955 |
-
|
956 |
-
var type = jQuery(this).attr('data-select-type');
|
957 |
-
var className = jQuery(this).attr('data-select-class');
|
958 |
-
var options = {
|
959 |
-
width: '100%'
|
960 |
-
};
|
961 |
-
|
962 |
-
if (type == 'ajax') {
|
963 |
-
|
964 |
-
options = jQuery.extend(options, {
|
965 |
-
minimumInputLength: 1,
|
966 |
-
ajax: {
|
967 |
-
url: SGPB_JS_PARAMS.url,
|
968 |
-
dataType: 'json',
|
969 |
-
delay: 250,
|
970 |
-
type: "POST",
|
971 |
-
data: function(params) {
|
972 |
-
var searchKey = jQuery(this).attr('data-value-param');
|
973 |
-
var dataCallback = jQuery(this).attr('data-select-callback');
|
974 |
-
return {
|
975 |
-
action: 'select2_search_data',
|
976 |
-
nonce_ajax: SGPB_JS_PARAMS.nonce,
|
977 |
-
searchTerm: params.term,
|
978 |
-
searchCallback: dataCallback,
|
979 |
-
searchKey: searchKey
|
980 |
-
};
|
981 |
-
},
|
982 |
-
processResults: function(data) {
|
983 |
-
return {
|
984 |
-
results: jQuery.map(data.items, function(item) {
|
985 |
-
return {
|
986 |
-
text: item.text,
|
987 |
-
id: item.id
|
988 |
-
}
|
989 |
-
|
990 |
-
})
|
991 |
-
};
|
992 |
-
}
|
993 |
-
}
|
994 |
-
});
|
995 |
-
}
|
996 |
-
|
997 |
-
jQuery(this).sgpbselect2(options);
|
998 |
-
});
|
999 |
-
};
|
1000 |
-
|
1001 |
-
SGPBBackend.prototype.fixedPositionSelection = function()
|
1002 |
-
{
|
1003 |
-
jQuery(".js-fixed-position-style").bind("click",function() {
|
1004 |
-
var sgElement = jQuery(this);
|
1005 |
-
var sgPoss = sgElement.attr('data-sgvalue');
|
1006 |
-
jQuery(".js-fixed-position-style").css("backgroundColor","#FFFFFF");
|
1007 |
-
jQuery(this).css("backgroundColor","rgba(70,173,208,0.5)");
|
1008 |
-
jQuery(".js-fixed-position").val(sgPoss);
|
1009 |
-
});
|
1010 |
-
|
1011 |
-
jQuery(".js-fixed-position-style").bind("mouseover",function() {
|
1012 |
-
jQuery(".js-fixed-position-style").css("backgroundColor","#FFFFFF");
|
1013 |
-
jQuery(this).css("backgroundColor","rgb(70,173,208)");
|
1014 |
-
jQuery(".js-fixed-position-style").each(function() {
|
1015 |
-
if (jQuery(this).attr("data-sgvalue") == jQuery('.js-fixed-position').val())
|
1016 |
-
jQuery(this).css("backgroundColor","rgba(70,173,208,0.5)");
|
1017 |
-
});
|
1018 |
-
});
|
1019 |
-
|
1020 |
-
jQuery(".js-fixed-position-style").bind("mouseout",function() {
|
1021 |
-
if (jQuery(".js-fixed-position-style").attr("data-sgvalue") !== jQuery(".js-fixed-position").val() || jQuery(".js-fixed-position").val() == 1) {
|
1022 |
-
jQuery(this).css("backgroundColor","#FFFFFF");
|
1023 |
-
}
|
1024 |
-
jQuery(".js-fixed-position-style").each(function() {
|
1025 |
-
if (jQuery(this).attr("data-sgvalue") == jQuery('.js-fixed-position').val()) {
|
1026 |
-
jQuery(this).css("backgroundColor","rgba(70,173,208,0.5)");
|
1027 |
-
}
|
1028 |
-
});
|
1029 |
-
});
|
1030 |
-
|
1031 |
-
if (jQuery('.js-fixed-position').val()!='') {
|
1032 |
-
jQuery(".js-fixed-position-style").each(function(){
|
1033 |
-
if (jQuery(this).attr("data-sgvalue") == jQuery('.js-fixed-position').val()) {
|
1034 |
-
jQuery(this).css("backgroundColor","rgba(70,173,208,0.5)");
|
1035 |
-
}
|
1036 |
-
});
|
1037 |
-
}
|
1038 |
-
};
|
1039 |
-
|
1040 |
-
SGPBBackend.prototype.hideTabContents = function(ruleId)
|
1041 |
-
{
|
1042 |
-
jQuery(".sgpb-tab-content-"+ruleId).each(function() {
|
1043 |
-
var id = jQuery(this).attr("id");
|
1044 |
-
var currentTab = jQuery("[data-content-id="+id+"]");
|
1045 |
-
|
1046 |
-
if (!currentTab.hasClass('sgpb-active')) {
|
1047 |
-
jQuery(this).hide();
|
1048 |
-
}
|
1049 |
-
|
1050 |
-
});
|
1051 |
-
};
|
1052 |
-
|
1053 |
-
SGPBBackend.prototype.popupContentTabs = function()
|
1054 |
-
{
|
1055 |
-
var ruleId = jQuery("#popup-dialog-main-div .sgpb-tab-links").first().attr('data-rule-id');
|
1056 |
-
var that = this;
|
1057 |
-
this.hideTabContents(ruleId);
|
1058 |
-
|
1059 |
-
jQuery("#popupDialogMainDiv .sgpb-tab-links").bind('click', function() {
|
1060 |
-
jQuery("#popupDialogMainDiv .sgpb-tab-links").removeClass('sgpb-active');
|
1061 |
-
that.hideTabContents(ruleId);
|
1062 |
-
jQuery(".sgpb-tab-content").hide();
|
1063 |
-
var id = jQuery(this).attr('data-content-id');
|
1064 |
-
jQuery('#'+id).show();
|
1065 |
-
jQuery(this).addClass('sgpb-active');
|
1066 |
-
});
|
1067 |
-
};
|
1068 |
-
|
1069 |
-
SGPBBackend.prototype.popupHiddenContentAccordions = function()
|
1070 |
-
{
|
1071 |
-
jQuery('.sgpb-popup-accordion').each(function() {
|
1072 |
-
var key = jQuery(this).attr('data-name');
|
1073 |
-
var ruleId = jQuery(this).attr('data-rule-id');
|
1074 |
-
if (!jQuery(this).is(':checked')) {
|
1075 |
-
jQuery(".sgpb-popup-hidden-content-"+key+"-"+ruleId+"-wrapper").hide();
|
1076 |
-
}
|
1077 |
-
});
|
1078 |
-
|
1079 |
-
jQuery('.sgpb-popup-accordion').bind('change', function() {
|
1080 |
-
var key = jQuery(this).attr('data-name');
|
1081 |
-
var ruleId = jQuery(this).attr('data-rule-id');
|
1082 |
-
jQuery(".sgpb-popup-hidden-content-"+key+"-"+ruleId+"-wrapper").hide();
|
1083 |
-
if (jQuery(this).is(':checked')) {
|
1084 |
-
jQuery(".sgpb-popup-hidden-content-"+key+"-"+ruleId+"-wrapper").show();
|
1085 |
-
}
|
1086 |
-
});
|
1087 |
-
};
|
1088 |
-
|
1089 |
-
SGPBBackend.prototype.popupThemesPreview = function()
|
1090 |
-
{
|
1091 |
-
var that = this;
|
1092 |
-
if (!jQuery('.js-sgpb-popup-themes').length){
|
1093 |
-
return false;
|
1094 |
-
}
|
1095 |
-
|
1096 |
-
that.themeRelatedSettings();
|
1097 |
-
jQuery('.js-sgpb-popup-themes').bind("mouseover",function(e) {
|
1098 |
-
var themeId = jQuery(this).attr('data-popup-theme-number');
|
1099 |
-
jQuery('.theme-preview-'+themeId).css('display', 'block');
|
1100 |
-
jQuery(this).click(function() {
|
1101 |
-
jQuery('.sgpb-disable-border-wrapper').addClass('sg-hide');
|
1102 |
-
that.setCloseButtonDefaultPositions();
|
1103 |
-
that.setCloseButtonDefaultPositionValues();
|
1104 |
-
document.getElementById('sgpb-button-position-top').value = 'none';
|
1105 |
-
document.getElementById('sgpb-button-position-right').value = 'none';
|
1106 |
-
document.getElementById('sgpb-button-position-bottom').value = 'none';
|
1107 |
-
document.getElementById('sgpb-button-position-left').value = 'none';
|
1108 |
-
if (themeId == 4) {/* for theme with close button type=button */
|
1109 |
-
jQuery('.sgpb-close-button-image-option-wrapper').addClass('sg-hide');
|
1110 |
-
jQuery('.sgpb-close-button-border-options').addClass('sg-hide');
|
1111 |
-
jQuery('.sgpb-close-button-text-option-wrapper').removeClass('sg-hide');
|
1112 |
-
document.getElementById('sgpb-button-position-bottom').value = that.closeButtonDefaultPositions[themeId].bottom;
|
1113 |
-
document.getElementById('sgpb-button-position-right').value = that.closeButtonDefaultPositions[themeId].right;
|
1114 |
-
}
|
1115 |
-
else if (themeId == 3) {
|
1116 |
-
jQuery('.sgpb-close-button-text-option-wrapper').addClass('sg-hide');
|
1117 |
-
jQuery('.sgpb-close-button-border-options').removeClass('sg-hide');
|
1118 |
-
jQuery('.sgpb-close-button-image-option-wrapper').removeClass('sg-hide');
|
1119 |
-
/* set default close button sizes for the current theme */
|
1120 |
-
jQuery('input[name=sgpb-button-image-width]').val('38');
|
1121 |
-
jQuery('input[name=sgpb-button-image-height]').val('19');
|
1122 |
-
jQuery('.sgpb-disable-border-wrapper').removeClass('sg-hide');
|
1123 |
-
document.getElementById('sgpb-button-position-right').value = that.closeButtonDefaultPositions[themeId].right;
|
1124 |
-
document.getElementById('sgpb-button-position-top').value = that.closeButtonDefaultPositions[themeId].top;
|
1125 |
-
}
|
1126 |
-
else {
|
1127 |
-
if (themeId == 2) {
|
1128 |
-
/* default theme 2 button size */
|
1129 |
-
jQuery('input[name=sgpb-button-image-width]').val('20');
|
1130 |
-
jQuery('input[name=sgpb-button-image-height]').val('20');
|
1131 |
-
jQuery('.sgpb-disable-border-wrapper').removeClass('sg-hide');
|
1132 |
-
document.getElementById('sgpb-button-position-right').value = that.closeButtonDefaultPositions[themeId].right;
|
1133 |
-
document.getElementById('sgpb-button-position-top').value = that.closeButtonDefaultPositions[themeId].top;
|
1134 |
-
}
|
1135 |
-
else if (themeId == 5) {
|
1136 |
-
/* default theme 5 button size */
|
1137 |
-
jQuery('input[name=sgpb-button-image-width]').val('17');
|
1138 |
-
jQuery('input[name=sgpb-button-image-height]').val('17');
|
1139 |
-
document.getElementById('sgpb-button-position-bottom').value = that.closeButtonDefaultPositions[themeId].bottom;
|
1140 |
-
document.getElementById('sgpb-button-position-right').value = that.closeButtonDefaultPositions[themeId].right;
|
1141 |
-
}
|
1142 |
-
else if (themeId == 6) {
|
1143 |
-
/* default theme 6 button size */
|
1144 |
-
jQuery('input[name=sgpb-button-image-width]').val('30');
|
1145 |
-
jQuery('input[name=sgpb-button-image-height]').val('30');
|
1146 |
-
document.getElementById('sgpb-button-position-top').value = that.closeButtonDefaultPositions[themeId].top;
|
1147 |
-
document.getElementById('sgpb-button-position-right').value = that.closeButtonDefaultPositions[themeId].right;
|
1148 |
-
}
|
1149 |
-
else {
|
1150 |
-
/* for other themes default sizes equel to 21 */
|
1151 |
-
jQuery('input[name=sgpb-button-image-width]').val('21');
|
1152 |
-
jQuery('input[name=sgpb-button-image-height]').val('21');
|
1153 |
-
}
|
1154 |
-
if (themeId == 1) {
|
1155 |
-
document.getElementById('sgpb-button-position-bottom').value = that.closeButtonDefaultPositions[themeId].bottom;
|
1156 |
-
document.getElementById('sgpb-button-position-right').value = that.closeButtonDefaultPositions[themeId].right;
|
1157 |
-
}
|
1158 |
-
jQuery('.sgpb-close-button-text-option-wrapper').addClass('sg-hide');
|
1159 |
-
jQuery('.sgpb-close-button-border-options').addClass('sg-hide');
|
1160 |
-
jQuery('.sgpb-close-button-image-option-wrapper').removeClass('sg-hide');
|
1161 |
-
}
|
1162 |
-
});
|
1163 |
-
});
|
1164 |
-
|
1165 |
-
jQuery('.js-sgpb-popup-themes').bind("mouseout",function(e) {
|
1166 |
-
jQuery('.themes-preview').css('display', 'none');
|
1167 |
-
});
|
1168 |
-
};
|
1169 |
-
|
1170 |
-
/* set default positions while changing theme */
|
1171 |
-
SGPBBackend.prototype.setCloseButtonDefaultPositions = function()
|
1172 |
-
{
|
1173 |
-
var theme = jQuery('.js-sgpb-popup-themes:checked').attr('data-popup-theme-number');
|
1174 |
-
if (theme == 1 || theme == 4 || theme == 5) {
|
1175 |
-
jQuery('.sgpb-button-position-top-js').hide();
|
1176 |
-
jQuery('.sgpb-button-position-right-js').show();
|
1177 |
-
jQuery('.sgpb-button-position-left-js').hide();
|
1178 |
-
jQuery('.sgpb-button-position-bottom-js').show();
|
1179 |
-
}
|
1180 |
-
else if (theme == 2 || theme == 3 || theme == 6) {
|
1181 |
-
jQuery('.sgpb-button-position-top-js').show();
|
1182 |
-
jQuery('.sgpb-button-position-right-js').show();
|
1183 |
-
jQuery('.sgpb-button-position-left-js').hide();
|
1184 |
-
jQuery('.sgpb-button-position-bottom-js').hide();
|
1185 |
-
}
|
1186 |
-
};
|
1187 |
-
|
1188 |
-
SGPBBackend.prototype.setCloseButtonDefaultPositionValues = function()
|
1189 |
-
{
|
1190 |
-
var that = this;
|
1191 |
-
jQuery('.sgpb-close-button-position').on('change', function(){
|
1192 |
-
var theme = jQuery('.js-sgpb-popup-themes:checked').attr('data-popup-theme-number');
|
1193 |
-
/* button location => like topRight, bottomLeft, etc. */
|
1194 |
-
var buttonLocation = jQuery('.sgpb-close-button-position option:selected').val();
|
1195 |
-
that.setCloseButtonLocation(buttonLocation);
|
1196 |
-
document.getElementById('sgpb-button-position-top').value = 'none';
|
1197 |
-
document.getElementById('sgpb-button-position-right').value = 'none';
|
1198 |
-
document.getElementById('sgpb-button-position-bottom').value = 'none';
|
1199 |
-
document.getElementById('sgpb-button-position-left').value = 'none';
|
1200 |
-
if (theme == 1) {
|
1201 |
-
document.getElementById('sgpb-button-position-bottom').value = that.closeButtonDefaultPositions[theme].bottom;
|
1202 |
-
if (buttonLocation == 'bottomRight') {
|
1203 |
-
document.getElementById('sgpb-button-position-right').value = that.closeButtonDefaultPositions[theme].right;
|
1204 |
-
}
|
1205 |
-
else if (buttonLocation == 'bottomLeft') {
|
1206 |
-
document.getElementById('sgpb-button-position-left').value = that.closeButtonDefaultPositions[theme].left;
|
1207 |
-
}
|
1208 |
-
}
|
1209 |
-
else if (theme == 2) {
|
1210 |
-
if (buttonLocation == 'topLeft') {
|
1211 |
-
document.getElementById('sgpb-button-position-left').value = that.closeButtonDefaultPositions[theme].left;
|
1212 |
-
document.getElementById('sgpb-button-position-top').value = that.closeButtonDefaultPositions[theme].top;
|
1213 |
-
}
|
1214 |
-
else if (buttonLocation == 'topRight') {
|
1215 |
-
document.getElementById('sgpb-button-position-right').value = that.closeButtonDefaultPositions[theme].right;
|
1216 |
-
document.getElementById('sgpb-button-position-top').value = that.closeButtonDefaultPositions[theme].top;
|
1217 |
-
}
|
1218 |
-
else if (buttonLocation == 'bottomLeft') {
|
1219 |
-
document.getElementById('sgpb-button-position-left').value = that.closeButtonDefaultPositions[theme].left;
|
1220 |
-
document.getElementById('sgpb-button-position-bottom').value = that.closeButtonDefaultPositions[theme].bottom;
|
1221 |
-
}
|
1222 |
-
else if (buttonLocation == 'bottomRight') {
|
1223 |
-
document.getElementById('sgpb-button-position-right').value = that.closeButtonDefaultPositions[theme].right;
|
1224 |
-
document.getElementById('sgpb-button-position-bottom').value = that.closeButtonDefaultPositions[theme].bottom;
|
1225 |
-
}
|
1226 |
-
}
|
1227 |
-
else if (theme == 3) {
|
1228 |
-
if (buttonLocation == 'topLeft') {
|
1229 |
-
document.getElementById('sgpb-button-position-left').value = that.closeButtonDefaultPositions[theme].left;
|
1230 |
-
document.getElementById('sgpb-button-position-top').value = that.closeButtonDefaultPositions[theme].top;
|
1231 |
-
}
|
1232 |
-
else if (buttonLocation == 'topRight') {
|
1233 |
-
document.getElementById('sgpb-button-position-right').value = that.closeButtonDefaultPositions[theme].right;
|
1234 |
-
document.getElementById('sgpb-button-position-top').value = that.closeButtonDefaultPositions[theme].top;
|
1235 |
-
}
|
1236 |
-
else if (buttonLocation == 'bottomLeft') {
|
1237 |
-
document.getElementById('sgpb-button-position-left').value = that.closeButtonDefaultPositions[theme].left;
|
1238 |
-
document.getElementById('sgpb-button-position-bottom').value = that.closeButtonDefaultPositions[theme].bottom;
|
1239 |
-
}
|
1240 |
-
else if (buttonLocation == 'bottomRight') {
|
1241 |
-
document.getElementById('sgpb-button-position-right').value = that.closeButtonDefaultPositions[theme].right;
|
1242 |
-
document.getElementById('sgpb-button-position-bottom').value = that.closeButtonDefaultPositions[theme].bottom;
|
1243 |
-
}
|
1244 |
-
}
|
1245 |
-
else if (theme == 4) {
|
1246 |
-
document.getElementById('sgpb-button-position-bottom').value = that.closeButtonDefaultPositions[theme].bottom;
|
1247 |
-
if (buttonLocation == 'bottomRight') {
|
1248 |
-
document.getElementById('sgpb-button-position-right').value = that.closeButtonDefaultPositions[theme].right;
|
1249 |
-
}
|
1250 |
-
else if (buttonLocation == 'bottomLeft') {
|
1251 |
-
document.getElementById('sgpb-button-position-left').value = that.closeButtonDefaultPositions[theme].left;
|
1252 |
-
}
|
1253 |
-
}
|
1254 |
-
else if (theme == 5) {
|
1255 |
-
document.getElementById('sgpb-button-position-bottom').value = that.closeButtonDefaultPositions[theme].bottom;
|
1256 |
-
if (buttonLocation == 'bottomRight') {
|
1257 |
-
document.getElementById('sgpb-button-position-right').value = that.closeButtonDefaultPositions[theme].right;
|
1258 |
-
}
|
1259 |
-
else if (buttonLocation == 'bottomLeft') {
|
1260 |
-
document.getElementById('sgpb-button-position-left').value = that.closeButtonDefaultPositions[theme].left;
|
1261 |
-
}
|
1262 |
-
}
|
1263 |
-
else if (theme == 6) {
|
1264 |
-
if (buttonLocation == 'topRight') {
|
1265 |
-
document.getElementById('sgpb-button-position-right').value = that.closeButtonDefaultPositions[theme].right;
|
1266 |
-
document.getElementById('sgpb-button-position-top').value = that.closeButtonDefaultPositions[theme].top;
|
1267 |
-
}
|
1268 |
-
else if (buttonLocation == 'topLeft') {
|
1269 |
-
document.getElementById('sgpb-button-position-top').value = that.closeButtonDefaultPositions[theme].top;
|
1270 |
-
document.getElementById('sgpb-button-position-left').value = that.closeButtonDefaultPositions[theme].left;
|
1271 |
-
}
|
1272 |
-
else if (buttonLocation == 'bottomLeft') {
|
1273 |
-
document.getElementById('sgpb-button-position-left').value = that.closeButtonDefaultPositions[theme].left;
|
1274 |
-
document.getElementById('sgpb-button-position-bottom').value = that.closeButtonDefaultPositions[theme].bottom;
|
1275 |
-
}
|
1276 |
-
else if (buttonLocation == 'bottomRight') {
|
1277 |
-
document.getElementById('sgpb-button-position-right').value = that.closeButtonDefaultPositions[theme].right;
|
1278 |
-
document.getElementById('sgpb-button-position-bottom').value = that.closeButtonDefaultPositions[theme].bottom;
|
1279 |
-
}
|
1280 |
-
}
|
1281 |
-
});
|
1282 |
-
};
|
1283 |
-
|
1284 |
-
SGPBBackend.prototype.setCloseButtonLocation = function(location)
|
1285 |
-
{
|
1286 |
-
jQuery('.sgpb-button-position-top-js').hide();
|
1287 |
-
jQuery('.sgpb-button-position-right-js').hide();
|
1288 |
-
jQuery('.sgpb-button-position-left-js').hide();
|
1289 |
-
jQuery('.sgpb-button-position-bottom-js').hide();
|
1290 |
-
if (location == 'topRight') {
|
1291 |
-
jQuery('.sgpb-button-position-top-js').show();
|
1292 |
-
jQuery('.sgpb-button-position-right-js').show();
|
1293 |
-
}
|
1294 |
-
else if (location == 'topLeft') {
|
1295 |
-
jQuery('.sgpb-button-position-top-js').show();
|
1296 |
-
jQuery('.sgpb-button-position-left-js').show();
|
1297 |
-
}
|
1298 |
-
else if (location == 'bottomLeft') {
|
1299 |
-
jQuery('.sgpb-button-position-left-js').show();
|
1300 |
-
jQuery('.sgpb-button-position-bottom-js').show();
|
1301 |
-
}
|
1302 |
-
else if (location == 'bottomRight') {
|
1303 |
-
jQuery('.sgpb-button-position-right-js').show();
|
1304 |
-
jQuery('.sgpb-button-position-bottom-js').show();
|
1305 |
-
}
|
1306 |
-
};
|
1307 |
-
|
1308 |
-
SGPBBackend.prototype.rangeSlider = function()
|
1309 |
-
{
|
1310 |
-
if (typeof Powerange != 'undefined') {
|
1311 |
-
var powerRangeSelectors = ['js-popup-overlay-opacity', 'js-popup-content-opacity', 'js-subs-bg-opacity', 'js-contact-bg-opacity', 'js-login-bg-opacity', 'js-registration-bg-opacity'];
|
1312 |
-
|
1313 |
-
for (var i in powerRangeSelectors) {
|
1314 |
-
if (typeof powerRangeSelectors[i] != 'string') {
|
1315 |
-
continue;
|
1316 |
-
}
|
1317 |
-
|
1318 |
-
if (jQuery('.'+powerRangeSelectors[i]).length == 0) {
|
1319 |
-
continue;
|
1320 |
-
}
|
1321 |
-
this.powerRange(powerRangeSelectors[i]);
|
1322 |
-
}
|
1323 |
-
}
|
1324 |
-
};
|
1325 |
-
|
1326 |
-
SGPBBackend.prototype.powerRange = function(cssSelectorName)
|
1327 |
-
{
|
1328 |
-
var dec = document.querySelector('.'+cssSelectorName);
|
1329 |
-
function displayDecimalValue() {
|
1330 |
-
var dec = document.querySelector('.'+cssSelectorName);
|
1331 |
-
document.getElementById(cssSelectorName).innerHTML = jQuery('.'+cssSelectorName).attr('value');
|
1332 |
-
}
|
1333 |
-
if (jQuery('#' + cssSelectorName).is(':visible') && jQuery('#' + cssSelectorName).attr('data-init') == 'false') {
|
1334 |
-
jQuery('#' + cssSelectorName).attr('data-init', true);
|
1335 |
-
var initDec = new Powerange(dec, { decimal: true, callback: displayDecimalValue, max: 1, start: jQuery('.' + cssSelectorName).attr('value') });
|
1336 |
-
}
|
1337 |
-
};
|
1338 |
-
|
1339 |
-
SGPBBackend.prototype.backgroundRangeSliderInit = function()
|
1340 |
-
{
|
1341 |
-
if (jQuery('#sgpb-show-background').is(':checked')) {
|
1342 |
-
this.powerRange('js-popup-content-opacity');
|
1343 |
-
}
|
1344 |
-
};
|
1345 |
-
|
1346 |
-
SGPBBackend.prototype.overlayRangeSliderInit = function()
|
1347 |
-
{
|
1348 |
-
if (jQuery('#sgpb-enable-popup-overlay').is(':checked')) {
|
1349 |
-
this.powerRange('js-popup-overlay-opacity');
|
1350 |
-
}
|
1351 |
-
};
|
1352 |
-
|
1353 |
-
SGPBBackend.prototype.imageUpload = function()
|
1354 |
-
{
|
1355 |
-
var supportedImageTypes = ['image/bmp', 'image/png', 'image/jpeg', 'image/jpg', 'image/ico', 'image/gif'];
|
1356 |
-
if (jQuery("#js-upload-image").val()) {
|
1357 |
-
jQuery(".sgpb-show-image-container").html("");
|
1358 |
-
jQuery(".sgpb-show-image-container").css({'background-image': 'url("' + jQuery("#js-upload-image").val() + '")'});
|
1359 |
-
}
|
1360 |
-
var custom_uploader;
|
1361 |
-
jQuery('#js-upload-image-button').click(function(e) {
|
1362 |
-
e.preventDefault();
|
1363 |
-
/* If the uploader object has already been created, reopen the dialog */
|
1364 |
-
if (custom_uploader) {
|
1365 |
-
custom_uploader.open();
|
1366 |
-
return;
|
1367 |
-
}
|
1368 |
-
/* Extend the wp.media object */
|
1369 |
-
custom_uploader = wp.media.frames.file_frame = wp.media({
|
1370 |
-
titleFF: 'Choose Image',
|
1371 |
-
button: {
|
1372 |
-
text: 'Choose Image'
|
1373 |
-
},
|
1374 |
-
multiple: false,
|
1375 |
-
library: {
|
1376 |
-
type: 'image'
|
1377 |
-
}
|
1378 |
-
});
|
1379 |
-
/* When a file is selected, grab the URL and set it as the text field's value */
|
1380 |
-
custom_uploader.on('select', function() {
|
1381 |
-
var attachment = custom_uploader.state().get('selection').first().toJSON();
|
1382 |
-
if (supportedImageTypes.indexOf(attachment.mime) === -1) {
|
1383 |
-
alert(SGPB_JS_LOCALIZATION.imageSupportAlertMessage);
|
1384 |
-
return;
|
1385 |
-
}
|
1386 |
-
jQuery(".sgpb-show-image-container").css({'background-image': 'url("' + attachment.url + '")'});
|
1387 |
-
jQuery(".sgpb-show-image-container").html("");
|
1388 |
-
jQuery('#js-upload-image').val(attachment.url);
|
1389 |
-
});
|
1390 |
-
/* Open the uploader dialog */
|
1391 |
-
custom_uploader.open();
|
1392 |
-
});
|
1393 |
-
|
1394 |
-
/* its finish image uploader */
|
1395 |
-
};
|
1396 |
-
|
1397 |
-
SGPBBackend.prototype.buttonImageUpload = function()
|
1398 |
-
{
|
1399 |
-
var supportedImageTypes = ['image/bmp', 'image/png', 'image/jpeg', 'image/jpg', 'image/ico', 'image/gif'];
|
1400 |
-
var custom_uploader;
|
1401 |
-
jQuery('#js-button-upload-image-button').click(function(e) {
|
1402 |
-
e.preventDefault();
|
1403 |
-
|
1404 |
-
/* If the uploader object has already been created, reopen the dialog */
|
1405 |
-
if (custom_uploader) {
|
1406 |
-
custom_uploader.open();
|
1407 |
-
return;
|
1408 |
-
}
|
1409 |
-
/* Extend the wp.media object */
|
1410 |
-
custom_uploader = wp.media.frames.file_frame = wp.media({
|
1411 |
-
titleFF: 'Choose Image',
|
1412 |
-
button: {
|
1413 |
-
text: 'Choose Image'
|
1414 |
-
},
|
1415 |
-
multiple: false,
|
1416 |
-
library: {
|
1417 |
-
type: 'image'
|
1418 |
-
}
|
1419 |
-
});
|
1420 |
-
/* When a file is selected, grab the URL and set it as the text field's value */
|
1421 |
-
custom_uploader.on('select', function() {
|
1422 |
-
var attachment = custom_uploader.state().get('selection').first().toJSON();
|
1423 |
-
if (supportedImageTypes.indexOf(attachment.mime) === -1) {
|
1424 |
-
alert(SGPB_JS_LOCALIZATION.imageSupportAlertMessage);
|
1425 |
-
return;
|
1426 |
-
}
|
1427 |
-
jQuery(".sgpb-show-button-image-container").css({'background-image': 'url("' + attachment.url + '")'});
|
1428 |
-
jQuery(".sgpb-show-button-image-container").html("");
|
1429 |
-
jQuery('#js-button-upload-image').val(attachment.url);
|
1430 |
-
jQuery('.js-sgpb-remove-close-button-image').removeClass('sg-hide');
|
1431 |
-
});
|
1432 |
-
/* Open the uploader dialog */
|
1433 |
-
custom_uploader.open();
|
1434 |
-
});
|
1435 |
-
|
1436 |
-
/* its finish image uploader */
|
1437 |
-
};
|
1438 |
-
|
1439 |
-
SGPBBackend.prototype.buttonImageRemove = function()
|
1440 |
-
{
|
1441 |
-
jQuery('#js-button-upload-image-remove-button').click(function(){
|
1442 |
-
var selectedTheme = jQuery('.js-sgpb-popup-themes:checked').attr('data-popup-theme-number');
|
1443 |
-
if (typeof selectedTheme == 'undefined') {
|
1444 |
-
selectedTheme = 6;
|
1445 |
-
}
|
1446 |
-
jQuery(".sgpb-show-button-image-container").html("");
|
1447 |
-
jQuery("#js-button-upload-image").attr('value', '');
|
1448 |
-
jQuery('.sgpb-show-button-image-container').attr('style', 'background-image: url("' + sgpbPublicUrl + 'img/theme_' + selectedTheme + '/close.png")');
|
1449 |
-
jQuery('.js-sgpb-remove-close-button-image').addClass('sg-hide');
|
1450 |
-
});
|
1451 |
-
};
|
1452 |
-
|
1453 |
-
SGPBBackend.prototype.backgroundImageUpload = function()
|
1454 |
-
{
|
1455 |
-
if (jQuery('#js-background-upload-image').val()) {
|
1456 |
-
jQuery('.sgpb-show-background-image-container').html('');
|
1457 |
-
jQuery('.sgpb-show-background-image-container').css({'background-image': 'url("' + jQuery("#js-background-upload-image").val() + '")'});
|
1458 |
-
}
|
1459 |
-
|
1460 |
-
var supportedImageTypes = ['image/bmp', 'image/png', 'image/jpeg', 'image/jpg', 'image/ico', 'image/gif'];
|
1461 |
-
var custom_uploader;
|
1462 |
-
jQuery('#js-background-upload-image-button').click(function(e) {
|
1463 |
-
e.preventDefault();
|
1464 |
-
|
1465 |
-
/* If the uploader object has already been created, reopen the dialog */
|
1466 |
-
if (custom_uploader) {
|
1467 |
-
custom_uploader.open();
|
1468 |
-
return;
|
1469 |
-
}
|
1470 |
-
/* Extend the wp.media object */
|
1471 |
-
custom_uploader = wp.media.frames.file_frame = wp.media({
|
1472 |
-
titleFF: 'Choose Image',
|
1473 |
-
button: {
|
1474 |
-
text: 'Choose Image'
|
1475 |
-
},
|
1476 |
-
multiple: false,
|
1477 |
-
library: {
|
1478 |
-
type: 'image'
|
1479 |
-
}
|
1480 |
-
});
|
1481 |
-
/* When a file is selected, grab the URL and set it as the text field's value */
|
1482 |
-
custom_uploader.on('select', function() {
|
1483 |
-
var attachment = custom_uploader.state().get('selection').first().toJSON();
|
1484 |
-
if (supportedImageTypes.indexOf(attachment.mime) === -1) {
|
1485 |
-
alert(SGPB_JS_LOCALIZATION.imageSupportAlertMessage);
|
1486 |
-
return;
|
1487 |
-
}
|
1488 |
-
jQuery('.sgpb-show-background-image-container').css({'background-image': 'url("' + attachment.url + '")'});
|
1489 |
-
jQuery('.sgpb-show-background-image-container').html('');
|
1490 |
-
jQuery('#js-background-upload-image').val(attachment.url);
|
1491 |
-
jQuery('input[name="sgpb-background-image"]').attr('value', attachment.url);
|
1492 |
-
jQuery('.js-sgpb-remove-background-image').removeClass('sg-hide');
|
1493 |
-
});
|
1494 |
-
/* Open the uploader dialog */
|
1495 |
-
custom_uploader.open();
|
1496 |
-
});
|
1497 |
-
|
1498 |
-
/* its finish image uploader */
|
1499 |
-
};
|
1500 |
-
|
1501 |
-
SGPBBackend.prototype.backgroundImageRemove = function()
|
1502 |
-
{
|
1503 |
-
jQuery('#js-background-upload-image-remove-button').click(function(){
|
1504 |
-
jQuery('.sgpb-show-background-image-container').html('<span class="sgpb-no-image">(No image selected)</span>');
|
1505 |
-
jQuery('.sgpb-show-background-image-container').removeAttr('style');
|
1506 |
-
jQuery('#js-background-upload-image').attr('value', '');
|
1507 |
-
jQuery('.js-sgpb-remove-background-image').addClass('sg-hide');
|
1508 |
-
});
|
1509 |
-
};
|
1510 |
-
|
1511 |
-
|
1512 |
-
SGPBBackend.prototype.switchPopupActive = function()
|
1513 |
-
{
|
1514 |
-
var that = this;
|
1515 |
-
|
1516 |
-
jQuery('.sg-switch-checkbox').bind('change', function() {
|
1517 |
-
var popupId = jQuery(this).attr('data-switch-id');
|
1518 |
-
var ajaxNonce = jQuery(this).attr('data-checkbox-ajaxNonce');
|
1519 |
-
|
1520 |
-
if (jQuery(this).is(':checked')) {
|
1521 |
-
that.changePopupStatus('on', popupId);
|
1522 |
-
}
|
1523 |
-
else {
|
1524 |
-
that.changePopupStatus('', popupId);
|
1525 |
-
}
|
1526 |
-
});
|
1527 |
-
};
|
1528 |
-
|
1529 |
-
SGPBBackend.prototype.changePopupStatus = function(status, popupId)
|
1530 |
-
{
|
1531 |
-
var data = {
|
1532 |
-
action: 'change_popup_status',
|
1533 |
-
ajaxNonce: SGPB_JS_PARAMS.nonce,
|
1534 |
-
popupId: popupId,
|
1535 |
-
popupStatus: status
|
1536 |
-
};
|
1537 |
-
|
1538 |
-
jQuery.post(ajaxurl, data, function(response) {
|
1539 |
-
/* error case */
|
1540 |
-
if (!response) {
|
1541 |
-
alert('Can not change the current popup status.');
|
1542 |
-
location.reload();
|
1543 |
-
}
|
1544 |
-
});
|
1545 |
-
};
|
1546 |
-
|
1547 |
-
SGPBBackend.prototype.colorPicker = function()
|
1548 |
-
{
|
1549 |
-
var that = this;
|
1550 |
-
var colorPicker = jQuery('.sgpb-color-picker');
|
1551 |
-
|
1552 |
-
if (!colorPicker.length) {
|
1553 |
-
return false;
|
1554 |
-
}
|
1555 |
-
|
1556 |
-
colorPicker.wpColorPicker({
|
1557 |
-
change: function() {
|
1558 |
-
var colorPickerElement = jQuery(this);
|
1559 |
-
that.changeColor(colorPickerElement);
|
1560 |
-
}
|
1561 |
-
});
|
1562 |
-
jQuery('.wp-picker-holder').bind('click', function() {
|
1563 |
-
var selectedInput = jQuery(this).prev().find('.sgpb-color-picker');
|
1564 |
-
that.changeColor(selectedInput);
|
1565 |
-
});
|
1566 |
-
};
|
1567 |
-
|
1568 |
-
SGPBBackend.prototype.changeColor = function(element)
|
1569 |
-
{
|
1570 |
-
var selectedName = element.attr("name");
|
1571 |
-
var elementVal = element.val();
|
1572 |
-
if (selectedName == 'sgpb-counter-text-color') {
|
1573 |
-
jQuery('#sgpb-counts-text').remove();
|
1574 |
-
jQuery('body').append('<style id="sgpb-counts-text">.sgpb-counts-content.sgpb-flipclock-js-' + SgpbCountdownParams.id + '.flip-clock-wrapper ul li a div div.inn { color: '+elementVal+'; }</style>');
|
1575 |
-
}
|
1576 |
-
if (selectedName == 'sgpb-counter-background-color') {
|
1577 |
-
jQuery('#sgpb-counts-style').remove();
|
1578 |
-
jQuery('body').append('<style id="sgpb-counts-style">.sgpb-counts-content.sgpb-flipclock-js-' + SgpbCountdownParams.id + '.flip-clock-wrapper ul li a div div.inn { background-color: '+elementVal+'; }</style>');
|
1579 |
-
}
|
1580 |
-
};
|
1581 |
-
|
1582 |
-
SGPBBackend.prototype.previewInit = function()
|
1583 |
-
{
|
1584 |
-
jQuery('input').on('change', function() {
|
1585 |
-
jQuery('.wrap').on('click', function() {
|
1586 |
-
SGPBBackend.prototype.autosave();
|
1587 |
-
})
|
1588 |
-
});
|
1589 |
-
jQuery('#post-preview').click(function() {
|
1590 |
-
SGPBBackend.prototype.autosave();
|
1591 |
-
/* when preview button clicked, set input value to 1 */
|
1592 |
-
jQuery('#sgpb-is-preview').val('1');
|
1593 |
-
});
|
1594 |
-
jQuery('#title').on('change', function() {
|
1595 |
-
SGPBBackend.prototype.autosave();
|
1596 |
-
});
|
1597 |
-
jQuery('#publish').click(function() {
|
1598 |
-
/* when publish/update clicked, set input value to 0 */
|
1599 |
-
jQuery('#sgpb-is-preview').val('0');
|
1600 |
-
});
|
1601 |
-
};
|
1602 |
-
|
1603 |
-
SGPBBackend.makeContactAndSubscriptionFieldsRequired = function()
|
1604 |
-
{
|
1605 |
-
/* subscription */
|
1606 |
-
if (jQuery('.subs-redirect-to-URL').length) {
|
1607 |
-
jQuery('input[name=sgpb-subs-success-behavior]').on('change', function() {
|
1608 |
-
if (jQuery('.subs-redirect-to-URL').is(':checked')) {
|
1609 |
-
jQuery('#sgpb-subs-success-redirect-URL').attr('required', 'required');
|
1610 |
-
}
|
1611 |
-
else {
|
1612 |
-
jQuery('#sgpb-subs-success-redirect-URL').removeAttr('required');
|
1613 |
-
}
|
1614 |
-
});
|
1615 |
-
}
|
1616 |
-
/* contact form */
|
1617 |
-
else if (jQuery('.contact-redirect-to-URL').length) {
|
1618 |
-
jQuery('input[name=sgpb-contact-success-behavior]').on('change', function() {
|
1619 |
-
if (jQuery('.contact-redirect-to-URL').is(':checked')) {
|
1620 |
-
jQuery('#sgpb-contact-success-redirect-URL').attr('required', 'required');
|
1621 |
-
}
|
1622 |
-
else {
|
1623 |
-
jQuery('#sgpb-contact-success-redirect-URL').removeAttr('required');
|
1624 |
-
}
|
1625 |
-
});
|
1626 |
-
}
|
1627 |
-
};
|
1628 |
-
|
1629 |
-
SGPBBackend.prototype.makePopupTitleRequired = function()
|
1630 |
-
{
|
1631 |
-
if (jQuery('#title').length) {
|
1632 |
-
var postType = jQuery('#post_type');
|
1633 |
-
if (postType.length && postType.val() == 'popupbuilder') {
|
1634 |
-
jQuery('#title').attr('required', 'required');
|
1635 |
-
}
|
1636 |
-
}
|
1637 |
-
};
|
1638 |
-
|
1639 |
-
SGPBBackend.prototype.themeRelatedSettings = function()
|
1640 |
-
{
|
1641 |
-
var that = this;
|
1642 |
-
/* positionSelectBox => get the value and selected text of select2-js */
|
1643 |
-
var positionSelectBox = jQuery('select[name=sgpb-close-button-position]').next('span').find('.select2-selection__rendered');
|
1644 |
-
var borderRadiusSelectBox = jQuery('select[name=sgpb-border-radius-type]').next('span').find('.select2-selection__rendered');
|
1645 |
-
var selectedTheme = jQuery('.js-sgpb-popup-themes').attr('data-popup-theme-number');
|
1646 |
-
jQuery('.js-sgpb-popup-themes').bind('click', function() {
|
1647 |
-
var buttonPosition = 'bottomRight';
|
1648 |
-
var padding = 7;
|
1649 |
-
var overlay = '';
|
1650 |
-
var theme = jQuery(this).attr('data-popup-theme-number');
|
1651 |
-
/* while changing theme, set dafault theme image */
|
1652 |
-
that.setThemeDefaultCloseBtnImage(theme);
|
1653 |
-
|
1654 |
-
if (theme == 1 || theme == 4 || theme == 5) {
|
1655 |
-
/* first theme does not support close button's top positions */
|
1656 |
-
jQuery('.sgpb-close-button-position option[value=topRight]').remove();
|
1657 |
-
jQuery('.sgpb-close-button-position option[value=topLeft]').remove();
|
1658 |
-
if (theme == 5) {
|
1659 |
-
/* default theme 5 padding equal to 6 */
|
1660 |
-
padding = 5;
|
1661 |
-
overlay = '#000000';
|
1662 |
-
}
|
1663 |
-
if (theme == 4) {
|
1664 |
-
/* default theme 4 padding equal to 12 */
|
1665 |
-
padding = 12;
|
1666 |
-
overlay = '#ffffff';
|
1667 |
-
}
|
1668 |
-
if (theme == 1) {
|
1669 |
-
overlay = '';
|
1670 |
-
}
|
1671 |
-
/*
|
1672 |
-
* set default position for the current themes (1, 4, 5)
|
1673 |
-
* and change selectbox value
|
1674 |
-
*/
|
1675 |
-
positionSelectBox.attr('title', 'bottom-right');
|
1676 |
-
positionSelectBox.text('bottom-right');
|
1677 |
-
buttonPosition = 'bottomRight';
|
1678 |
-
}
|
1679 |
-
else if (theme == 2 || theme == 3 || theme == 6) {
|
1680 |
-
if (theme == 2) {
|
1681 |
-
/* default theme 2 padding equal to 2 */
|
1682 |
-
padding = 0;
|
1683 |
-
overlay = '#ffffff';
|
1684 |
-
}
|
1685 |
-
if (theme == 3) {
|
1686 |
-
/* default theme 3 padding equal to 0 */
|
1687 |
-
padding = 0;
|
1688 |
-
overlay = '#000000';
|
1689 |
-
/*
|
1690 |
-
* set default position for the current theme
|
1691 |
-
* and change selectbox value
|
1692 |
-
*/
|
1693 |
-
borderRadiusSelectBox.attr('title', '%');
|
1694 |
-
borderRadiusSelectBox.text('%');
|
1695 |
-
jQuery('.sgpb-border-radius-type').val('%');
|
1696 |
-
/* set default border black color */
|
1697 |
-
jQuery('.sgpb-border-color').val('#000000');
|
1698 |
-
jQuery('.sgpb-border-color .wp-color-result').attr('style', 'background-color: #000000');
|
1699 |
-
}
|
1700 |
-
if (theme == 6) {
|
1701 |
-
/* default theme 6 padding equal to 12 */
|
1702 |
-
padding = 12;
|
1703 |
-
overlay = '';
|
1704 |
-
}
|
1705 |
-
/* check if topRight & topLeft positions are removed, prepend to selectbox */
|
1706 |
-
if (jQuery('.sgpb-close-button-position option[value=topRight]').length == 0) {
|
1707 |
-
jQuery('.sgpb-close-button-position').prepend(jQuery('<option>', {
|
1708 |
-
value: 'topRight',
|
1709 |
-
text: 'top-right'
|
1710 |
-
}));
|
1711 |
-
jQuery('.sgpb-close-button-position').prepend(jQuery('<option>', {
|
1712 |
-
value: 'topLeft',
|
1713 |
-
text: 'top-left'
|
1714 |
-
}));
|
1715 |
-
}
|
1716 |
-
/*
|
1717 |
-
* set default position for the current themes (2, 3, 6)
|
1718 |
-
* and change selectbox value
|
1719 |
-
*/
|
1720 |
-
positionSelectBox.attr('title', 'top-right');
|
1721 |
-
positionSelectBox.text('top-right');
|
1722 |
-
buttonPosition = 'topRight';
|
1723 |
-
}
|
1724 |
-
jQuery('.sgpb-overlay-color').val(overlay);
|
1725 |
-
if (overlay) {
|
1726 |
-
jQuery('.sgpb-overlay-color .wp-color-result').attr('style', 'background-color: ' + overlay);
|
1727 |
-
}
|
1728 |
-
else {
|
1729 |
-
jQuery('.sgpb-overlay-color .wp-color-result').removeAttr('style');
|
1730 |
-
}
|
1731 |
-
jQuery('input[name=sgpb-content-padding]').val(padding);
|
1732 |
-
jQuery('.sgpb-close-button-position').val(buttonPosition);
|
1733 |
-
});
|
1734 |
-
};
|
1735 |
-
|
1736 |
-
SGPBBackend.prototype.setThemeDefaultCloseBtnImage = function(theme)
|
1737 |
-
{
|
1738 |
-
jQuery('#js-button-upload-image-remove-button').click();
|
1739 |
-
jQuery('.sgpb-show-button-image-container').attr('style', 'background-image: url("' + sgpbPublicUrl + 'img/theme_' + theme + '/close.png")');
|
1740 |
-
};
|
1741 |
-
|
1742 |
-
SGPBBackend.prototype.eventsAddButtonSpinner = function(element, showHide)
|
1743 |
-
{
|
1744 |
-
if (showHide == 'show') {
|
1745 |
-
element.addClass('sgpb-events-spinner');
|
1746 |
-
element.text(SGPB_JS_LOCALIZATION.addButtonSpinner + ' ...');
|
1747 |
-
}
|
1748 |
-
else {
|
1749 |
-
jQuery('.sg-rules-add-rule').removeClass('sgpb-events-spinner');
|
1750 |
-
jQuery('.sg-rules-add-rule').text(' ' + SGPB_JS_LOCALIZATION.addButtonSpinner);
|
1751 |
-
}
|
1752 |
-
};
|
1753 |
-
|
1754 |
-
SGPBBackend.prototype.editPopupSettingsForFullscreenMode = function(popupId)
|
1755 |
-
{
|
1756 |
-
var responsiveModeSelector = jQuery('.sgpb-responsive-mode-change-js');
|
1757 |
-
var that = this;
|
1758 |
-
var closeButtonCheckbox = jQuery('#close-button');
|
1759 |
-
|
1760 |
-
if (typeof responsiveModeSelector == 'undefined') {
|
1761 |
-
return false;
|
1762 |
-
}
|
1763 |
-
responsiveModeSelector.change(function() {
|
1764 |
-
var selectedMode = jQuery(this).val();
|
1765 |
-
if (selectedMode == 'fullScreen') {
|
1766 |
-
if (closeButtonCheckbox.is(':checked')) {
|
1767 |
-
closeButtonCheckbox.click();
|
1768 |
-
}
|
1769 |
-
}
|
1770 |
-
});
|
1771 |
-
};
|
1772 |
-
|
1773 |
-
SGPBBackend.hexToRgba = function(hex, opacity)
|
1774 |
-
{
|
1775 |
-
var c;
|
1776 |
-
if (/^#([A-Fa-f0-9]{3}){1,2}$/.test(hex)) {
|
1777 |
-
c = hex.substring(1).split('');
|
1778 |
-
if (c.length == 3) {
|
1779 |
-
c= [c[0], c[0], c[1], c[1], c[2], c[2]];
|
1780 |
-
}
|
1781 |
-
c = '0x' + c.join('');
|
1782 |
-
return 'rgba(' + [(c>>16)&255, (c>>8)&255, c&255].join(',') + ',' + opacity + ')';
|
1783 |
-
}
|
1784 |
-
|
1785 |
-
throw new Error('Bad Hex');
|
1786 |
-
};
|
1787 |
-
|
1788 |
-
SGPBBackend.resetCount = function(popupId)
|
1789 |
-
{
|
1790 |
-
if (confirm(SGPB_JS_LOCALIZATION.areYouSure)) {
|
1791 |
-
var data = {
|
1792 |
-
nonce: SGPB_JS_PARAMS.nonce,
|
1793 |
-
action: 'sgpb_reset_popup_opening_count',
|
1794 |
-
popupId: popupId
|
1795 |
-
};
|
1796 |
-
|
1797 |
-
jQuery.post(ajaxurl, data, function(response) {
|
1798 |
-
location.reload();
|
1799 |
-
});
|
1800 |
-
}
|
1801 |
-
};
|
1802 |
-
|
1803 |
-
SGPBBackend.prototype.autosave = function()
|
1804 |
-
{
|
1805 |
-
if (!jQuery('#titlediv').length) {
|
1806 |
-
return false;
|
1807 |
-
}
|
1808 |
-
|
1809 |
-
var allPopupData = jQuery('form#post').serializeArray();
|
1810 |
-
var data = {
|
1811 |
-
nonce: SGPB_JS_PARAMS.nonce,
|
1812 |
-
action: 'sgpb_autosave',
|
1813 |
-
allPopupData: allPopupData
|
1814 |
-
};
|
1815 |
-
|
1816 |
-
jQuery.post(ajaxurl, data, function(response) {
|
1817 |
-
/*success*/
|
1818 |
-
});
|
1819 |
-
};
|
1820 |
-
|
1821 |
-
jQuery(document).ready(function() {
|
1822 |
-
var sgpbBackendObj = new SGPBBackend();
|
1823 |
-
sgpbBackendObj.sgInit();
|
1824 |
-
});
|
1 |
+
function SGPBBackend(){this.closeButtonDefaultPositions={};this.closeButtonDefaultPositions[1]={'left':9,'right':9,'bottom':9};this.closeButtonDefaultPositions[2]={'left':0,'right':0,'top':parseInt('-20'),'bottom':parseInt('-20')};this.closeButtonDefaultPositions[3]={'right':4,'bottom':4,'left':4,'top':4};this.closeButtonDefaultPositions[4]={'left':12,'right':12,'bottom':9};this.closeButtonDefaultPositions[5]={'left':8,'right':8,'bottom':8};this.closeButtonDefaultPositions[6]={'left':parseInt('-18.5'),'right':parseInt('-18.5'),'bottom':parseInt('-18.5'),'top':parseInt('-18.5')};}
|
2 |
+
SGPBBackend.sgAddEvent=function(element,eventName,fn)
|
3 |
+
{if(element.addEventListener){element.addEventListener(eventName,fn,false);}
|
4 |
+
else if(element.attachEvent){element.attachEvent('on'+eventName,fn);}};SGPBBackend.prototype.sgInit=function()
|
5 |
+
{this.makePopupTitleRequired();this.targetCondition();this.popupSelect2();this.sgTabs();this.accordion();this.initRadioAccordions();this.fixedPositionSelection();this.popupThemesPreview();this.setCloseButtonDefaultPositionValues();this.colorPicker();this.rangeSlider();this.backgroundRangeSliderInit();this.overlayRangeSliderInit();this.imageUpload();this.buttonImageUpload();this.buttonImageRemove();this.backgroundImageUpload();this.backgroundImageRemove();this.multipleChoiceButton();this.switchPopupActive();this.previewInit();this.soundUpload();this.resetSound();this.soundPreview();this.showInfo();this.openAnimationPreview();this.closeAnimationPreview();this.resetToDefaultValue();this.editPopupSettingsForFullscreenMode();this.autosave();this.popupBuilderButton();this.downloadSystemInfoFile();};SGPBBackend.prototype.changeTab=function(tab)
|
6 |
+
{jQuery('#sgpb-editor-options-tab-content-wrapper-'+tab).css('display','none');var i,tabContent,tabLinks;tabContent=jQuery('.sgpb-editor-options-tab-content-wrapper');tabContent.each(function(){jQuery(this).css('display','none');});tabLinks=jQuery('.sgpb-editor-tab-links');tabLinks.each(function(){jQuery(this).removeClass('sgpb-active-tab');});jQuery('#sgpb-editor-options-tab-content-wrapper-'+tab).css('display','block');jQuery('.sgpb-editor-tab-'+tab).addClass('sgpb-active-tab');this.rangeSlider();};SGPBBackend.prototype.downloadSystemInfoFile=function(){if(!jQuery('.sgpb-download-system-info').length){return false;}
|
7 |
+
jQuery('.sgpb-download-system-info').bind('click',function(){window.location.href=SGPB_JS_PARAMS.postUrl+'?action=sgpb_system_info';});}
|
8 |
+
SGPBBackend.prototype.resetCssEditorContent=function(){jQuery('.editor-content-css').val('');}
|
9 |
+
SGPBBackend.prototype.popupBuilderButton=function()
|
10 |
+
{var that=this;jQuery(document).on('tinymce-editor-setup',function(event,editor){if(editor.settings.toolbar1.indexOf('popupBuilderHtmlButton')!=-1){return;}
|
11 |
+
editor.settings.toolbar1+=', popupBuilderHtmlButton';editor.addButton('popupBuilderHtmlButton',{text:'Popup Builder Button',tooltip:'Popup Builder Custom HTML Button',icon:'wp-menu-image dashicons-before dashicons-menu-icon-sgpb-button',onclick:function(){that.mediaButtonPopup('sgpb-custom-button-wrapper');}});});};SGPBBackend.popups=[];SGPBBackend.prototype.mediaButtonPopup=function(hiddenDivId)
|
12 |
+
{var select2Init=1;var that=this;var popupConfigObj=new PopupConfig();popupConfigObj.magicCall('setContentPadding',14);popupConfigObj.magicCall('setContentBorderRadius',4);popupConfigObj.magicCall('setContentBorderRadiusType','px');popupConfigObj.magicCall('setScrollingEnabled',true);popupConfigObj.magicCall('setContentBorderWidth',5);popupConfigObj.magicCall('setContentBorderColor','#506274');popupConfigObj.magicCall('setShadowSpread',1);popupConfigObj.magicCall('setContentShadowBlur',4);popupConfigObj.magicCall('setContentShadowColor','#cccccc');popupConfigObj.magicCall('setMinWidth',400);popupConfigObj.magicCall('contents',document.getElementById(hiddenDivId));popupConfigObj.magicCall('setOverlayColor','black');popupConfigObj.magicCall('setOverlayOpacity',40);var config=popupConfigObj.combineConfigObj();var popup=new SGPopup(config);if(!SGPBBackend.popups.length){SGPBBackend.popups.push(popup);}
|
13 |
+
SGPBBackend.popups[0].open();jQuery(window).bind('sgpbDidOpen',function(){jQuery('.sgpb-insert-popup').addClass('js-sg-select2');if(select2Init==1){that.popupSelect2();}
|
14 |
+
select2Init++;jQuery('.select2-container--below').remove();that.popupSelect2();that.customButtonColorPicker();if(mediaButtonParams.currentPostType!=mediaButtonParams.popupBuilderPostType){that.customButtonColorPicker();jQuery('.sgpb-custom-button-popup').addClass('js-sg-select2');if(select2Init==1){that.popupSelect2();}
|
15 |
+
select2Init++;jQuery('.select2-container--below').remove();that.popupSelect2();}
|
16 |
+
else{that.multipleChoiceButton();that.customButtonColorPicker();}
|
17 |
+
that.insertHTMLButtonToEditor();that.closeMediaButtonPopup(popup);});that.accordion();jQuery(window).on('sgpbMultichoiceChanged',function(){that.accordion();});};SGPBBackend.prototype.customButtonColorPicker=function()
|
18 |
+
{var that=this;var colorPicker=jQuery('.sgpb-custom-button-color-picker');if(!colorPicker.length){return false;}
|
19 |
+
colorPicker.wpColorPicker({change:function(){var colorPickerElement=jQuery(this);that.changeColor(colorPickerElement);}});jQuery('.wp-picker-holder').bind('click',function(){var selectedInput=jQuery(this).prev().find('.sgpb-color-picker');that.changeColor(selectedInput);});};SGPBBackend.prototype.insertHTMLButtonToEditor=function()
|
20 |
+
{jQuery('.sgpb-insert-custom-button-to-editor').unbind('click').bind('click',function(){var buttonTitle=jQuery('#sgpb-custom-btn-title').val();var style='';jQuery('.sgpb-custom-button-settings').each(function(){var styleType=jQuery(this).data('style-type');var val=jQuery(this).val();style+=styleType+': '+val+';';});var defaultStyles={padding:0,'font-size':'22px','font-weight':900};for(var styleType in defaultStyles){style+=styleType+': '+defaultStyles[styleType]+';';}
|
21 |
+
var serizlizedOption=jQuery('#sgpb-custom-button-wrapper').find('select,textarea, input');var allOptionsObj={};serizlizedOption.each(function(){var name=jQuery(this).attr('name');if(jQuery(this).attr('type')=='checkbox'){if(jQuery(this).is(':checked')){var value=jQuery(this).val();allOptionsObj[name]=value;}
|
22 |
+
return true;}
|
23 |
+
if(jQuery(this).attr('type')=='radio'){if(jQuery(this).is(':checked')){var value=jQuery(this).val();allOptionsObj[name]=value;}}
|
24 |
+
else{var value=jQuery(this).val();allOptionsObj[name]=value;}});var bgColor=allOptionsObj['sgpb-custom-btn-bg-color'];var hoverBgColor=allOptionsObj['sgpb-custom-btn-bg-color'];var allOptionsJson=encodeURI(JSON.stringify(allOptionsObj));var id=Math.floor(Math.random()*Math.floor(100000));var button='<button style="'+style+'" class="sgpb-html-custom-button sgpb-html-custom-button-'+id+'" data-options='+allOptionsJson+' onMouseOver="this.style.backgroundColor="'+hoverBgColor+'" onMouseOut="this.style.backgroundColor="'+bgColor+'" ">'+buttonTitle+'</button>';button+='<style>.sgpb-html-custom-button-'+id+':hover {background-color: '+hoverBgColor+' !important;}</style>';if(allOptionsObj['sgpb-custom-button']=='openPopup'){var currentPopupId=allOptionsObj['sgpb-custom-button-popup'];button='[sg_popup id="'+currentPopupId+'" insidePopup="on"] <br>'+button+'<br>[/sg_popup]';}
|
25 |
+
window.send_to_editor(button);});};SGPBBackend.prototype.closeMediaButtonPopup=function(popup)
|
26 |
+
{jQuery('.sgpb-close-media-popup-js').on('click',function(){popup.close();});};SGPBBackend.prototype.resetToDefaultValue=function()
|
27 |
+
{var htmlTarget=jQuery('.js-sgpb-reset-default-value');if(!htmlTarget.length){return false;}
|
28 |
+
htmlTarget.each(function(){jQuery(this).bind('change',function(){var currentValue=jQuery(this).val();var defaultValue=jQuery(this).data('default');if(!defaultValue||currentValue){return false;}
|
29 |
+
jQuery(this).val(defaultValue)});})};SGPBBackend.prototype.showInfo=function()
|
30 |
+
{jQuery('.sgpb-info-icon').hover(function(){jQuery(this).nextAll('.sgpb-info-text').first().css({'display':'inline-block'});},function(){jQuery(this).nextAll('.sgpb-info-text').first().css({'display':'none'});});};SGPBBackend.prototype.soundPreview=function()
|
31 |
+
{var songValue=1;var lastSong=undefined;jQuery('.js-preview-sound').bind('click',function(){var uploadFile=jQuery('#js-sound-open-url').val();if(typeof lastSong=='undefined'){lastSong=new Audio(uploadFile);}
|
32 |
+
if(songValue==1){lastSong.play();songValue=2;}
|
33 |
+
else if(songValue==2){lastSong.pause();songValue=1;}
|
34 |
+
lastSong.onended=function()
|
35 |
+
{lastSong=undefined;songValue=1;}});jQuery('#js-sound-open-url').change(function(){if(typeof lastSong!='undefined'){lastSong.pause();lastSong=undefined;}
|
36 |
+
songValue=1;});jQuery('#js-reset-to-default-song').click(function(e){e.preventDefault();if(typeof lastSong!='undefined'){lastSong.pause();lastSong=undefined;}
|
37 |
+
songValue=1;var defaultSong=jQuery(this).data('default-song');jQuery('#js-sound-open-url').val(defaultSong).change();});};SGPBBackend.prototype.resetSound=function()
|
38 |
+
{var resetButton=jQuery('#js-reset-to-default-song');if(!resetButton.length){return false;}
|
39 |
+
resetButton.bind('click',function(){var defaultSoundUrl=jQuery(this).data('default-song');jQuery('#js-sound-open-url').val(defaultSoundUrl).change();});};SGPBBackend.prototype.soundUpload=function()
|
40 |
+
{var uploadButton=jQuery('#js-upload-open-sound-button');var supportedAudioTypes=['audio/mp3','audio/m4a','audio/ogg','audio/wav','audio/mpeg'];if(!uploadButton.length){return false;}
|
41 |
+
var uploader;uploadButton.bind('click',function(e){e.preventDefault();if(uploader){uploader.open();return false;}
|
42 |
+
uploader=wp.media.frames.file_frame=wp.media({titleFF:SGPB_JS_LOCALIZATION.changeSound,button:{text:SGPB_JS_LOCALIZATION.changeSound},library:{type:['audio/mpeg','audio/wav']},multiple:false});uploader.on('select',function(){var attachment=uploader.state().get('selection').first().toJSON();if(supportedAudioTypes.indexOf(attachment.mime)===-1){alert(SGPB_JS_LOCALIZATION.audioSupportAlertMessage);return;}
|
43 |
+
jQuery('#js-sound-open-url').val(attachment.url).change();});uploader.open();});};SGPBBackend.prototype.openAnimationPreview=function()
|
44 |
+
{var openAnimationPreview=jQuery('.sgpb-preview-animation');if(!openAnimationPreview.length){return false;}
|
45 |
+
var openAnimation=jQuery('.sgpb-preview-open-animation');var openAnimationDiv=jQuery('#js-open-animation-effect');var speed=jQuery('#sgpb-open-animation-speed');var openAnimationAction=function(){var speedVal=parseInt(speed.val());if(!speedVal){speedVal=1;}
|
46 |
+
var speedSeconds=speedVal*1000;setTimeout(function(){openAnimationDiv.hide();},speedSeconds);openAnimationDiv.removeClass();openAnimationDiv.show();openAnimationDiv.css({'animationDuration':speedSeconds+'ms'});openAnimationDiv.addClass('sg-animated '+jQuery('.sgpb-open-animation-effects option:selected').val());};jQuery('.sgpb-open-animation-effects').bind('change',openAnimationAction);openAnimationPreview.bind('click',openAnimationAction);};SGPBBackend.prototype.closeAnimationPreview=function()
|
47 |
+
{var closeAnimationPreview=jQuery('.sgpb-preview-close-animation');if(!closeAnimationPreview.length){return false;}
|
48 |
+
var closeAnimation=jQuery('.sgpb-preview-close-animation');var closeAnimationDiv=jQuery('#js-close-animation-effect');var speed=jQuery('#sgpb-close-animation-speed');var closeAnimationAction=function(){var speedVal=parseInt(speed.val());if(!speedVal){speedVal=1;}
|
49 |
+
var speedSeconds=speedVal*1000;setTimeout(function(){closeAnimationDiv.hide();},speedSeconds);closeAnimationDiv.removeClass();closeAnimationDiv.show();closeAnimationDiv.css({'animationDuration':speedSeconds+'ms'});closeAnimationDiv.addClass('sg-animated '+jQuery('.sgpb-close-animation-effects option:selected').val());};jQuery('.sgpb-close-animation-effects').bind('change',closeAnimationAction);closeAnimationPreview.bind('click',closeAnimationAction);};SGPBBackend.prototype.multipleChoiceButton=function()
|
50 |
+
{if(!jQuery('.sgpb-choice-wrapper input').length){return false;}
|
51 |
+
var that=this;jQuery('.sgpb-choice-option-wrapper input').each(function(){if(jQuery(this).is(':checked')){that.buildChoiceShowOption(jQuery(this));}
|
52 |
+
jQuery(this).on("click",function(){that.hideAllChoiceWrapper(jQuery('.sgpb-choice-option-wrapper'));that.buildChoiceShowOption(jQuery(this));jQuery(window).trigger('sgpbMultichoiceChanged');});})};SGPBBackend.prototype.hideAllChoiceWrapper=function(choiceOptionsWrapper)
|
53 |
+
{choiceOptionsWrapper.each(function(){var choiceInput=jQuery(this).find('input');if(!choiceInput.length){return;}
|
54 |
+
var choiceInputWrapperId=choiceInput.attr('data-attr-href');jQuery('#'+choiceInputWrapperId).addClass('sg-hide');})};SGPBBackend.prototype.buildChoiceShowOption=function(currentRadioButton)
|
55 |
+
{var choiceOptions=currentRadioButton.attr('data-attr-href');var currentOptionWrapper=currentRadioButton.parents('.sgpb-choice-wrapper').first();var choiceOptionWrapper=jQuery('#'+choiceOptions).removeClass('sg-hide');currentOptionWrapper.after(choiceOptionWrapper);};SGPBBackend.prototype.initRadioAccordions=function()
|
56 |
+
{var radioButtonsList=[jQuery("[name='sgpb-content-click-behavior']"),jQuery("[name='sgpb-popup-dimension-mode']")];for(var radioButtonIndex in radioButtonsList){var radioButton=radioButtonsList[radioButtonIndex];if(typeof radioButton!='object'){continue;}
|
57 |
+
var that=this;radioButton.each(function(){that.buildRadioAccordionActions(jQuery(this));});radioButton.on("change",function(){that.buildRadioAccordionActions(jQuery(this),'change');});}};SGPBBackend.prototype.buildRadioAccordionActions=function(currentRadioButton,event)
|
58 |
+
{if(event=='change'){currentRadioButton.parents('.sg-radio-option-behavior').first().find('.js-radio-accordion').addClass('sg-hide');}
|
59 |
+
var value=currentRadioButton.val();var toggleContent=jQuery('.js-accordion-'+value);toggleContent.addClass('sg-hide');var addAfter=currentRadioButton;if(currentRadioButton.is(':checked')){if(currentRadioButton.parents('.row').first().length){addAfter=currentRadioButton.parents('.row').first();}
|
60 |
+
jQuery('.js-accordion-'+value).removeClass('sg-hide');addAfter.after(toggleContent);}};SGPBBackend.prototype.accordion=function()
|
61 |
+
{var that=this;var element=jQuery(".js-checkbox-accordion");element.each(function(){that.checkboxAccordion(jQuery(this));});element.click(function(){var elements=jQuery(this);that.checkboxAccordion(jQuery(this));if(jQuery(this).attr('id')=='sgpb-show-background'){SGPBBackend.prototype.backgroundRangeSliderInit();}
|
62 |
+
else if(jQuery(this).attr('id')=='sgpb-enable-popup-overlay'){SGPBBackend.prototype.overlayRangeSliderInit();}});};SGPBBackend.prototype.checkboxAccordion=function(element)
|
63 |
+
{if(!element.is(':checked')){element.parents('.row').first().nextAll('div').first().find('input').attr('disabled','disabled');element.parents('.row').first().nextAll('div').first().css({'display':'none'});if(element.attr('id')=='schedule-status'){element.parents('.row').first().nextAll('div').first().find('select').removeAttr('required');}}
|
64 |
+
else{element.parents('.row').first().nextAll('div').first().find('input:disabled').removeAttr('disabled');element.parents('.row').first().nextAll('div').first().css({'display':'inline-block'});if(element.attr('id')=='schedule-status'){element.parents('.row').first().nextAll('div').first().find('select').attr('required','required');}}};SGPBBackend.prototype.sgTabs=function()
|
65 |
+
{jQuery('.events-tabs').each(function(){jQuery(this).tabs();});};SGPBBackend.prototype.targetCondition=function()
|
66 |
+
{this.addRuleRow();this.addGroupRow();this.removeRuleButton();this.editOpenPopup();this.changeConditionParams();};SGPBBackend.prototype.reInitRulesConfigButton=function()
|
67 |
+
{this.addRuleRow();this.addGroupRow();this.removeRuleButton();this.changeConditionParams();this.editOpenPopup();this.popupSelect2();this.sgTabs();this.showInfo();};SGPBBackend.prototype.editOpenPopup=function()
|
68 |
+
{if(jQuery('.sg-rules-edit-rule').length==0){return;}
|
69 |
+
var that=this;that.unbindPopup();jQuery('.sg-rules-edit-rule').each(function(){jQuery(this).on('click',function(e){e.preventDefault();var hiddenDivId=jQuery(this).attr('data-id');var popupConfigObj=new PopupConfig();popupConfigObj.magicCall('setContentPadding',8);popupConfigObj.magicCall('setMinWidth',500);popupConfigObj.magicCall('setSrcElement',hiddenDivId);popupConfigObj.magicCall('setOverlayColor','black');var config=popupConfigObj.combineConfigObj();config.willOpen=function(){that.reInitRulesConfigButton();};var popup=new SGPopup(config);popup.open();jQuery(window).bind('sgpbDidOpen',function(){that.popupContentTabs();that.popupHiddenContentAccordions();});jQuery('.sgpb-popup-option-save').on('click',function(e){e.preventDefault();var parent=jQuery(this).parents('.sgpb-wrapper').first();var elements=parent.find('.sgpb-popup-option');if(elements.length){elements.each(function(){var currentValue=jQuery(this).val();var type=jQuery(this).attr('type');if(type=='checkbox'){var currChecked=jQuery(this).is(':checked');jQuery(this).prop('defaultChecked','');if(currChecked){jQuery(this).prop('defaultChecked','checked')}}
|
70 |
+
else if(type=='text'){jQuery(this).attr("value",jQuery(this).val());}
|
71 |
+
else if(type=='number'){currentValue=parseInt(currentValue);if(isNaN(currentValue)){currentValue=0;}
|
72 |
+
jQuery(this).attr("value",currentValue);}});}
|
73 |
+
popup.close();});jQuery('.events-option-close').on('click',function(){popup.close();});that.unbindPopup();});});};SGPBBackend.prototype.unbindPopup=function()
|
74 |
+
{jQuery('.sg-rules-edit-rule').each(function(){jQuery(this).unbind();})};SGPBBackend.prototype.addRuleRow=function()
|
75 |
+
{var that=this;jQuery('.sg-rules-add-rule ').unbind();jQuery('.sg-rules-add-rule ').on('click',function(e){e.preventDefault();that.eventsAddButtonSpinner(jQuery(this),'show');var prevRuleDiv=jQuery(this).parents('.sg-target-rule').first();var currentGroupDiv=jQuery(this).parents('.sg-target-group').first();var lastRuleId=parseInt(prevRuleDiv.attr('data-rule-id'));var groupId=parseInt(currentGroupDiv.attr('data-group-id'));var conditionName=jQuery(this).parents('.popup-conditions-wrapper').attr('data-condition-type');var ruleId=lastRuleId+1;var data={action:'add_condition_rule_row',nonce_ajax:SGPB_JS_PARAMS.nonce,conditionName:conditionName,ruleId:ruleId,groupId:groupId};jQuery.post(ajaxurl,data,function(response){prevRuleDiv.after(response);jQuery('.popup-conditions-'+conditionName+' > .sg-target-group-'+groupId+' .sg-target-rule-'+lastRuleId+' .sg-rules-add-button-wrapper').hide();that.reInitRulesConfigButton();that.eventsAddButtonSpinner(jQuery(this),'hide');});});if(typeof SGPBSelect2==='function'){SGPBSelect2.prototype.hideProOptions();}};SGPBBackend.prototype.addGroupRow=function()
|
76 |
+
{var that=this;jQuery('.sg-rules-add-group').unbind();jQuery('.sg-rules-add-group').on('click',function(e){e.preventDefault();var prevGroupDiv=jQuery(this).prevAll('.sg-target-group').first();var currentGroupId=parseInt(prevGroupDiv.attr('data-group-id'));var newGroupId=currentGroupId+1;var conditionName=jQuery(this).parents('.popup-conditions-wrapper').attr('data-condition-type');var data={action:'add_condition_group_row',nonce_ajax:SGPB_JS_PARAMS.nonce,conditionName:conditionName,groupId:newGroupId};jQuery.post(ajaxurl,data,function(response){prevGroupDiv.after(response);that.reInitRulesConfigButton();});});};SGPBBackend.prototype.removeRuleButton=function()
|
77 |
+
{jQuery('.sg-rules-delete-rule').unbind();jQuery('.sg-rules-delete-rule').on('click',function(e){e.preventDefault();var currentTargetWrapperDiv=jQuery(this).parents('.popup-conditions-wrapper').first();var currentGroupDiv=jQuery(this).parents('.sg-target-group').first();var currentRuleDiv=jQuery(this).parents('.sg-target-rule').first();var firstGroupDiv=currentTargetWrapperDiv.find('.sg-target-group').first();var lastRuleDiv=currentGroupDiv.find('.sg-target-rule').last();var firstRuleDiv=currentGroupDiv.find('.sg-target-rule').first();var currentGroupsLength=currentTargetWrapperDiv.find('.sg-target-group').length;var currentRulesLength=currentGroupDiv.find('.sg-target-rule').length;var currentGroupId=currentGroupDiv.attr('data-group-id');var firstGroupId=firstGroupDiv.attr('data-group-id');var currentRulId=currentRuleDiv.attr('data-rule-id');var lastRuleId=lastRuleDiv.attr('data-rule-id');var firstRuleId=firstRuleDiv.attr('data-rule-id');if(currentRulId>firstRuleId){currentRuleDiv.remove();}
|
78 |
+
if(currentGroupId==firstGroupId&¤tGroupsLength==1&¤tRulId==lastRuleId&¤tRulesLength==1){alert('You can not delete the last rule.');}
|
79 |
+
else{currentRuleDiv.remove();}
|
80 |
+
if(currentRulId==lastRuleId){lastRuleDiv=currentGroupDiv.find('.sg-target-rule').last();lastRuleDiv.find('.sg-rules-add-button-wrapper').removeAttr('style');lastRuleDiv.find('.sg-rules-add-button-wrapper').show();}
|
81 |
+
if(currentRulId==firstRuleId&¤tGroupsLength>1){if(currentRulesLength==1){if(currentGroupId==firstGroupId){currentGroupDiv.next('.sg-rules-or').remove();}
|
82 |
+
else{currentGroupDiv.prev('.sg-rules-or').remove();}
|
83 |
+
currentGroupDiv.remove();}
|
84 |
+
else{currentRuleDiv.remove();}}});};SGPBBackend.getParamFromUrl=function(param)
|
85 |
+
{var url=window.location.href;param=param.replace(/[\[\]]/g,"\\$&");var regex=new RegExp("[?&]"+param+"(=([^&#]*)|&|#|$)"),results=regex.exec(url);if(!results){return null;}
|
86 |
+
if(!results[2]){return'';}
|
87 |
+
return decodeURIComponent(results[2].replace(/\+/g," "));};SGPBBackend.prototype.changeConditionParams=function()
|
88 |
+
{var that=this;jQuery('.popup-conditions-wrapper .sg-condition-param-wrapper select').each(function(){jQuery(this).unbind('change').change(function(e){if(this.options[this.selectedIndex].defaultSelected){return;}
|
89 |
+
e.preventDefault();that.eventsAddButtonSpinner(jQuery(this).parent().parent().find('.sg-rules-add-rule'),'show');var prevRuleDiv=jQuery(this).parents('.sg-target-rule').first();var currentGroupDiv=jQuery(this).parents('.sg-target-group').first();var currentTargetDiv=jQuery(this).parents('.popup-conditions-wrapper').first();var groupId=parseInt(currentGroupDiv.attr('data-group-id'));var ruleId=parseInt(prevRuleDiv.attr('data-rule-id'));var conditionName=currentTargetDiv.attr('data-condition-type');var parentDiv=currentTargetDiv.find('.sg-target-rule-'+ruleId).prev();if(!parentDiv.length){parentDiv=null;}
|
90 |
+
var paramSavedValue=jQuery(this).val();var data={action:'change_condition_rule_row',nonce_ajax:SGPB_JS_PARAMS.nonce,conditionName:conditionName,paramName:paramSavedValue,popupId:SGPBBackend.getParamFromUrl('post'),ruleId:ruleId,groupId:groupId};jQuery.post(ajaxurl,data,function(response){currentTargetDiv.find('.sg-target-rule-'+ruleId).after(response);currentTargetDiv.find('.sg-target-rule-'+ruleId).first().remove();jQuery('.popup-conditions-'+conditionName+' > .sg-target-group-'+groupId+' .sg-target-rule-'+ruleId+' .sg-rules-add-button-wrapper').hide();that.reInitRulesConfigButton();if(!currentTargetDiv.find('.sg-target-rule-'+ruleId).next().length){currentTargetDiv.find('.sg-rules-add-button-wrapper').last().show();}
|
91 |
+
that.eventsAddButtonSpinner(jQuery(this).parent().parent().find('.sg-rules-add-rule'),'hide');});});});jQuery('.popup-special-conditions-wrapper .sg-condition-operator-wrapper select').each(function(){jQuery(this).change(function(e){e.preventDefault();var paramSavedValue=jQuery(this).val();var currentTargetDiv=jQuery(this).closest('.popup-special-conditions-wrapper');var conditionName=currentTargetDiv.data('condition-type');var paramValue=currentTargetDiv.find('.sg-condition-param-wrapper select').first().val();var ruleId=0;var groupId=0;var prevRuleDiv=jQuery(this).parents('.sg-target-rule').first();var currentGroupDiv=jQuery(this).parents('.sg-target-group').first();var currentTargetDiv=jQuery(this).parents('.popup-conditions-wrapper').first();var groupId=parseInt(currentGroupDiv.attr('data-group-id'));var ruleId=parseInt(prevRuleDiv.attr('data-rule-id'));var data={action:'change_condition_rule_row',nonce_ajax:SGPB_JS_PARAMS.nonce,conditionName:conditionName,paramName:paramSavedValue,paramValue:paramValue,popupId:SGPBBackend.getParamFromUrl('post'),ruleId:ruleId,groupId:groupId};jQuery.post(ajaxurl,data,function(response){currentTargetDiv.find('.sg-target-rule-'+ruleId).after(response);currentTargetDiv.find('.sg-target-rule-'+ruleId).first().remove();that.reInitRulesConfigButton();if(currentTargetDiv.find('.sg-target-rule-'+ruleId).next().length){jQuery('.popup-conditions-'+conditionName+' > .sg-target-group-'+groupId+' .sg-target-rule-'+ruleId+' .sg-rules-add-button-wrapper').hide();}});});});};SGPBBackend.prototype.popupSelect2=function()
|
92 |
+
{if(!jQuery('.js-sg-select2').length){return;}
|
93 |
+
jQuery('select.js-sg-select2').each(function(){var type=jQuery(this).attr('data-select-type');var className=jQuery(this).attr('data-select-class');var options={width:'100%'};if(type=='ajax'){options=jQuery.extend(options,{minimumInputLength:1,ajax:{url:SGPB_JS_PARAMS.url,dataType:'json',delay:250,type:"POST",data:function(params){var searchKey=jQuery(this).attr('data-value-param');var dataCallback=jQuery(this).attr('data-select-callback');return{action:'select2_search_data',nonce_ajax:SGPB_JS_PARAMS.nonce,searchTerm:params.term,searchCallback:dataCallback,searchKey:searchKey};},processResults:function(data){return{results:jQuery.map(data.items,function(item){return{text:item.text,id:item.id}})};}}});}
|
94 |
+
jQuery(this).sgpbselect2(options);});};SGPBBackend.prototype.fixedPositionSelection=function()
|
95 |
+
{jQuery(".js-fixed-position-style").bind("click",function(){var sgElement=jQuery(this);var sgPoss=sgElement.attr('data-sgvalue');jQuery(".js-fixed-position-style").css("backgroundColor","#FFFFFF");jQuery(this).css("backgroundColor","rgba(70,173,208,0.5)");jQuery(".js-fixed-position").val(sgPoss);});jQuery(".js-fixed-position-style").bind("mouseover",function(){jQuery(".js-fixed-position-style").css("backgroundColor","#FFFFFF");jQuery(this).css("backgroundColor","rgb(70,173,208)");jQuery(".js-fixed-position-style").each(function(){if(jQuery(this).attr("data-sgvalue")==jQuery('.js-fixed-position').val())
|
96 |
+
jQuery(this).css("backgroundColor","rgba(70,173,208,0.5)");});});jQuery(".js-fixed-position-style").bind("mouseout",function(){if(jQuery(".js-fixed-position-style").attr("data-sgvalue")!==jQuery(".js-fixed-position").val()||jQuery(".js-fixed-position").val()==1){jQuery(this).css("backgroundColor","#FFFFFF");}
|
97 |
+
jQuery(".js-fixed-position-style").each(function(){if(jQuery(this).attr("data-sgvalue")==jQuery('.js-fixed-position').val()){jQuery(this).css("backgroundColor","rgba(70,173,208,0.5)");}});});if(jQuery('.js-fixed-position').val()!=''){jQuery(".js-fixed-position-style").each(function(){if(jQuery(this).attr("data-sgvalue")==jQuery('.js-fixed-position').val()){jQuery(this).css("backgroundColor","rgba(70,173,208,0.5)");}});}};SGPBBackend.prototype.hideTabContents=function(ruleId)
|
98 |
+
{jQuery(".sgpb-tab-content-"+ruleId).each(function(){var id=jQuery(this).attr("id");var currentTab=jQuery("[data-content-id="+id+"]");if(!currentTab.hasClass('sgpb-active')){jQuery(this).hide();}});};SGPBBackend.prototype.popupContentTabs=function()
|
99 |
+
{var ruleId=jQuery("#popup-dialog-main-div .sgpb-tab-links").first().attr('data-rule-id');var that=this;this.hideTabContents(ruleId);jQuery("#popupDialogMainDiv .sgpb-tab-links").bind('click',function(){jQuery("#popupDialogMainDiv .sgpb-tab-links").removeClass('sgpb-active');that.hideTabContents(ruleId);jQuery(".sgpb-tab-content").hide();var id=jQuery(this).attr('data-content-id');jQuery('#'+id).show();jQuery(this).addClass('sgpb-active');});};SGPBBackend.prototype.popupHiddenContentAccordions=function()
|
100 |
+
{jQuery('.sgpb-popup-accordion').each(function(){var key=jQuery(this).attr('data-name');var ruleId=jQuery(this).attr('data-rule-id');if(!jQuery(this).is(':checked')){jQuery(".sgpb-popup-hidden-content-"+key+"-"+ruleId+"-wrapper").hide();}});jQuery('.sgpb-popup-accordion').bind('change',function(){var key=jQuery(this).attr('data-name');var ruleId=jQuery(this).attr('data-rule-id');jQuery(".sgpb-popup-hidden-content-"+key+"-"+ruleId+"-wrapper").hide();if(jQuery(this).is(':checked')){jQuery(".sgpb-popup-hidden-content-"+key+"-"+ruleId+"-wrapper").show();}});};SGPBBackend.prototype.popupThemesPreview=function()
|
101 |
+
{var that=this;if(!jQuery('.js-sgpb-popup-themes').length){return false;}
|
102 |
+
that.themeRelatedSettings();jQuery('.js-sgpb-popup-themes').bind("mouseover",function(e){var themeId=jQuery(this).attr('data-popup-theme-number');jQuery('.theme-preview-'+themeId).css('display','block');jQuery(this).click(function(){jQuery('.sgpb-disable-border-wrapper').addClass('sg-hide');that.setCloseButtonDefaultPositions();that.setCloseButtonDefaultPositionValues();document.getElementById('sgpb-button-position-top').value='none';document.getElementById('sgpb-button-position-right').value='none';document.getElementById('sgpb-button-position-bottom').value='none';document.getElementById('sgpb-button-position-left').value='none';if(themeId==4){jQuery('.sgpb-close-button-image-option-wrapper').addClass('sg-hide');jQuery('.sgpb-close-button-border-options').addClass('sg-hide');jQuery('.sgpb-close-button-text-option-wrapper').removeClass('sg-hide');document.getElementById('sgpb-button-position-bottom').value=that.closeButtonDefaultPositions[themeId].bottom;document.getElementById('sgpb-button-position-right').value=that.closeButtonDefaultPositions[themeId].right;}
|
103 |
+
else if(themeId==3){jQuery('.sgpb-close-button-text-option-wrapper').addClass('sg-hide');jQuery('.sgpb-close-button-border-options').removeClass('sg-hide');jQuery('.sgpb-close-button-image-option-wrapper').removeClass('sg-hide');jQuery('input[name=sgpb-button-image-width]').val('38');jQuery('input[name=sgpb-button-image-height]').val('19');jQuery('.sgpb-disable-border-wrapper').removeClass('sg-hide');document.getElementById('sgpb-button-position-right').value=that.closeButtonDefaultPositions[themeId].right;document.getElementById('sgpb-button-position-top').value=that.closeButtonDefaultPositions[themeId].top;}
|
104 |
+
else{if(themeId==2){jQuery('input[name=sgpb-button-image-width]').val('20');jQuery('input[name=sgpb-button-image-height]').val('20');jQuery('.sgpb-disable-border-wrapper').removeClass('sg-hide');document.getElementById('sgpb-button-position-right').value=that.closeButtonDefaultPositions[themeId].right;document.getElementById('sgpb-button-position-top').value=that.closeButtonDefaultPositions[themeId].top;}
|
105 |
+
else if(themeId==5){jQuery('input[name=sgpb-button-image-width]').val('17');jQuery('input[name=sgpb-button-image-height]').val('17');document.getElementById('sgpb-button-position-bottom').value=that.closeButtonDefaultPositions[themeId].bottom;document.getElementById('sgpb-button-position-right').value=that.closeButtonDefaultPositions[themeId].right;}
|
106 |
+
else if(themeId==6){jQuery('input[name=sgpb-button-image-width]').val('30');jQuery('input[name=sgpb-button-image-height]').val('30');document.getElementById('sgpb-button-position-top').value=that.closeButtonDefaultPositions[themeId].top;document.getElementById('sgpb-button-position-right').value=that.closeButtonDefaultPositions[themeId].right;}
|
107 |
+
else{jQuery('input[name=sgpb-button-image-width]').val('21');jQuery('input[name=sgpb-button-image-height]').val('21');}
|
108 |
+
if(themeId==1){document.getElementById('sgpb-button-position-bottom').value=that.closeButtonDefaultPositions[themeId].bottom;document.getElementById('sgpb-button-position-right').value=that.closeButtonDefaultPositions[themeId].right;}
|
109 |
+
jQuery('.sgpb-close-button-text-option-wrapper').addClass('sg-hide');jQuery('.sgpb-close-button-border-options').addClass('sg-hide');jQuery('.sgpb-close-button-image-option-wrapper').removeClass('sg-hide');}});});jQuery('.js-sgpb-popup-themes').bind("mouseout",function(e){jQuery('.themes-preview').css('display','none');});};SGPBBackend.prototype.setCloseButtonDefaultPositions=function()
|
110 |
+
{var theme=jQuery('.js-sgpb-popup-themes:checked').attr('data-popup-theme-number');if(theme==1||theme==4||theme==5){jQuery('.sgpb-button-position-top-js').hide();jQuery('.sgpb-button-position-right-js').show();jQuery('.sgpb-button-position-left-js').hide();jQuery('.sgpb-button-position-bottom-js').show();}
|
111 |
+
else if(theme==2||theme==3||theme==6){jQuery('.sgpb-button-position-top-js').show();jQuery('.sgpb-button-position-right-js').show();jQuery('.sgpb-button-position-left-js').hide();jQuery('.sgpb-button-position-bottom-js').hide();}};SGPBBackend.prototype.setCloseButtonDefaultPositionValues=function()
|
112 |
+
{var that=this;jQuery('.sgpb-close-button-position').on('change',function(){var theme=jQuery('.js-sgpb-popup-themes:checked').attr('data-popup-theme-number');var buttonLocation=jQuery('.sgpb-close-button-position option:selected').val();that.setCloseButtonLocation(buttonLocation);document.getElementById('sgpb-button-position-top').value='none';document.getElementById('sgpb-button-position-right').value='none';document.getElementById('sgpb-button-position-bottom').value='none';document.getElementById('sgpb-button-position-left').value='none';if(theme==1){document.getElementById('sgpb-button-position-bottom').value=that.closeButtonDefaultPositions[theme].bottom;if(buttonLocation=='bottomRight'){document.getElementById('sgpb-button-position-right').value=that.closeButtonDefaultPositions[theme].right;}
|
113 |
+
else if(buttonLocation=='bottomLeft'){document.getElementById('sgpb-button-position-left').value=that.closeButtonDefaultPositions[theme].left;}}
|
114 |
+
else if(theme==2){if(buttonLocation=='topLeft'){document.getElementById('sgpb-button-position-left').value=that.closeButtonDefaultPositions[theme].left;document.getElementById('sgpb-button-position-top').value=that.closeButtonDefaultPositions[theme].top;}
|
115 |
+
else if(buttonLocation=='topRight'){document.getElementById('sgpb-button-position-right').value=that.closeButtonDefaultPositions[theme].right;document.getElementById('sgpb-button-position-top').value=that.closeButtonDefaultPositions[theme].top;}
|
116 |
+
else if(buttonLocation=='bottomLeft'){document.getElementById('sgpb-button-position-left').value=that.closeButtonDefaultPositions[theme].left;document.getElementById('sgpb-button-position-bottom').value=that.closeButtonDefaultPositions[theme].bottom;}
|
117 |
+
else if(buttonLocation=='bottomRight'){document.getElementById('sgpb-button-position-right').value=that.closeButtonDefaultPositions[theme].right;document.getElementById('sgpb-button-position-bottom').value=that.closeButtonDefaultPositions[theme].bottom;}}
|
118 |
+
else if(theme==3){if(buttonLocation=='topLeft'){document.getElementById('sgpb-button-position-left').value=that.closeButtonDefaultPositions[theme].left;document.getElementById('sgpb-button-position-top').value=that.closeButtonDefaultPositions[theme].top;}
|
119 |
+
else if(buttonLocation=='topRight'){document.getElementById('sgpb-button-position-right').value=that.closeButtonDefaultPositions[theme].right;document.getElementById('sgpb-button-position-top').value=that.closeButtonDefaultPositions[theme].top;}
|
120 |
+
else if(buttonLocation=='bottomLeft'){document.getElementById('sgpb-button-position-left').value=that.closeButtonDefaultPositions[theme].left;document.getElementById('sgpb-button-position-bottom').value=that.closeButtonDefaultPositions[theme].bottom;}
|
121 |
+
else if(buttonLocation=='bottomRight'){document.getElementById('sgpb-button-position-right').value=that.closeButtonDefaultPositions[theme].right;document.getElementById('sgpb-button-position-bottom').value=that.closeButtonDefaultPositions[theme].bottom;}}
|
122 |
+
else if(theme==4){document.getElementById('sgpb-button-position-bottom').value=that.closeButtonDefaultPositions[theme].bottom;if(buttonLocation=='bottomRight'){document.getElementById('sgpb-button-position-right').value=that.closeButtonDefaultPositions[theme].right;}
|
123 |
+
else if(buttonLocation=='bottomLeft'){document.getElementById('sgpb-button-position-left').value=that.closeButtonDefaultPositions[theme].left;}}
|
124 |
+
else if(theme==5){document.getElementById('sgpb-button-position-bottom').value=that.closeButtonDefaultPositions[theme].bottom;if(buttonLocation=='bottomRight'){document.getElementById('sgpb-button-position-right').value=that.closeButtonDefaultPositions[theme].right;}
|
125 |
+
else if(buttonLocation=='bottomLeft'){document.getElementById('sgpb-button-position-left').value=that.closeButtonDefaultPositions[theme].left;}}
|
126 |
+
else if(theme==6){if(buttonLocation=='topRight'){document.getElementById('sgpb-button-position-right').value=that.closeButtonDefaultPositions[theme].right;document.getElementById('sgpb-button-position-top').value=that.closeButtonDefaultPositions[theme].top;}
|
127 |
+
else if(buttonLocation=='topLeft'){document.getElementById('sgpb-button-position-top').value=that.closeButtonDefaultPositions[theme].top;document.getElementById('sgpb-button-position-left').value=that.closeButtonDefaultPositions[theme].left;}
|
128 |
+
else if(buttonLocation=='bottomLeft'){document.getElementById('sgpb-button-position-left').value=that.closeButtonDefaultPositions[theme].left;document.getElementById('sgpb-button-position-bottom').value=that.closeButtonDefaultPositions[theme].bottom;}
|
129 |
+
else if(buttonLocation=='bottomRight'){document.getElementById('sgpb-button-position-right').value=that.closeButtonDefaultPositions[theme].right;document.getElementById('sgpb-button-position-bottom').value=that.closeButtonDefaultPositions[theme].bottom;}}});};SGPBBackend.prototype.setCloseButtonLocation=function(location)
|
130 |
+
{jQuery('.sgpb-button-position-top-js').hide();jQuery('.sgpb-button-position-right-js').hide();jQuery('.sgpb-button-position-left-js').hide();jQuery('.sgpb-button-position-bottom-js').hide();if(location=='topRight'){jQuery('.sgpb-button-position-top-js').show();jQuery('.sgpb-button-position-right-js').show();}
|
131 |
+
else if(location=='topLeft'){jQuery('.sgpb-button-position-top-js').show();jQuery('.sgpb-button-position-left-js').show();}
|
132 |
+
else if(location=='bottomLeft'){jQuery('.sgpb-button-position-left-js').show();jQuery('.sgpb-button-position-bottom-js').show();}
|
133 |
+
else if(location=='bottomRight'){jQuery('.sgpb-button-position-right-js').show();jQuery('.sgpb-button-position-bottom-js').show();}};SGPBBackend.prototype.rangeSlider=function()
|
134 |
+
{if(typeof Powerange!='undefined'){var powerRangeSelectors=['js-popup-overlay-opacity','js-popup-content-opacity','js-subs-bg-opacity','js-contact-bg-opacity','js-login-bg-opacity','js-registration-bg-opacity'];for(var i in powerRangeSelectors){if(typeof powerRangeSelectors[i]!='string'){continue;}
|
135 |
+
if(jQuery('.'+powerRangeSelectors[i]).length==0){continue;}
|
136 |
+
this.powerRange(powerRangeSelectors[i]);}}};SGPBBackend.prototype.powerRange=function(cssSelectorName)
|
137 |
+
{var dec=document.querySelector('.'+cssSelectorName);function displayDecimalValue(){var dec=document.querySelector('.'+cssSelectorName);document.getElementById(cssSelectorName).innerHTML=jQuery('.'+cssSelectorName).attr('value');}
|
138 |
+
if(jQuery('#'+cssSelectorName).is(':visible')&&jQuery('#'+cssSelectorName).attr('data-init')=='false'){jQuery('#'+cssSelectorName).attr('data-init',true);var initDec=new Powerange(dec,{decimal:true,callback:displayDecimalValue,max:1,start:jQuery('.'+cssSelectorName).attr('value')});}};SGPBBackend.prototype.backgroundRangeSliderInit=function()
|
139 |
+
{if(jQuery('#sgpb-show-background').is(':checked')){this.powerRange('js-popup-content-opacity');}};SGPBBackend.prototype.overlayRangeSliderInit=function()
|
140 |
+
{if(jQuery('#sgpb-enable-popup-overlay').is(':checked')){this.powerRange('js-popup-overlay-opacity');}};SGPBBackend.prototype.imageUpload=function()
|
141 |
+
{var supportedImageTypes=['image/bmp','image/png','image/jpeg','image/jpg','image/ico','image/gif'];if(jQuery("#js-upload-image").val()){jQuery(".sgpb-show-image-container").html("");jQuery(".sgpb-show-image-container").css({'background-image':'url("'+jQuery("#js-upload-image").val()+'")'});}
|
142 |
+
var custom_uploader;jQuery('#js-upload-image-button').click(function(e){e.preventDefault();if(custom_uploader){custom_uploader.open();return;}
|
143 |
+
custom_uploader=wp.media.frames.file_frame=wp.media({titleFF:'Choose Image',button:{text:'Choose Image'},multiple:false,library:{type:'image'}});custom_uploader.on('select',function(){var attachment=custom_uploader.state().get('selection').first().toJSON();if(supportedImageTypes.indexOf(attachment.mime)===-1){alert(SGPB_JS_LOCALIZATION.imageSupportAlertMessage);return;}
|
144 |
+
jQuery(".sgpb-show-image-container").css({'background-image':'url("'+attachment.url+'")'});jQuery(".sgpb-show-image-container").html("");jQuery('#js-upload-image').val(attachment.url);});custom_uploader.open();});};SGPBBackend.prototype.buttonImageUpload=function()
|
145 |
+
{var supportedImageTypes=['image/bmp','image/png','image/jpeg','image/jpg','image/ico','image/gif'];var custom_uploader;jQuery('#js-button-upload-image-button').click(function(e){e.preventDefault();if(custom_uploader){custom_uploader.open();return;}
|
146 |
+
custom_uploader=wp.media.frames.file_frame=wp.media({titleFF:'Choose Image',button:{text:'Choose Image'},multiple:false,library:{type:'image'}});custom_uploader.on('select',function(){var attachment=custom_uploader.state().get('selection').first().toJSON();if(supportedImageTypes.indexOf(attachment.mime)===-1){alert(SGPB_JS_LOCALIZATION.imageSupportAlertMessage);return;}
|
147 |
+
jQuery(".sgpb-show-button-image-container").css({'background-image':'url("'+attachment.url+'")'});jQuery(".sgpb-show-button-image-container").html("");jQuery('#js-button-upload-image').val(attachment.url);jQuery('.js-sgpb-remove-close-button-image').removeClass('sg-hide');});custom_uploader.open();});};SGPBBackend.prototype.buttonImageRemove=function()
|
148 |
+
{jQuery('#js-button-upload-image-remove-button').click(function(){var selectedTheme=jQuery('.js-sgpb-popup-themes:checked').attr('data-popup-theme-number');if(typeof selectedTheme=='undefined'){selectedTheme=6;}
|
149 |
+
jQuery(".sgpb-show-button-image-container").html("");jQuery("#js-button-upload-image").attr('value','');jQuery('.sgpb-show-button-image-container').attr('style','background-image: url("'+sgpbPublicUrl+'img/theme_'+selectedTheme+'/close.png")');jQuery('.js-sgpb-remove-close-button-image').addClass('sg-hide');});};SGPBBackend.prototype.backgroundImageUpload=function()
|
150 |
+
{if(jQuery('#js-background-upload-image').val()){jQuery('.sgpb-show-background-image-container').html('');jQuery('.sgpb-show-background-image-container').css({'background-image':'url("'+jQuery("#js-background-upload-image").val()+'")'});}
|
151 |
+
var supportedImageTypes=['image/bmp','image/png','image/jpeg','image/jpg','image/ico','image/gif'];var custom_uploader;jQuery('#js-background-upload-image-button').click(function(e){e.preventDefault();if(custom_uploader){custom_uploader.open();return;}
|
152 |
+
custom_uploader=wp.media.frames.file_frame=wp.media({titleFF:'Choose Image',button:{text:'Choose Image'},multiple:false,library:{type:'image'}});custom_uploader.on('select',function(){var attachment=custom_uploader.state().get('selection').first().toJSON();if(supportedImageTypes.indexOf(attachment.mime)===-1){alert(SGPB_JS_LOCALIZATION.imageSupportAlertMessage);return;}
|
153 |
+
jQuery('.sgpb-show-background-image-container').css({'background-image':'url("'+attachment.url+'")'});jQuery('.sgpb-show-background-image-container').html('');jQuery('#js-background-upload-image').val(attachment.url);jQuery('input[name="sgpb-background-image"]').attr('value',attachment.url);jQuery('.js-sgpb-remove-background-image').removeClass('sg-hide');});custom_uploader.open();});};SGPBBackend.prototype.backgroundImageRemove=function()
|
154 |
+
{jQuery('#js-background-upload-image-remove-button').click(function(){jQuery('.sgpb-show-background-image-container').html('<span class="sgpb-no-image">(No image selected)</span>');jQuery('.sgpb-show-background-image-container').removeAttr('style');jQuery('#js-background-upload-image').attr('value','');jQuery('.js-sgpb-remove-background-image').addClass('sg-hide');});};SGPBBackend.prototype.switchPopupActive=function()
|
155 |
+
{var that=this;jQuery('.sg-switch-checkbox').bind('change',function(){var popupId=jQuery(this).attr('data-switch-id');var ajaxNonce=jQuery(this).attr('data-checkbox-ajaxNonce');if(jQuery(this).is(':checked')){that.changePopupStatus('on',popupId);}
|
156 |
+
else{that.changePopupStatus('',popupId);}});};SGPBBackend.prototype.changePopupStatus=function(status,popupId)
|
157 |
+
{var data={action:'change_popup_status',ajaxNonce:SGPB_JS_PARAMS.nonce,popupId:popupId,popupStatus:status};jQuery.post(ajaxurl,data,function(response){if(!response){alert('Can not change the current popup status.');location.reload();}});};SGPBBackend.prototype.colorPicker=function()
|
158 |
+
{var that=this;var colorPicker=jQuery('.sgpb-color-picker');if(!colorPicker.length){return false;}
|
159 |
+
colorPicker.wpColorPicker({change:function(){var colorPickerElement=jQuery(this);that.changeColor(colorPickerElement);}});jQuery('.wp-picker-holder').bind('click',function(){var selectedInput=jQuery(this).prev().find('.sgpb-color-picker');that.changeColor(selectedInput);});};SGPBBackend.prototype.changeColor=function(element)
|
160 |
+
{var selectedName=element.attr("name");var elementVal=element.val();if(selectedName=='sgpb-counter-text-color'){jQuery('#sgpb-counts-text').remove();jQuery('body').append('<style id="sgpb-counts-text">.sgpb-counts-content.sgpb-flipclock-js-'+SgpbCountdownParams.id+'.flip-clock-wrapper ul li a div div.inn { color: '+elementVal+'; }</style>');}
|
161 |
+
if(selectedName=='sgpb-counter-background-color'){jQuery('#sgpb-counts-style').remove();jQuery('body').append('<style id="sgpb-counts-style">.sgpb-counts-content.sgpb-flipclock-js-'+SgpbCountdownParams.id+'.flip-clock-wrapper ul li a div div.inn { background-color: '+elementVal+'; }</style>');}};SGPBBackend.prototype.previewInit=function()
|
162 |
+
{jQuery('input').on('change',function(){jQuery('.wrap').on('click',function(){setTimeout(function(){SGPBBackend.prototype.autosave();},3000);})});jQuery('#post-preview').click(function(){SGPBBackend.prototype.autosave();jQuery('#sgpb-is-preview').val('1');});jQuery('#title').on('change',function(){setTimeout(function(){SGPBBackend.prototype.autosave();},1000);});jQuery('#publish').click(function(){jQuery('#sgpb-is-preview').val('0');});};SGPBBackend.makeContactAndSubscriptionFieldsRequired=function()
|
163 |
+
{if(jQuery('.subs-redirect-to-URL').length){jQuery('input[name=sgpb-subs-success-behavior]').on('change',function(){if(jQuery('.subs-redirect-to-URL').is(':checked')){jQuery('#sgpb-subs-success-redirect-URL').attr('required','required');}
|
164 |
+
else{jQuery('#sgpb-subs-success-redirect-URL').removeAttr('required');}});}
|
165 |
+
else if(jQuery('.contact-redirect-to-URL').length){jQuery('input[name=sgpb-contact-success-behavior]').on('change',function(){if(jQuery('.contact-redirect-to-URL').is(':checked')){jQuery('#sgpb-contact-success-redirect-URL').attr('required','required');}
|
166 |
+
else{jQuery('#sgpb-contact-success-redirect-URL').removeAttr('required');}});}};SGPBBackend.prototype.makePopupTitleRequired=function()
|
167 |
+
{if(jQuery('#title').length){var postType=jQuery('#post_type');if(postType.length&&postType.val()=='popupbuilder'){jQuery('#title').attr('required','required');}}};SGPBBackend.prototype.themeRelatedSettings=function()
|
168 |
+
{var that=this;var positionSelectBox=jQuery('select[name=sgpb-close-button-position]').next('span').find('.select2-selection__rendered');var borderRadiusSelectBox=jQuery('select[name=sgpb-border-radius-type]').next('span').find('.select2-selection__rendered');var selectedTheme=jQuery('.js-sgpb-popup-themes').attr('data-popup-theme-number');jQuery('.js-sgpb-popup-themes').bind('click',function(){var buttonPosition='bottomRight';var padding=7;var overlay='';var theme=jQuery(this).attr('data-popup-theme-number');that.setThemeDefaultCloseBtnImage(theme);if(theme==1||theme==4||theme==5){jQuery('.sgpb-close-button-position option[value=topRight]').remove();jQuery('.sgpb-close-button-position option[value=topLeft]').remove();if(theme==5){padding=5;overlay='#000000';}
|
169 |
+
if(theme==4){padding=12;overlay='#ffffff';}
|
170 |
+
if(theme==1){overlay='';}
|
171 |
+
positionSelectBox.attr('title','bottom-right');positionSelectBox.text('bottom-right');buttonPosition='bottomRight';}
|
172 |
+
else if(theme==2||theme==3||theme==6){if(theme==2){padding=0;overlay='#ffffff';}
|
173 |
+
if(theme==3){padding=0;overlay='#000000';borderRadiusSelectBox.attr('title','%');borderRadiusSelectBox.text('%');jQuery('.sgpb-border-radius-type').val('%');jQuery('.sgpb-border-color').val('#000000');jQuery('.sgpb-border-color .wp-color-result').attr('style','background-color: #000000');}
|
174 |
+
if(theme==6){padding=12;overlay='';}
|
175 |
+
if(jQuery('.sgpb-close-button-position option[value=topRight]').length==0){jQuery('.sgpb-close-button-position').prepend(jQuery('<option>',{value:'topRight',text:'top-right'}));jQuery('.sgpb-close-button-position').prepend(jQuery('<option>',{value:'topLeft',text:'top-left'}));}
|
176 |
+
positionSelectBox.attr('title','top-right');positionSelectBox.text('top-right');buttonPosition='topRight';}
|
177 |
+
jQuery('.sgpb-overlay-color').val(overlay);if(overlay){jQuery('.sgpb-overlay-color .wp-color-result').attr('style','background-color: '+overlay);}
|
178 |
+
else{jQuery('.sgpb-overlay-color .wp-color-result').removeAttr('style');}
|
179 |
+
jQuery('input[name=sgpb-content-padding]').val(padding);jQuery('.sgpb-close-button-position').val(buttonPosition);});};SGPBBackend.prototype.setThemeDefaultCloseBtnImage=function(theme)
|
180 |
+
{jQuery('#js-button-upload-image-remove-button').click();jQuery('.sgpb-show-button-image-container').attr('style','background-image: url("'+sgpbPublicUrl+'img/theme_'+theme+'/close.png")');};SGPBBackend.prototype.eventsAddButtonSpinner=function(element,showHide)
|
181 |
+
{if(showHide=='show'){element.addClass('sgpb-events-spinner');element.text(SGPB_JS_LOCALIZATION.addButtonSpinner+' ...');}
|
182 |
+
else{jQuery('.sg-rules-add-rule').removeClass('sgpb-events-spinner');jQuery('.sg-rules-add-rule').text(' '+SGPB_JS_LOCALIZATION.addButtonSpinner);}};SGPBBackend.prototype.editPopupSettingsForFullscreenMode=function(popupId)
|
183 |
+
{var responsiveModeSelector=jQuery('.sgpb-responsive-mode-change-js');var that=this;var closeButtonCheckbox=jQuery('#close-button');if(typeof responsiveModeSelector=='undefined'){return false;}
|
184 |
+
responsiveModeSelector.change(function(){var selectedMode=jQuery(this).val();if(selectedMode=='fullScreen'){if(closeButtonCheckbox.is(':checked')){closeButtonCheckbox.click();}}});};SGPBBackend.hexToRgba=function(hex,opacity)
|
185 |
+
{var c;if(/^#([A-Fa-f0-9]{3}){1,2}$/.test(hex)){c=hex.substring(1).split('');if(c.length==3){c=[c[0],c[0],c[1],c[1],c[2],c[2]];}
|
186 |
+
c='0x'+c.join('');return'rgba('+[(c>>16)&255,(c>>8)&255,c&255].join(',')+','+opacity+')';}
|
187 |
+
throw new Error('Bad Hex');};SGPBBackend.resetCount=function(popupId)
|
188 |
+
{if(confirm(SGPB_JS_LOCALIZATION.areYouSure)){var data={nonce:SGPB_JS_PARAMS.nonce,action:'sgpb_reset_popup_opening_count',popupId:popupId};jQuery.post(ajaxurl,data,function(response){location.reload();});}};SGPBBackend.prototype.autosave=function()
|
189 |
+
{if(!jQuery('#titlediv').length){return false;}
|
190 |
+
var allPopupData=jQuery('form#post').serializeArray();var data={nonce:SGPB_JS_PARAMS.nonce,action:'sgpb_autosave',allPopupData:allPopupData};jQuery.post(ajaxurl,data,function(response){});};jQuery(document).ready(function(){var sgpbBackendObj=new SGPBBackend();sgpbBackendObj.sgInit();});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public/js/Banner.js
CHANGED
@@ -1,40 +1,4 @@
|
|
1 |
-
function SGPBBanner()
|
2 |
-
|
3 |
-
}
|
4 |
-
|
5 |
-
SGPBBanner.prototype.init = function() {
|
6 |
-
this.close();
|
7 |
-
this.closeLicenseNotice();
|
8 |
-
};
|
9 |
-
|
10 |
-
SGPBBanner.prototype.close = function() {
|
11 |
-
if (!jQuery('.sgpb-banner-wrapper').length) {
|
12 |
-
return;
|
13 |
-
}
|
14 |
-
|
15 |
-
jQuery('.sgpb-info-close').click(function() {
|
16 |
-
jQuery('.sgpb-banner-wrapper').remove();
|
17 |
-
});
|
18 |
-
};
|
19 |
-
|
20 |
-
SGPBBanner.prototype.closeLicenseNotice = function() {
|
21 |
-
if (!jQuery('.sgpb-extensions-notices').length) {
|
22 |
-
return;
|
23 |
-
}
|
24 |
-
|
25 |
-
jQuery('.sgpb-dont-show-again-license-notice').click(function() {
|
26 |
-
var data = {
|
27 |
-
action: 'sgpb_close_license_notice',
|
28 |
-
nonce: SGPB_JS_PARAMS.nonce,
|
29 |
-
};
|
30 |
-
|
31 |
-
jQuery.post(ajaxurl, data, function(response) {
|
32 |
-
jQuery('.sgpb-extensions-notices').remove();
|
33 |
-
});
|
34 |
-
});
|
35 |
-
};
|
36 |
-
|
37 |
-
jQuery(document).ready(function() {
|
38 |
-
var banner = new SGPBBanner();
|
39 |
-
banner.init();
|
40 |
-
});
|
1 |
+
function SGPBBanner(){}
|
2 |
+
SGPBBanner.prototype.init=function(){this.close();this.closeLicenseNotice();};SGPBBanner.prototype.close=function(){if(!jQuery('.sgpb-banner-wrapper').length){return;}
|
3 |
+
jQuery('.sgpb-info-close').click(function(){jQuery('.sgpb-banner-wrapper').remove();});};SGPBBanner.prototype.closeLicenseNotice=function(){if(!jQuery('.sgpb-extensions-notices').length){return;}
|
4 |
+
jQuery('.sgpb-dont-show-again-license-notice').click(function(){var data={action:'sgpb_close_license_notice',nonce:SGPB_JS_PARAMS.nonce,};jQuery.post(ajaxurl,data,function(response){jQuery('.sgpb-extensions-notices').remove();});});};jQuery(document).ready(function(){var banner=new SGPBBanner();banner.init();});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public/js/ExtensionsNotification.js
CHANGED
@@ -1,93 +1,14 @@
|
|
1 |
function SGPBExtensionsNotification()
|
2 |
-
{
|
3 |
-
|
4 |
-
}
|
5 |
-
|
6 |
-
SGPBExtensionsNotification.prototype.
|
7 |
-
{
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
};
|
16 |
-
|
17 |
-
SGPBExtensionsNotification.prototype.addToPopupMenuLinkColor = function()
|
18 |
-
{
|
19 |
-
jQuery('a[href="edit.php?post_type='+SGPB_JS_EXTENSIONS_PARAMS.popupPostType+'&page='+SGPB_JS_EXTENSIONS_PARAMS.extendPage+'"]').css({color: "#55efc4"})
|
20 |
-
jQuery('a[href="edit.php?post_type='+SGPB_JS_EXTENSIONS_PARAMS.popupPostType+'&page='+SGPB_JS_EXTENSIONS_PARAMS.extendPage+'"]').attr('href', SGPB_JS_EXTENSIONS_PARAMS.allExtensionsUrl);
|
21 |
-
/*support*/
|
22 |
-
jQuery('a[href="edit.php?post_type='+SGPB_JS_EXTENSIONS_PARAMS.popupPostType+'&page='+SGPB_JS_EXTENSIONS_PARAMS.supportPage+'"]').attr('href', SGPB_JS_EXTENSIONS_PARAMS.supportUrl);
|
23 |
-
};
|
24 |
-
|
25 |
-
SGPBExtensionsNotification.prototype.closeProblemAlert = function()
|
26 |
-
{
|
27 |
-
var closeButton = jQuery('.sgpb-problem-notice-close');
|
28 |
-
|
29 |
-
if (!closeButton.length) {
|
30 |
-
return false;
|
31 |
-
}
|
32 |
-
|
33 |
-
closeButton.bind('click', function() {
|
34 |
-
jQuery('.sgpb-alert-problem').remove();
|
35 |
-
});
|
36 |
-
};
|
37 |
-
|
38 |
-
SGPBExtensionsNotification.prototype.dontShowAgainProblemAlert = function()
|
39 |
-
{
|
40 |
-
var dontShow = jQuery('.sgpb-problem-notice-dont-show');
|
41 |
-
|
42 |
-
if (!dontShow.length) {
|
43 |
-
return false;
|
44 |
-
}
|
45 |
-
|
46 |
-
dontShow.bind('click', function() {
|
47 |
-
var data = {
|
48 |
-
action: 'sgpb_dont_show_problem_alert',
|
49 |
-
nonce: SGPB_JS_EXTENSIONS_PARAMS.nonce
|
50 |
-
};
|
51 |
-
|
52 |
-
jQuery.post(ajaxurl, data, function(responce) {
|
53 |
-
jQuery('.sgpb-alert-problem').remove();
|
54 |
-
});
|
55 |
-
});
|
56 |
-
};
|
57 |
-
|
58 |
-
SGPBExtensionsNotification.prototype.closeExtensionNotificationPanel = function()
|
59 |
-
{
|
60 |
-
var closeButton = jQuery('.sgpb-extension-notice-close');
|
61 |
-
|
62 |
-
if (!closeButton.length) {
|
63 |
-
return false;
|
64 |
-
}
|
65 |
-
|
66 |
-
closeButton.bind('click', function() {
|
67 |
-
jQuery('.sgpb-extensions-notices').remove();
|
68 |
-
});
|
69 |
-
};
|
70 |
-
|
71 |
-
SGPBExtensionsNotification.prototype.dontShowAgain = function()
|
72 |
-
{
|
73 |
-
var dontShow = jQuery('.sgpb-extension-notice-dont-show');
|
74 |
-
|
75 |
-
if (!dontShow.length) {
|
76 |
-
return false;
|
77 |
-
}
|
78 |
-
|
79 |
-
dontShow.bind('click', function() {
|
80 |
-
var data = {
|
81 |
-
action: 'sgpb_dont_show_extension_panel',
|
82 |
-
nonce: SGPB_JS_EXTENSIONS_PARAMS.nonce
|
83 |
-
};
|
84 |
-
|
85 |
-
jQuery.post(ajaxurl, data, function(responce) {
|
86 |
-
jQuery('.sgpb-extensions-notices').remove();
|
87 |
-
});
|
88 |
-
});
|
89 |
-
};
|
90 |
-
|
91 |
-
jQuery(document).ready(function() {
|
92 |
-
new SGPBExtensionsNotification();
|
93 |
-
});
|
1 |
function SGPBExtensionsNotification()
|
2 |
+
{this.init();}
|
3 |
+
SGPBExtensionsNotification.prototype.init=function()
|
4 |
+
{this.closeExtensionNotificationPanel();this.dontShowAgain();this.closeProblemAlert();this.dontShowAgainProblemAlert();this.addToPopupMenuLinkColor();};SGPBExtensionsNotification.prototype.addToPopupMenuLinkColor=function()
|
5 |
+
{jQuery('a[href="edit.php?post_type='+SGPB_JS_EXTENSIONS_PARAMS.popupPostType+'&page='+SGPB_JS_EXTENSIONS_PARAMS.extendPage+'"]').css({color:"#55efc4"})
|
6 |
+
jQuery('a[href="edit.php?post_type='+SGPB_JS_EXTENSIONS_PARAMS.popupPostType+'&page='+SGPB_JS_EXTENSIONS_PARAMS.extendPage+'"]').attr('href',SGPB_JS_EXTENSIONS_PARAMS.allExtensionsUrl);jQuery('a[href="edit.php?post_type='+SGPB_JS_EXTENSIONS_PARAMS.popupPostType+'&page='+SGPB_JS_EXTENSIONS_PARAMS.supportPage+'"]').attr('href',SGPB_JS_EXTENSIONS_PARAMS.supportUrl);};SGPBExtensionsNotification.prototype.closeProblemAlert=function()
|
7 |
+
{var closeButton=jQuery('.sgpb-problem-notice-close');if(!closeButton.length){return false;}
|
8 |
+
closeButton.bind('click',function(){jQuery('.sgpb-alert-problem').remove();});};SGPBExtensionsNotification.prototype.dontShowAgainProblemAlert=function()
|
9 |
+
{var dontShow=jQuery('.sgpb-problem-notice-dont-show');if(!dontShow.length){return false;}
|
10 |
+
dontShow.bind('click',function(){var data={action:'sgpb_dont_show_problem_alert',nonce:SGPB_JS_EXTENSIONS_PARAMS.nonce};jQuery.post(ajaxurl,data,function(responce){jQuery('.sgpb-alert-problem').remove();});});};SGPBExtensionsNotification.prototype.closeExtensionNotificationPanel=function()
|
11 |
+
{var closeButton=jQuery('.sgpb-extension-notice-close');if(!closeButton.length){return false;}
|
12 |
+
closeButton.bind('click',function(){jQuery('.sgpb-extensions-notices').remove();});};SGPBExtensionsNotification.prototype.dontShowAgain=function()
|
13 |
+
{var dontShow=jQuery('.sgpb-extension-notice-dont-show');if(!dontShow.length){return false;}
|
14 |
+
dontShow.bind('click',function(){var data={action:'sgpb_dont_show_extension_panel',nonce:SGPB_JS_EXTENSIONS_PARAMS.nonce};jQuery.post(ajaxurl,data,function(responce){jQuery('.sgpb-extensions-notices').remove();});});};jQuery(document).ready(function(){new SGPBExtensionsNotification();});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public/js/Newsletter.js
CHANGED
@@ -1,79 +1,10 @@
|
|
1 |
function SGPBNewsletter()
|
2 |
-
{
|
3 |
-
|
4 |
-
}
|
5 |
-
|
6 |
-
|
7 |
-
{
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
return jQuery('#sgpb-newsletter-text').val();
|
13 |
-
};
|
14 |
-
|
15 |
-
SGPBNewsletter.prototype.init = function ()
|
16 |
-
{
|
17 |
-
var sendButton = jQuery('.js-send-newsletter');
|
18 |
-
|
19 |
-
if (!sendButton.length) {
|
20 |
-
return false;
|
21 |
-
}
|
22 |
-
var that = this;
|
23 |
-
|
24 |
-
sendButton.bind('click', function(e) {
|
25 |
-
e.preventDefault();
|
26 |
-
var validationStatus = true;
|
27 |
-
var fromEmail = jQuery('.sgpb-newsletter-from-email').val();
|
28 |
-
var subscriptionFormId = jQuery('.js-sg-newsletter-forms option:selected').val();
|
29 |
-
subscriptionFormId = parseInt(subscriptionFormId);
|
30 |
-
var validateEmail = fromEmail.search(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,10})+$/);
|
31 |
-
|
32 |
-
if (isNaN(subscriptionFormId)) {
|
33 |
-
jQuery('.sgpb-newsletter-popup-error').removeClass('sg-hide-element');
|
34 |
-
validationStatus = false;
|
35 |
-
}
|
36 |
-
|
37 |
-
/*When the sent email isn't valid or the user hasn't selected any subscription form.*/
|
38 |
-
if (validateEmail == -1 ) {
|
39 |
-
validationStatus = false;
|
40 |
-
jQuery('.sgpb-newsletter-from-email-error').removeClass('sg-hide-element');
|
41 |
-
return false;
|
42 |
-
}
|
43 |
-
|
44 |
-
if (!validationStatus) {
|
45 |
-
return false;
|
46 |
-
}
|
47 |
-
jQuery('.sgpb-newsletter-validation').addClass('sg-hide-element');
|
48 |
-
|
49 |
-
var emailsInFlow = jQuery('.sgpb-emails-in-flow').val();
|
50 |
-
emailsInFlow = parseInt(emailsInFlow);
|
51 |
-
var newsletterSubject = jQuery('.sgpb-newsletter-subject').val();
|
52 |
-
var messageBody = that.getTinymceContent();
|
53 |
-
|
54 |
-
var data = {
|
55 |
-
nonce: SGPB_JS_PARAMS.nonce,
|
56 |
-
action: 'sgpb_send_newsletter',
|
57 |
-
newsletterData: {
|
58 |
-
subscriptionFormId: subscriptionFormId,
|
59 |
-
beforeSend: function() {
|
60 |
-
jQuery('.sgpb-js-newsletter-spinner').removeClass('sgpb-hide');
|
61 |
-
jQuery('.sgpb-newsletter-notice').addClass('sgpb-hide');
|
62 |
-
},
|
63 |
-
fromEmail: fromEmail,
|
64 |
-
emailsInFlow: emailsInFlow,
|
65 |
-
newsletterSubject: newsletterSubject,
|
66 |
-
messageBody: messageBody
|
67 |
-
}
|
68 |
-
};
|
69 |
-
|
70 |
-
jQuery.post(ajaxurl, data, function() {
|
71 |
-
jQuery('.sgpb-newsletter-notice').removeClass('sgpb-hide');
|
72 |
-
jQuery('.sgpb-js-newsletter-spinner').addClass('sgpb-hide');
|
73 |
-
});
|
74 |
-
});
|
75 |
-
};
|
76 |
-
|
77 |
-
jQuery(document).ready(function () {
|
78 |
-
new SGPBNewsletter();
|
79 |
-
});
|
1 |
function SGPBNewsletter()
|
2 |
+
{this.init();}
|
3 |
+
SGPBNewsletter.prototype.getTinymceContent=function()
|
4 |
+
{if(jQuery('.wp-editor-wrap').hasClass('tmce-active')){return tinyMCE.activeEditor.getContent();}
|
5 |
+
return jQuery('#sgpb-newsletter-text').val();};SGPBNewsletter.prototype.init=function()
|
6 |
+
{var sendButton=jQuery('.js-send-newsletter');if(!sendButton.length){return false;}
|
7 |
+
var that=this;sendButton.bind('click',function(e){e.preventDefault();var validationStatus=true;var fromEmail=jQuery('.sgpb-newsletter-from-email').val();var subscriptionFormId=jQuery('.js-sg-newsletter-forms option:selected').val();subscriptionFormId=parseInt(subscriptionFormId);var validateEmail=fromEmail.search(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,10})+$/);if(isNaN(subscriptionFormId)){jQuery('.sgpb-newsletter-popup-error').removeClass('sg-hide-element');validationStatus=false;}
|
8 |
+
if(validateEmail==-1){validationStatus=false;jQuery('.sgpb-newsletter-from-email-error').removeClass('sg-hide-element');return false;}
|
9 |
+
if(!validationStatus){return false;}
|
10 |
+
jQuery('.sgpb-newsletter-validation').addClass('sg-hide-element');var emailsInFlow=jQuery('.sgpb-emails-in-flow').val();emailsInFlow=parseInt(emailsInFlow);var newsletterSubject=jQuery('.sgpb-newsletter-subject').val();var messageBody=that.getTinymceContent();var data={nonce:SGPB_JS_PARAMS.nonce,action:'sgpb_send_newsletter',newsletterData:{subscriptionFormId:subscriptionFormId,beforeSend:function(){jQuery('.sgpb-js-newsletter-spinner').removeClass('sgpb-hide');jQuery('.sgpb-newsletter-notice').addClass('sgpb-hide');},fromEmail:fromEmail,emailsInFlow:emailsInFlow,newsletterSubject:newsletterSubject,messageBody:messageBody}};jQuery.post(ajaxurl,data,function(){jQuery('.sgpb-newsletter-notice').removeClass('sgpb-hide');jQuery('.sgpb-js-newsletter-spinner').addClass('sgpb-hide');});});};jQuery(document).ready(function(){new SGPBNewsletter();});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public/js/NotificationCenter.js
CHANGED
@@ -1,127 +1,11 @@
|
|
1 |
-
function SGPBNotificationCenter()
|
2 |
-
|
3 |
-
}
|
4 |
-
|
5 |
-
SGPBNotificationCenter.prototype.
|
6 |
-
{
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
};
|
12 |
-
|
13 |
-
SGPBNotificationCenter.prototype.dismiss = function()
|
14 |
-
{
|
15 |
-
var that = this;
|
16 |
-
jQuery('.sgpb-dismiss-notification-js').click(function() {
|
17 |
-
var id = jQuery(this).attr('data-id');
|
18 |
-
jQuery(this).addClass('disabled');
|
19 |
-
jQuery(this).parent().prev().addClass('sgpb-disabled');
|
20 |
-
|
21 |
-
var data = {
|
22 |
-
nonce: SGPB_JS_PARAMS.nonce,
|
23 |
-
action: 'sgpb_dismiss_notification',
|
24 |
-
id: id
|
25 |
-
};
|
26 |
-
|
27 |
-
jQuery.post(ajaxurl, data, function(response) {
|
28 |
-
response = JSON.parse(response);
|
29 |
-
jQuery('.sgpb-each-notification-wrapper-js').empty();
|
30 |
-
jQuery('.sgpb-each-notification-wrapper-js').html(response['content']);
|
31 |
-
jQuery('.sgpb-notifications-count-span').html(response['count']);
|
32 |
-
jQuery('.sgpb-menu-item-notification').html(response['count']);
|
33 |
-
if (response['count'] == 0) {
|
34 |
-
jQuery('.sgpb-menu-item-notification').addClass('sgpb-hide-add-button');
|
35 |
-
}
|
36 |
-
that.init();
|
37 |
-
});
|
38 |
-
});
|
39 |
-
};
|
40 |
-
|
41 |
-
SGPBNotificationCenter.prototype.reactivate = function()
|
42 |
-
{
|
43 |
-
var that = this;
|
44 |
-
jQuery('.sgpb-activate-notification-js').click(function() {
|
45 |
-
var id = jQuery(this).attr('data-id');
|
46 |
-
jQuery(this).addClass('disabled');
|
47 |
-
|
48 |
-
var data = {
|
49 |
-
nonce: SGPB_JS_PARAMS.nonce,
|
50 |
-
action: 'sgpb_reactivate_notification',
|
51 |
-
id: id
|
52 |
-
};
|
53 |
-
|
54 |
-
jQuery.post(ajaxurl, data, function(response) {
|
55 |
-
response = JSON.parse(response);
|
56 |
-
jQuery('.sgpb-each-notification-wrapper-js').empty();
|
57 |
-
jQuery('.sgpb-each-notification-wrapper-js').html(response['content']);
|
58 |
-
jQuery('.sgpb-notifications-count-span').html(response['count']);
|
59 |
-
jQuery('.sgpb-menu-item-notification').removeClass('sgpb-hide-add-button');
|
60 |
-
jQuery('.sgpb-menu-item-notification').html(response['count']);
|
61 |
-
that.init();
|
62 |
-
});
|
63 |
-
});
|
64 |
-
};
|
65 |
-
|
66 |
-
SGPBNotificationCenter.prototype.closePromotionalNotification = function()
|
67 |
-
{
|
68 |
-
var that = this;
|
69 |
-
jQuery('.sgpb-dont-show-again-support-notification').click(function() {
|
70 |
-
var currentNotification = jQuery(this).parents('.sgpb-single-notification-wrapper');
|
71 |
-
currentNotification.addClass('sgpb-disabled');
|
72 |
-
var data = {
|
73 |
-
action: 'sgpb_close_banner',
|
74 |
-
nonce: SGPB_JS_PARAMS.nonce,
|
75 |
-
};
|
76 |
-
|
77 |
-
jQuery.post(ajaxurl, data, function(response) {
|
78 |
-
currentNotification.remove();
|
79 |
-
});
|
80 |
-
});
|
81 |
-
jQuery('.sgpb-close-promo-notification').each(function () {
|
82 |
-
jQuery(this).click(function() {
|
83 |
-
jQuery(this).parents('.sgpb-single-notification-wrapper').addClass('sgpb-disabled');
|
84 |
-
var dataAction = jQuery(this).attr('data-action');
|
85 |
-
if (dataAction == 'sg-show-popup-period') {
|
86 |
-
jQuery(this).parents('.sgpb-single-notification-wrapper').find('.sgpb-dismiss-notification-js').click();
|
87 |
-
return true;
|
88 |
-
}
|
89 |
-
var ajaxData = {
|
90 |
-
action: 'sgpb_dont_show_review_popup',
|
91 |
-
nonce: SGPB_JS_PARAMS.nonce
|
92 |
-
};
|
93 |
-
jQuery.post(SGPB_JS_PARAMS.url, ajaxData, function (res) {
|
94 |
-
if (jQuery('.sgpb-review-wrapper').length) {
|
95 |
-
jQuery('.sgpb-review-wrapper').parents('.sgpb-single-notification-wrapper').remove();
|
96 |
-
}
|
97 |
-
if (dataAction == 'sg-you-worth-it') {
|
98 |
-
window.open(SGPB_JS_EXTENSIONS_PARAMS.reviewUrl, '_blank');
|
99 |
-
}
|
100 |
-
});
|
101 |
-
});
|
102 |
-
});
|
103 |
-
};
|
104 |
-
|
105 |
-
SGPBNotificationCenter.prototype.dontShowAgain = function()
|
106 |
-
{
|
107 |
-
var that = this;
|
108 |
-
jQuery('.sgpb-hide-notification-at-all').click(function() {
|
109 |
-
var id = jQuery(this).attr('data-id');
|
110 |
-
jQuery(this).parent().addClass('disabled');
|
111 |
-
jQuery(this).parent().addClass('sgpb-disabled');
|
112 |
-
var data = {
|
113 |
-
nonce: SGPB_JS_PARAMS.nonce,
|
114 |
-
action: 'sgpb_remove_notification',
|
115 |
-
id: id
|
116 |
-
};
|
117 |
-
|
118 |
-
jQuery.post(ajaxurl, data, function(response) {
|
119 |
-
location.reload();
|
120 |
-
});
|
121 |
-
});
|
122 |
-
}
|
123 |
-
|
124 |
-
jQuery(document).ready(function() {
|
125 |
-
var notificationCenter = new SGPBNotificationCenter();
|
126 |
-
notificationCenter.init();
|
127 |
-
});
|
1 |
+
function SGPBNotificationCenter(){}
|
2 |
+
SGPBNotificationCenter.prototype.init=function()
|
3 |
+
{this.dontShowAgain();this.dismiss();this.reactivate();this.closePromotionalNotification();};SGPBNotificationCenter.prototype.dismiss=function()
|
4 |
+
{var that=this;jQuery('.sgpb-dismiss-notification-js').click(function(){var id=jQuery(this).attr('data-id');jQuery(this).addClass('disabled');jQuery(this).parent().prev().addClass('sgpb-disabled');var data={nonce:SGPB_JS_PARAMS.nonce,action:'sgpb_dismiss_notification',id:id};jQuery.post(ajaxurl,data,function(response){response=JSON.parse(response);jQuery('.sgpb-each-notification-wrapper-js').empty();jQuery('.sgpb-each-notification-wrapper-js').html(response['content']);jQuery('.sgpb-notifications-count-span').html(response['count']);jQuery('.sgpb-menu-item-notification').html(response['count']);if(response['count']==0){jQuery('.sgpb-menu-item-notification').addClass('sgpb-hide-add-button');}
|
5 |
+
that.init();});});};SGPBNotificationCenter.prototype.reactivate=function()
|
6 |
+
{var that=this;jQuery('.sgpb-activate-notification-js').click(function(){var id=jQuery(this).attr('data-id');jQuery(this).addClass('disabled');var data={nonce:SGPB_JS_PARAMS.nonce,action:'sgpb_reactivate_notification',id:id};jQuery.post(ajaxurl,data,function(response){response=JSON.parse(response);jQuery('.sgpb-each-notification-wrapper-js').empty();jQuery('.sgpb-each-notification-wrapper-js').html(response['content']);jQuery('.sgpb-notifications-count-span').html(response['count']);jQuery('.sgpb-menu-item-notification').removeClass('sgpb-hide-add-button');jQuery('.sgpb-menu-item-notification').html(response['count']);that.init();});});};SGPBNotificationCenter.prototype.closePromotionalNotification=function()
|
7 |
+
{var that=this;jQuery('.sgpb-dont-show-again-support-notification').click(function(){var currentNotification=jQuery(this).parents('.sgpb-single-notification-wrapper');currentNotification.addClass('sgpb-disabled');var data={action:'sgpb_close_banner',nonce:SGPB_JS_PARAMS.nonce,};jQuery.post(ajaxurl,data,function(response){currentNotification.remove();});});jQuery('.sgpb-close-promo-notification').each(function(){jQuery(this).click(function(){jQuery(this).parents('.sgpb-single-notification-wrapper').addClass('sgpb-disabled');var dataAction=jQuery(this).attr('data-action');if(dataAction=='sg-show-popup-period'){jQuery(this).parents('.sgpb-single-notification-wrapper').find('.sgpb-dismiss-notification-js').click();return true;}
|
8 |
+
var ajaxData={action:'sgpb_dont_show_review_popup',nonce:SGPB_JS_PARAMS.nonce};jQuery.post(SGPB_JS_PARAMS.url,ajaxData,function(res){if(jQuery('.sgpb-review-wrapper').length){jQuery('.sgpb-review-wrapper').parents('.sgpb-single-notification-wrapper').remove();}
|
9 |
+
if(dataAction=='sg-you-worth-it'){window.open(SGPB_JS_EXTENSIONS_PARAMS.reviewUrl,'_blank');}});});});};SGPBNotificationCenter.prototype.dontShowAgain=function()
|
10 |
+
{var that=this;jQuery('.sgpb-hide-notification-at-all').click(function(){var id=jQuery(this).attr('data-id');jQuery(this).parent().addClass('disabled');jQuery(this).parent().addClass('sgpb-disabled');var data={nonce:SGPB_JS_PARAMS.nonce,action:'sgpb_remove_notification',id:id};jQuery.post(ajaxurl,data,function(response){location.reload();});});}
|
11 |
+
jQuery(document).ready(function(){var notificationCenter=new SGPBNotificationCenter();notificationCenter.init();});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public/js/PopupBuilder.js
CHANGED
File without changes
|
public/js/Subscribers.js
CHANGED
@@ -1,421 +1,38 @@
|
|
1 |
-
function SGPBSubscribers()
|
2 |
-
|
3 |
-
SGPBSubscribers.prototype.
|
4 |
-
{
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
};
|
17 |
-
|
18 |
-
SGPBSubscribers.prototype.
|
19 |
-
{
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
}
|
40 |
-
}
|
41 |
-
})
|
42 |
-
};
|
43 |
-
|
44 |
-
SGPBSubscribers.prototype.openImportSubscriberPopup = function()
|
45 |
-
{
|
46 |
-
if (jQuery('.bulkactions').empty()) {
|
47 |
-
jQuery('.bulkactions').remove();
|
48 |
-
}
|
49 |
-
var that = this;
|
50 |
-
jQuery('.sgpb-import-subscriber').bind('click', function() {
|
51 |
-
jQuery('#sgpb-import-subscribers').addClass('sgpb-show-add-subscriber-popup');
|
52 |
-
SGPBSubscribers.prototype.escKeyClosePopup();
|
53 |
-
that.closePopup();
|
54 |
-
});
|
55 |
-
};
|
56 |
-
|
57 |
-
SGPBSubscribers.prototype.subscriberFileUploader = function()
|
58 |
-
{
|
59 |
-
var uploadButton = jQuery('#js-import-subscriber-button');
|
60 |
-
var supportedAudioTypes = ['text/plain', 'text/x-csv', 'text/csv'];
|
61 |
-
|
62 |
-
if (!uploadButton.length) {
|
63 |
-
return false;
|
64 |
-
}
|
65 |
-
var uploader;
|
66 |
-
uploadButton.bind('click', function(e) {
|
67 |
-
e.preventDefault();
|
68 |
-
|
69 |
-
if (uploader) {
|
70 |
-
uploader.open();
|
71 |
-
return false;
|
72 |
-
}
|
73 |
-
|
74 |
-
/* Extend the wp.media object */
|
75 |
-
uploader = wp.media.frames.file_frame = wp.media({
|
76 |
-
titleFF : SGPB_JS_LOCALIZATION.changeSound,
|
77 |
-
button : {
|
78 |
-
text : SGPB_JS_LOCALIZATION.changeSound
|
79 |
-
},
|
80 |
-
library : {type : supportedAudioTypes},
|
81 |
-
multiple : false
|
82 |
-
});
|
83 |
-
|
84 |
-
/* When a file is selected, grab the URL and set it as the text field's value */
|
85 |
-
uploader.on('select', function() {
|
86 |
-
var attachment = uploader.state().get('selection').first().toJSON();
|
87 |
-
if (supportedAudioTypes.indexOf(attachment.mime) === -1) {
|
88 |
-
alert(SGPB_JS_LOCALIZATION.audioSupportAlertMessage);
|
89 |
-
return;
|
90 |
-
}
|
91 |
-
jQuery('#js-import-subscriber-file-url').val(attachment.url);
|
92 |
-
});
|
93 |
-
/* Open the uploader dialog */
|
94 |
-
uploader.open();
|
95 |
-
});
|
96 |
-
};
|
97 |
-
|
98 |
-
|
99 |
-
SGPBSubscribers.prototype.importSubscriber = function()
|
100 |
-
{
|
101 |
-
var importSubscriber = jQuery('.sgpb-import-subscriber-to-list');
|
102 |
-
var that = this;
|
103 |
-
|
104 |
-
if (!importSubscriber.length) {
|
105 |
-
return false;
|
106 |
-
}
|
107 |
-
|
108 |
-
importSubscriber.bind('click', function() {
|
109 |
-
var popupSubscriptionList = jQuery('.js-sg-import-list').val();
|
110 |
-
var importListURL = jQuery('#js-import-subscriber-file-url').val();
|
111 |
-
|
112 |
-
var data = {
|
113 |
-
action: 'sgpb_import_subscribers',
|
114 |
-
nonce: SGPB_JS_PARAMS.nonce,
|
115 |
-
popupSubscriptionList: popupSubscriptionList,
|
116 |
-
importListURL: importListURL,
|
117 |
-
beforeSend: function() {
|
118 |
-
importSubscriber.prop('disabled', true);
|
119 |
-
}
|
120 |
-
};
|
121 |
-
|
122 |
-
jQuery.post(ajaxurl, data, function(response) {
|
123 |
-
importSubscriber.prop('disabled', false);
|
124 |
-
jQuery('.sgpb-add-subscriber-content-wrapper').html('');
|
125 |
-
jQuery('.sgpb-add-subscriber-content-wrapper').append(response);
|
126 |
-
that.closePopup();
|
127 |
-
that.disableSelectedValue();
|
128 |
-
jQuery('.sgpb-add-new-subscribers-wrapper').addClass('sgpb-to-center-window');
|
129 |
-
jQuery('.sgpb-add-new-subscribers-wrapper').css({'margin-top': 0});
|
130 |
-
that.saveImportValue();
|
131 |
-
});
|
132 |
-
});
|
133 |
-
};
|
134 |
-
|
135 |
-
SGPBSubscribers.prototype.disableSelectedValue = function() {
|
136 |
-
var selectOptioon = jQuery('.sgpb-our-fields-keys');
|
137 |
-
|
138 |
-
if (!selectOptioon.length) {
|
139 |
-
return false;
|
140 |
-
}
|
141 |
-
|
142 |
-
selectOptioon.bind('change', function() {
|
143 |
-
var currentVal = jQuery(this).val();
|
144 |
-
jQuery('.sgpb-our-fields-keys option[value="'+jQuery(this).attr('data-saved-value')+'"]').removeAttr('disabled');
|
145 |
-
jQuery(this).attr('data-saved-value', currentVal);
|
146 |
-
jQuery('.sgpb-our-fields-keys option[value="'+currentVal+'"]').not(jQuery(this)).attr('disabled', 'disabled');
|
147 |
-
});
|
148 |
-
};
|
149 |
-
|
150 |
-
SGPBSubscribers.prototype.saveImportValue = function()
|
151 |
-
{
|
152 |
-
var importSubscriber = jQuery('.sgpb-import-subscriber-to-list');
|
153 |
-
var mapping = {};
|
154 |
-
var data = {
|
155 |
-
action: 'sgpb_save_imported_subscribers',
|
156 |
-
nonce: SGPB_JS_PARAMS.nonce,
|
157 |
-
popupSubscriptionList: jQuery('.sgpb-to-import-popup-id').val(),
|
158 |
-
importListURL: jQuery('.sgpb-imported-file-url').val(),
|
159 |
-
};
|
160 |
-
|
161 |
-
jQuery('.sgpb-save-subscriber').bind('click', function() {
|
162 |
-
mapping = {};
|
163 |
-
|
164 |
-
var ourFields = jQuery('.sgpb-our-fields-keys');
|
165 |
-
ourFields.each(function () {
|
166 |
-
var currentValue = jQuery('option:selected', this).val();
|
167 |
-
if (currentValue) {
|
168 |
-
mapping[currentValue] = jQuery(this).attr('data-index');
|
169 |
-
}
|
170 |
-
});
|
171 |
-
data.namesMapping = mapping;
|
172 |
-
data.popupId = jQuery('.sgpb-to-import-popup-id').val();
|
173 |
-
data.beforeSend = function() {
|
174 |
-
jQuery('.sgpb-save-subscriber').prop('disabled', true);
|
175 |
-
};
|
176 |
-
jQuery.post(ajaxurl, data, function(response) {
|
177 |
-
window.location.reload();
|
178 |
-
jQuery('.sgpb-save-subscriber').prop('disabled', false);
|
179 |
-
});
|
180 |
-
});
|
181 |
-
};
|
182 |
-
|
183 |
-
SGPBSubscribers.prototype.closePopup = function ()
|
184 |
-
{
|
185 |
-
jQuery('.sgpb-subscriber-popup-close-btn-js').bind('click', function() {
|
186 |
-
jQuery(this).parents('.sgpb-subscribers-popup').first().removeClass('sgpb-show-add-subscriber-popup');
|
187 |
-
jQuery('.sgpb-add-subscriber-input:selected').prop('selected', false);
|
188 |
-
jQuery('.sgpb-add-subscriber-input').val('');
|
189 |
-
});
|
190 |
-
};
|
191 |
-
|
192 |
-
SGPBSubscribers.prototype.openAddSubscriberPopup = function()
|
193 |
-
{
|
194 |
-
if (jQuery('.bulkactions').empty()) {
|
195 |
-
jQuery('.bulkactions').remove();
|
196 |
-
}
|
197 |
-
jQuery('.sgpb-add-subscriber').bind('click', function() {
|
198 |
-
jQuery('#sgpb-add-new-subscriber').addClass('sgpb-show-add-subscriber-popup');
|
199 |
-
SGPBSubscribers.prototype.escKeyClosePopup();
|
200 |
-
});
|
201 |
-
};
|
202 |
-
|
203 |
-
SGPBSubscribers.prototype.escKeyClosePopup = function()
|
204 |
-
{
|
205 |
-
jQuery(document).keyup(function(e) {
|
206 |
-
if (e.keyCode == 27) {
|
207 |
-
if (jQuery('#sgpb-add-new-subscriber').hasClass('sgpb-show-add-subscriber-popup')) {
|
208 |
-
jQuery('#sgpb-add-new-subscriber').removeClass('sgpb-show-add-subscriber-popup');
|
209 |
-
}
|
210 |
-
}
|
211 |
-
});
|
212 |
-
};
|
213 |
-
|
214 |
-
SGPBSubscribers.prototype.closeAddSubscriberPopup = function()
|
215 |
-
{
|
216 |
-
jQuery('.sgpb-add-subscriber-popup-close-btn-js').bind('click', function() {
|
217 |
-
jQuery('#sgpb-add-new-subscriber').removeClass('sgpb-show-add-subscriber-popup');
|
218 |
-
jQuery('.sgpb-add-subscriber-input:selected').prop('selected', false);
|
219 |
-
jQuery('.sgpb-add-subscriber-input').val('');
|
220 |
-
});
|
221 |
-
};
|
222 |
-
|
223 |
-
SGPBSubscribers.prototype.addSubscribers = function()
|
224 |
-
{
|
225 |
-
var that = this;
|
226 |
-
|
227 |
-
jQuery('.sgpb-add-to-list-js').bind('click', function() {
|
228 |
-
jQuery('.sgpb-subscription-error').addClass('sg-hide-element');
|
229 |
-
jQuery('.sgpb-email-error').addClass('sg-hide-element');
|
230 |
-
var email = jQuery('.sgpb-add-subscribers-email').val();
|
231 |
-
var firstName = jQuery('.sgpb-add-subscribers-first-name').val();
|
232 |
-
var lastName = jQuery('.sgpb-add-subscribers-last-name').val();
|
233 |
-
var subscriptionPopups = [];
|
234 |
-
|
235 |
-
jQuery('.js-sg-newsletter-forms > option').each(function() {
|
236 |
-
if (jQuery(this).prop('selected')) {
|
237 |
-
subscriptionPopups.push(jQuery(this).val());
|
238 |
-
}
|
239 |
-
});
|
240 |
-
var validationString = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
|
241 |
-
var validEmail = email.search(validationString);
|
242 |
-
|
243 |
-
if (jQuery('.js-sg-newsletter-forms > option').is(':checked') == false && validEmail == -1) {
|
244 |
-
jQuery('.sgpb-subscription-error').removeClass('sg-hide-element');
|
245 |
-
jQuery('.sgpb-email-error').removeClass('sg-hide-element');
|
246 |
-
return;
|
247 |
-
}
|
248 |
-
/* if no subscription (popup) not selected
|
249 |
-
is(':checked') always returns boolean
|
250 |
-
*/
|
251 |
-
if (jQuery('.js-sg-newsletter-forms > option').is(':checked') == false) {
|
252 |
-
jQuery('.sgpb-subscription-error').removeClass('sg-hide-element');
|
253 |
-
return;
|
254 |
-
}
|
255 |
-
/* if email is not valid */
|
256 |
-
if (validEmail == -1) {
|
257 |
-
jQuery('.sgpb-email-error').removeClass('sg-hide-element');
|
258 |
-
return;
|
259 |
-
}
|
260 |
-
jQuery('.sgpb-email-error').addClass('sg-hide-element');
|
261 |
-
|
262 |
-
var data = {
|
263 |
-
action: 'sgpb_add_subscribers',
|
264 |
-
nonce: SGPB_JS_PARAMS.nonce,
|
265 |
-
firstName: firstName,
|
266 |
-
lastName: lastName,
|
267 |
-
email: email,
|
268 |
-
popups: subscriptionPopups,
|
269 |
-
beforeSend: function() {
|
270 |
-
jQuery('.js-sgpb-add-spinner').removeClass('sg-hide-element');
|
271 |
-
}
|
272 |
-
};
|
273 |
-
|
274 |
-
that.addToSubscribersAjax(data);
|
275 |
-
});
|
276 |
-
};
|
277 |
-
|
278 |
-
SGPBSubscribers.prototype.exportSubscribers = function()
|
279 |
-
{
|
280 |
-
var that = this;
|
281 |
-
|
282 |
-
jQuery('#sgpb-subscription-popup').on('change', function() {
|
283 |
-
jQuery('.sgpb-subscription-popup-id').val(jQuery(this).val());
|
284 |
-
})
|
285 |
-
jQuery('#sgpb-subscribers-dates').on('change', function() {
|
286 |
-
jQuery('.sgpb-subscribers-date').val(jQuery(this).val());
|
287 |
-
})
|
288 |
-
jQuery('.sgpb-export-subscriber').bind('click', function() {
|
289 |
-
var parameters = '';
|
290 |
-
var params = {};
|
291 |
-
params['sgpb-subscription-popup-id'] = that.getUrlParameter('sgpb-subscription-popup-id');
|
292 |
-
params['s'] = that.getUrlParameter('s');
|
293 |
-
params['sgpb-subscribers-date'] = that.getUrlParameter('sgpb-subscribers-date');
|
294 |
-
params['orderby'] = that.getUrlParameter('orderby');
|
295 |
-
params['order'] = that.getUrlParameter('order');
|
296 |
-
for (var i in params) {
|
297 |
-
if (typeof params[i] != 'undefined' && params[i] != '') {
|
298 |
-
parameters += '&' + i + '=' + params[i];
|
299 |
-
}
|
300 |
-
}
|
301 |
-
window.location.href = SGPB_JS_ADMIN_URL.url+'?action=csv_file'+parameters;
|
302 |
-
});
|
303 |
-
};
|
304 |
-
|
305 |
-
SGPBSubscribers.prototype.getUrlParameter = function(key)
|
306 |
-
{
|
307 |
-
var pageUrl = window.location.search.substring(1);
|
308 |
-
var urlVariables = pageUrl.split('&');
|
309 |
-
for (var i = 0; i < urlVariables.length; i++) {
|
310 |
-
var param = urlVariables[i].split('=');
|
311 |
-
if (param[0] == key) {
|
312 |
-
if (typeof param[1] != 'undefined') {
|
313 |
-
return param[1];
|
314 |
-
}
|
315 |
-
else {
|
316 |
-
return '';
|
317 |
-
}
|
318 |
-
}
|
319 |
-
}
|
320 |
-
};
|
321 |
-
|
322 |
-
SGPBSubscribers.prototype.addToSubscribersAjax = function(data)
|
323 |
-
{
|
324 |
-
jQuery.post(ajaxurl, data, function(response) {
|
325 |
-
if (response != 1) {
|
326 |
-
jQuery('.sgpb-subscriber-adding-error').removeClass('sg-hide-element');
|
327 |
-
jQuery('.sgpb-subscribers-add-spinner').addClass('sg-hide-element');
|
328 |
-
}
|
329 |
-
else {
|
330 |
-
location.reload();
|
331 |
-
}
|
332 |
-
});
|
333 |
-
};
|
334 |
-
|
335 |
-
SGPBSubscribers.prototype.toggleCheckedSubscribers = function()
|
336 |
-
{
|
337 |
-
var that = this;
|
338 |
-
jQuery('.subs-bulk').each(function() {
|
339 |
-
jQuery(this).bind('click', function() {
|
340 |
-
var bulkStatus = jQuery(this).prop('checked');
|
341 |
-
that.changeCheckedSubscribers(bulkStatus);
|
342 |
-
});
|
343 |
-
});
|
344 |
-
};
|
345 |
-
|
346 |
-
SGPBSubscribers.prototype.changeCheckedSubscribers = function(bulkStatus)
|
347 |
-
{
|
348 |
-
jQuery('.subs-delete-checkbox').each(function() {
|
349 |
-
jQuery(this).prop('checked', bulkStatus);
|
350 |
-
})
|
351 |
-
};
|
352 |
-
|
353 |
-
SGPBSubscribers.prototype.fixSubscriptionBulkCheckbox = function()
|
354 |
-
{
|
355 |
-
jQuery('#bulk,.column-bulk').removeClass().addClass('manage-column column-cb check-column');
|
356 |
-
};
|
357 |
-
|
358 |
-
SGPBSubscribers.prototype.dataImport = function()
|
359 |
-
{
|
360 |
-
var custom_uploader;
|
361 |
-
jQuery('#js-upload-export-file').click(function(e) {
|
362 |
-
e.preventDefault();
|
363 |
-
var ajaxNonce = jQuery(this).attr('data-ajaxNonce');
|
364 |
-
|
365 |
-
/* If the uploader object has already been created, reopen the dialog */
|
366 |
-
if (custom_uploader) {
|
367 |
-
custom_uploader.open();
|
368 |
-
return;
|
369 |
-
}
|
370 |
-
|
371 |
-
/* Extend the wp.media object */
|
372 |
-
custom_uploader = wp.media.frames.file_frame = wp.media({
|
373 |
-
titleFF: 'Select Export File',
|
374 |
-
button: {
|
375 |
-
text: 'Select Export File'
|
376 |
-
},
|
377 |
-
multiple: false,
|
378 |
-
library : { type : 'text/plain'}
|
379 |
-
});
|
380 |
-
/* When a file is selected, grab the URL and set it as the text field's value */
|
381 |
-
custom_uploader.on('select', function() {
|
382 |
-
attachment = custom_uploader.state().get('selection').first().toJSON();
|
383 |
-
|
384 |
-
var data = {
|
385 |
-
action: 'import_popups',
|
386 |
-
ajaxNonce: ajaxNonce,
|
387 |
-
attachmentUrl: attachment.url
|
388 |
-
};
|
389 |
-
jQuery('.js-sg-import-gif').removeClass('sg-hide-element');
|
390 |
-
jQuery.post(ajaxurl, data, function(response, d) {
|
391 |
-
location.reload();
|
392 |
-
jQuery('.js-sg-import-gif').addClass('sg-hide-element');
|
393 |
-
});
|
394 |
-
});
|
395 |
-
/* Open the uploader dialog */
|
396 |
-
custom_uploader.open();
|
397 |
-
});
|
398 |
-
};
|
399 |
-
|
400 |
-
SGPBSubscribers.prototype.deleteSubscribersAjax = function(checkedSubscribersList)
|
401 |
-
{
|
402 |
-
var data = {
|
403 |
-
action: 'sgpb_subscribers_delete',
|
404 |
-
nonce: SGPB_JS_PARAMS.nonce,
|
405 |
-
subscribersId: checkedSubscribersList,
|
406 |
-
beforeSend: function() {
|
407 |
-
jQuery('.sgpb-subscribers-remove-spinner').removeClass('sg-hide-element');
|
408 |
-
}
|
409 |
-
};
|
410 |
-
|
411 |
-
jQuery.post(ajaxurl, data, function(response) {
|
412 |
-
jQuery('.sgpb-subscribers-remove-spinner').addClass('sg-hide-element');
|
413 |
-
jQuery('.subs-delete-checkbox').prop('checked', '');
|
414 |
-
window.location.reload();
|
415 |
-
});
|
416 |
-
};
|
417 |
-
|
418 |
-
jQuery(document).ready(function() {
|
419 |
-
var subscribers = new SGPBSubscribers();
|
420 |
-
subscribers.init();
|
421 |
-
});
|
1 |
+
function SGPBSubscribers(){}
|
2 |
+
SGPBSubscribers.prototype.init=function()
|
3 |
+
{this.openAddSubscriberPopup();this.openImportSubscriberPopup();this.subscriberFileUploader();this.closeAddSubscriberPopup();this.importSubscriber();this.dataImport();this.deleteSubscribers();this.addSubscribers();this.toggleCheckedSubscribers();this.fixSubscriptionBulkCheckbox();this.exportSubscribers();};SGPBSubscribers.prototype.deleteSubscribers=function()
|
4 |
+
{var checkedSubscribersList=[];var that=this;jQuery('.sg-subs-delete-button').bind('click',function(){var data={};data.ajaxNonce=jQuery(this).attr('data-ajaxNonce');jQuery('.subs-delete-checkbox').each(function(){var isChecked=jQuery(this).prop('checked');if(isChecked){var subscriberId=jQuery(this).attr('data-delete-id');checkedSubscribersList.push(subscriberId);}});if(checkedSubscribersList.length==0){alert('Please select at least one subscriber.');}
|
5 |
+
else{var isSure=confirm(SGPB_JS_LOCALIZATION.areYouSure);if(isSure){that.deleteSubscribersAjax(checkedSubscribersList,data);}}})};SGPBSubscribers.prototype.openImportSubscriberPopup=function()
|
6 |
+
{if(jQuery('.bulkactions').empty()){jQuery('.bulkactions').remove();}
|
7 |
+
var that=this;jQuery('.sgpb-import-subscriber').bind('click',function(){jQuery('#sgpb-import-subscribers').addClass('sgpb-show-add-subscriber-popup');SGPBSubscribers.prototype.escKeyClosePopup();that.closePopup();});};SGPBSubscribers.prototype.subscriberFileUploader=function()
|
8 |
+
{var uploadButton=jQuery('#js-import-subscriber-button');var supportedAudioTypes=['text/plain','text/x-csv','text/csv'];if(!uploadButton.length){return false;}
|
9 |
+
var uploader;uploadButton.bind('click',function(e){e.preventDefault();if(uploader){uploader.open();return false;}
|
10 |
+
uploader=wp.media.frames.file_frame=wp.media({titleFF:SGPB_JS_LOCALIZATION.changeSound,button:{text:SGPB_JS_LOCALIZATION.changeSound},library:{type:supportedAudioTypes},multiple:false});uploader.on('select',function(){var attachment=uploader.state().get('selection').first().toJSON();if(supportedAudioTypes.indexOf(attachment.mime)===-1){alert(SGPB_JS_LOCALIZATION.audioSupportAlertMessage);return;}
|
11 |
+
jQuery('#js-import-subscriber-file-url').val(attachment.url);});uploader.open();});};SGPBSubscribers.prototype.importSubscriber=function()
|
12 |
+
{var importSubscriber=jQuery('.sgpb-import-subscriber-to-list');var that=this;if(!importSubscriber.length){return false;}
|
13 |
+
importSubscriber.bind('click',function(){var popupSubscriptionList=jQuery('.js-sg-import-list').val();var importListURL=jQuery('#js-import-subscriber-file-url').val();var data={action:'sgpb_import_subscribers',nonce:SGPB_JS_PARAMS.nonce,popupSubscriptionList:popupSubscriptionList,importListURL:importListURL,beforeSend:function(){importSubscriber.prop('disabled',true);}};jQuery.post(ajaxurl,data,function(response){importSubscriber.prop('disabled',false);jQuery('.sgpb-add-subscriber-content-wrapper').html('');jQuery('.sgpb-add-subscriber-content-wrapper').append(response);that.closePopup();that.disableSelectedValue();jQuery('.sgpb-add-new-subscribers-wrapper').addClass('sgpb-to-center-window');jQuery('.sgpb-add-new-subscribers-wrapper').css({'margin-top':0});that.saveImportValue();});});};SGPBSubscribers.prototype.disableSelectedValue=function(){var selectOptioon=jQuery('.sgpb-our-fields-keys');if(!selectOptioon.length){return false;}
|
14 |
+
selectOptioon.bind('change',function(){var currentVal=jQuery(this).val();jQuery('.sgpb-our-fields-keys option[value="'+jQuery(this).attr('data-saved-value')+'"]').removeAttr('disabled');jQuery(this).attr('data-saved-value',currentVal);jQuery('.sgpb-our-fields-keys option[value="'+currentVal+'"]').not(jQuery(this)).attr('disabled','disabled');});};SGPBSubscribers.prototype.saveImportValue=function()
|
15 |
+
{var importSubscriber=jQuery('.sgpb-import-subscriber-to-list');var mapping={};var data={action:'sgpb_save_imported_subscribers',nonce:SGPB_JS_PARAMS.nonce,popupSubscriptionList:jQuery('.sgpb-to-import-popup-id').val(),importListURL:jQuery('.sgpb-imported-file-url').val(),};jQuery('.sgpb-save-subscriber').bind('click',function(){mapping={};var ourFields=jQuery('.sgpb-our-fields-keys');ourFields.each(function(){var currentValue=jQuery('option:selected',this).val();if(currentValue){mapping[currentValue]=jQuery(this).attr('data-index');}});data.namesMapping=mapping;data.popupId=jQuery('.sgpb-to-import-popup-id').val();data.beforeSend=function(){jQuery('.sgpb-save-subscriber').prop('disabled',true);};jQuery.post(ajaxurl,data,function(response){window.location.reload();jQuery('.sgpb-save-subscriber').prop('disabled',false);});});};SGPBSubscribers.prototype.closePopup=function()
|
16 |
+
{jQuery('.sgpb-subscriber-popup-close-btn-js').bind('click',function(){jQuery(this).parents('.sgpb-subscribers-popup').first().removeClass('sgpb-show-add-subscriber-popup');jQuery('.sgpb-add-subscriber-input:selected').prop('selected',false);jQuery('.sgpb-add-subscriber-input').val('');});};SGPBSubscribers.prototype.openAddSubscriberPopup=function()
|
17 |
+
{if(jQuery('.bulkactions').empty()){jQuery('.bulkactions').remove();}
|
18 |
+
jQuery('.sgpb-add-subscriber').bind('click',function(){jQuery('#sgpb-add-new-subscriber').addClass('sgpb-show-add-subscriber-popup');SGPBSubscribers.prototype.escKeyClosePopup();});};SGPBSubscribers.prototype.escKeyClosePopup=function()
|
19 |
+
{jQuery(document).keyup(function(e){if(e.keyCode==27){if(jQuery('#sgpb-add-new-subscriber').hasClass('sgpb-show-add-subscriber-popup')){jQuery('#sgpb-add-new-subscriber').removeClass('sgpb-show-add-subscriber-popup');}}});};SGPBSubscribers.prototype.closeAddSubscriberPopup=function()
|
20 |
+
{jQuery('.sgpb-add-subscriber-popup-close-btn-js').bind('click',function(){jQuery('#sgpb-add-new-subscriber').removeClass('sgpb-show-add-subscriber-popup');jQuery('.sgpb-add-subscriber-input:selected').prop('selected',false);jQuery('.sgpb-add-subscriber-input').val('');});};SGPBSubscribers.prototype.addSubscribers=function()
|
21 |
+
{var that=this;jQuery('.sgpb-add-to-list-js').bind('click',function(){jQuery('.sgpb-subscription-error').addClass('sg-hide-element');jQuery('.sgpb-email-error').addClass('sg-hide-element');var email=jQuery('.sgpb-add-subscribers-email').val();var firstName=jQuery('.sgpb-add-subscribers-first-name').val();var lastName=jQuery('.sgpb-add-subscribers-last-name').val();var subscriptionPopups=[];jQuery('.js-sg-newsletter-forms > option').each(function(){if(jQuery(this).prop('selected')){subscriptionPopups.push(jQuery(this).val());}});var validationString=/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;var validEmail=email.search(validationString);if(jQuery('.js-sg-newsletter-forms > option').is(':checked')==false&&validEmail==-1){jQuery('.sgpb-subscription-error').removeClass('sg-hide-element');jQuery('.sgpb-email-error').removeClass('sg-hide-element');return;}
|
22 |
+
if(jQuery('.js-sg-newsletter-forms > option').is(':checked')==false){jQuery('.sgpb-subscription-error').removeClass('sg-hide-element');return;}
|
23 |
+
if(validEmail==-1){jQuery('.sgpb-email-error').removeClass('sg-hide-element');return;}
|
24 |
+
jQuery('.sgpb-email-error').addClass('sg-hide-element');var data={action:'sgpb_add_subscribers',nonce:SGPB_JS_PARAMS.nonce,firstName:firstName,lastName:lastName,email:email,popups:subscriptionPopups,beforeSend:function(){jQuery('.js-sgpb-add-spinner').removeClass('sg-hide-element');}};that.addToSubscribersAjax(data);});};SGPBSubscribers.prototype.exportSubscribers=function()
|
25 |
+
{var that=this;jQuery('#sgpb-subscription-popup').on('change',function(){jQuery('.sgpb-subscription-popup-id').val(jQuery(this).val());})
|
26 |
+
jQuery('#sgpb-subscribers-dates').on('change',function(){jQuery('.sgpb-subscribers-date').val(jQuery(this).val());})
|
27 |
+
jQuery('.sgpb-export-subscriber').bind('click',function(){var parameters='';var params={};params['sgpb-subscription-popup-id']=that.getUrlParameter('sgpb-subscription-popup-id');params['s']=that.getUrlParameter('s');params['sgpb-subscribers-date']=that.getUrlParameter('sgpb-subscribers-date');params['orderby']=that.getUrlParameter('orderby');params['order']=that.getUrlParameter('order');for(var i in params){if(typeof params[i]!='undefined'&¶ms[i]!=''){parameters+='&'+i+'='+params[i];}}
|
28 |
+
window.location.href=SGPB_JS_ADMIN_URL.url+'?action=csv_file'+parameters;});};SGPBSubscribers.prototype.getUrlParameter=function(key)
|
29 |
+
{var pageUrl=window.location.search.substring(1);var urlVariables=pageUrl.split('&');for(var i=0;i<urlVariables.length;i++){var param=urlVariables[i].split('=');if(param[0]==key){if(typeof param[1]!='undefined'){return param[1];}
|
30 |
+
else{return'';}}}};SGPBSubscribers.prototype.addToSubscribersAjax=function(data)
|
31 |
+
{jQuery.post(ajaxurl,data,function(response){if(response!=1){jQuery('.sgpb-subscriber-adding-error').removeClass('sg-hide-element');jQuery('.sgpb-subscribers-add-spinner').addClass('sg-hide-element');}
|
32 |
+
else{location.reload();}});};SGPBSubscribers.prototype.toggleCheckedSubscribers=function()
|
33 |
+
{var that=this;jQuery('.subs-bulk').each(function(){jQuery(this).bind('click',function(){var bulkStatus=jQuery(this).prop('checked');that.changeCheckedSubscribers(bulkStatus);});});};SGPBSubscribers.prototype.changeCheckedSubscribers=function(bulkStatus)
|
34 |
+
{jQuery('.subs-delete-checkbox').each(function(){jQuery(this).prop('checked',bulkStatus);})};SGPBSubscribers.prototype.fixSubscriptionBulkCheckbox=function()
|
35 |
+
{jQuery('#bulk,.column-bulk').removeClass().addClass('manage-column column-cb check-column');};SGPBSubscribers.prototype.dataImport=function()
|
36 |
+
{var custom_uploader;jQuery('#js-upload-export-file').click(function(e){e.preventDefault();var ajaxNonce=jQuery(this).attr('data-ajaxNonce');if(custom_uploader){custom_uploader.open();return;}
|
37 |
+
custom_uploader=wp.media.frames.file_frame=wp.media({titleFF:'Select Export File',button:{text:'Select Export File'},multiple:false,library:{type:'text/plain'}});custom_uploader.on('select',function(){attachment=custom_uploader.state().get('selection').first().toJSON();var data={action:'import_popups',ajaxNonce:ajaxNonce,attachmentUrl:attachment.url};jQuery('.js-sg-import-gif').removeClass('sg-hide-element');jQuery.post(ajaxurl,data,function(response,d){location.reload();jQuery('.js-sg-import-gif').addClass('sg-hide-element');});});custom_uploader.open();});};SGPBSubscribers.prototype.deleteSubscribersAjax=function(checkedSubscribersList)
|
38 |
+
{var data={action:'sgpb_subscribers_delete',nonce:SGPB_JS_PARAMS.nonce,subscribersId:checkedSubscribersList,beforeSend:function(){jQuery('.sgpb-subscribers-remove-spinner').removeClass('sg-hide-element');}};jQuery.post(ajaxurl,data,function(response){jQuery('.sgpb-subscribers-remove-spinner').addClass('sg-hide-element');jQuery('.subs-delete-checkbox').prop('checked','');window.location.reload();});};jQuery(document).ready(function(){var subscribers=new SGPBSubscribers();subscribers.init();});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -9,7 +9,7 @@ Tags: popup, pop up, wordpress popup, popup maker, exit popup, popup builder, wo
|
|
9 |
Requires at least: 3.8
|
10 |
Tested up to: 5.3
|
11 |
Requires PHP: 5.3.3
|
12 |
-
Stable tag: 3.
|
13 |
License: GPLv2 or later
|
14 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
15 |
|
@@ -185,6 +185,11 @@ Go to the Popup Builder settings and set your desired options.
|
|
185 |
|
186 |
== Changelog ==
|
187 |
|
|
|
|
|
|
|
|
|
|
|
188 |
= Version 3.62.1 =
|
189 |
* Hot fix related to PHP Warning.
|
190 |
|
@@ -1141,7 +1146,7 @@ Leave us a good review :)
|
|
1141 |
|
1142 |
== Upgrade Notice ==
|
1143 |
|
1144 |
-
Current Version of Popup Builder is 3.
|
1145 |
|
1146 |
== Other Notes ==
|
1147 |
|
9 |
Requires at least: 3.8
|
10 |
Tested up to: 5.3
|
11 |
Requires PHP: 5.3.3
|
12 |
+
Stable tag: 3.63
|
13 |
License: GPLv2 or later
|
14 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
15 |
|
185 |
|
186 |
== Changelog ==
|
187 |
|
188 |
+
= Version 3.63 =
|
189 |
+
* Autosave fixed.
|
190 |
+
* Bug fixes and improvements.
|
191 |
+
* JS and CSS files minified.
|
192 |
+
|
193 |
= Version 3.62.1 =
|
194 |
* Hot fix related to PHP Warning.
|
195 |
|
1146 |
|
1147 |
== Upgrade Notice ==
|
1148 |
|
1149 |
+
Current Version of Popup Builder is 3.63
|
1150 |
|
1151 |
== Other Notes ==
|
1152 |
|