Version Description
- Removed lang folder, translations are now being handled by GlotPress on w.org
- Fixed a CSS bug ( https://github.com/MachoThemes/simple-author-box/issues/11 )
- Removed ShortPixel Banner ( https://github.com/MachoThemes/simple-author-box/issues/8 )
- Minor UI reworks. The plugin's CSS was overwriting a lot of WordPress Core UI styling
- Removed RTL CSS stylesheets as they weren't being properly handled. Will re-add them at a later date, after the new UI will be released
- Updated the URL that was loading FontAwesome Icons from 4.1 -> 4.7 ( https://github.com/MachoThemes/simple-author-box/issues/9 )
- Fixed oEmbed bug on front-end ( https://github.com/MachoThemes/simple-author-box/issues/2 )
- Added MixCloud Icon ( https://github.com/MachoThemes/simple-author-box/issues/3 )
- Added GoodReads Icon ( https://github.com/MachoThemes/simple-author-box/issues/6 )
Download this release
Release Info
Developer | machothemes |
Plugin | Simple Author Box |
Version | 1.9 |
Comparing to | |
See all releases |
Code changes from version 1.7 to 1.9
- core/sabox_author_box.php +1 -1
- core/sabox_social_icons.php +66 -63
- css/dev/sabox-admin-style-rtl.css +0 -597
- css/dev/sabox-admin-style.css +283 -362
- css/dev/simple-author-box-rtl.css +0 -1495
- css/dev/simple-author-box.css +10 -0
- css/sabox-admin-style-rtl.min.css +0 -1
- css/sabox-admin-style.min.css +1 -1
- css/simple-author-box-rtl.min.css +0 -1
- css/simple-author-box.min.css +1 -1
- lang/saboxplugin.mo +0 -0
- lang/saboxplugin.po +0 -345
- lang/saboxplugin.pot +0 -345
- readme.txt +20 -7
- simple-author-box.php +384 -374
- template/options.php +427 -457
- uninstall.php +10 -10
core/sabox_author_box.php
CHANGED
@@ -121,7 +121,7 @@ function saboxplugin_position() {
|
|
121 |
global $options;
|
122 |
|
123 |
if( !isset( $options['sab_autoinsert'] ) ) {
|
124 |
-
add_filter ( 'the_content', 'wpsabox_author_box'
|
125 |
}
|
126 |
|
127 |
}
|
121 |
global $options;
|
122 |
|
123 |
if( !isset( $options['sab_autoinsert'] ) ) {
|
124 |
+
add_filter ( 'the_content', 'wpsabox_author_box');
|
125 |
}
|
126 |
|
127 |
}
|
core/sabox_social_icons.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
// If this file is called directly, busted!
|
4 |
-
if( !defined( 'ABSPATH' ) ) {
|
5 |
-
|
6 |
}
|
7 |
|
8 |
/*----------------------------------------------------------------------------------------------------------
|
@@ -11,60 +11,62 @@ if( !defined( 'ABSPATH' ) ) {
|
|
11 |
|
12 |
class Sabox_Social_Icons {
|
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 |
|
@@ -74,14 +76,15 @@ class Sabox_Social_Icons {
|
|
74 |
|
75 |
function sabox_extra_fields( $extra_fields ) {
|
76 |
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
|
|
85 |
}
|
86 |
|
87 |
add_filter( 'user_contactmethods', 'sabox_extra_fields' );
|
1 |
<?php
|
2 |
|
3 |
// If this file is called directly, busted!
|
4 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
5 |
+
exit;
|
6 |
}
|
7 |
|
8 |
/*----------------------------------------------------------------------------------------------------------
|
11 |
|
12 |
class Sabox_Social_Icons {
|
13 |
|
14 |
+
static $sabox_social_icons_array = array(
|
15 |
+
'addthis' => 'Add This',
|
16 |
+
'behance' => 'Behance',
|
17 |
+
'delicious' => 'Delicious',
|
18 |
+
'deviantart' => 'Deviantart',
|
19 |
+
'digg' => 'Digg',
|
20 |
+
'dribbble' => 'Dribbble',
|
21 |
+
'facebook' => 'Facebook',
|
22 |
+
'flickr' => 'Flickr',
|
23 |
+
'github' => 'Github',
|
24 |
+
'google' => 'Google',
|
25 |
+
'googleplus' => 'Google Plus',
|
26 |
+
'html5' => 'Html5',
|
27 |
+
'instagram' => 'Instagram',
|
28 |
+
'linkedin' => 'Linkedin',
|
29 |
+
'pinterest' => 'Pinterest',
|
30 |
+
'reddit' => 'Reddit',
|
31 |
+
'rss' => 'Rss',
|
32 |
+
'sharethis' => 'Sharethis',
|
33 |
+
'skype' => 'Skype',
|
34 |
+
'soundcloud' => 'Soundcloud',
|
35 |
+
'spotify' => 'Spotify',
|
36 |
+
'stackoverflow' => 'Stackoverflow',
|
37 |
+
'steam' => 'Steam',
|
38 |
+
'stumbleUpon' => 'StumbleUpon',
|
39 |
+
'tumblr' => 'Tumblr',
|
40 |
+
'twitter' => 'Twitter',
|
41 |
+
'vimeo' => 'Vimeo',
|
42 |
+
'windows' => 'Windows',
|
43 |
+
'wordpress' => 'Wordpress',
|
44 |
+
'yahoo' => 'Yahoo',
|
45 |
+
'youtube' => 'Youtube',
|
46 |
+
'xing' => 'Xing',
|
47 |
+
'mixcloud' => 'MixCloud',
|
48 |
+
'goodreads' => 'Goodreads',
|
49 |
+
);
|
50 |
+
|
51 |
+
static function get_sabox_social_icon( $url, $icon_name ) {
|
52 |
+
|
53 |
+
global $options;
|
54 |
+
|
55 |
+
if ( isset( $options['sab_link_target'] ) ) {
|
56 |
+
$sabox_blank = '_blank';
|
57 |
+
} else {
|
58 |
+
$sabox_blank = '_self';
|
59 |
+
}
|
60 |
+
|
61 |
+
if ( isset( $options['sab_colored'] ) ) {
|
62 |
+
$sab_color = 'saboxplugin-icon-color';
|
63 |
+
} else {
|
64 |
+
$sab_color = 'saboxplugin-icon-grey';
|
65 |
+
}
|
66 |
+
|
67 |
+
return '<a target="' . $sabox_blank . '" href="' . $url . '"><span class="' . $sab_color . ' saboxplugin-icon-' . $icon_name . '"></span></a>';
|
68 |
+
|
69 |
+
}
|
70 |
|
71 |
}
|
72 |
|
76 |
|
77 |
function sabox_extra_fields( $extra_fields ) {
|
78 |
|
79 |
+
unset( $extra_fields['aim'] );
|
80 |
+
unset( $extra_fields['jabber'] );
|
81 |
+
unset( $extra_fields['yim'] );
|
82 |
|
83 |
+
foreach ( Sabox_Social_Icons::$sabox_social_icons_array as $sabox_social_id => $sabox_social_name ) {
|
84 |
+
$extra_fields[ $sabox_social_id ] = $sabox_social_name;
|
85 |
+
}
|
86 |
+
|
87 |
+
return $extra_fields;
|
88 |
}
|
89 |
|
90 |
add_filter( 'user_contactmethods', 'sabox_extra_fields' );
|
css/dev/sabox-admin-style-rtl.css
DELETED
@@ -1,597 +0,0 @@
|
|
1 |
-
/* RTL ADMIN PLUGIN STYLE
|
2 |
-
-------------------------------------------------------------- */
|
3 |
-
body {
|
4 |
-
direction: rtl;
|
5 |
-
unicode-bidi: embed;
|
6 |
-
}
|
7 |
-
|
8 |
-
.wrap .saboxplugin .wp-core-ui .button, .wp-core-ui .button-primary, .wp-core-ui .button-secondary {
|
9 |
-
font-size: 16px;
|
10 |
-
height: 42px;
|
11 |
-
border-style: none;
|
12 |
-
line-height: 36px;
|
13 |
-
border-radius: 0;
|
14 |
-
-webkit-box-shadow:none;
|
15 |
-
-moz-box-shadow:none;
|
16 |
-
box-shadow:none;
|
17 |
-
}
|
18 |
-
|
19 |
-
.wrap .saboxplugin p {
|
20 |
-
color: #777;
|
21 |
-
line-height: 1.6;
|
22 |
-
}
|
23 |
-
|
24 |
-
.wrap .saboxplugin p.description {
|
25 |
-
margin: 20px 0px 5px;
|
26 |
-
}
|
27 |
-
|
28 |
-
.wrap .saboxplugin ::-moz-selection {
|
29 |
-
background: #80828F;
|
30 |
-
color: #fff;
|
31 |
-
}
|
32 |
-
.wrap .saboxplugin ::selection {
|
33 |
-
background: #80828F;
|
34 |
-
color: #fff;
|
35 |
-
}
|
36 |
-
|
37 |
-
.wrap .saboxplugin #saboxplugin-hide {
|
38 |
-
border-top: 1px dashed #E1E1E1;
|
39 |
-
margin: 1.5em 0;
|
40 |
-
display: none;
|
41 |
-
}
|
42 |
-
|
43 |
-
.wrap .saboxplugin .saboxplugin-border {
|
44 |
-
border-bottom: 1px dashed #E1E1E1;
|
45 |
-
margin: 2em 0;
|
46 |
-
}
|
47 |
-
|
48 |
-
.wrap .saboxplugin #poststuff h2 {
|
49 |
-
font-size: 26px;
|
50 |
-
padding: 9px 15px 20px 0;
|
51 |
-
font-weight: 700;
|
52 |
-
}
|
53 |
-
|
54 |
-
.wrap .saboxplugin h3 {
|
55 |
-
font-size: 24px;
|
56 |
-
padding: 9px 15px 20px 0;
|
57 |
-
font-weight: 700;
|
58 |
-
color: #444;
|
59 |
-
}
|
60 |
-
|
61 |
-
.wrap .saboxplugin #poststuff h3 {
|
62 |
-
font-size: 24px;
|
63 |
-
padding: 8px 20px;
|
64 |
-
}
|
65 |
-
|
66 |
-
.wrap .saboxplugin #poststuff .inside {
|
67 |
-
margin: 26px 0px 0px;
|
68 |
-
}
|
69 |
-
|
70 |
-
.wrap .saboxplugin .handlediv {
|
71 |
-
color: #80828F;
|
72 |
-
}
|
73 |
-
|
74 |
-
.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before {
|
75 |
-
left: 20px;
|
76 |
-
font: 400 30px/1.2 'dashicons';
|
77 |
-
padding: 8px 0;
|
78 |
-
}
|
79 |
-
|
80 |
-
.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before {
|
81 |
-
content: "\f343";
|
82 |
-
}
|
83 |
-
|
84 |
-
.wrap .saboxplugin .meta-box-sortables .postbox.closed .handlediv:before {
|
85 |
-
content: "\f347";
|
86 |
-
}
|
87 |
-
|
88 |
-
.wrap .saboxplugin .postbox .inside {
|
89 |
-
padding: 0px 40px 12px;
|
90 |
-
}
|
91 |
-
|
92 |
-
.wrap .saboxplugin label {
|
93 |
-
cursor: default;
|
94 |
-
}
|
95 |
-
|
96 |
-
/* UI SLIDE OVERWRITE
|
97 |
-
-------------------------------------------------------------- */
|
98 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount,
|
99 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,
|
100 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,
|
101 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount4,
|
102 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount5,
|
103 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount6 {
|
104 |
-
background-color: transparent;
|
105 |
-
border: medium none;
|
106 |
-
-webkit-box-shadow:none;
|
107 |
-
-moz-box-shadow:none;
|
108 |
-
box-shadow:none;
|
109 |
-
font-size: 24px;
|
110 |
-
color: #666666;
|
111 |
-
vertical-align: text-bottom;
|
112 |
-
}
|
113 |
-
|
114 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-slider,
|
115 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-slider2,
|
116 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-slider3,
|
117 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-slider4,
|
118 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-slider5,
|
119 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-slider6 {
|
120 |
-
width: 40%;
|
121 |
-
margin: 20px 0;
|
122 |
-
}
|
123 |
-
|
124 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-state-default,
|
125 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default,
|
126 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default {
|
127 |
-
border:1px solid #73C77B;
|
128 |
-
background-color:#8CE196;
|
129 |
-
font-weight:400;
|
130 |
-
color:#555;
|
131 |
-
outline:0 none;
|
132 |
-
cursor:pointer;
|
133 |
-
}
|
134 |
-
|
135 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-state-default:before,
|
136 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default:before,
|
137 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default:before {
|
138 |
-
content:"\2630";
|
139 |
-
display:inline-block;
|
140 |
-
-webkit-font-smoothing:antialiased;
|
141 |
-
color:#fff;
|
142 |
-
font-weight:700;
|
143 |
-
text-shadow:0 1px #73C77B;
|
144 |
-
line-height: 1.8;
|
145 |
-
}
|
146 |
-
|
147 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-state-default a,
|
148 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:link,
|
149 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:visited {
|
150 |
-
color:#fff;
|
151 |
-
text-decoration:none;
|
152 |
-
}
|
153 |
-
|
154 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-state-focus,
|
155 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-state-hover,
|
156 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-focus,
|
157 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-hover,
|
158 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-focus,
|
159 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-hover {
|
160 |
-
background:#9BEBA3;
|
161 |
-
}
|
162 |
-
|
163 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,
|
164 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-top,
|
165 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-left,
|
166 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-tl {
|
167 |
-
border-top-left-radius: 0;
|
168 |
-
}
|
169 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,
|
170 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-top,
|
171 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-right,
|
172 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-tr {
|
173 |
-
border-top-right-radius: 0;
|
174 |
-
}
|
175 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,
|
176 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-left,
|
177 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-bl {
|
178 |
-
border-bottom-left-radius: 0;
|
179 |
-
}
|
180 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,
|
181 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,
|
182 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-right,
|
183 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-br {
|
184 |
-
border-bottom-right-radius: 0;
|
185 |
-
}
|
186 |
-
|
187 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,
|
188 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,
|
189 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-left,
|
190 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-corner-bl {
|
191 |
-
border-bottom-left-radius: 0;
|
192 |
-
}
|
193 |
-
|
194 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-slider-horizontal {
|
195 |
-
height:1.3em;
|
196 |
-
}
|
197 |
-
|
198 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-slider .ui-slider-handle {
|
199 |
-
width:1.8em;
|
200 |
-
height:1.8em;
|
201 |
-
cursor:pointer;
|
202 |
-
text-align:center;
|
203 |
-
}
|
204 |
-
|
205 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-widget-content {
|
206 |
-
-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);
|
207 |
-
-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);
|
208 |
-
box-shadow:inset 0 1px 2px rgba(0,0,0,.1);
|
209 |
-
border:1px solid #B2BFCA;
|
210 |
-
background:#F1F2F7;
|
211 |
-
color:#222
|
212 |
-
}
|
213 |
-
|
214 |
-
/* COLOR PICKER OVERWRITE
|
215 |
-
-------------------------------------------------------------- */
|
216 |
-
.wrap .saboxplugin .wp-color-result:after, .wp-color-result {
|
217 |
-
border-radius: 0;
|
218 |
-
-webkit-box-shadow:none!important;
|
219 |
-
-moz-box-shadow:none!important;
|
220 |
-
box-shadow:none!important;
|
221 |
-
outline: 0;
|
222 |
-
}
|
223 |
-
|
224 |
-
.wrap .saboxplugin .wp-color-result:after{
|
225 |
-
font-size: 12px;
|
226 |
-
border-right: 1px solid #D3D6DB;
|
227 |
-
line-height: 42px;
|
228 |
-
padding: 0px 7.5px;
|
229 |
-
}
|
230 |
-
|
231 |
-
.wrap .saboxplugin .wp-color-result {
|
232 |
-
border: 1px solid #D3D6DB;
|
233 |
-
height: 42px;
|
234 |
-
padding-right: 40px;
|
235 |
-
outline: 0 none;
|
236 |
-
background-color: #D3D6DB;
|
237 |
-
}
|
238 |
-
|
239 |
-
.wrap .saboxplugin .wp-color-result:hover:after {
|
240 |
-
border-color: #AFAEAE;
|
241 |
-
border-right: 1px solid #D3D6DB;
|
242 |
-
}
|
243 |
-
|
244 |
-
.wrap .saboxplugin .wp-picker-container .button {
|
245 |
-
color: #FFF;
|
246 |
-
background-color: #80828F;
|
247 |
-
border: medium none;
|
248 |
-
height: 44px;
|
249 |
-
-webkit-box-shadow:none;
|
250 |
-
-moz-box-shadow:none;
|
251 |
-
box-shadow:none;
|
252 |
-
border-radius: 0;
|
253 |
-
padding: 0 15px 1px;
|
254 |
-
}
|
255 |
-
|
256 |
-
.wrap .saboxplugin .wp-picker-container input.wp-color-picker[type="text"] {
|
257 |
-
height: 44px;
|
258 |
-
}
|
259 |
-
|
260 |
-
.wrap .saboxplugin .saboxplugin-icon:before {
|
261 |
-
content: "\f336";
|
262 |
-
display: inline-block;
|
263 |
-
-webkit-font-smoothing: antialiased;
|
264 |
-
font: 50px/0.6 "dashicons";
|
265 |
-
vertical-align: top;
|
266 |
-
color: #FA5148;
|
267 |
-
padding-right: 5px;
|
268 |
-
}
|
269 |
-
|
270 |
-
.wrap .saboxplugin textarea[name=saboxplugin] {
|
271 |
-
resize: none;
|
272 |
-
border: medium none;
|
273 |
-
background-color: #FFF;
|
274 |
-
-webkit-box-shadow:none;
|
275 |
-
-moz-box-shadow:none;
|
276 |
-
box-shadow:none;
|
277 |
-
color: #777;
|
278 |
-
padding: 0px;
|
279 |
-
font-size: 13px;
|
280 |
-
line-height: 1.4;
|
281 |
-
overflow: hidden;
|
282 |
-
width: 99%;
|
283 |
-
}
|
284 |
-
|
285 |
-
.wrap .saboxplugin .saboxplugin-question {
|
286 |
-
display: inline-block;
|
287 |
-
vertical-align: middle;
|
288 |
-
padding: 10px 0;
|
289 |
-
font-size: 24px;
|
290 |
-
margin-left: 40px;
|
291 |
-
color: #666666;
|
292 |
-
width: 100%;
|
293 |
-
max-width: 700px;
|
294 |
-
min-width: 247px;
|
295 |
-
line-height: 1.6;
|
296 |
-
}
|
297 |
-
|
298 |
-
.wrap .saboxplugin .saboxplugin-switch {
|
299 |
-
display: inline-block;
|
300 |
-
vertical-align: top;
|
301 |
-
padding: 10px 0;
|
302 |
-
}
|
303 |
-
|
304 |
-
.wrap .saboxplugin .sab-toggle {
|
305 |
-
position: absolute;
|
306 |
-
margin-left: -9999px;
|
307 |
-
visibility: hidden;
|
308 |
-
}
|
309 |
-
.wrap .saboxplugin .sab-toggle + label {
|
310 |
-
display: block;
|
311 |
-
position: relative;
|
312 |
-
cursor: pointer;
|
313 |
-
outline: none;
|
314 |
-
user-select: none;
|
315 |
-
}
|
316 |
-
|
317 |
-
.wrap .saboxplugin input.sab-toggle-yes-no + label {
|
318 |
-
padding: 2px;
|
319 |
-
width: 120px;
|
320 |
-
height: 40px;
|
321 |
-
}
|
322 |
-
|
323 |
-
.wrap .saboxplugin input.sab-toggle-yes-no + label:before,
|
324 |
-
.wrap .saboxplugin input.sab-toggle-yes-no + label:after {
|
325 |
-
display: block;
|
326 |
-
position: absolute;
|
327 |
-
top: 0;
|
328 |
-
left: 0;
|
329 |
-
bottom: 0;
|
330 |
-
right: 0;
|
331 |
-
color: #fff;
|
332 |
-
font-family: "Open Sans", serif;
|
333 |
-
font-size: 20px;
|
334 |
-
text-align: center;
|
335 |
-
line-height: 42px;
|
336 |
-
}
|
337 |
-
|
338 |
-
.wrap .saboxplugin input.sab-toggle-yes-no + label:before {
|
339 |
-
background-color: #D3D6DB;
|
340 |
-
content: attr(data-off);
|
341 |
-
transition: transform 0.5s;
|
342 |
-
backface-visibility: hidden;
|
343 |
-
}
|
344 |
-
|
345 |
-
.wrap .saboxplugin input.sab-toggle-yes-no + label:after {
|
346 |
-
background-color: #8CE196;
|
347 |
-
content: attr(data-on);
|
348 |
-
transition: transform 0.5s;
|
349 |
-
transform: rotateY(180deg);
|
350 |
-
backface-visibility: hidden;
|
351 |
-
}
|
352 |
-
|
353 |
-
.wrap .saboxplugin input.sab-toggle-yes-no:checked + label:before {
|
354 |
-
transform: rotateY(180deg);
|
355 |
-
}
|
356 |
-
|
357 |
-
.wrap .saboxplugin input.sab-toggle-yes-no:checked + label:after {
|
358 |
-
transform: rotateY(0);
|
359 |
-
}
|
360 |
-
|
361 |
-
.wrap .saboxplugin .sab-title-div {
|
362 |
-
height: 50px;
|
363 |
-
clear: both;
|
364 |
-
}
|
365 |
-
|
366 |
-
.wrap .saboxplugin .sab-title-div .sab-title {
|
367 |
-
font-size: 18px;
|
368 |
-
line-height: 26px;
|
369 |
-
padding-top: 16px;
|
370 |
-
padding-right: 15px;
|
371 |
-
display: block;
|
372 |
-
float: left;
|
373 |
-
}
|
374 |
-
|
375 |
-
.wrap .saboxplugin .sab-box {
|
376 |
-
background:#fff;
|
377 |
-
border: 1px solid #E5E5E5;
|
378 |
-
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
379 |
-
padding: 15px;
|
380 |
-
margin-top: 40px;
|
381 |
-
position: relative;
|
382 |
-
overflow: hidden;
|
383 |
-
}
|
384 |
-
|
385 |
-
.wrap .saboxplugin .sab-box p {
|
386 |
-
margin: 5px 0 5px 70px;
|
387 |
-
color: #777;
|
388 |
-
}
|
389 |
-
|
390 |
-
.wrap .saboxplugin .sab-box-legend, .wrap .saboxplugin .sab-box-version {
|
391 |
-
position: absolute;
|
392 |
-
right: 0;
|
393 |
-
top: 0;
|
394 |
-
height: 100%;
|
395 |
-
}
|
396 |
-
|
397 |
-
.wrap .saboxplugin .sab-box-version {
|
398 |
-
background: none repeat scroll 0% 0% #80828F;
|
399 |
-
padding: 10px 15px;
|
400 |
-
}
|
401 |
-
|
402 |
-
.wrap .saboxplugin .sab-icon-help, .wrap .saboxplugin .sab-icon-version {
|
403 |
-
color:#FFF;
|
404 |
-
font-size:25px;
|
405 |
-
}
|
406 |
-
|
407 |
-
.wrap .saboxplugin .sab-infos {
|
408 |
-
display: block;
|
409 |
-
margin: 0 auto;
|
410 |
-
padding-right: 70px;
|
411 |
-
font-weight: 700;
|
412 |
-
color:#777;
|
413 |
-
}
|
414 |
-
|
415 |
-
.wrap .saboxplugin .sab-infos span {
|
416 |
-
color: #777;
|
417 |
-
font-weight: 400;
|
418 |
-
}
|
419 |
-
|
420 |
-
.wrap .saboxplugin .sab-infos-title {
|
421 |
-
font-weight: 700;
|
422 |
-
color: #777;
|
423 |
-
}
|
424 |
-
|
425 |
-
.wrap .saboxplugin .sab-icon-version:before {
|
426 |
-
content: "\f348";
|
427 |
-
display: inline-block;
|
428 |
-
-webkit-font-smoothing: antialiased;
|
429 |
-
font: normal 30px/1.5 'dashicons';
|
430 |
-
vertical-align: top;
|
431 |
-
}
|
432 |
-
|
433 |
-
.clearfix:after,
|
434 |
-
.clearfix:before {
|
435 |
-
content: ' ';
|
436 |
-
display: table;
|
437 |
-
line-height: 0;
|
438 |
-
clear: both;
|
439 |
-
}
|
440 |
-
|
441 |
-
.ie7 .clearfix {
|
442 |
-
zoom: 1;
|
443 |
-
}
|
444 |
-
|
445 |
-
/* MEDIA QUERIES
|
446 |
-
-------------------------------------------------------------- */
|
447 |
-
@media (min-width: 900px) and (max-width: 1199px) {
|
448 |
-
|
449 |
-
.wrap .saboxplugin .saboxplugin-question {
|
450 |
-
max-width: 480px;
|
451 |
-
font-size: 20px;
|
452 |
-
}
|
453 |
-
|
454 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount,
|
455 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,
|
456 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,
|
457 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount4 {
|
458 |
-
font-size: 20px;
|
459 |
-
}
|
460 |
-
|
461 |
-
.wrap .saboxplugin .postbox .inside {
|
462 |
-
padding: 0px 20px 12px;
|
463 |
-
}
|
464 |
-
|
465 |
-
.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before {
|
466 |
-
left: 40px;
|
467 |
-
}
|
468 |
-
|
469 |
-
}
|
470 |
-
|
471 |
-
@media screen and (max-width: 899px) {
|
472 |
-
|
473 |
-
.wrap .saboxplugin .saboxplugin-question {
|
474 |
-
max-width: 390px;
|
475 |
-
font-size: 18px;
|
476 |
-
line-height: 2;
|
477 |
-
}
|
478 |
-
|
479 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount,
|
480 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,
|
481 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,
|
482 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount4 {
|
483 |
-
font-size: 18px;
|
484 |
-
}
|
485 |
-
|
486 |
-
.wrap .saboxplugin .saboxplugin-question {
|
487 |
-
max-width: 1000px;
|
488 |
-
text-align: right;
|
489 |
-
min-width: 100px;
|
490 |
-
}
|
491 |
-
|
492 |
-
.wrap .saboxplugin .saboxplugin-switch {
|
493 |
-
display: block;
|
494 |
-
}
|
495 |
-
|
496 |
-
.wrap .saboxplugin input.sab-toggle-yes-no + label {
|
497 |
-
width: auto;
|
498 |
-
}
|
499 |
-
|
500 |
-
.wrap .saboxplugin textarea[name="saboxplugin"] {
|
501 |
-
width: 100%;
|
502 |
-
height: 60px;
|
503 |
-
text-align: center;
|
504 |
-
}
|
505 |
-
|
506 |
-
.wrap .saboxplugin p.description {
|
507 |
-
text-align: center;
|
508 |
-
}
|
509 |
-
|
510 |
-
.wrap .saboxplugin .postbox .inside {
|
511 |
-
padding: 0px 20px 12px;
|
512 |
-
}
|
513 |
-
|
514 |
-
.wrap .saboxplugin .sabox-inline-slide .ui-widget-content {
|
515 |
-
width: 100%;
|
516 |
-
}
|
517 |
-
|
518 |
-
}
|
519 |
-
|
520 |
-
@media screen and (max-width: 783px) {
|
521 |
-
|
522 |
-
.wrap .saboxplugin #poststuff h2 {
|
523 |
-
font-size: 26px;
|
524 |
-
padding: 0 15px 0 0;
|
525 |
-
}
|
526 |
-
.wrap .saboxplugin .saboxplugin-icon:before {
|
527 |
-
font: 40px/0.8 "dashicons";
|
528 |
-
}
|
529 |
-
|
530 |
-
.wp-core-ui .button{
|
531 |
-
padding: 0 14px;
|
532 |
-
}
|
533 |
-
|
534 |
-
.wrap .saboxplugin #poststuff .inside {
|
535 |
-
margin: 0;
|
536 |
-
}
|
537 |
-
|
538 |
-
.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before {
|
539 |
-
left: 12px;
|
540 |
-
font: 400 20px/1.2 'dashicons';
|
541 |
-
padding: 8px 10px;
|
542 |
-
}
|
543 |
-
|
544 |
-
.wrap .saboxplugin #poststuff h3 {
|
545 |
-
font-size: 20px;
|
546 |
-
}
|
547 |
-
|
548 |
-
.wrap .saboxplugin .saboxplugin-question {
|
549 |
-
font-size: 18px;
|
550 |
-
}
|
551 |
-
|
552 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount,
|
553 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,
|
554 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,
|
555 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount4 {
|
556 |
-
vertical-align: baseline;
|
557 |
-
}
|
558 |
-
|
559 |
-
}
|
560 |
-
|
561 |
-
@media screen and (max-width: 700px) {
|
562 |
-
|
563 |
-
.wrap .saboxplugin .saboxplugin-question {
|
564 |
-
font-size: 16px;
|
565 |
-
}
|
566 |
-
|
567 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount,
|
568 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,
|
569 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,
|
570 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount4 {
|
571 |
-
font-size: 16px;
|
572 |
-
}
|
573 |
-
|
574 |
-
}
|
575 |
-
|
576 |
-
@media screen and (max-width: 600px) {
|
577 |
-
|
578 |
-
.wrap .saboxplugin .saboxplugin-question {
|
579 |
-
text-align: center;
|
580 |
-
line-height: 1.2;
|
581 |
-
}
|
582 |
-
|
583 |
-
.wrap .saboxplugin .saboxplugin-switch {
|
584 |
-
text-align: center;
|
585 |
-
}
|
586 |
-
|
587 |
-
.wrap .saboxplugin .saboxplugin-border {
|
588 |
-
margin: 0;
|
589 |
-
}
|
590 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount,
|
591 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,
|
592 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,
|
593 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount4 {
|
594 |
-
text-align: center;
|
595 |
-
}
|
596 |
-
|
597 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
css/dev/sabox-admin-style.css
CHANGED
@@ -1,91 +1,32 @@
|
|
1 |
/* ADMIN PLUGIN STYLE
|
2 |
-------------------------------------------------------------- */
|
3 |
-
.wrap .saboxplugin
|
4 |
-
|
5 |
-
height: 42px;
|
6 |
-
border-style: none;
|
7 |
-
line-height: 36px;
|
8 |
-
border-radius: 0;
|
9 |
-
-webkit-box-shadow:none;
|
10 |
-
-moz-box-shadow:none;
|
11 |
-
box-shadow:none;
|
12 |
}
|
13 |
|
14 |
-
.wrap .saboxplugin p {
|
15 |
-
|
16 |
-
line-height: 1.6;
|
17 |
-
}
|
18 |
-
|
19 |
-
.wrap .saboxplugin p.description {
|
20 |
-
margin: 20px 0px 5px;
|
21 |
}
|
22 |
|
23 |
.wrap .saboxplugin ::-moz-selection {
|
24 |
-
|
25 |
-
|
26 |
}
|
|
|
27 |
.wrap .saboxplugin ::selection {
|
28 |
-
|
29 |
-
|
30 |
}
|
31 |
|
32 |
.wrap .saboxplugin #saboxplugin-hide {
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
}
|
37 |
|
38 |
.wrap .saboxplugin .saboxplugin-border {
|
39 |
-
|
40 |
-
|
41 |
-
}
|
42 |
-
|
43 |
-
.wrap .saboxplugin #poststuff h2 {
|
44 |
-
font-size: 26px;
|
45 |
-
padding: 9px 15px 20px 0;
|
46 |
-
font-weight: 700;
|
47 |
-
}
|
48 |
-
|
49 |
-
.wrap .saboxplugin h3 {
|
50 |
-
font-size: 24px;
|
51 |
-
padding: 9px 15px 20px 0;
|
52 |
-
font-weight: 700;
|
53 |
-
color: #444;
|
54 |
-
}
|
55 |
-
|
56 |
-
.wrap .saboxplugin #poststuff h3 {
|
57 |
-
font-size: 24px;
|
58 |
-
padding: 8px 20px;
|
59 |
-
}
|
60 |
-
|
61 |
-
.wrap .saboxplugin #poststuff .inside {
|
62 |
-
margin: 26px 0px 0px;
|
63 |
-
}
|
64 |
-
|
65 |
-
.wrap .saboxplugin .handlediv {
|
66 |
-
color: #80828F;
|
67 |
-
}
|
68 |
-
|
69 |
-
.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before {
|
70 |
-
right: 20px;
|
71 |
-
font: 400 30px/1.2 'dashicons';
|
72 |
-
padding: 8px 0;
|
73 |
-
}
|
74 |
-
|
75 |
-
.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before {
|
76 |
-
content: "\f343";
|
77 |
-
}
|
78 |
-
|
79 |
-
.wrap .saboxplugin .meta-box-sortables .postbox.closed .handlediv:before {
|
80 |
-
content: "\f347";
|
81 |
-
}
|
82 |
-
|
83 |
-
.wrap .saboxplugin .postbox .inside {
|
84 |
-
padding: 0px 40px 12px;
|
85 |
-
}
|
86 |
-
|
87 |
-
.wrap .saboxplugin label {
|
88 |
-
cursor: default;
|
89 |
}
|
90 |
|
91 |
/* UI SLIDE OVERWRITE
|
@@ -96,13 +37,13 @@
|
|
96 |
.wrap .saboxplugin .sabox-inline-slide .sabox-amount4,
|
97 |
.wrap .saboxplugin .sabox-inline-slide .sabox-amount5,
|
98 |
.wrap .saboxplugin .sabox-inline-slide .sabox-amount6 {
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
}
|
107 |
|
108 |
.wrap .saboxplugin .sabox-inline-slide .sabox-slider,
|
@@ -111,38 +52,38 @@
|
|
111 |
.wrap .saboxplugin .sabox-inline-slide .sabox-slider4,
|
112 |
.wrap .saboxplugin .sabox-inline-slide .sabox-slider5,
|
113 |
.wrap .saboxplugin .sabox-inline-slide .sabox-slider6 {
|
114 |
-
|
115 |
-
|
116 |
}
|
117 |
|
118 |
.wrap .saboxplugin .sabox-inline-slide .ui-state-default,
|
119 |
-
.wrap .saboxplugin
|
120 |
.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default {
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
}
|
128 |
|
129 |
.wrap .saboxplugin .sabox-inline-slide .ui-state-default:before,
|
130 |
.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default:before,
|
131 |
.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default:before {
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
}
|
140 |
|
141 |
.wrap .saboxplugin .sabox-inline-slide .ui-state-default a,
|
142 |
.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:link,
|
143 |
.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:visited {
|
144 |
-
|
145 |
-
|
146 |
}
|
147 |
|
148 |
.wrap .saboxplugin .sabox-inline-slide .ui-state-focus,
|
@@ -151,31 +92,34 @@
|
|
151 |
.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-hover,
|
152 |
.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-focus,
|
153 |
.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-hover {
|
154 |
-
|
155 |
}
|
156 |
|
157 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,
|
158 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-top,
|
159 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-left,
|
160 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-tl {
|
161 |
-
|
162 |
}
|
|
|
163 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,
|
164 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-top,
|
165 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-right,
|
166 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-tr {
|
167 |
-
|
168 |
}
|
|
|
169 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,
|
170 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-left,
|
171 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-bl {
|
172 |
-
|
173 |
}
|
|
|
174 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,
|
175 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,
|
176 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-right,
|
177 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-br {
|
178 |
-
|
179 |
}
|
180 |
|
181 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,
|
@@ -186,53 +130,53 @@
|
|
186 |
}
|
187 |
|
188 |
.wrap .saboxplugin .sabox-inline-slide .ui-slider-horizontal {
|
189 |
-
|
190 |
}
|
191 |
|
192 |
.wrap .saboxplugin .sabox-inline-slide .ui-slider .ui-slider-handle {
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
}
|
198 |
|
199 |
.wrap .saboxplugin .sabox-inline-slide .ui-widget-content {
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
}
|
207 |
|
208 |
/* COLOR PICKER OVERWRITE
|
209 |
-------------------------------------------------------------- */
|
210 |
-
.wrap .saboxplugin .wp-color-result:after, .wp-color-result
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
}
|
217 |
|
218 |
-
.wrap .saboxplugin .wp-color-result:after{
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
}
|
224 |
|
225 |
-
.wrap .saboxplugin .wp-color-result
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
}
|
232 |
|
233 |
.wrap .saboxplugin .wp-color-result:hover:after {
|
234 |
-
|
235 |
-
|
236 |
}
|
237 |
|
238 |
.wrap .saboxplugin .wp-picker-container .button {
|
@@ -240,9 +184,9 @@
|
|
240 |
background-color: #80828F;
|
241 |
border: medium none;
|
242 |
height: 44px;
|
243 |
-
-webkit-box-shadow:none;
|
244 |
-
-moz-box-shadow:none;
|
245 |
-
box-shadow:none;
|
246 |
border-radius: 0;
|
247 |
padding: 0 15px 1px;
|
248 |
}
|
@@ -252,340 +196,317 @@
|
|
252 |
}
|
253 |
|
254 |
.wrap .saboxplugin .saboxplugin-icon:before {
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
}
|
263 |
|
264 |
.wrap .saboxplugin textarea[name=saboxplugin] {
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
}
|
278 |
|
279 |
.wrap .saboxplugin .saboxplugin-question {
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
}
|
291 |
|
292 |
.wrap .saboxplugin .saboxplugin-switch {
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
}
|
297 |
|
298 |
.wrap .saboxplugin .sab-toggle {
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
}
|
|
|
303 |
.wrap .saboxplugin .sab-toggle + label {
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
}
|
310 |
|
311 |
.wrap .saboxplugin input.sab-toggle-yes-no + label {
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
}
|
316 |
|
317 |
.wrap .saboxplugin input.sab-toggle-yes-no + label:before,
|
318 |
.wrap .saboxplugin input.sab-toggle-yes-no + label:after {
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
}
|
331 |
|
332 |
.wrap .saboxplugin input.sab-toggle-yes-no + label:before {
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
|
|
337 |
}
|
338 |
|
339 |
.wrap .saboxplugin input.sab-toggle-yes-no + label:after {
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
|
|
345 |
}
|
346 |
|
347 |
.wrap .saboxplugin input.sab-toggle-yes-no:checked + label:before {
|
348 |
-
|
349 |
}
|
350 |
|
351 |
.wrap .saboxplugin input.sab-toggle-yes-no:checked + label:after {
|
352 |
-
|
353 |
}
|
354 |
|
355 |
.wrap .saboxplugin .sab-title-div {
|
356 |
-
|
357 |
-
|
358 |
}
|
359 |
|
360 |
.wrap .saboxplugin .sab-title-div .sab-title {
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
}
|
368 |
|
369 |
.wrap .saboxplugin .sab-box {
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
}
|
378 |
|
379 |
.wrap .saboxplugin .sab-box p {
|
380 |
-
|
381 |
-
|
382 |
}
|
383 |
|
384 |
.wrap .saboxplugin .sab-box-legend, .wrap .saboxplugin .sab-box-version {
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
}
|
390 |
|
391 |
.wrap .saboxplugin .sab-box-version {
|
392 |
-
|
393 |
-
|
394 |
}
|
395 |
|
396 |
.wrap .saboxplugin .sab-icon-help, .wrap .saboxplugin .sab-icon-version {
|
397 |
-
|
398 |
-
|
399 |
}
|
400 |
|
401 |
.wrap .saboxplugin .sab-infos {
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
}
|
408 |
|
409 |
.wrap .saboxplugin .sab-infos span {
|
410 |
-
|
411 |
-
|
412 |
}
|
413 |
|
414 |
.wrap .saboxplugin .sab-infos-title {
|
415 |
-
|
416 |
-
|
417 |
}
|
418 |
|
419 |
.wrap .saboxplugin .sab-icon-version:before {
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
}
|
426 |
|
427 |
.clearfix:after,
|
428 |
.clearfix:before {
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
}
|
434 |
|
435 |
.ie7 .clearfix {
|
436 |
-
|
437 |
}
|
438 |
|
439 |
/* MEDIA QUERIES
|
440 |
-------------------------------------------------------------- */
|
441 |
@media (min-width: 900px) and (max-width: 1199px) {
|
442 |
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
|
463 |
}
|
464 |
|
465 |
@media screen and (max-width: 899px) {
|
466 |
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
|
512 |
}
|
513 |
|
514 |
@media screen and (max-width: 783px) {
|
515 |
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
}
|
520 |
-
.wrap .saboxplugin .saboxplugin-icon:before {
|
521 |
-
font: 40px/0.8 "dashicons";
|
522 |
-
}
|
523 |
-
|
524 |
-
.wp-core-ui .button{
|
525 |
-
padding: 0 14px;
|
526 |
-
}
|
527 |
-
|
528 |
-
.wrap .saboxplugin #poststuff .inside {
|
529 |
-
margin: 0;
|
530 |
-
}
|
531 |
-
|
532 |
-
.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before {
|
533 |
-
right: 12px;
|
534 |
-
font: 400 20px/1.2 'dashicons';
|
535 |
-
padding: 8px 10px;
|
536 |
-
}
|
537 |
-
|
538 |
-
.wrap .saboxplugin #poststuff h3 {
|
539 |
-
font-size: 20px;
|
540 |
-
}
|
541 |
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount4 {
|
550 |
-
vertical-align: baseline;
|
551 |
-
}
|
552 |
|
553 |
-
|
554 |
-
|
555 |
-
|
|
|
|
|
556 |
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,
|
564 |
-
.wrap .saboxplugin .sabox-inline-slide .sabox-amount4 {
|
565 |
-
font-size: 16px;
|
566 |
-
}
|
567 |
|
568 |
}
|
569 |
|
570 |
@media screen and (max-width: 600px) {
|
571 |
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
|
|
590 |
|
591 |
}
|
1 |
/* ADMIN PLUGIN STYLE
|
2 |
-------------------------------------------------------------- */
|
3 |
+
.wrap .saboxplugin {
|
4 |
+
max-width: 960px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
}
|
6 |
|
7 |
+
.wrap .saboxplugin p.description {
|
8 |
+
margin: 20px 0px 5px;
|
|
|
|
|
|
|
|
|
|
|
9 |
}
|
10 |
|
11 |
.wrap .saboxplugin ::-moz-selection {
|
12 |
+
background: #80828F;
|
13 |
+
color: #fff;
|
14 |
}
|
15 |
+
|
16 |
.wrap .saboxplugin ::selection {
|
17 |
+
background: #80828F;
|
18 |
+
color: #fff;
|
19 |
}
|
20 |
|
21 |
.wrap .saboxplugin #saboxplugin-hide {
|
22 |
+
border-top: 1px dashed #E1E1E1;
|
23 |
+
margin: 1.5em 0;
|
24 |
+
display: none;
|
25 |
}
|
26 |
|
27 |
.wrap .saboxplugin .saboxplugin-border {
|
28 |
+
border-bottom: 1px dashed #E1E1E1;
|
29 |
+
margin: 2em 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
}
|
31 |
|
32 |
/* UI SLIDE OVERWRITE
|
37 |
.wrap .saboxplugin .sabox-inline-slide .sabox-amount4,
|
38 |
.wrap .saboxplugin .sabox-inline-slide .sabox-amount5,
|
39 |
.wrap .saboxplugin .sabox-inline-slide .sabox-amount6 {
|
40 |
+
background-color: transparent;
|
41 |
+
border: medium none;
|
42 |
+
-webkit-box-shadow: none;
|
43 |
+
-moz-box-shadow: none;
|
44 |
+
box-shadow: none;
|
45 |
+
font-size: 24px;
|
46 |
+
color: #666666;
|
47 |
}
|
48 |
|
49 |
.wrap .saboxplugin .sabox-inline-slide .sabox-slider,
|
52 |
.wrap .saboxplugin .sabox-inline-slide .sabox-slider4,
|
53 |
.wrap .saboxplugin .sabox-inline-slide .sabox-slider5,
|
54 |
.wrap .saboxplugin .sabox-inline-slide .sabox-slider6 {
|
55 |
+
width: 40%;
|
56 |
+
margin: 20px 0;
|
57 |
}
|
58 |
|
59 |
.wrap .saboxplugin .sabox-inline-slide .ui-state-default,
|
60 |
+
.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default,
|
61 |
.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default {
|
62 |
+
border: 1px solid #73C77B;
|
63 |
+
background-color: #8CE196;
|
64 |
+
font-weight: 400;
|
65 |
+
color: #555;
|
66 |
+
outline: 0 none;
|
67 |
+
cursor: pointer;
|
68 |
}
|
69 |
|
70 |
.wrap .saboxplugin .sabox-inline-slide .ui-state-default:before,
|
71 |
.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default:before,
|
72 |
.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default:before {
|
73 |
+
content: "\2630";
|
74 |
+
display: inline-block;
|
75 |
+
-webkit-font-smoothing: antialiased;
|
76 |
+
color: #fff;
|
77 |
+
font-weight: 700;
|
78 |
+
text-shadow: 0 1px #73C77B;
|
79 |
+
line-height: 1.8;
|
80 |
}
|
81 |
|
82 |
.wrap .saboxplugin .sabox-inline-slide .ui-state-default a,
|
83 |
.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:link,
|
84 |
.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:visited {
|
85 |
+
color: #fff;
|
86 |
+
text-decoration: none;
|
87 |
}
|
88 |
|
89 |
.wrap .saboxplugin .sabox-inline-slide .ui-state-focus,
|
92 |
.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-hover,
|
93 |
.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-focus,
|
94 |
.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-hover {
|
95 |
+
background: #9BEBA3;
|
96 |
}
|
97 |
|
98 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,
|
99 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-top,
|
100 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-left,
|
101 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-tl {
|
102 |
+
border-top-left-radius: 0;
|
103 |
}
|
104 |
+
|
105 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,
|
106 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-top,
|
107 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-right,
|
108 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-tr {
|
109 |
+
border-top-right-radius: 0;
|
110 |
}
|
111 |
+
|
112 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,
|
113 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-left,
|
114 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-bl {
|
115 |
+
border-bottom-left-radius: 0;
|
116 |
}
|
117 |
+
|
118 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,
|
119 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,
|
120 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-right,
|
121 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-br {
|
122 |
+
border-bottom-right-radius: 0;
|
123 |
}
|
124 |
|
125 |
.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,
|
130 |
}
|
131 |
|
132 |
.wrap .saboxplugin .sabox-inline-slide .ui-slider-horizontal {
|
133 |
+
height: 1.3em;
|
134 |
}
|
135 |
|
136 |
.wrap .saboxplugin .sabox-inline-slide .ui-slider .ui-slider-handle {
|
137 |
+
width: 1.8em;
|
138 |
+
height: 1.8em;
|
139 |
+
cursor: pointer;
|
140 |
+
text-align: center;
|
141 |
}
|
142 |
|
143 |
.wrap .saboxplugin .sabox-inline-slide .ui-widget-content {
|
144 |
+
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
|
145 |
+
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
|
146 |
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
|
147 |
+
border: 1px solid #B2BFCA;
|
148 |
+
background: #F1F2F7;
|
149 |
+
color: #222
|
150 |
}
|
151 |
|
152 |
/* COLOR PICKER OVERWRITE
|
153 |
-------------------------------------------------------------- */
|
154 |
+
.wrap .saboxplugin .wp-color-result:after, .wp-color-result {
|
155 |
+
border-radius: 0;
|
156 |
+
-webkit-box-shadow: none !important;
|
157 |
+
-moz-box-shadow: none !important;
|
158 |
+
box-shadow: none !important;
|
159 |
+
outline: 0;
|
160 |
}
|
161 |
|
162 |
+
.wrap .saboxplugin .wp-color-result:after {
|
163 |
+
font-size: 12px;
|
164 |
+
border-left: 1px solid #D3D6DB;
|
165 |
+
line-height: 42px;
|
166 |
+
padding: 0px 7.5px;
|
167 |
}
|
168 |
|
169 |
+
.wrap .saboxplugin .wp-color-result {
|
170 |
+
border: 1px solid #D3D6DB;
|
171 |
+
height: 42px;
|
172 |
+
padding-left: 40px;
|
173 |
+
outline: 0 none;
|
174 |
+
background-color: #D3D6DB;
|
175 |
}
|
176 |
|
177 |
.wrap .saboxplugin .wp-color-result:hover:after {
|
178 |
+
border-color: #AFAEAE;
|
179 |
+
border-left: 1px solid #D3D6DB;
|
180 |
}
|
181 |
|
182 |
.wrap .saboxplugin .wp-picker-container .button {
|
184 |
background-color: #80828F;
|
185 |
border: medium none;
|
186 |
height: 44px;
|
187 |
+
-webkit-box-shadow: none;
|
188 |
+
-moz-box-shadow: none;
|
189 |
+
box-shadow: none;
|
190 |
border-radius: 0;
|
191 |
padding: 0 15px 1px;
|
192 |
}
|
196 |
}
|
197 |
|
198 |
.wrap .saboxplugin .saboxplugin-icon:before {
|
199 |
+
content: "\f336";
|
200 |
+
display: inline-block;
|
201 |
+
-webkit-font-smoothing: antialiased;
|
202 |
+
font: 50px/0.6 "dashicons";
|
203 |
+
vertical-align: middle;
|
204 |
+
color: #FA5148;
|
205 |
+
padding-right: 5px;
|
206 |
}
|
207 |
|
208 |
.wrap .saboxplugin textarea[name=saboxplugin] {
|
209 |
+
resize: none;
|
210 |
+
border: medium none;
|
211 |
+
background-color: #FFF;
|
212 |
+
-webkit-box-shadow: none;
|
213 |
+
-moz-box-shadow: none;
|
214 |
+
box-shadow: none;
|
215 |
+
color: #777;
|
216 |
+
padding: 0px;
|
217 |
+
font-size: 13px;
|
218 |
+
line-height: 1.4;
|
219 |
+
overflow: hidden;
|
220 |
+
width: 99%;
|
221 |
}
|
222 |
|
223 |
.wrap .saboxplugin .saboxplugin-question {
|
224 |
+
display: inline-block;
|
225 |
+
vertical-align: middle;
|
226 |
+
padding: 10px 0;
|
227 |
+
margin-right: 40px;
|
228 |
+
color: #666666;
|
229 |
+
width: 100%;
|
230 |
+
max-width: 700px;
|
231 |
+
min-width: 247px;
|
232 |
+
line-height: 1.6;
|
233 |
+
font-size: 18px;
|
234 |
}
|
235 |
|
236 |
.wrap .saboxplugin .saboxplugin-switch {
|
237 |
+
display: inline-block;
|
238 |
+
vertical-align: top;
|
239 |
+
padding: 10px 0;
|
240 |
}
|
241 |
|
242 |
.wrap .saboxplugin .sab-toggle {
|
243 |
+
position: absolute;
|
244 |
+
margin-left: -9999px;
|
245 |
+
visibility: hidden;
|
246 |
}
|
247 |
+
|
248 |
.wrap .saboxplugin .sab-toggle + label {
|
249 |
+
display: block;
|
250 |
+
position: relative;
|
251 |
+
cursor: pointer;
|
252 |
+
outline: none;
|
253 |
+
user-select: none;
|
254 |
}
|
255 |
|
256 |
.wrap .saboxplugin input.sab-toggle-yes-no + label {
|
257 |
+
padding: 2px;
|
258 |
+
width: 120px;
|
259 |
+
height: 40px;
|
260 |
}
|
261 |
|
262 |
.wrap .saboxplugin input.sab-toggle-yes-no + label:before,
|
263 |
.wrap .saboxplugin input.sab-toggle-yes-no + label:after {
|
264 |
+
display: block;
|
265 |
+
position: absolute;
|
266 |
+
top: 0;
|
267 |
+
left: 0;
|
268 |
+
bottom: 0;
|
269 |
+
right: 0;
|
270 |
+
color: #fff;
|
271 |
+
font-family: "Open Sans", serif;
|
272 |
+
font-size: 20px;
|
273 |
+
text-align: center;
|
274 |
+
line-height: 42px;
|
275 |
}
|
276 |
|
277 |
.wrap .saboxplugin input.sab-toggle-yes-no + label:before {
|
278 |
+
background-color: #D3D6DB;
|
279 |
+
content: attr(data-off);
|
280 |
+
transition: transform 0.5s;
|
281 |
+
backface-visibility: hidden;
|
282 |
+
-webkit-backface-visibility: hidden;
|
283 |
}
|
284 |
|
285 |
.wrap .saboxplugin input.sab-toggle-yes-no + label:after {
|
286 |
+
background-color: #8CE196;
|
287 |
+
content: attr(data-on);
|
288 |
+
transition: transform 0.5s;
|
289 |
+
transform: rotateY(180deg);
|
290 |
+
backface-visibility: hidden;
|
291 |
+
-webkit-backface-visibility: hidden;
|
292 |
}
|
293 |
|
294 |
.wrap .saboxplugin input.sab-toggle-yes-no:checked + label:before {
|
295 |
+
transform: rotateY(180deg);
|
296 |
}
|
297 |
|
298 |
.wrap .saboxplugin input.sab-toggle-yes-no:checked + label:after {
|
299 |
+
transform: rotateY(0);
|
300 |
}
|
301 |
|
302 |
.wrap .saboxplugin .sab-title-div {
|
303 |
+
height: 50px;
|
304 |
+
clear: both;
|
305 |
}
|
306 |
|
307 |
.wrap .saboxplugin .sab-title-div .sab-title {
|
308 |
+
font-size: 18px;
|
309 |
+
line-height: 26px;
|
310 |
+
padding-top: 16px;
|
311 |
+
padding-right: 15px;
|
312 |
+
display: block;
|
313 |
+
float: left;
|
314 |
}
|
315 |
|
316 |
.wrap .saboxplugin .sab-box {
|
317 |
+
background: #fff;
|
318 |
+
border: 1px solid #E5E5E5;
|
319 |
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
320 |
+
padding: 15px;
|
321 |
+
margin-top: 40px;
|
322 |
+
position: relative;
|
323 |
+
overflow: hidden;
|
324 |
}
|
325 |
|
326 |
.wrap .saboxplugin .sab-box p {
|
327 |
+
margin: 5px 0 5px 70px;
|
328 |
+
color: #777;
|
329 |
}
|
330 |
|
331 |
.wrap .saboxplugin .sab-box-legend, .wrap .saboxplugin .sab-box-version {
|
332 |
+
position: absolute;
|
333 |
+
left: 0;
|
334 |
+
top: 0;
|
335 |
+
height: 100%;
|
336 |
}
|
337 |
|
338 |
.wrap .saboxplugin .sab-box-version {
|
339 |
+
background: none repeat scroll 0% 0% #80828F;
|
340 |
+
padding: 10px 15px;
|
341 |
}
|
342 |
|
343 |
.wrap .saboxplugin .sab-icon-help, .wrap .saboxplugin .sab-icon-version {
|
344 |
+
color: #FFF;
|
345 |
+
font-size: 25px;
|
346 |
}
|
347 |
|
348 |
.wrap .saboxplugin .sab-infos {
|
349 |
+
display: block;
|
350 |
+
margin: 0 auto;
|
351 |
+
padding-left: 70px;
|
352 |
+
font-weight: 700;
|
353 |
+
color: #777;
|
354 |
}
|
355 |
|
356 |
.wrap .saboxplugin .sab-infos span {
|
357 |
+
color: #777;
|
358 |
+
font-weight: 400;
|
359 |
}
|
360 |
|
361 |
.wrap .saboxplugin .sab-infos-title {
|
362 |
+
font-weight: 700;
|
363 |
+
color: #777;
|
364 |
}
|
365 |
|
366 |
.wrap .saboxplugin .sab-icon-version:before {
|
367 |
+
content: "\f348";
|
368 |
+
display: inline-block;
|
369 |
+
-webkit-font-smoothing: antialiased;
|
370 |
+
font: normal 30px/1.5 'dashicons';
|
371 |
+
vertical-align: top;
|
372 |
}
|
373 |
|
374 |
.clearfix:after,
|
375 |
.clearfix:before {
|
376 |
+
content: ' ';
|
377 |
+
display: table;
|
378 |
+
line-height: 0;
|
379 |
+
clear: both;
|
380 |
}
|
381 |
|
382 |
.ie7 .clearfix {
|
383 |
+
zoom: 1;
|
384 |
}
|
385 |
|
386 |
/* MEDIA QUERIES
|
387 |
-------------------------------------------------------------- */
|
388 |
@media (min-width: 900px) and (max-width: 1199px) {
|
389 |
|
390 |
+
.wrap .saboxplugin .saboxplugin-question {
|
391 |
+
max-width: 480px;
|
392 |
+
font-size: 20px;
|
393 |
+
}
|
394 |
|
395 |
+
.wrap .saboxplugin .sabox-inline-slide .sabox-amount,
|
396 |
+
.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,
|
397 |
+
.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,
|
398 |
+
.wrap .saboxplugin .sabox-inline-slide .sabox-amount4 {
|
399 |
+
font-size: 20px;
|
400 |
+
}
|
401 |
|
402 |
+
.wrap .saboxplugin .postbox .inside {
|
403 |
+
padding: 0px 20px 12px;
|
404 |
+
}
|
405 |
|
406 |
+
.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before {
|
407 |
+
right: 40px;
|
408 |
+
}
|
409 |
|
410 |
}
|
411 |
|
412 |
@media screen and (max-width: 899px) {
|
413 |
|
414 |
+
.wrap .saboxplugin .saboxplugin-question {
|
415 |
+
max-width: 390px;
|
416 |
+
font-size: 18px;
|
417 |
+
line-height: 2;
|
418 |
+
}
|
419 |
|
420 |
+
.wrap .saboxplugin .sabox-inline-slide .sabox-amount,
|
421 |
+
.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,
|
422 |
+
.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,
|
423 |
+
.wrap .saboxplugin .sabox-inline-slide .sabox-amount4 {
|
424 |
+
font-size: 18px;
|
425 |
+
}
|
426 |
|
427 |
+
.wrap .saboxplugin .saboxplugin-question {
|
428 |
+
max-width: 1000px;
|
429 |
+
text-align: left;
|
430 |
+
min-width: 100px;
|
431 |
+
}
|
432 |
|
433 |
+
.wrap .saboxplugin .saboxplugin-switch {
|
434 |
+
display: block;
|
435 |
+
}
|
436 |
|
437 |
+
.wrap .saboxplugin input.sab-toggle-yes-no + label {
|
438 |
+
width: auto;
|
439 |
+
}
|
440 |
|
441 |
+
.wrap .saboxplugin textarea[name="saboxplugin"] {
|
442 |
+
width: 100%;
|
443 |
+
height: 60px;
|
444 |
+
text-align: center;
|
445 |
+
}
|
446 |
|
447 |
+
.wrap .saboxplugin p.description {
|
448 |
+
text-align: center;
|
449 |
+
}
|
450 |
|
451 |
+
.wrap .saboxplugin .postbox .inside {
|
452 |
+
padding: 0px 20px 12px;
|
453 |
+
}
|
454 |
|
455 |
+
.wrap .saboxplugin .sabox-inline-slide .ui-widget-content {
|
456 |
+
width: 100%;
|
457 |
+
}
|
458 |
|
459 |
}
|
460 |
|
461 |
@media screen and (max-width: 783px) {
|
462 |
|
463 |
+
.wrap .saboxplugin .saboxplugin-icon:before {
|
464 |
+
font: 40px/0.8 "dashicons";
|
465 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
466 |
|
467 |
+
.wp-core-ui .button {
|
468 |
+
padding: 0 14px;
|
469 |
+
}
|
470 |
|
471 |
+
.wrap .saboxplugin #poststuff .inside {
|
472 |
+
margin: 0;
|
473 |
+
}
|
|
|
|
|
|
|
474 |
|
475 |
+
.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before {
|
476 |
+
right: 12px;
|
477 |
+
font: 400 20px/1.2 'dashicons';
|
478 |
+
padding: 8px 10px;
|
479 |
+
}
|
480 |
|
481 |
+
.wrap .saboxplugin .sabox-inline-slide .sabox-amount,
|
482 |
+
.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,
|
483 |
+
.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,
|
484 |
+
.wrap .saboxplugin .sabox-inline-slide .sabox-amount4 {
|
485 |
+
vertical-align: baseline;
|
486 |
+
}
|
|
|
|
|
|
|
|
|
487 |
|
488 |
}
|
489 |
|
490 |
@media screen and (max-width: 600px) {
|
491 |
|
492 |
+
.wrap .saboxplugin .saboxplugin-question {
|
493 |
+
text-align: center;
|
494 |
+
line-height: 1.2;
|
495 |
+
}
|
496 |
+
|
497 |
+
.wrap .saboxplugin .saboxplugin-switch {
|
498 |
+
text-align: center;
|
499 |
+
}
|
500 |
+
|
501 |
+
.wrap .saboxplugin .saboxplugin-border {
|
502 |
+
margin: 0;
|
503 |
+
}
|
504 |
+
|
505 |
+
.wrap .saboxplugin .sabox-inline-slide .sabox-amount,
|
506 |
+
.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,
|
507 |
+
.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,
|
508 |
+
.wrap .saboxplugin .sabox-inline-slide .sabox-amount4 {
|
509 |
+
text-align: center;
|
510 |
+
}
|
511 |
|
512 |
}
|
css/dev/simple-author-box-rtl.css
DELETED
@@ -1,1495 +0,0 @@
|
|
1 |
-
|
2 |
-
.saboxplugin-wrap {
|
3 |
-
direction: rtl;
|
4 |
-
unicode-bidi: embed;
|
5 |
-
-webkit-box-sizing:border-box;
|
6 |
-
-moz-box-sizing:border-box;
|
7 |
-
-ms-box-sizing:border-box;
|
8 |
-
box-sizing:border-box;
|
9 |
-
border: 1px solid;
|
10 |
-
border-color: #EEE;
|
11 |
-
width: 100%;
|
12 |
-
clear: both;
|
13 |
-
display: block;
|
14 |
-
overflow: hidden;
|
15 |
-
}
|
16 |
-
|
17 |
-
.saboxplugin-wrap .saboxplugin-gravatar {
|
18 |
-
float: right;
|
19 |
-
padding: 20px;
|
20 |
-
}
|
21 |
-
|
22 |
-
.saboxplugin-wrap .saboxplugin-gravatar img {
|
23 |
-
|
24 |
-
}
|
25 |
-
|
26 |
-
.saboxplugin-wrap .saboxplugin-gravatar img:hover {
|
27 |
-
|
28 |
-
}
|
29 |
-
|
30 |
-
.saboxplugin-wrap .saboxplugin-authorname {
|
31 |
-
font-size: 18px;
|
32 |
-
line-height: 1;
|
33 |
-
margin: 20px 0 0 20px;
|
34 |
-
display: block;
|
35 |
-
}
|
36 |
-
|
37 |
-
.saboxplugin-wrap .saboxplugin-authorname a {
|
38 |
-
text-decoration: none;
|
39 |
-
}
|
40 |
-
|
41 |
-
.saboxplugin-wrap .saboxplugin-authorname a:focus {
|
42 |
-
outline: none;
|
43 |
-
}
|
44 |
-
|
45 |
-
.saboxplugin-wrap .saboxplugin-desc {
|
46 |
-
display: block;
|
47 |
-
margin: 5px 20px;
|
48 |
-
}
|
49 |
-
|
50 |
-
.saboxplugin-wrap .saboxplugin-desc a {
|
51 |
-
text-decoration: none;
|
52 |
-
}
|
53 |
-
|
54 |
-
.saboxplugin-wrap .saboxplugin-desc p {
|
55 |
-
margin: 5px 0 12px 0;
|
56 |
-
}
|
57 |
-
|
58 |
-
.saboxplugin-wrap .saboxplugin-web {
|
59 |
-
margin: 0 20px 15px;
|
60 |
-
text-align: right;
|
61 |
-
}
|
62 |
-
|
63 |
-
.saboxplugin-wrap .sab-web-position {
|
64 |
-
text-align: left;
|
65 |
-
}
|
66 |
-
|
67 |
-
.saboxplugin-wrap .saboxplugin-web a {
|
68 |
-
color: #ccc;
|
69 |
-
text-decoration: none;
|
70 |
-
}
|
71 |
-
|
72 |
-
.saboxplugin-wrap .saboxplugin-socials {
|
73 |
-
position:relative;
|
74 |
-
z-index:50;
|
75 |
-
display:block;
|
76 |
-
background: #FCFCFC;
|
77 |
-
padding:0 15px;
|
78 |
-
-webkit-box-shadow: 0 1px 0 0 #eee inset;
|
79 |
-
-moz-box-shadow: 0 1px 0 0 #eee inset;
|
80 |
-
box-shadow: 0 1px 0 0 #eee inset;
|
81 |
-
}
|
82 |
-
|
83 |
-
.saboxplugin-wrap .saboxplugin-socials a {
|
84 |
-
text-decoration:none;
|
85 |
-
padding:0;
|
86 |
-
margin:0;
|
87 |
-
border:0;
|
88 |
-
-webkit-transition: opacity 0.4s;
|
89 |
-
-moz-transition: opacity 0.4s;
|
90 |
-
-o-transition: opacity 0.4s;
|
91 |
-
transition: opacity 0.4s;
|
92 |
-
|
93 |
-
}
|
94 |
-
|
95 |
-
.saboxplugin-wrap .saboxplugin-socials a:hover {
|
96 |
-
opacity: 0.8;
|
97 |
-
-webkit-transition: opacity 0.4s;
|
98 |
-
-moz-transition: opacity 0.4s;
|
99 |
-
-o-transition: opacity 0.4s;
|
100 |
-
transition: opacity 0.4s;
|
101 |
-
|
102 |
-
}
|
103 |
-
|
104 |
-
.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color:before {
|
105 |
-
display:block;
|
106 |
-
width:30px;
|
107 |
-
height:30px;
|
108 |
-
line-height:33px;
|
109 |
-
text-align:center;
|
110 |
-
speak:none;
|
111 |
-
}
|
112 |
-
|
113 |
-
.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color {
|
114 |
-
font-family:'FontAwesome';
|
115 |
-
font-style: normal;
|
116 |
-
font-weight: normal;
|
117 |
-
text-decoration: inherit;
|
118 |
-
font-size:14px;
|
119 |
-
position:relative;
|
120 |
-
display:-moz-inline-stack;
|
121 |
-
display:inline-block;
|
122 |
-
vertical-align:middle;
|
123 |
-
*vertical-align:auto;
|
124 |
-
zoom:1;
|
125 |
-
*display:inline;
|
126 |
-
margin:10px 5px;
|
127 |
-
background-clip: content-box;
|
128 |
-
-moz-background-clip: content-box;
|
129 |
-
-webkit-background-clip: content-box;
|
130 |
-
-webkit-border-radius:0;
|
131 |
-
-moz-border-radius:0;
|
132 |
-
-ms-border-radius:0;
|
133 |
-
-o-border-radius:0;
|
134 |
-
border-radius:0;
|
135 |
-
overflow: hidden;
|
136 |
-
}
|
137 |
-
|
138 |
-
.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey:before {
|
139 |
-
display:block;
|
140 |
-
text-align:center;
|
141 |
-
speak:none;
|
142 |
-
line-height:1;
|
143 |
-
}
|
144 |
-
|
145 |
-
.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey {
|
146 |
-
font-family:'FontAwesome';
|
147 |
-
font-style: normal;
|
148 |
-
font-weight: normal;
|
149 |
-
text-decoration: inherit;
|
150 |
-
font-size:20px;
|
151 |
-
position:relative;
|
152 |
-
display:-moz-inline-stack;
|
153 |
-
display:inline-block;
|
154 |
-
vertical-align:middle;
|
155 |
-
*vertical-align:auto;
|
156 |
-
zoom:1;
|
157 |
-
*display:inline;
|
158 |
-
margin:10px 5px;
|
159 |
-
color: #444;
|
160 |
-
}
|
161 |
-
|
162 |
-
.clearfix:after,
|
163 |
-
.clearfix:before {
|
164 |
-
content: ' ';
|
165 |
-
display: table;
|
166 |
-
line-height: 0;
|
167 |
-
clear: both;
|
168 |
-
}
|
169 |
-
|
170 |
-
.ie7 .clearfix {
|
171 |
-
zoom: 1;
|
172 |
-
}
|
173 |
-
|
174 |
-
.saboxplugin-wrap .saboxplugin-socials.sabox-colored .saboxplugin-icon-color {
|
175 |
-
color:#fff;
|
176 |
-
}
|
177 |
-
|
178 |
-
/* FONT AWESOME FOR BOTH COLORED AND GRAY SOCIAL ICONS
|
179 |
-
-------------------------------------------------------------- */
|
180 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-addthis:before,
|
181 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-addthis:before {
|
182 |
-
content:'\f067';
|
183 |
-
}
|
184 |
-
|
185 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-behance:before,
|
186 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-behance:before {
|
187 |
-
content:'\f1b4';
|
188 |
-
}
|
189 |
-
|
190 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-delicious:before,
|
191 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-delicious:before {
|
192 |
-
content:'\f1a5';
|
193 |
-
}
|
194 |
-
|
195 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-deviantart:before,
|
196 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-deviantart:before {
|
197 |
-
content:'\f1bd';
|
198 |
-
}
|
199 |
-
|
200 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-digg:before,
|
201 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-digg:before {
|
202 |
-
content:'\f1a6';
|
203 |
-
}
|
204 |
-
|
205 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-dribbble:before,
|
206 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-dribbble:before {
|
207 |
-
content:'\f17d';
|
208 |
-
}
|
209 |
-
|
210 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-facebook:before,
|
211 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-facebook:before {
|
212 |
-
content:'\f09a';
|
213 |
-
}
|
214 |
-
|
215 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-flickr:before,
|
216 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-flickr:before {
|
217 |
-
content:'\f16e';
|
218 |
-
}
|
219 |
-
|
220 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-github:before,
|
221 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-github:before {
|
222 |
-
content:'\f09b';
|
223 |
-
}
|
224 |
-
|
225 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-google:before,
|
226 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-google:before {
|
227 |
-
content:'\f1a0';
|
228 |
-
}
|
229 |
-
|
230 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-googleplus:before,
|
231 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-googleplus:before {
|
232 |
-
content:'\f0d5';
|
233 |
-
}
|
234 |
-
|
235 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-html5:before,
|
236 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-html5:before {
|
237 |
-
content:'\f13b';
|
238 |
-
}
|
239 |
-
|
240 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-instagram:before,
|
241 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-instagram:before {
|
242 |
-
content:'\f16d';
|
243 |
-
}
|
244 |
-
|
245 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-linkedin:before,
|
246 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-linkedin:before {
|
247 |
-
content:'\f0e1';
|
248 |
-
}
|
249 |
-
|
250 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-pinterest:before,
|
251 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-pinterest:before {
|
252 |
-
content:'\f0d2';
|
253 |
-
}
|
254 |
-
|
255 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-reddit:before,
|
256 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-reddit:before {
|
257 |
-
content:'\f1a1';
|
258 |
-
}
|
259 |
-
|
260 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-rss:before,
|
261 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-rss:before {
|
262 |
-
content:'\f09e';
|
263 |
-
}
|
264 |
-
|
265 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-sharethis:before,
|
266 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-sharethis:before {
|
267 |
-
content:'\f1e0';
|
268 |
-
}
|
269 |
-
|
270 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-skype:before,
|
271 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-skype:before {
|
272 |
-
content:'\f17e';
|
273 |
-
}
|
274 |
-
|
275 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-soundcloud:before,
|
276 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-soundcloud:before {
|
277 |
-
content:'\f1be';
|
278 |
-
}
|
279 |
-
|
280 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-spotify:before,
|
281 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-spotify:before {
|
282 |
-
content:'\f1bc';
|
283 |
-
}
|
284 |
-
|
285 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-stackoverflow:before,
|
286 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-stackoverflow:before {
|
287 |
-
content:'\f16c';
|
288 |
-
}
|
289 |
-
|
290 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-steam:before,
|
291 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-steam:before {
|
292 |
-
content:'\f1b6';
|
293 |
-
}
|
294 |
-
|
295 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-stumbleUpon:before,
|
296 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-stumbleUpon:before {
|
297 |
-
content:'\f1a4';
|
298 |
-
}
|
299 |
-
|
300 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-tumblr:before,
|
301 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-tumblr:before {
|
302 |
-
content:'\f173';
|
303 |
-
}
|
304 |
-
|
305 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-twitter:before,
|
306 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-twitter:before {
|
307 |
-
content:'\f099';
|
308 |
-
}
|
309 |
-
|
310 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-vimeo:before,
|
311 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-vimeo:before {
|
312 |
-
content:'\f194';
|
313 |
-
}
|
314 |
-
|
315 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-windows:before,
|
316 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-windows:before {
|
317 |
-
content:'\f17a';
|
318 |
-
}
|
319 |
-
|
320 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-wordpress:before,
|
321 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-wordpress:before {
|
322 |
-
content:'\f19a';
|
323 |
-
}
|
324 |
-
|
325 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-yahoo:before,
|
326 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-yahoo:before {
|
327 |
-
content:'\f19e';
|
328 |
-
}
|
329 |
-
|
330 |
-
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-youtube:before,
|
331 |
-
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-youtube:before {
|
332 |
-
content:'\f167';
|
333 |
-
}
|
334 |
-
|
335 |
-
/* COLORED BACKGROUND FOR SOCIAL ICONS
|
336 |
-
-------------------------------------------------------------- */
|
337 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-addthis {
|
338 |
-
background:#FF8662;
|
339 |
-
border: 1px solid #D5644B;
|
340 |
-
text-shadow:
|
341 |
-
rgb(213, 100, 75) 1px 1px,
|
342 |
-
rgb(213, 100, 75) 2px 2px,
|
343 |
-
rgb(213, 100, 75) 3px 3px,
|
344 |
-
rgb(213, 100, 75) 4px 4px,
|
345 |
-
rgb(213, 100, 75) 5px 5px,
|
346 |
-
rgb(213, 100, 75) 6px 6px,
|
347 |
-
rgb(213, 100, 75) 7px 7px,
|
348 |
-
rgb(213, 100, 75) 8px 8px,
|
349 |
-
rgb(213, 100, 75) 9px 9px,
|
350 |
-
rgb(213, 100, 75) 10px 10px,
|
351 |
-
rgb(213, 100, 75) 11px 11px,
|
352 |
-
rgb(213, 100, 75) 12px 12px,
|
353 |
-
rgb(213, 100, 75) 13px 13px,
|
354 |
-
rgb(213, 100, 75) 14px 14px,
|
355 |
-
rgb(213, 100, 75) 15px 15px,
|
356 |
-
rgb(213, 100, 75) 16px 16px,
|
357 |
-
rgb(213, 100, 75) 17px 17px,
|
358 |
-
rgb(213, 100, 75) 18px 18px,
|
359 |
-
rgb(213, 100, 75) 19px 19px,
|
360 |
-
rgb(213, 100, 75) 20px 20px,
|
361 |
-
rgb(213, 100, 75) 21px 21px,
|
362 |
-
rgb(213, 100, 75) 22px 22px,
|
363 |
-
rgb(213, 100, 75) 23px 23px,
|
364 |
-
rgb(213, 100, 75) 24px 24px,
|
365 |
-
rgb(213, 100, 75) 25px 25px,
|
366 |
-
rgb(213, 100, 75) 26px 26px,
|
367 |
-
rgb(213, 100, 75) 27px 27px,
|
368 |
-
rgb(213, 100, 75) 28px 28px,
|
369 |
-
rgb(213, 100, 75) 29px 29px,
|
370 |
-
rgb(213, 100, 75) 30px 30px;
|
371 |
-
}
|
372 |
-
|
373 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-behance {
|
374 |
-
background:#0294FF;
|
375 |
-
border: 1px solid #0083D4;
|
376 |
-
text-shadow:
|
377 |
-
rgb(0, 131, 212) 1px 1px,
|
378 |
-
rgb(0, 131, 212) 2px 2px,
|
379 |
-
rgb(0, 131, 212) 3px 3px,
|
380 |
-
rgb(0, 131, 212) 4px 4px,
|
381 |
-
rgb(0, 131, 212) 5px 5px,
|
382 |
-
rgb(0, 131, 212) 6px 6px,
|
383 |
-
rgb(0, 131, 212) 7px 7px,
|
384 |
-
rgb(0, 131, 212) 8px 8px,
|
385 |
-
rgb(0, 131, 212) 9px 9px,
|
386 |
-
rgb(0, 131, 212) 10px 10px,
|
387 |
-
rgb(0, 131, 212) 11px 11px,
|
388 |
-
rgb(0, 131, 212) 12px 12px,
|
389 |
-
rgb(0, 131, 212) 13px 13px,
|
390 |
-
rgb(0, 131, 212) 14px 14px,
|
391 |
-
rgb(0, 131, 212) 15px 15px,
|
392 |
-
rgb(0, 131, 212) 16px 16px,
|
393 |
-
rgb(0, 131, 212) 17px 17px,
|
394 |
-
rgb(0, 131, 212) 18px 18px,
|
395 |
-
rgb(0, 131, 212) 19px 19px,
|
396 |
-
rgb(0, 131, 212) 20px 20px,
|
397 |
-
rgb(0, 131, 212) 21px 21px,
|
398 |
-
rgb(0, 131, 212) 22px 22px,
|
399 |
-
rgb(0, 131, 212) 23px 23px,
|
400 |
-
rgb(0, 131, 212) 24px 24px,
|
401 |
-
rgb(0, 131, 212) 25px 25px,
|
402 |
-
rgb(0, 131, 212) 26px 26px,
|
403 |
-
rgb(0, 131, 212) 27px 27px,
|
404 |
-
rgb(0, 131, 212) 28px 28px,
|
405 |
-
rgb(0, 131, 212) 29px 29px,
|
406 |
-
rgb(0, 131, 212) 30px 30px;
|
407 |
-
}
|
408 |
-
|
409 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-delicious {
|
410 |
-
background:#0294FF;
|
411 |
-
border: 1px solid #007ECD;
|
412 |
-
text-shadow:
|
413 |
-
rgb(0, 126, 205) 1px 1px,
|
414 |
-
rgb(0, 126, 205) 2px 2px,
|
415 |
-
rgb(0, 126, 205) 3px 3px,
|
416 |
-
rgb(0, 126, 205) 4px 4px,
|
417 |
-
rgb(0, 126, 205) 5px 5px,
|
418 |
-
rgb(0, 126, 205) 6px 6px,
|
419 |
-
rgb(0, 126, 205) 7px 7px,
|
420 |
-
rgb(0, 126, 205) 8px 8px,
|
421 |
-
rgb(0, 126, 205) 9px 9px,
|
422 |
-
rgb(0, 126, 205) 10px 10px,
|
423 |
-
rgb(0, 126, 205) 11px 11px,
|
424 |
-
rgb(0, 126, 205) 12px 12px,
|
425 |
-
rgb(0, 126, 205) 13px 13px,
|
426 |
-
rgb(0, 126, 205) 14px 14px,
|
427 |
-
rgb(0, 126, 205) 15px 15px,
|
428 |
-
rgb(0, 126, 205) 16px 16px,
|
429 |
-
rgb(0, 126, 205) 17px 17px,
|
430 |
-
rgb(0, 126, 205) 18px 18px,
|
431 |
-
rgb(0, 126, 205) 19px 19px,
|
432 |
-
rgb(0, 126, 205) 20px 20px,
|
433 |
-
rgb(0, 126, 205) 21px 21px,
|
434 |
-
rgb(0, 126, 205) 22px 22px,
|
435 |
-
rgb(0, 126, 205) 23px 23px,
|
436 |
-
rgb(0, 126, 205) 24px 24px,
|
437 |
-
rgb(0, 126, 205) 25px 25px,
|
438 |
-
rgb(0, 126, 205) 26px 26px,
|
439 |
-
rgb(0, 126, 205) 27px 27px,
|
440 |
-
rgb(0, 126, 205) 28px 28px,
|
441 |
-
rgb(0, 126, 205) 29px 29px,
|
442 |
-
rgb(0, 126, 205) 30px 30px;
|
443 |
-
}
|
444 |
-
|
445 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-deviantart {
|
446 |
-
background:#DCE22B;
|
447 |
-
border: 1px solid #B2B423;
|
448 |
-
text-shadow:
|
449 |
-
rgb(178, 180, 35) 1px 1px,
|
450 |
-
rgb(178, 180, 35) 2px 2px,
|
451 |
-
rgb(178, 180, 35) 3px 3px,
|
452 |
-
rgb(178, 180, 35) 4px 4px,
|
453 |
-
rgb(178, 180, 35) 5px 5px,
|
454 |
-
rgb(178, 180, 35) 6px 6px,
|
455 |
-
rgb(178, 180, 35) 7px 7px,
|
456 |
-
rgb(178, 180, 35) 8px 8px,
|
457 |
-
rgb(178, 180, 35) 9px 9px,
|
458 |
-
rgb(178, 180, 35) 10px 10px,
|
459 |
-
rgb(178, 180, 35) 11px 11px,
|
460 |
-
rgb(178, 180, 35) 12px 12px,
|
461 |
-
rgb(178, 180, 35) 13px 13px,
|
462 |
-
rgb(178, 180, 35) 14px 14px,
|
463 |
-
rgb(178, 180, 35) 15px 15px,
|
464 |
-
rgb(178, 180, 35) 16px 16px,
|
465 |
-
rgb(178, 180, 35) 17px 17px,
|
466 |
-
rgb(178, 180, 35) 18px 18px,
|
467 |
-
rgb(178, 180, 35) 19px 19px,
|
468 |
-
rgb(178, 180, 35) 20px 20px,
|
469 |
-
rgb(178, 180, 35) 21px 21px,
|
470 |
-
rgb(178, 180, 35) 22px 22px,
|
471 |
-
rgb(178, 180, 35) 23px 23px,
|
472 |
-
rgb(178, 180, 35) 24px 24px,
|
473 |
-
rgb(178, 180, 35) 25px 25px,
|
474 |
-
rgb(178, 180, 35) 26px 26px,
|
475 |
-
rgb(178, 180, 35) 27px 27px,
|
476 |
-
rgb(178, 180, 35) 28px 28px,
|
477 |
-
rgb(178, 180, 35) 29px 29px,
|
478 |
-
rgb(178, 180, 35) 30px 30px;
|
479 |
-
}
|
480 |
-
|
481 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-digg {
|
482 |
-
background:#1B8EC4;
|
483 |
-
border: 1px solid #126C92;
|
484 |
-
text-shadow:
|
485 |
-
rgb(18, 108, 146) 1px 1px,
|
486 |
-
rgb(18, 108, 146) 2px 2px,
|
487 |
-
rgb(18, 108, 146) 3px 3px,
|
488 |
-
rgb(18, 108, 146) 4px 4px,
|
489 |
-
rgb(18, 108, 146) 5px 5px,
|
490 |
-
rgb(18, 108, 146) 6px 6px,
|
491 |
-
rgb(18, 108, 146) 7px 7px,
|
492 |
-
rgb(18, 108, 146) 8px 8px,
|
493 |
-
rgb(18, 108, 146) 9px 9px,
|
494 |
-
rgb(18, 108, 146) 10px 10px,
|
495 |
-
rgb(18, 108, 146) 11px 11px,
|
496 |
-
rgb(18, 108, 146) 12px 12px,
|
497 |
-
rgb(18, 108, 146) 13px 13px,
|
498 |
-
rgb(18, 108, 146) 14px 14px,
|
499 |
-
rgb(18, 108, 146) 15px 15px,
|
500 |
-
rgb(18, 108, 146) 16px 16px,
|
501 |
-
rgb(18, 108, 146) 17px 17px,
|
502 |
-
rgb(18, 108, 146) 18px 18px,
|
503 |
-
rgb(18, 108, 146) 19px 19px,
|
504 |
-
rgb(18, 108, 146) 20px 20px,
|
505 |
-
rgb(18, 108, 146) 21px 21px,
|
506 |
-
rgb(18, 108, 146) 22px 22px,
|
507 |
-
rgb(18, 108, 146) 23px 23px,
|
508 |
-
rgb(18, 108, 146) 24px 24px,
|
509 |
-
rgb(18, 108, 146) 25px 25px,
|
510 |
-
rgb(18, 108, 146) 26px 26px,
|
511 |
-
rgb(18, 108, 146) 27px 27px,
|
512 |
-
rgb(18, 108, 146) 28px 28px,
|
513 |
-
rgb(18, 108, 146) 29px 29px,
|
514 |
-
rgb(18, 108, 146) 30px 30px;
|
515 |
-
}
|
516 |
-
|
517 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-dribbble {
|
518 |
-
background:#EF76A4;
|
519 |
-
border: 1px solid #C05C84;
|
520 |
-
text-shadow:
|
521 |
-
rgb(192, 92, 132) 1px 1px,
|
522 |
-
rgb(192, 92, 132) 2px 2px,
|
523 |
-
rgb(192, 92, 132) 3px 3px,
|
524 |
-
rgb(192, 92, 132) 4px 4px,
|
525 |
-
rgb(192, 92, 132) 5px 5px,
|
526 |
-
rgb(192, 92, 132) 6px 6px,
|
527 |
-
rgb(192, 92, 132) 7px 7px,
|
528 |
-
rgb(192, 92, 132) 8px 8px,
|
529 |
-
rgb(192, 92, 132) 9px 9px,
|
530 |
-
rgb(192, 92, 132) 10px 10px,
|
531 |
-
rgb(192, 92, 132) 11px 11px,
|
532 |
-
rgb(192, 92, 132) 12px 12px,
|
533 |
-
rgb(192, 92, 132) 13px 13px,
|
534 |
-
rgb(192, 92, 132) 14px 14px,
|
535 |
-
rgb(192, 92, 132) 15px 15px,
|
536 |
-
rgb(192, 92, 132) 16px 16px,
|
537 |
-
rgb(192, 92, 132) 17px 17px,
|
538 |
-
rgb(192, 92, 132) 18px 18px,
|
539 |
-
rgb(192, 92, 132) 19px 19px,
|
540 |
-
rgb(192, 92, 132) 20px 20px,
|
541 |
-
rgb(192, 92, 132) 21px 21px,
|
542 |
-
rgb(192, 92, 132) 22px 22px,
|
543 |
-
rgb(192, 92, 132) 23px 23px,
|
544 |
-
rgb(192, 92, 132) 24px 24px,
|
545 |
-
rgb(192, 92, 132) 25px 25px,
|
546 |
-
rgb(192, 92, 132) 26px 26px,
|
547 |
-
rgb(192, 92, 132) 27px 27px,
|
548 |
-
rgb(192, 92, 132) 28px 28px,
|
549 |
-
rgb(192, 92, 132) 29px 29px,
|
550 |
-
rgb(192, 92, 132) 30px 30px;
|
551 |
-
}
|
552 |
-
|
553 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-facebook {
|
554 |
-
background:#3B5998;
|
555 |
-
border: 1px solid #1E3D7A;
|
556 |
-
text-shadow:
|
557 |
-
rgb(30, 61, 122) 1px 1px,
|
558 |
-
rgb(30, 61, 122) 2px 2px,
|
559 |
-
rgb(30, 61, 122) 3px 3px,
|
560 |
-
rgb(30, 61, 122) 4px 4px,
|
561 |
-
rgb(30, 61, 122) 5px 5px,
|
562 |
-
rgb(30, 61, 122) 6px 6px,
|
563 |
-
rgb(30, 61, 122) 7px 7px,
|
564 |
-
rgb(30, 61, 122) 8px 8px,
|
565 |
-
rgb(30, 61, 122) 9px 9px,
|
566 |
-
rgb(30, 61, 122) 10px 10px,
|
567 |
-
rgb(30, 61, 122) 11px 11px,
|
568 |
-
rgb(30, 61, 122) 12px 12px,
|
569 |
-
rgb(30, 61, 122) 13px 13px,
|
570 |
-
rgb(30, 61, 122) 14px 14px,
|
571 |
-
rgb(30, 61, 122) 15px 15px,
|
572 |
-
rgb(30, 61, 122) 16px 16px,
|
573 |
-
rgb(30, 61, 122) 17px 17px,
|
574 |
-
rgb(30, 61, 122) 18px 18px,
|
575 |
-
rgb(30, 61, 122) 19px 19px,
|
576 |
-
rgb(30, 61, 122) 20px 20px,
|
577 |
-
rgb(30, 61, 122) 21px 21px,
|
578 |
-
rgb(30, 61, 122) 22px 22px,
|
579 |
-
rgb(30, 61, 122) 23px 23px,
|
580 |
-
rgb(30, 61, 122) 24px 24px,
|
581 |
-
rgb(30, 61, 122) 25px 25px,
|
582 |
-
rgb(30, 61, 122) 26px 26px,
|
583 |
-
rgb(30, 61, 122) 27px 27px,
|
584 |
-
rgb(30, 61, 122) 28px 28px,
|
585 |
-
rgb(30, 61, 122) 29px 29px,
|
586 |
-
rgb(30, 61, 122) 30px 30px;
|
587 |
-
}
|
588 |
-
|
589 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-flickr {
|
590 |
-
background:#FF0586;
|
591 |
-
border: 1px solid #D0006F;
|
592 |
-
text-shadow:
|
593 |
-
rgb(208, 0, 111) 1px 1px,
|
594 |
-
rgb(208, 0, 111) 2px 2px,
|
595 |
-
rgb(208, 0, 111) 3px 3px,
|
596 |
-
rgb(208, 0, 111) 4px 4px,
|
597 |
-
rgb(208, 0, 111) 5px 5px,
|
598 |
-
rgb(208, 0, 111) 6px 6px,
|
599 |
-
rgb(208, 0, 111) 7px 7px,
|
600 |
-
rgb(208, 0, 111) 8px 8px,
|
601 |
-
rgb(208, 0, 111) 9px 9px,
|
602 |
-
rgb(208, 0, 111) 10px 10px,
|
603 |
-
rgb(208, 0, 111) 11px 11px,
|
604 |
-
rgb(208, 0, 111) 12px 12px,
|
605 |
-
rgb(208, 0, 111) 13px 13px,
|
606 |
-
rgb(208, 0, 111) 14px 14px,
|
607 |
-
rgb(208, 0, 111) 15px 15px,
|
608 |
-
rgb(208, 0, 111) 16px 16px,
|
609 |
-
rgb(208, 0, 111) 17px 17px,
|
610 |
-
rgb(208, 0, 111) 18px 18px,
|
611 |
-
rgb(208, 0, 111) 19px 19px,
|
612 |
-
rgb(208, 0, 111) 20px 20px,
|
613 |
-
rgb(208, 0, 111) 21px 21px,
|
614 |
-
rgb(208, 0, 111) 22px 22px,
|
615 |
-
rgb(208, 0, 111) 23px 23px,
|
616 |
-
rgb(208, 0, 111) 24px 24px,
|
617 |
-
rgb(208, 0, 111) 25px 25px,
|
618 |
-
rgb(208, 0, 111) 26px 26px,
|
619 |
-
rgb(208, 0, 111) 27px 27px,
|
620 |
-
rgb(208, 0, 111) 28px 28px,
|
621 |
-
rgb(208, 0, 111) 29px 29px,
|
622 |
-
rgb(208, 0, 111) 30px 30px;
|
623 |
-
}
|
624 |
-
|
625 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-github {
|
626 |
-
background:#829AA8;
|
627 |
-
border: 1px solid #4F7385;
|
628 |
-
text-shadow:
|
629 |
-
rgb(79, 115, 133) 1px 1px,
|
630 |
-
rgb(79, 115, 133) 2px 2px,
|
631 |
-
rgb(79, 115, 133) 3px 3px,
|
632 |
-
rgb(79, 115, 133) 4px 4px,
|
633 |
-
rgb(79, 115, 133) 5px 5px,
|
634 |
-
rgb(79, 115, 133) 6px 6px,
|
635 |
-
rgb(79, 115, 133) 7px 7px,
|
636 |
-
rgb(79, 115, 133) 8px 8px,
|
637 |
-
rgb(79, 115, 133) 9px 9px,
|
638 |
-
rgb(79, 115, 133) 10px 10px,
|
639 |
-
rgb(79, 115, 133) 11px 11px,
|
640 |
-
rgb(79, 115, 133) 12px 12px,
|
641 |
-
rgb(79, 115, 133) 13px 13px,
|
642 |
-
rgb(79, 115, 133) 14px 14px,
|
643 |
-
rgb(79, 115, 133) 15px 15px,
|
644 |
-
rgb(79, 115, 133) 16px 16px,
|
645 |
-
rgb(79, 115, 133) 17px 17px,
|
646 |
-
rgb(79, 115, 133) 18px 18px,
|
647 |
-
rgb(79, 115, 133) 19px 19px,
|
648 |
-
rgb(79, 115, 133) 20px 20px,
|
649 |
-
rgb(79, 115, 133) 21px 21px,
|
650 |
-
rgb(79, 115, 133) 22px 22px,
|
651 |
-
rgb(79, 115, 133) 23px 23px,
|
652 |
-
rgb(79, 115, 133) 24px 24px,
|
653 |
-
rgb(79, 115, 133) 25px 25px,
|
654 |
-
rgb(79, 115, 133) 26px 26px,
|
655 |
-
rgb(79, 115, 133) 27px 27px,
|
656 |
-
rgb(79, 115, 133) 28px 28px,
|
657 |
-
rgb(79, 115, 133) 29px 29px,
|
658 |
-
rgb(79, 115, 133) 30px 30px;
|
659 |
-
}
|
660 |
-
|
661 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-google {
|
662 |
-
background:#E8262F;
|
663 |
-
border: 1px solid #C20C18;
|
664 |
-
text-shadow:
|
665 |
-
rgb(194, 12, 24) 1px 1px,
|
666 |
-
rgb(194, 12, 24) 2px 2px,
|
667 |
-
rgb(194, 12, 24) 3px 3px,
|
668 |
-
rgb(194, 12, 24) 4px 4px,
|
669 |
-
rgb(194, 12, 24) 5px 5px,
|
670 |
-
rgb(194, 12, 24) 6px 6px,
|
671 |
-
rgb(194, 12, 24) 7px 7px,
|
672 |
-
rgb(194, 12, 24) 8px 8px,
|
673 |
-
rgb(194, 12, 24) 9px 9px,
|
674 |
-
rgb(194, 12, 24) 10px 10px,
|
675 |
-
rgb(194, 12, 24) 11px 11px,
|
676 |
-
rgb(194, 12, 24) 12px 12px,
|
677 |
-
rgb(194, 12, 24) 13px 13px,
|
678 |
-
rgb(194, 12, 24) 14px 14px,
|
679 |
-
rgb(194, 12, 24) 15px 15px,
|
680 |
-
rgb(194, 12, 24) 16px 16px,
|
681 |
-
rgb(194, 12, 24) 17px 17px,
|
682 |
-
rgb(194, 12, 24) 18px 18px,
|
683 |
-
rgb(194, 12, 24) 19px 19px,
|
684 |
-
rgb(194, 12, 24) 20px 20px,
|
685 |
-
rgb(194, 12, 24) 21px 21px,
|
686 |
-
rgb(194, 12, 24) 22px 22px,
|
687 |
-
rgb(194, 12, 24) 23px 23px,
|
688 |
-
rgb(194, 12, 24) 24px 24px,
|
689 |
-
rgb(194, 12, 24) 25px 25px,
|
690 |
-
rgb(194, 12, 24) 26px 26px,
|
691 |
-
rgb(194, 12, 24) 27px 27px,
|
692 |
-
rgb(194, 12, 24) 28px 28px,
|
693 |
-
rgb(194, 12, 24) 29px 29px,
|
694 |
-
rgb(194, 12, 24) 30px 30px;
|
695 |
-
}
|
696 |
-
|
697 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-googleplus {
|
698 |
-
background:#DD4B39;
|
699 |
-
border: 1px solid #B32414;
|
700 |
-
text-shadow:
|
701 |
-
rgb(179, 36, 20) 1px 1px,
|
702 |
-
rgb(179, 36, 20) 2px 2px,
|
703 |
-
rgb(179, 36, 20) 3px 3px,
|
704 |
-
rgb(179, 36, 20) 4px 4px,
|
705 |
-
rgb(179, 36, 20) 5px 5px,
|
706 |
-
rgb(179, 36, 20) 6px 6px,
|
707 |
-
rgb(179, 36, 20) 7px 7px,
|
708 |
-
rgb(179, 36, 20) 8px 8px,
|
709 |
-
rgb(179, 36, 20) 9px 9px,
|
710 |
-
rgb(179, 36, 20) 10px 10px,
|
711 |
-
rgb(179, 36, 20) 11px 11px,
|
712 |
-
rgb(179, 36, 20) 12px 12px,
|
713 |
-
rgb(179, 36, 20) 13px 13px,
|
714 |
-
rgb(179, 36, 20) 14px 14px,
|
715 |
-
rgb(179, 36, 20) 15px 15px,
|
716 |
-
rgb(179, 36, 20) 16px 16px,
|
717 |
-
rgb(179, 36, 20) 17px 17px,
|
718 |
-
rgb(179, 36, 20) 18px 18px,
|
719 |
-
rgb(179, 36, 20) 19px 19px,
|
720 |
-
rgb(179, 36, 20) 20px 20px,
|
721 |
-
rgb(179, 36, 20) 21px 21px,
|
722 |
-
rgb(179, 36, 20) 22px 22px,
|
723 |
-
rgb(179, 36, 20) 23px 23px,
|
724 |
-
rgb(179, 36, 20) 24px 24px,
|
725 |
-
rgb(179, 36, 20) 25px 25px,
|
726 |
-
rgb(179, 36, 20) 26px 26px,
|
727 |
-
rgb(179, 36, 20) 27px 27px,
|
728 |
-
rgb(179, 36, 20) 28px 28px,
|
729 |
-
rgb(179, 36, 20) 29px 29px,
|
730 |
-
rgb(179, 36, 20) 30px 30px;
|
731 |
-
}
|
732 |
-
|
733 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-html5 {
|
734 |
-
background:#F16528;
|
735 |
-
border: 1px solid #C23D08;
|
736 |
-
text-shadow:
|
737 |
-
rgb(194, 61, 8) 1px 1px,
|
738 |
-
rgb(194, 61, 8) 2px 2px,
|
739 |
-
rgb(194, 61, 8) 3px 3px,
|
740 |
-
rgb(194, 61, 8) 4px 4px,
|
741 |
-
rgb(194, 61, 8) 5px 5px,
|
742 |
-
rgb(194, 61, 8) 6px 6px,
|
743 |
-
rgb(194, 61, 8) 7px 7px,
|
744 |
-
rgb(194, 61, 8) 8px 8px,
|
745 |
-
rgb(194, 61, 8) 9px 9px,
|
746 |
-
rgb(194, 61, 8) 10px 10px,
|
747 |
-
rgb(194, 61, 8) 11px 11px,
|
748 |
-
rgb(194, 61, 8) 12px 12px,
|
749 |
-
rgb(194, 61, 8) 13px 13px,
|
750 |
-
rgb(194, 61, 8) 14px 14px,
|
751 |
-
rgb(194, 61, 8) 15px 15px,
|
752 |
-
rgb(194, 61, 8) 16px 16px,
|
753 |
-
rgb(194, 61, 8) 17px 17px,
|
754 |
-
rgb(194, 61, 8) 18px 18px,
|
755 |
-
rgb(194, 61, 8) 19px 19px,
|
756 |
-
rgb(194, 61, 8) 20px 20px,
|
757 |
-
rgb(194, 61, 8) 21px 21px,
|
758 |
-
rgb(194, 61, 8) 22px 22px,
|
759 |
-
rgb(194, 61, 8) 23px 23px,
|
760 |
-
rgb(194, 61, 8) 24px 24px,
|
761 |
-
rgb(194, 61, 8) 25px 25px,
|
762 |
-
rgb(194, 61, 8) 26px 26px,
|
763 |
-
rgb(194, 61, 8) 27px 27px,
|
764 |
-
rgb(194, 61, 8) 28px 28px,
|
765 |
-
rgb(194, 61, 8) 29px 29px,
|
766 |
-
rgb(194, 61, 8) 30px 30px;
|
767 |
-
}
|
768 |
-
|
769 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-instagram {
|
770 |
-
background:#417096;
|
771 |
-
border: 1px solid #244F70;
|
772 |
-
text-shadow:
|
773 |
-
rgb(36, 79, 112) 1px 1px,
|
774 |
-
rgb(36, 79, 112) 2px 2px,
|
775 |
-
rgb(36, 79, 112) 3px 3px,
|
776 |
-
rgb(36, 79, 112) 4px 4px,
|
777 |
-
rgb(36, 79, 112) 5px 5px,
|
778 |
-
rgb(36, 79, 112) 6px 6px,
|
779 |
-
rgb(36, 79, 112) 7px 7px,
|
780 |
-
rgb(36, 79, 112) 8px 8px,
|
781 |
-
rgb(36, 79, 112) 9px 9px,
|
782 |
-
rgb(36, 79, 112) 10px 10px,
|
783 |
-
rgb(36, 79, 112) 11px 11px,
|
784 |
-
rgb(36, 79, 112) 12px 12px,
|
785 |
-
rgb(36, 79, 112) 13px 13px,
|
786 |
-
rgb(36, 79, 112) 14px 14px,
|
787 |
-
rgb(36, 79, 112) 15px 15px,
|
788 |
-
rgb(36, 79, 112) 16px 16px,
|
789 |
-
rgb(36, 79, 112) 17px 17px,
|
790 |
-
rgb(36, 79, 112) 18px 18px,
|
791 |
-
rgb(36, 79, 112) 19px 19px,
|
792 |
-
rgb(36, 79, 112) 20px 20px,
|
793 |
-
rgb(36, 79, 112) 21px 21px,
|
794 |
-
rgb(36, 79, 112) 22px 22px,
|
795 |
-
rgb(36, 79, 112) 23px 23px,
|
796 |
-
rgb(36, 79, 112) 24px 24px,
|
797 |
-
rgb(36, 79, 112) 25px 25px,
|
798 |
-
rgb(36, 79, 112) 26px 26px,
|
799 |
-
rgb(36, 79, 112) 27px 27px,
|
800 |
-
rgb(36, 79, 112) 28px 28px,
|
801 |
-
rgb(36, 79, 112) 29px 29px,
|
802 |
-
rgb(36, 79, 112) 30px 30px;
|
803 |
-
}
|
804 |
-
|
805 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-linkedin {
|
806 |
-
background:#1583BB;
|
807 |
-
border: 1px solid #036390;
|
808 |
-
text-shadow:
|
809 |
-
rgb(3, 99, 144) 1px 1px,
|
810 |
-
rgb(3, 99, 144) 2px 2px,
|
811 |
-
rgb(3, 99, 144) 3px 3px,
|
812 |
-
rgb(3, 99, 144) 4px 4px,
|
813 |
-
rgb(3, 99, 144) 5px 5px,
|
814 |
-
rgb(3, 99, 144) 6px 6px,
|
815 |
-
rgb(3, 99, 144) 7px 7px,
|
816 |
-
rgb(3, 99, 144) 8px 8px,
|
817 |
-
rgb(3, 99, 144) 9px 9px,
|
818 |
-
rgb(3, 99, 144) 10px 10px,
|
819 |
-
rgb(3, 99, 144) 11px 11px,
|
820 |
-
rgb(3, 99, 144) 12px 12px,
|
821 |
-
rgb(3, 99, 144) 13px 13px,
|
822 |
-
rgb(3, 99, 144) 14px 14px,
|
823 |
-
rgb(3, 99, 144) 15px 15px,
|
824 |
-
rgb(3, 99, 144) 16px 16px,
|
825 |
-
rgb(3, 99, 144) 17px 17px,
|
826 |
-
rgb(3, 99, 144) 18px 18px,
|
827 |
-
rgb(3, 99, 144) 19px 19px,
|
828 |
-
rgb(3, 99, 144) 20px 20px,
|
829 |
-
rgb(3, 99, 144) 21px 21px,
|
830 |
-
rgb(3, 99, 144) 22px 22px,
|
831 |
-
rgb(3, 99, 144) 23px 23px,
|
832 |
-
rgb(3, 99, 144) 24px 24px,
|
833 |
-
rgb(3, 99, 144) 25px 25px,
|
834 |
-
rgb(3, 99, 144) 26px 26px,
|
835 |
-
rgb(3, 99, 144) 27px 27px,
|
836 |
-
rgb(3, 99, 144) 28px 28px,
|
837 |
-
rgb(3, 99, 144) 29px 29px,
|
838 |
-
rgb(3, 99, 144) 30px 30px;
|
839 |
-
}
|
840 |
-
|
841 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-pinterest {
|
842 |
-
background:#CB2027;
|
843 |
-
border: 1px solid #9D060E;
|
844 |
-
text-shadow:
|
845 |
-
rgb(157, 6, 62) 1px 1px,
|
846 |
-
rgb(157, 6, 62) 2px 2px,
|
847 |
-
rgb(157, 6, 62) 3px 3px,
|
848 |
-
rgb(157, 6, 62) 4px 4px,
|
849 |
-
rgb(157, 6, 62) 5px 5px,
|
850 |
-
rgb(157, 6, 62) 6px 6px,
|
851 |
-
rgb(157, 6, 62) 7px 7px,
|
852 |
-
rgb(157, 6, 62) 8px 8px,
|
853 |
-
rgb(157, 6, 62) 9px 9px,
|
854 |
-
rgb(157, 6, 62) 10px 10px,
|
855 |
-
rgb(157, 6, 62) 11px 11px,
|
856 |
-
rgb(157, 6, 62) 12px 12px,
|
857 |
-
rgb(157, 6, 62) 13px 13px,
|
858 |
-
rgb(157, 6, 62) 14px 14px,
|
859 |
-
rgb(157, 6, 62) 15px 15px,
|
860 |
-
rgb(157, 6, 62) 16px 16px,
|
861 |
-
rgb(157, 6, 62) 17px 17px,
|
862 |
-
rgb(157, 6, 62) 18px 18px,
|
863 |
-
rgb(157, 6, 62) 19px 19px,
|
864 |
-
rgb(157, 6, 62) 20px 20px,
|
865 |
-
rgb(157, 6, 62) 21px 21px,
|
866 |
-
rgb(157, 6, 62) 22px 22px,
|
867 |
-
rgb(157, 6, 62) 23px 23px,
|
868 |
-
rgb(157, 6, 62) 24px 24px,
|
869 |
-
rgb(157, 6, 62) 25px 25px,
|
870 |
-
rgb(157, 6, 62) 26px 26px,
|
871 |
-
rgb(157, 6, 62) 27px 27px,
|
872 |
-
rgb(157, 6, 62) 28px 28px,
|
873 |
-
rgb(157, 6, 62) 29px 29px,
|
874 |
-
rgb(157, 6, 62) 30px 30px;
|
875 |
-
}
|
876 |
-
|
877 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-reddit {
|
878 |
-
background:#FF4107;
|
879 |
-
border: 1px solid #C62D02;
|
880 |
-
text-shadow:
|
881 |
-
rgb(198, 45, 2) 1px 1px,
|
882 |
-
rgb(198, 45, 2) 2px 2px,
|
883 |
-
rgb(198, 45, 2) 3px 3px,
|
884 |
-
rgb(198, 45, 2) 4px 4px,
|
885 |
-
rgb(198, 45, 2) 5px 5px,
|
886 |
-
rgb(198, 45, 2) 6px 6px,
|
887 |
-
rgb(198, 45, 2) 7px 7px,
|
888 |
-
rgb(198, 45, 2) 8px 8px,
|
889 |
-
rgb(198, 45, 2) 9px 9px,
|
890 |
-
rgb(198, 45, 2) 10px 10px,
|
891 |
-
rgb(198, 45, 2) 11px 11px,
|
892 |
-
rgb(198, 45, 2) 12px 12px,
|
893 |
-
rgb(198, 45, 2) 13px 13px,
|
894 |
-
rgb(198, 45, 2) 14px 14px,
|
895 |
-
rgb(198, 45, 2) 15px 15px,
|
896 |
-
rgb(198, 45, 2) 16px 16px,
|
897 |
-
rgb(198, 45, 2) 17px 17px,
|
898 |
-
rgb(198, 45, 2) 18px 18px,
|
899 |
-
rgb(198, 45, 2) 19px 19px,
|
900 |
-
rgb(198, 45, 2) 20px 20px,
|
901 |
-
rgb(198, 45, 2) 21px 21px,
|
902 |
-
rgb(198, 45, 2) 22px 22px,
|
903 |
-
rgb(198, 45, 2) 23px 23px,
|
904 |
-
rgb(198, 45, 2) 24px 24px,
|
905 |
-
rgb(198, 45, 2) 25px 25px,
|
906 |
-
rgb(198, 45, 2) 26px 26px,
|
907 |
-
rgb(198, 45, 2) 27px 27px,
|
908 |
-
rgb(198, 45, 2) 28px 28px,
|
909 |
-
rgb(198, 45, 2) 29px 29px,
|
910 |
-
rgb(198, 45, 2) 30px 30px;
|
911 |
-
}
|
912 |
-
|
913 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-rss {
|
914 |
-
background:#FF7A21;
|
915 |
-
border: 1px solid #C24B02;
|
916 |
-
text-shadow:
|
917 |
-
rgb(194, 75, 2) 1px 1px,
|
918 |
-
rgb(194, 75, 2) 2px 2px,
|
919 |
-
rgb(194, 75, 2) 3px 3px,
|
920 |
-
rgb(194, 75, 2) 4px 4px,
|
921 |
-
rgb(194, 75, 2) 5px 5px,
|
922 |
-
rgb(194, 75, 2) 6px 6px,
|
923 |
-
rgb(194, 75, 2) 7px 7px,
|
924 |
-
rgb(194, 75, 2) 8px 8px,
|
925 |
-
rgb(194, 75, 2) 9px 9px,
|
926 |
-
rgb(194, 75, 2) 10px 10px,
|
927 |
-
rgb(194, 75, 2) 11px 11px,
|
928 |
-
rgb(194, 75, 2) 12px 12px,
|
929 |
-
rgb(194, 75, 2) 13px 13px,
|
930 |
-
rgb(194, 75, 2) 14px 14px,
|
931 |
-
rgb(194, 75, 2) 15px 15px,
|
932 |
-
rgb(194, 75, 2) 16px 16px,
|
933 |
-
rgb(194, 75, 2) 17px 17px,
|
934 |
-
rgb(194, 75, 2) 18px 18px,
|
935 |
-
rgb(194, 75, 2) 19px 19px,
|
936 |
-
rgb(194, 75, 2) 20px 20px,
|
937 |
-
rgb(194, 75, 2) 21px 21px,
|
938 |
-
rgb(194, 75, 2) 22px 22px,
|
939 |
-
rgb(194, 75, 2) 23px 23px,
|
940 |
-
rgb(194, 75, 2) 24px 24px,
|
941 |
-
rgb(194, 75, 2) 25px 25px,
|
942 |
-
rgb(194, 75, 2) 26px 26px,
|
943 |
-
rgb(194, 75, 2) 27px 27px,
|
944 |
-
rgb(194, 75, 2) 28px 28px,
|
945 |
-
rgb(194, 75, 2) 29px 29px,
|
946 |
-
rgb(194, 75, 2) 30px 30px;
|
947 |
-
}
|
948 |
-
|
949 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-sharethis {
|
950 |
-
background:#1D9565;
|
951 |
-
border: 1px solid #076840;
|
952 |
-
text-shadow:
|
953 |
-
rgb(7, 104, 64) 1px 1px,
|
954 |
-
rgb(7, 104, 64) 2px 2px,
|
955 |
-
rgb(7, 104, 64) 3px 3px,
|
956 |
-
rgb(7, 104, 64) 4px 4px,
|
957 |
-
rgb(7, 104, 64) 5px 5px,
|
958 |
-
rgb(7, 104, 64) 6px 6px,
|
959 |
-
rgb(7, 104, 64) 7px 7px,
|
960 |
-
rgb(7, 104, 64) 8px 8px,
|
961 |
-
rgb(7, 104, 64) 9px 9px,
|
962 |
-
rgb(7, 104, 64) 10px 10px,
|
963 |
-
rgb(7, 104, 64) 11px 11px,
|
964 |
-
rgb(7, 104, 64) 12px 12px,
|
965 |
-
rgb(7, 104, 64) 13px 13px,
|
966 |
-
rgb(7, 104, 64) 14px 14px,
|
967 |
-
rgb(7, 104, 64) 15px 15px,
|
968 |
-
rgb(7, 104, 64) 16px 16px,
|
969 |
-
rgb(7, 104, 64) 17px 17px,
|
970 |
-
rgb(7, 104, 64) 18px 18px,
|
971 |
-
rgb(7, 104, 64) 19px 19px,
|
972 |
-
rgb(7, 104, 64) 20px 20px,
|
973 |
-
rgb(7, 104, 64) 21px 21px,
|
974 |
-
rgb(7, 104, 64) 22px 22px,
|
975 |
-
rgb(7, 104, 64) 23px 23px,
|
976 |
-
rgb(7, 104, 64) 24px 24px,
|
977 |
-
rgb(7, 104, 64) 25px 25px,
|
978 |
-
rgb(7, 104, 64) 26px 26px,
|
979 |
-
rgb(7, 104, 64) 27px 27px,
|
980 |
-
rgb(7, 104, 64) 28px 28px,
|
981 |
-
rgb(7, 104, 64) 29px 29px,
|
982 |
-
rgb(7, 104, 64) 30px 30px;
|
983 |
-
}
|
984 |
-
|
985 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-skype {
|
986 |
-
background:#3FC1F4;
|
987 |
-
border: 1px solid #1B95C2;
|
988 |
-
text-shadow:
|
989 |
-
rgb(27, 149, 194) 1px 1px,
|
990 |
-
rgb(27, 149, 194) 2px 2px,
|
991 |
-
rgb(27, 149, 194) 3px 3px,
|
992 |
-
rgb(27, 149, 194) 4px 4px,
|
993 |
-
rgb(27, 149, 194) 5px 5px,
|
994 |
-
rgb(27, 149, 194) 6px 6px,
|
995 |
-
rgb(27, 149, 194) 7px 7px,
|
996 |
-
rgb(27, 149, 194) 8px 8px,
|
997 |
-
rgb(27, 149, 194) 9px 9px,
|
998 |
-
rgb(27, 149, 194) 10px 10px,
|
999 |
-
rgb(27, 149, 194) 11px 11px,
|
1000 |
-
rgb(27, 149, 194) 12px 12px,
|
1001 |
-
rgb(27, 149, 194) 13px 13px,
|
1002 |
-
rgb(27, 149, 194) 14px 14px,
|
1003 |
-
rgb(27, 149, 194) 15px 15px,
|
1004 |
-
rgb(27, 149, 194) 16px 16px,
|
1005 |
-
rgb(27, 149, 194) 17px 17px,
|
1006 |
-
rgb(27, 149, 194) 18px 18px,
|
1007 |
-
rgb(27, 149, 194) 19px 19px,
|
1008 |
-
rgb(27, 149, 194) 20px 20px,
|
1009 |
-
rgb(27, 149, 194) 21px 21px,
|
1010 |
-
rgb(27, 149, 194) 22px 22px,
|
1011 |
-
rgb(27, 149, 194) 23px 23px,
|
1012 |
-
rgb(27, 149, 194) 24px 24px,
|
1013 |
-
rgb(27, 149, 194) 25px 25px,
|
1014 |
-
rgb(27, 149, 194) 26px 26px,
|
1015 |
-
rgb(27, 149, 194) 27px 27px,
|
1016 |
-
rgb(27, 149, 194) 28px 28px,
|
1017 |
-
rgb(27, 149, 194) 29px 29px,
|
1018 |
-
rgb(27, 149, 194) 30px 30px;
|
1019 |
-
}
|
1020 |
-
|
1021 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-soundcloud {
|
1022 |
-
background:#FF5419;
|
1023 |
-
border: 1px solid #C73002;
|
1024 |
-
text-shadow:
|
1025 |
-
rgb(199, 48, 2) 1px 1px,
|
1026 |
-
rgb(199, 48, 2) 2px 2px,
|
1027 |
-
rgb(199, 48, 2) 3px 3px,
|
1028 |
-
rgb(199, 48, 2) 4px 4px,
|
1029 |
-
rgb(199, 48, 2) 5px 5px,
|
1030 |
-
rgb(199, 48, 2) 6px 6px,
|
1031 |
-
rgb(199, 48, 2) 7px 7px,
|
1032 |
-
rgb(199, 48, 2) 8px 8px,
|
1033 |
-
rgb(199, 48, 2) 9px 9px,
|
1034 |
-
rgb(199, 48, 2) 10px 10px,
|
1035 |
-
rgb(199, 48, 2) 11px 11px,
|
1036 |
-
rgb(199, 48, 2) 12px 12px,
|
1037 |
-
rgb(199, 48, 2) 13px 13px,
|
1038 |
-
rgb(199, 48, 2) 14px 14px,
|
1039 |
-
rgb(199, 48, 2) 15px 15px,
|
1040 |
-
rgb(199, 48, 2) 16px 16px,
|
1041 |
-
rgb(199, 48, 2) 17px 17px,
|
1042 |
-
rgb(199, 48, 2) 18px 18px,
|
1043 |
-
rgb(199, 48, 2) 19px 19px,
|
1044 |
-
rgb(199, 48, 2) 20px 20px,
|
1045 |
-
rgb(199, 48, 2) 21px 21px,
|
1046 |
-
rgb(199, 48, 2) 22px 22px,
|
1047 |
-
rgb(199, 48, 2) 23px 23px,
|
1048 |
-
rgb(199, 48, 2) 24px 24px,
|
1049 |
-
rgb(199, 48, 2) 25px 25px,
|
1050 |
-
rgb(199, 48, 2) 26px 26px,
|
1051 |
-
rgb(199, 48, 2) 27px 27px,
|
1052 |
-
rgb(199, 48, 2) 28px 28px,
|
1053 |
-
rgb(199, 48, 2) 29px 29px,
|
1054 |
-
rgb(199, 48, 2) 30px 30px;
|
1055 |
-
}
|
1056 |
-
|
1057 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-spotify {
|
1058 |
-
background:#AECF02;
|
1059 |
-
border: 1px solid #829900;
|
1060 |
-
text-shadow:
|
1061 |
-
rgb(130, 153, 0) 1px 1px,
|
1062 |
-
rgb(130, 153, 0) 2px 2px,
|
1063 |
-
rgb(130, 153, 0) 3px 3px,
|
1064 |
-
rgb(130, 153, 0) 4px 4px,
|
1065 |
-
rgb(130, 153, 0) 5px 5px,
|
1066 |
-
rgb(130, 153, 0) 6px 6px,
|
1067 |
-
rgb(130, 153, 0) 7px 7px,
|
1068 |
-
rgb(130, 153, 0) 8px 8px,
|
1069 |
-
rgb(130, 153, 0) 9px 9px,
|
1070 |
-
rgb(130, 153, 0) 10px 10px,
|
1071 |
-
rgb(130, 153, 0) 11px 11px,
|
1072 |
-
rgb(130, 153, 0) 12px 12px,
|
1073 |
-
rgb(130, 153, 0) 13px 13px,
|
1074 |
-
rgb(130, 153, 0) 14px 14px,
|
1075 |
-
rgb(130, 153, 0) 15px 15px,
|
1076 |
-
rgb(130, 153, 0) 16px 16px,
|
1077 |
-
rgb(130, 153, 0) 17px 17px,
|
1078 |
-
rgb(130, 153, 0) 18px 18px,
|
1079 |
-
rgb(130, 153, 0) 19px 19px,
|
1080 |
-
rgb(130, 153, 0) 20px 20px,
|
1081 |
-
rgb(130, 153, 0) 21px 21px,
|
1082 |
-
rgb(130, 153, 0) 22px 22px,
|
1083 |
-
rgb(130, 153, 0) 23px 23px,
|
1084 |
-
rgb(130, 153, 0) 24px 24px,
|
1085 |
-
rgb(130, 153, 0) 25px 25px,
|
1086 |
-
rgb(130, 153, 0) 26px 26px,
|
1087 |
-
rgb(130, 153, 0) 27px 27px,
|
1088 |
-
rgb(130, 153, 0) 28px 28px,
|
1089 |
-
rgb(130, 153, 0) 29px 29px,
|
1090 |
-
rgb(130, 153, 0) 30px 30px;
|
1091 |
-
}
|
1092 |
-
|
1093 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-stackoverflow {
|
1094 |
-
background:#FF661E;
|
1095 |
-
border: 1px solid #CE3A00;
|
1096 |
-
text-shadow:
|
1097 |
-
rgb(206, 58, 0) 1px 1px,
|
1098 |
-
rgb(206, 58, 0) 2px 2px,
|
1099 |
-
rgb(206, 58, 0) 3px 3px,
|
1100 |
-
rgb(206, 58, 0) 4px 4px,
|
1101 |
-
rgb(206, 58, 0) 5px 5px,
|
1102 |
-
rgb(206, 58, 0) 6px 6px,
|
1103 |
-
rgb(206, 58, 0) 7px 7px,
|
1104 |
-
rgb(206, 58, 0) 8px 8px,
|
1105 |
-
rgb(206, 58, 0) 9px 9px,
|
1106 |
-
rgb(206, 58, 0) 10px 10px,
|
1107 |
-
rgb(206, 58, 0) 11px 11px,
|
1108 |
-
rgb(206, 58, 0) 12px 12px,
|
1109 |
-
rgb(206, 58, 0) 13px 13px,
|
1110 |
-
rgb(206, 58, 0) 14px 14px,
|
1111 |
-
rgb(206, 58, 0) 15px 15px,
|
1112 |
-
rgb(206, 58, 0) 16px 16px,
|
1113 |
-
rgb(206, 58, 0) 17px 17px,
|
1114 |
-
rgb(206, 58, 0) 18px 18px,
|
1115 |
-
rgb(206, 58, 0) 19px 19px,
|
1116 |
-
rgb(206, 58, 0) 20px 20px,
|
1117 |
-
rgb(206, 58, 0) 21px 21px,
|
1118 |
-
rgb(206, 58, 0) 22px 22px,
|
1119 |
-
rgb(206, 58, 0) 23px 23px,
|
1120 |
-
rgb(206, 58, 0) 24px 24px,
|
1121 |
-
rgb(206, 58, 0) 25px 25px,
|
1122 |
-
rgb(206, 58, 0) 26px 26px,
|
1123 |
-
rgb(206, 58, 0) 27px 27px,
|
1124 |
-
rgb(206, 58, 0) 28px 28px,
|
1125 |
-
rgb(206, 58, 0) 29px 29px,
|
1126 |
-
rgb(206, 58, 0) 30px 30px;
|
1127 |
-
}
|
1128 |
-
|
1129 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-steam {
|
1130 |
-
background:#484848;
|
1131 |
-
border: 1px solid #302B2B;
|
1132 |
-
text-shadow:
|
1133 |
-
rgb(48, 43, 43) 1px 1px,
|
1134 |
-
rgb(48, 43, 43) 2px 2px,
|
1135 |
-
rgb(48, 43, 43) 3px 3px,
|
1136 |
-
rgb(48, 43, 43) 4px 4px,
|
1137 |
-
rgb(48, 43, 43) 5px 5px,
|
1138 |
-
rgb(48, 43, 43) 6px 6px,
|
1139 |
-
rgb(48, 43, 43) 7px 7px,
|
1140 |
-
rgb(48, 43, 43) 8px 8px,
|
1141 |
-
rgb(48, 43, 43) 9px 9px,
|
1142 |
-
rgb(48, 43, 43) 10px 10px,
|
1143 |
-
rgb(48, 43, 43) 11px 11px,
|
1144 |
-
rgb(48, 43, 43) 12px 12px,
|
1145 |
-
rgb(48, 43, 43) 13px 13px,
|
1146 |
-
rgb(48, 43, 43) 14px 14px,
|
1147 |
-
rgb(48, 43, 43) 15px 15px,
|
1148 |
-
rgb(48, 43, 43) 16px 16px,
|
1149 |
-
rgb(48, 43, 43) 17px 17px,
|
1150 |
-
rgb(48, 43, 43) 18px 18px,
|
1151 |
-
rgb(48, 43, 43) 19px 19px,
|
1152 |
-
rgb(48, 43, 43) 20px 20px,
|
1153 |
-
rgb(48, 43, 43) 21px 21px,
|
1154 |
-
rgb(48, 43, 43) 22px 22px,
|
1155 |
-
rgb(48, 43, 43) 23px 23px,
|
1156 |
-
rgb(48, 43, 43) 24px 24px,
|
1157 |
-
rgb(48, 43, 43) 25px 25px,
|
1158 |
-
rgb(48, 43, 43) 26px 26px,
|
1159 |
-
rgb(48, 43, 43) 27px 27px,
|
1160 |
-
rgb(48, 43, 43) 28px 28px,
|
1161 |
-
rgb(48, 43, 43) 29px 29px,
|
1162 |
-
rgb(48, 43, 43) 30px 30px;
|
1163 |
-
}
|
1164 |
-
|
1165 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-stumbleUpon {
|
1166 |
-
background:#EB4923;
|
1167 |
-
border: 1px solid #BE2507;
|
1168 |
-
text-shadow:
|
1169 |
-
rgb(190, 37, 7) 1px 1px,
|
1170 |
-
rgb(190, 37, 7) 2px 2px,
|
1171 |
-
rgb(190, 37, 7) 3px 3px,
|
1172 |
-
rgb(190, 37, 7) 4px 4px,
|
1173 |
-
rgb(190, 37, 7) 5px 5px,
|
1174 |
-
rgb(190, 37, 7) 6px 6px,
|
1175 |
-
rgb(190, 37, 7) 7px 7px,
|
1176 |
-
rgb(190, 37, 7) 8px 8px,
|
1177 |
-
rgb(190, 37, 7) 9px 9px,
|
1178 |
-
rgb(190, 37, 7) 10px 10px,
|
1179 |
-
rgb(190, 37, 7) 11px 11px,
|
1180 |
-
rgb(190, 37, 7) 12px 12px,
|
1181 |
-
rgb(190, 37, 7) 13px 13px,
|
1182 |
-
rgb(190, 37, 7) 14px 14px,
|
1183 |
-
rgb(190, 37, 7) 15px 15px,
|
1184 |
-
rgb(190, 37, 7) 16px 16px,
|
1185 |
-
rgb(190, 37, 7) 17px 17px,
|
1186 |
-
rgb(190, 37, 7) 18px 18px,
|
1187 |
-
rgb(190, 37, 7) 19px 19px,
|
1188 |
-
rgb(190, 37, 7) 20px 20px,
|
1189 |
-
rgb(190, 37, 7) 21px 21px,
|
1190 |
-
rgb(190, 37, 7) 22px 22px,
|
1191 |
-
rgb(190, 37, 7) 23px 23px,
|
1192 |
-
rgb(190, 37, 7) 24px 24px,
|
1193 |
-
rgb(190, 37, 7) 25px 25px,
|
1194 |
-
rgb(190, 37, 7) 26px 26px,
|
1195 |
-
rgb(190, 37, 7) 27px 27px,
|
1196 |
-
rgb(190, 37, 7) 28px 28px,
|
1197 |
-
rgb(190, 37, 7) 29px 29px,
|
1198 |
-
rgb(190, 37, 7) 30px 30px;
|
1199 |
-
}
|
1200 |
-
|
1201 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-tumblr {
|
1202 |
-
background:#3C576C;
|
1203 |
-
border: 1px solid #1E3546;
|
1204 |
-
text-shadow:
|
1205 |
-
rgb(30, 53, 70) 1px 1px,
|
1206 |
-
rgb(30, 53, 70) 2px 2px,
|
1207 |
-
rgb(30, 53, 70) 3px 3px,
|
1208 |
-
rgb(30, 53, 70) 4px 4px,
|
1209 |
-
rgb(30, 53, 70) 5px 5px,
|
1210 |
-
rgb(30, 53, 70) 6px 6px,
|
1211 |
-
rgb(30, 53, 70) 7px 7px,
|
1212 |
-
rgb(30, 53, 70) 8px 8px,
|
1213 |
-
rgb(30, 53, 70) 9px 9px,
|
1214 |
-
rgb(30, 53, 70) 10px 10px,
|
1215 |
-
rgb(30, 53, 70) 11px 11px,
|
1216 |
-
rgb(30, 53, 70) 12px 12px,
|
1217 |
-
rgb(30, 53, 70) 13px 13px,
|
1218 |
-
rgb(30, 53, 70) 14px 14px,
|
1219 |
-
rgb(30, 53, 70) 15px 15px,
|
1220 |
-
rgb(30, 53, 70) 16px 16px,
|
1221 |
-
rgb(30, 53, 70) 17px 17px,
|
1222 |
-
rgb(30, 53, 70) 18px 18px,
|
1223 |
-
rgb(30, 53, 70) 19px 19px,
|
1224 |
-
rgb(30, 53, 70) 20px 20px,
|
1225 |
-
rgb(30, 53, 70) 21px 21px,
|
1226 |
-
rgb(30, 53, 70) 22px 22px,
|
1227 |
-
rgb(30, 53, 70) 23px 23px,
|
1228 |
-
rgb(30, 53, 70) 24px 24px,
|
1229 |
-
rgb(30, 53, 70) 25px 25px,
|
1230 |
-
rgb(30, 53, 70) 26px 26px,
|
1231 |
-
rgb(30, 53, 70) 27px 27px,
|
1232 |
-
rgb(30, 53, 70) 28px 28px,
|
1233 |
-
rgb(30, 53, 70) 29px 29px,
|
1234 |
-
rgb(30, 53, 70) 30px 30px;
|
1235 |
-
}
|
1236 |
-
|
1237 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-twitter {
|
1238 |
-
background:#00ACED;
|
1239 |
-
border: 1px solid #008AB8;
|
1240 |
-
text-shadow:
|
1241 |
-
rgb(0, 138, 184) 1px 1px,
|
1242 |
-
rgb(0, 138, 184) 2px 2px,
|
1243 |
-
rgb(0, 138, 184) 3px 3px,
|
1244 |
-
rgb(0, 138, 184) 4px 4px,
|
1245 |
-
rgb(0, 138, 184) 5px 5px,
|
1246 |
-
rgb(0, 138, 184) 6px 6px,
|
1247 |
-
rgb(0, 138, 184) 7px 7px,
|
1248 |
-
rgb(0, 138, 184) 8px 8px,
|
1249 |
-
rgb(0, 138, 184) 9px 9px,
|
1250 |
-
rgb(0, 138, 184) 10px 10px,
|
1251 |
-
rgb(0, 138, 184) 11px 11px,
|
1252 |
-
rgb(0, 138, 184) 12px 12px,
|
1253 |
-
rgb(0, 138, 184) 13px 13px,
|
1254 |
-
rgb(0, 138, 184) 14px 14px,
|
1255 |
-
rgb(0, 138, 184) 15px 15px,
|
1256 |
-
rgb(0, 138, 184) 16px 16px,
|
1257 |
-
rgb(0, 138, 184) 17px 17px,
|
1258 |
-
rgb(0, 138, 184) 18px 18px,
|
1259 |
-
rgb(0, 138, 184) 19px 19px,
|
1260 |
-
rgb(0, 138, 184) 20px 20px,
|
1261 |
-
rgb(0, 138, 184) 21px 21px,
|
1262 |
-
rgb(0, 138, 184) 22px 22px,
|
1263 |
-
rgb(0, 138, 184) 23px 23px,
|
1264 |
-
rgb(0, 138, 184) 24px 24px,
|
1265 |
-
rgb(0, 138, 184) 25px 25px,
|
1266 |
-
rgb(0, 138, 184) 26px 26px,
|
1267 |
-
rgb(0, 138, 184) 27px 27px,
|
1268 |
-
rgb(0, 138, 184) 28px 28px,
|
1269 |
-
rgb(0, 138, 184) 29px 29px,
|
1270 |
-
rgb(0, 138, 184) 30px 30px;
|
1271 |
-
}
|
1272 |
-
|
1273 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-vimeo {
|
1274 |
-
background:#006599;
|
1275 |
-
border: 1px solid #00496A;
|
1276 |
-
text-shadow:
|
1277 |
-
rgb(0, 73, 106) 1px 1px,
|
1278 |
-
rgb(0, 73, 106) 2px 2px,
|
1279 |
-
rgb(0, 73, 106) 3px 3px,
|
1280 |
-
rgb(0, 73, 106) 4px 4px,
|
1281 |
-
rgb(0, 73, 106) 5px 5px,
|
1282 |
-
rgb(0, 73, 106) 6px 6px,
|
1283 |
-
rgb(0, 73, 106) 7px 7px,
|
1284 |
-
rgb(0, 73, 106) 8px 8px,
|
1285 |
-
rgb(0, 73, 106) 9px 9px,
|
1286 |
-
rgb(0, 73, 106) 10px 10px,
|
1287 |
-
rgb(0, 73, 106) 11px 11px,
|
1288 |
-
rgb(0, 73, 106) 12px 12px,
|
1289 |
-
rgb(0, 73, 106) 13px 13px,
|
1290 |
-
rgb(0, 73, 106) 14px 14px,
|
1291 |
-
rgb(0, 73, 106) 15px 15px,
|
1292 |
-
rgb(0, 73, 106) 16px 16px,
|
1293 |
-
rgb(0, 73, 106) 17px 17px,
|
1294 |
-
rgb(0, 73, 106) 18px 18px,
|
1295 |
-
rgb(0, 73, 106) 19px 19px,
|
1296 |
-
rgb(0, 73, 106) 20px 20px,
|
1297 |
-
rgb(0, 73, 106) 21px 21px,
|
1298 |
-
rgb(0, 73, 106) 22px 22px,
|
1299 |
-
rgb(0, 73, 106) 23px 23px,
|
1300 |
-
rgb(0, 73, 106) 24px 24px,
|
1301 |
-
rgb(0, 73, 106) 25px 25px,
|
1302 |
-
rgb(0, 73, 106) 26px 26px,
|
1303 |
-
rgb(0, 73, 106) 27px 27px,
|
1304 |
-
rgb(0, 73, 106) 28px 28px,
|
1305 |
-
rgb(0, 73, 106) 29px 29px,
|
1306 |
-
rgb(0, 73, 106) 30px 30px;
|
1307 |
-
}
|
1308 |
-
|
1309 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-windows {
|
1310 |
-
background:#00ADEF;
|
1311 |
-
border: 1px solid #038BBC;
|
1312 |
-
text-shadow:
|
1313 |
-
rgb(3, 139, 188) 1px 1px,
|
1314 |
-
rgb(3, 139, 188) 2px 2px,
|
1315 |
-
rgb(3, 139, 188) 3px 3px,
|
1316 |
-
rgb(3, 139, 188) 4px 4px,
|
1317 |
-
rgb(3, 139, 188) 5px 5px,
|
1318 |
-
rgb(3, 139, 188) 6px 6px,
|
1319 |
-
rgb(3, 139, 188) 7px 7px,
|
1320 |
-
rgb(3, 139, 188) 8px 8px,
|
1321 |
-
rgb(3, 139, 188) 9px 9px,
|
1322 |
-
rgb(3, 139, 188) 10px 10px,
|
1323 |
-
rgb(3, 139, 188) 11px 11px,
|
1324 |
-
rgb(3, 139, 188) 12px 12px,
|
1325 |
-
rgb(3, 139, 188) 13px 13px,
|
1326 |
-
rgb(3, 139, 188) 14px 14px,
|
1327 |
-
rgb(3, 139, 188) 15px 15px,
|
1328 |
-
rgb(3, 139, 188) 16px 16px,
|
1329 |
-
rgb(3, 139, 188) 17px 17px,
|
1330 |
-
rgb(3, 139, 188) 18px 18px,
|
1331 |
-
rgb(3, 139, 188) 19px 19px,
|
1332 |
-
rgb(3, 139, 188) 20px 20px,
|
1333 |
-
rgb(3, 139, 188) 21px 21px,
|
1334 |
-
rgb(3, 139, 188) 22px 22px,
|
1335 |
-
rgb(3, 139, 188) 23px 23px,
|
1336 |
-
rgb(3, 139, 188) 24px 24px,
|
1337 |
-
rgb(3, 139, 188) 25px 25px,
|
1338 |
-
rgb(3, 139, 188) 26px 26px,
|
1339 |
-
rgb(3, 139, 188) 27px 27px,
|
1340 |
-
rgb(3, 139, 188) 28px 28px,
|
1341 |
-
rgb(3, 139, 188) 29px 29px,
|
1342 |
-
rgb(3, 139, 188) 30px 30px;
|
1343 |
-
}
|
1344 |
-
|
1345 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-wordpress {
|
1346 |
-
background:#21759A;
|
1347 |
-
border: 1px solid #0F607E;
|
1348 |
-
text-shadow:
|
1349 |
-
rgb(15, 96, 126) 1px 1px,
|
1350 |
-
rgb(15, 96, 126) 2px 2px,
|
1351 |
-
rgb(15, 96, 126) 3px 3px,
|
1352 |
-
rgb(15, 96, 126) 4px 4px,
|
1353 |
-
rgb(15, 96, 126) 5px 5px,
|
1354 |
-
rgb(15, 96, 126) 6px 6px,
|
1355 |
-
rgb(15, 96, 126) 7px 7px,
|
1356 |
-
rgb(15, 96, 126) 8px 8px,
|
1357 |
-
rgb(15, 96, 126) 9px 9px,
|
1358 |
-
rgb(15, 96, 126) 10px 10px,
|
1359 |
-
rgb(15, 96, 126) 11px 11px,
|
1360 |
-
rgb(15, 96, 126) 12px 12px,
|
1361 |
-
rgb(15, 96, 126) 13px 13px,
|
1362 |
-
rgb(15, 96, 126) 14px 14px,
|
1363 |
-
rgb(15, 96, 126) 15px 15px,
|
1364 |
-
rgb(15, 96, 126) 16px 16px,
|
1365 |
-
rgb(15, 96, 126) 17px 17px,
|
1366 |
-
rgb(15, 96, 126) 18px 18px,
|
1367 |
-
rgb(15, 96, 126) 19px 19px,
|
1368 |
-
rgb(15, 96, 126) 20px 20px,
|
1369 |
-
rgb(15, 96, 126) 21px 21px,
|
1370 |
-
rgb(15, 96, 126) 22px 22px,
|
1371 |
-
rgb(15, 96, 126) 23px 23px,
|
1372 |
-
rgb(15, 96, 126) 24px 24px,
|
1373 |
-
rgb(15, 96, 126) 25px 25px,
|
1374 |
-
rgb(15, 96, 126) 26px 26px,
|
1375 |
-
rgb(15, 96, 126) 27px 27px,
|
1376 |
-
rgb(15, 96, 126) 28px 28px,
|
1377 |
-
rgb(15, 96, 126) 29px 29px,
|
1378 |
-
rgb(15, 96, 126) 30px 30px;
|
1379 |
-
}
|
1380 |
-
|
1381 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-yahoo {
|
1382 |
-
background:#4101AF;
|
1383 |
-
border: 1px solid #290074;
|
1384 |
-
text-shadow:
|
1385 |
-
rgb(41, 0, 116) 1px 1px,
|
1386 |
-
rgb(41, 0, 116) 2px 2px,
|
1387 |
-
rgb(41, 0, 116) 3px 3px,
|
1388 |
-
rgb(41, 0, 116) 4px 4px,
|
1389 |
-
rgb(41, 0, 116) 5px 5px,
|
1390 |
-
rgb(41, 0, 116) 6px 6px,
|
1391 |
-
rgb(41, 0, 116) 7px 7px,
|
1392 |
-
rgb(41, 0, 116) 8px 8px,
|
1393 |
-
rgb(41, 0, 116) 9px 9px,
|
1394 |
-
rgb(41, 0, 116) 10px 10px,
|
1395 |
-
rgb(41, 0, 116) 11px 11px,
|
1396 |
-
rgb(41, 0, 116) 12px 12px,
|
1397 |
-
rgb(41, 0, 116) 13px 13px,
|
1398 |
-
rgb(41, 0, 116) 14px 14px,
|
1399 |
-
rgb(41, 0, 116) 15px 15px,
|
1400 |
-
rgb(41, 0, 116) 16px 16px,
|
1401 |
-
rgb(41, 0, 116) 17px 17px,
|
1402 |
-
rgb(41, 0, 116) 18px 18px,
|
1403 |
-
rgb(41, 0, 116) 19px 19px,
|
1404 |
-
rgb(41, 0, 116) 20px 20px,
|
1405 |
-
rgb(41, 0, 116) 21px 21px,
|
1406 |
-
rgb(41, 0, 116) 22px 22px,
|
1407 |
-
rgb(41, 0, 116) 23px 23px,
|
1408 |
-
rgb(41, 0, 116) 24px 24px,
|
1409 |
-
rgb(41, 0, 116) 25px 25px,
|
1410 |
-
rgb(41, 0, 116) 26px 26px,
|
1411 |
-
rgb(41, 0, 116) 27px 27px,
|
1412 |
-
rgb(41, 0, 116) 28px 28px,
|
1413 |
-
rgb(41, 0, 116) 29px 29px,
|
1414 |
-
rgb(41, 0, 116) 30px 30px;
|
1415 |
-
}
|
1416 |
-
|
1417 |
-
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-youtube {
|
1418 |
-
background:#E52C27;
|
1419 |
-
border: 1px solid #BE0707;
|
1420 |
-
text-shadow:
|
1421 |
-
rgb(190, 7, 7) 1px 1px,
|
1422 |
-
rgb(190, 7, 7) 2px 2px,
|
1423 |
-
rgb(190, 7, 7) 3px 3px,
|
1424 |
-
rgb(190, 7, 7) 4px 4px,
|
1425 |
-
rgb(190, 7, 7) 5px 5px,
|
1426 |
-
rgb(190, 7, 7) 6px 6px,
|
1427 |
-
rgb(190, 7, 7) 7px 7px,
|
1428 |
-
rgb(190, 7, 7) 8px 8px,
|
1429 |
-
rgb(190, 7, 7) 9px 9px,
|
1430 |
-
rgb(190, 7, 7) 10px 10px,
|
1431 |
-
rgb(190, 7, 7) 11px 11px,
|
1432 |
-
rgb(190, 7, 7) 12px 12px,
|
1433 |
-
rgb(190, 7, 7) 13px 13px,
|
1434 |
-
rgb(190, 7, 7) 14px 14px,
|
1435 |
-
rgb(190, 7, 7) 15px 15px,
|
1436 |
-
rgb(190, 7, 7) 16px 16px,
|
1437 |
-
rgb(190, 7, 7) 17px 17px,
|
1438 |
-
rgb(190, 7, 7) 18px 18px,
|
1439 |
-
rgb(190, 7, 7) 19px 19px,
|
1440 |
-
rgb(190, 7, 7) 20px 20px,
|
1441 |
-
rgb(190, 7, 7) 21px 21px,
|
1442 |
-
rgb(190, 7, 7) 22px 22px,
|
1443 |
-
rgb(190, 7, 7) 23px 23px,
|
1444 |
-
rgb(190, 7, 7) 24px 24px,
|
1445 |
-
rgb(190, 7, 7) 25px 25px,
|
1446 |
-
rgb(190, 7, 7) 26px 26px,
|
1447 |
-
rgb(190, 7, 7) 27px 27px,
|
1448 |
-
rgb(190, 7, 7) 28px 28px,
|
1449 |
-
rgb(190, 7, 7) 29px 29px,
|
1450 |
-
rgb(190, 7, 7) 30px 30px;
|
1451 |
-
}
|
1452 |
-
|
1453 |
-
/* - GLOBAL MEDIA QUERIES
|
1454 |
-
-------------------------------------------------------------- */
|
1455 |
-
@media screen and (max-width: 480px) {
|
1456 |
-
|
1457 |
-
.saboxplugin-wrap {
|
1458 |
-
text-align: center;
|
1459 |
-
}
|
1460 |
-
|
1461 |
-
.saboxplugin-wrap .saboxplugin-gravatar {
|
1462 |
-
float: none;
|
1463 |
-
padding: 20px 0;
|
1464 |
-
text-align: center;
|
1465 |
-
margin: 0 auto;
|
1466 |
-
display:block;
|
1467 |
-
}
|
1468 |
-
.saboxplugin-wrap .saboxplugin-gravatar img {
|
1469 |
-
float:none;
|
1470 |
-
display:inline-block;
|
1471 |
-
display:-moz-inline-stack;
|
1472 |
-
vertical-align:middle;
|
1473 |
-
*vertical-align:auto;
|
1474 |
-
zoom:1;
|
1475 |
-
*display:inline;
|
1476 |
-
}
|
1477 |
-
|
1478 |
-
.saboxplugin-wrap .saboxplugin-desc {
|
1479 |
-
margin: 0 10px 20px;
|
1480 |
-
text-align: center;
|
1481 |
-
}
|
1482 |
-
|
1483 |
-
.saboxplugin-wrap .saboxplugin-authorname {
|
1484 |
-
text-align: center;
|
1485 |
-
margin:10px 0 20px;
|
1486 |
-
}
|
1487 |
-
.saboxplugin-wrap .saboxplugin-socials {
|
1488 |
-
|
1489 |
-
}
|
1490 |
-
.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color,
|
1491 |
-
.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey {
|
1492 |
-
margin: 15px 5px;
|
1493 |
-
}
|
1494 |
-
|
1495 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
css/dev/simple-author-box.css
CHANGED
@@ -344,6 +344,16 @@
|
|
344 |
content:'\f168';
|
345 |
}
|
346 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
347 |
/* COLORED BACKGROUND AND LONG SHADOW EFFECT FOR SOCIAL ICONS
|
348 |
-------------------------------------------------------------- */
|
349 |
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-addthis {
|
344 |
content:'\f168';
|
345 |
}
|
346 |
|
347 |
+
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-mixcloud:before,
|
348 |
+
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-mixcloud:before {
|
349 |
+
content: '\f289';
|
350 |
+
}
|
351 |
+
|
352 |
+
.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-goodreads:before,
|
353 |
+
.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-goodreads:before {
|
354 |
+
content: '\f2a6';
|
355 |
+
}
|
356 |
+
|
357 |
/* COLORED BACKGROUND AND LONG SHADOW EFFECT FOR SOCIAL ICONS
|
358 |
-------------------------------------------------------------- */
|
359 |
.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-addthis {
|
css/sabox-admin-style-rtl.min.css
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
body{direction:rtl;unicode-bidi:embed}.wp-core-ui .button-primary,.wp-core-ui .button-secondary,.wrap .saboxplugin .wp-core-ui .button{font-size:16px;height:42px;border-style:none;line-height:36px;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.wrap .saboxplugin p{color:#777;line-height:1.6}.wrap .saboxplugin p.description{margin:20px 0 5px}.wrap .saboxplugin ::-moz-selection{background:#80828F;color:#fff}.wrap .saboxplugin ::selection{background:#80828F;color:#fff}.wrap .saboxplugin #saboxplugin-hide{border-top:1px dashed #E1E1E1;margin:1.5em 0;display:none}.wrap .saboxplugin .saboxplugin-border{border-bottom:1px dashed #E1E1E1;margin:2em 0}.wrap .saboxplugin #poststuff h2{font-size:26px;padding:9px 15px 20px 0;font-weight:700}.wrap .saboxplugin h3{font-size:24px;padding:9px 15px 20px 0;font-weight:700;color:#444}.wrap .saboxplugin #poststuff h3{font-size:24px;padding:8px 20px}.wrap .saboxplugin #poststuff .inside{margin:26px 0 0}.wrap .saboxplugin .handlediv{color:#80828F}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{left:20px;font:400 30px/1.2 dashicons;padding:8px 0;content:"\f343"}.wrap .saboxplugin .meta-box-sortables .postbox.closed .handlediv:before{content:"\f347"}.wrap .saboxplugin .postbox .inside{padding:0 40px 12px}.wrap .saboxplugin label{cursor:default}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4,.wrap .saboxplugin .sabox-inline-slide .sabox-amount5,.wrap .saboxplugin .sabox-inline-slide .sabox-amount6{background-color:transparent;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;font-size:24px;color:#666;vertical-align:text-bottom}.wrap .saboxplugin .sabox-inline-slide .sabox-slider,.wrap .saboxplugin .sabox-inline-slide .sabox-slider2,.wrap .saboxplugin .sabox-inline-slide .sabox-slider3,.wrap .saboxplugin .sabox-inline-slide .sabox-slider4,.wrap .saboxplugin .sabox-inline-slide .sabox-slider5,.wrap .saboxplugin .sabox-inline-slide .sabox-slider6{width:40%;margin:20px 0}.wrap .saboxplugin .sabox-inline-slide .ui-state-default,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default{border:1px solid #73C77B;background-color:#8CE196;font-weight:400;color:#555;outline:0;cursor:pointer}.wrap .saboxplugin .sabox-inline-slide .ui-state-default:before,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default:before,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default:before{content:"\2630";display:inline-block;-webkit-font-smoothing:antialiased;color:#fff;font-weight:700;text-shadow:0 1px #73C77B;line-height:1.8}.wrap .saboxplugin .sabox-inline-slide .ui-state-default a,.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:link,.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:visited{color:#fff;text-decoration:none}.wrap .saboxplugin .sabox-inline-slide .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-state-hover,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-hover,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-hover{background:#9BEBA3}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-left,.wrap .saboxplugin .sabox-inline-slide .ui-corner-tl,.wrap .saboxplugin .sabox-inline-slide .ui-corner-top{border-top-left-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-right,.wrap .saboxplugin .sabox-inline-slide .ui-corner-top,.wrap .saboxplugin .sabox-inline-slide .ui-corner-tr{border-top-right-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,.wrap .saboxplugin .sabox-inline-slide .ui-corner-br,.wrap .saboxplugin .sabox-inline-slide .ui-corner-right{border-bottom-right-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bl,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,.wrap .saboxplugin .sabox-inline-slide .ui-corner-left{border-bottom-left-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-slider-horizontal{height:1.3em}.wrap .saboxplugin .sabox-inline-slide .ui-slider .ui-slider-handle{width:1.8em;height:1.8em;cursor:pointer;text-align:center}.wrap .saboxplugin .sabox-inline-slide .ui-widget-content{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);border:1px solid #B2BFCA;background:#F1F2F7;color:#222}.wp-color-result,.wrap .saboxplugin .wp-color-result:after{border-radius:0;-webkit-box-shadow:none!important;-moz-box-shadow:none!important;box-shadow:none!important;outline:0}.wrap .saboxplugin .wp-color-result:after{font-size:12px;border-right:1px solid #D3D6DB;line-height:42px;padding:0 7.5px}.wrap .saboxplugin .wp-color-result{border:1px solid #D3D6DB;height:42px;padding-right:40px;outline:0;background-color:#D3D6DB}.wrap .saboxplugin .wp-color-result:hover:after{border-color:#AFAEAE;border-right:1px solid #D3D6DB}.wrap .saboxplugin .wp-picker-container .button{color:#FFF;background-color:#80828F;border:none;height:44px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-radius:0;padding:0 15px 1px}.wrap .saboxplugin .wp-picker-container input.wp-color-picker[type=text]{height:44px}.wrap .saboxplugin .saboxplugin-icon:before{content:"\f336";display:inline-block;-webkit-font-smoothing:antialiased;font:50px/0.6 dashicons;vertical-align:top;color:#FA5148;padding-right:5px}.wrap .saboxplugin textarea[name=saboxplugin]{resize:none;border:none;background-color:#FFF;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;color:#777;padding:0;font-size:13px;line-height:1.4;overflow:hidden;width:99%}.wrap .saboxplugin .saboxplugin-question{display:inline-block;vertical-align:middle;padding:10px 0;font-size:24px;margin-left:40px;color:#666;width:100%;max-width:700px;min-width:247px;line-height:1.6}.wrap .saboxplugin .saboxplugin-switch{display:inline-block;vertical-align:top;padding:10px 0}.wrap .saboxplugin .sab-toggle{position:absolute;margin-left:-9999px;visibility:hidden}.wrap .saboxplugin .sab-toggle+label{display:block;position:relative;cursor:pointer;outline:0;user-select:none}.wrap .saboxplugin input.sab-toggle-yes-no+label{padding:2px;width:120px;height:40px}.wrap .saboxplugin input.sab-toggle-yes-no+label:after,.wrap .saboxplugin input.sab-toggle-yes-no+label:before{display:block;position:absolute;top:0;left:0;bottom:0;right:0;color:#fff;font-family:"Open Sans",serif;font-size:20px;text-align:center;line-height:42px}.wrap .saboxplugin input.sab-toggle-yes-no+label:before{background-color:#D3D6DB;content:attr(data-off);transition:transform .5s;backface-visibility:hidden}.wrap .saboxplugin input.sab-toggle-yes-no+label:after{background-color:#8CE196;content:attr(data-on);transition:transform .5s;transform:rotateY(180deg);backface-visibility:hidden}.wrap .saboxplugin input.sab-toggle-yes-no:checked+label:before{transform:rotateY(180deg)}.wrap .saboxplugin input.sab-toggle-yes-no:checked+label:after{transform:rotateY(0)}.wrap .saboxplugin .sab-title-div{height:50px;clear:both}.wrap .saboxplugin .sab-title-div .sab-title{font-size:18px;line-height:26px;padding-top:16px;padding-right:15px;display:block;float:left}.wrap .saboxplugin .sab-box{background:#fff;border:1px solid #E5E5E5;box-shadow:0 1px 1px rgba(0,0,0,.04);padding:15px;margin-top:40px;position:relative;overflow:hidden}.wrap .saboxplugin .sab-box p{margin:5px 0 5px 70px;color:#777}.wrap .saboxplugin .sab-box-legend,.wrap .saboxplugin .sab-box-version{position:absolute;right:0;top:0;height:100%}.wrap .saboxplugin .sab-box-version{background:none repeat scroll 0 0 #80828F;padding:10px 15px}.wrap .saboxplugin .sab-icon-help,.wrap .saboxplugin .sab-icon-version{color:#FFF;font-size:25px}.wrap .saboxplugin .sab-infos{display:block;margin:0 auto;padding-right:70px;font-weight:700;color:#777}.wrap .saboxplugin .sab-infos span{color:#777;font-weight:400}.wrap .saboxplugin .sab-infos-title{font-weight:700;color:#777}.wrap .saboxplugin .sab-icon-version:before{content:"\f348";display:inline-block;-webkit-font-smoothing:antialiased;font:400 30px/1.5 dashicons;vertical-align:top}.clearfix:after,.clearfix:before{content:' ';display:table;line-height:0;clear:both}.ie7 .clearfix{zoom:1}@media (min-width:900px) and (max-width:1199px){.wrap .saboxplugin .saboxplugin-question{max-width:480px;font-size:20px}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{font-size:20px}.wrap .saboxplugin .postbox .inside{padding:0 20px 12px}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{left:40px}}@media screen and (max-width:899px){.wrap .saboxplugin .saboxplugin-question{font-size:18px;line-height:2}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{font-size:18px}.wrap .saboxplugin .saboxplugin-question{max-width:1000px;text-align:right;min-width:100px}.wrap .saboxplugin .saboxplugin-switch{display:block}.wrap .saboxplugin input.sab-toggle-yes-no+label{width:auto}.wrap .saboxplugin textarea[name=saboxplugin]{width:100%;height:60px;text-align:center}.wrap .saboxplugin p.description{text-align:center}.wrap .saboxplugin .postbox .inside{padding:0 20px 12px}.wrap .saboxplugin .sabox-inline-slide .ui-widget-content{width:100%}}@media screen and (max-width:783px){.wrap .saboxplugin #poststuff h2{font-size:26px;padding:0 15px 0 0}.wrap .saboxplugin .saboxplugin-icon:before{font:40px/0.8 dashicons}.wp-core-ui .button{padding:0 14px}.wrap .saboxplugin #poststuff .inside{margin:0}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{left:12px;font:400 20px/1.2 dashicons;padding:8px 10px}.wrap .saboxplugin #poststuff h3{font-size:20px}.wrap .saboxplugin .saboxplugin-question{font-size:18px}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{vertical-align:baseline}}@media screen and (max-width:700px){.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4,.wrap .saboxplugin .saboxplugin-question{font-size:16px}}@media screen and (max-width:600px){.wrap .saboxplugin .saboxplugin-question{text-align:center;line-height:1.2}.wrap .saboxplugin .saboxplugin-switch{text-align:center}.wrap .saboxplugin .saboxplugin-border{margin:0}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{text-align:center}}
|
|
css/sabox-admin-style.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.wp-core-ui .button-primary,.wp-core-ui .button-secondary,.wrap .saboxplugin .wp-core-ui .button{font-size:16px;height:42px;border-style:none;line-height:36px;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.wrap .saboxplugin p{color:#777;line-height:1.6}.wrap .saboxplugin p.description{margin:20px 0 5px}.wrap .saboxplugin ::-moz-selection{background:#80828F;color:#fff}.wrap .saboxplugin ::selection{background:#80828F;color:#fff}.wrap .saboxplugin #saboxplugin-hide{border-top:1px dashed #E1E1E1;margin:1.5em 0;display:none}.wrap .saboxplugin .saboxplugin-border{border-bottom:1px dashed #E1E1E1;margin:2em 0}.wrap .saboxplugin #poststuff h2{font-size:26px;padding:9px 15px 20px 0;font-weight:700}.wrap .saboxplugin h3{font-size:24px;padding:9px 15px 20px 0;font-weight:700;color:#444}.wrap .saboxplugin #poststuff h3{font-size:24px;padding:8px 20px}.wrap .saboxplugin #poststuff .inside{margin:26px 0 0}.wrap .saboxplugin .handlediv{color:#80828F}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{right:20px;font:400 30px/1.2 dashicons;padding:8px 0;content:"\f343"}.wrap .saboxplugin .meta-box-sortables .postbox.closed .handlediv:before{content:"\f347"}.wrap .saboxplugin .postbox .inside{padding:0 40px 12px}.wrap .saboxplugin label{cursor:default}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4,.wrap .saboxplugin .sabox-inline-slide .sabox-amount5,.wrap .saboxplugin .sabox-inline-slide .sabox-amount6{background-color:transparent;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;font-size:24px;color:#666}.wrap .saboxplugin .sabox-inline-slide .sabox-slider,.wrap .saboxplugin .sabox-inline-slide .sabox-slider2,.wrap .saboxplugin .sabox-inline-slide .sabox-slider3,.wrap .saboxplugin .sabox-inline-slide .sabox-slider4,.wrap .saboxplugin .sabox-inline-slide .sabox-slider5,.wrap .saboxplugin .sabox-inline-slide .sabox-slider6{width:40%;margin:20px 0}.wrap .saboxplugin .sabox-inline-slide .ui-state-default,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default{border:1px solid #73C77B;background-color:#8CE196;font-weight:400;color:#555;outline:0;cursor:pointer}.wrap .saboxplugin .sabox-inline-slide .ui-state-default:before,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default:before,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default:before{content:"\2630";display:inline-block;-webkit-font-smoothing:antialiased;color:#fff;font-weight:700;text-shadow:0 1px #73C77B;line-height:1.8}.wrap .saboxplugin .sabox-inline-slide .ui-state-default a,.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:link,.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:visited{color:#fff;text-decoration:none}.wrap .saboxplugin .sabox-inline-slide .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-state-hover,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-hover,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-hover{background:#9BEBA3}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-left,.wrap .saboxplugin .sabox-inline-slide .ui-corner-tl,.wrap .saboxplugin .sabox-inline-slide .ui-corner-top{border-top-left-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-right,.wrap .saboxplugin .sabox-inline-slide .ui-corner-top,.wrap .saboxplugin .sabox-inline-slide .ui-corner-tr{border-top-right-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,.wrap .saboxplugin .sabox-inline-slide .ui-corner-br,.wrap .saboxplugin .sabox-inline-slide .ui-corner-right{border-bottom-right-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bl,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,.wrap .saboxplugin .sabox-inline-slide .ui-corner-left{border-bottom-left-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-slider-horizontal{height:1.3em}.wrap .saboxplugin .sabox-inline-slide .ui-slider .ui-slider-handle{width:1.8em;height:1.8em;cursor:pointer;text-align:center}.wrap .saboxplugin .sabox-inline-slide .ui-widget-content{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);border:1px solid #B2BFCA;background:#F1F2F7;color:#222}.wp-color-result,.wrap .saboxplugin .wp-color-result:after{border-radius:0;-webkit-box-shadow:none!important;-moz-box-shadow:none!important;box-shadow:none!important;outline:0}.wrap .saboxplugin .wp-color-result:after{font-size:12px;border-left:1px solid #D3D6DB;line-height:42px;padding:0 7.5px}.wrap .saboxplugin .wp-color-result{border:1px solid #D3D6DB;height:42px;padding-left:40px;outline:0;background-color:#D3D6DB}.wrap .saboxplugin .wp-color-result:hover:after{border-color:#AFAEAE;border-left:1px solid #D3D6DB}.wrap .saboxplugin .wp-picker-container .button{color:#FFF;background-color:#80828F;border:none;height:44px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-radius:0;padding:0 15px 1px}.wrap .saboxplugin .wp-picker-container input.wp-color-picker[type=text]{height:44px}.wrap .saboxplugin .saboxplugin-icon:before{content:"\f336";display:inline-block;-webkit-font-smoothing:antialiased;font:50px/0.6 dashicons;vertical-align:top;color:#FA5148;padding-right:5px}.wrap .saboxplugin textarea[name=saboxplugin]{resize:none;border:none;background-color:#FFF;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;color:#777;padding:0;font-size:13px;line-height:1.4;overflow:hidden;width:99%}.wrap .saboxplugin .saboxplugin-question{display:inline-block;vertical-align:middle;padding:10px 0;font-size:24px;margin-right:40px;color:#666;width:100%;max-width:700px;min-width:247px;line-height:1.6}.wrap .saboxplugin .saboxplugin-switch{display:inline-block;vertical-align:top;padding:10px 0}.wrap .saboxplugin .sab-toggle{position:absolute;margin-left:-9999px;visibility:hidden}.wrap .saboxplugin .sab-toggle+label{display:block;position:relative;cursor:pointer;outline:0;user-select:none}.wrap .saboxplugin input.sab-toggle-yes-no+label{padding:2px;width:120px;height:40px}.wrap .saboxplugin input.sab-toggle-yes-no+label:after,.wrap .saboxplugin input.sab-toggle-yes-no+label:before{display:block;position:absolute;top:0;left:0;bottom:0;right:0;color:#fff;font-family:"Open Sans",serif;font-size:20px;text-align:center;line-height:42px}.wrap .saboxplugin input.sab-toggle-yes-no+label:before{background-color:#D3D6DB;content:attr(data-off);transition:transform .5s;backface-visibility:hidden}.wrap .saboxplugin input.sab-toggle-yes-no+label:after{background-color:#8CE196;content:attr(data-on);transition:transform .5s;transform:rotateY(180deg);backface-visibility:hidden}.wrap .saboxplugin input.sab-toggle-yes-no:checked+label:before{transform:rotateY(180deg)}.wrap .saboxplugin input.sab-toggle-yes-no:checked+label:after{transform:rotateY(0)}.wrap .saboxplugin .sab-title-div{height:50px;clear:both}.wrap .saboxplugin .sab-title-div .sab-title{font-size:18px;line-height:26px;padding-top:16px;padding-right:15px;display:block;float:left}.wrap .saboxplugin .sab-box{background:#fff;border:1px solid #E5E5E5;box-shadow:0 1px 1px rgba(0,0,0,.04);padding:15px;margin-top:40px;position:relative;overflow:hidden}.wrap .saboxplugin .sab-box p{margin:5px 0 5px 70px;color:#777}.wrap .saboxplugin .sab-box-legend,.wrap .saboxplugin .sab-box-version{position:absolute;left:0;top:0;height:100%}.wrap .saboxplugin .sab-box-version{background:none repeat scroll 0 0 #80828F;padding:10px 15px}.wrap .saboxplugin .sab-icon-help,.wrap .saboxplugin .sab-icon-version{color:#FFF;font-size:25px}.wrap .saboxplugin .sab-infos{display:block;margin:0 auto;padding-left:70px;font-weight:700;color:#777}.wrap .saboxplugin .sab-infos span{color:#777;font-weight:400}.wrap .saboxplugin .sab-infos-title{font-weight:700;color:#777}.wrap .saboxplugin .sab-icon-version:before{content:"\f348";display:inline-block;-webkit-font-smoothing:antialiased;font:400 30px/1.5 dashicons;vertical-align:top}.clearfix:after,.clearfix:before{content:' ';display:table;line-height:0;clear:both}.ie7 .clearfix{zoom:1}@media (min-width:900px) and (max-width:1199px){.wrap .saboxplugin .saboxplugin-question{max-width:480px;font-size:20px}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{font-size:20px}.wrap .saboxplugin .postbox .inside{padding:0 20px 12px}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{right:40px}}@media screen and (max-width:899px){.wrap .saboxplugin .saboxplugin-question{font-size:18px;line-height:2}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{font-size:18px}.wrap .saboxplugin .saboxplugin-question{max-width:1000px;text-align:left;min-width:100px}.wrap .saboxplugin .saboxplugin-switch{display:block}.wrap .saboxplugin input.sab-toggle-yes-no+label{width:auto}.wrap .saboxplugin textarea[name=saboxplugin]{width:100%;height:60px;text-align:center}.wrap .saboxplugin p.description{text-align:center}.wrap .saboxplugin .postbox .inside{padding:0 20px 12px}.wrap .saboxplugin .sabox-inline-slide .ui-widget-content{width:100%}}@media screen and (max-width:783px){.wrap .saboxplugin #poststuff h2{font-size:26px;padding:0 15px 0 0}.wrap .saboxplugin .saboxplugin-icon:before{font:40px/0.8 dashicons}.wp-core-ui .button{padding:0 14px}.wrap .saboxplugin #poststuff .inside{margin:0}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{right:12px;font:400 20px/1.2 dashicons;padding:8px 10px}.wrap .saboxplugin #poststuff h3{font-size:20px}.wrap .saboxplugin .saboxplugin-question{font-size:18px}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{vertical-align:baseline}}@media screen and (max-width:700px){.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4,.wrap .saboxplugin .saboxplugin-question{font-size:16px}}@media screen and (max-width:600px){.wrap .saboxplugin .saboxplugin-question{text-align:center;line-height:1.2}.wrap .saboxplugin .saboxplugin-switch{text-align:center}.wrap .saboxplugin .saboxplugin-border{margin:0}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{text-align:center}}
|
1 |
+
.wrap .saboxplugin{max-width:960px}.wrap .saboxplugin p.description{margin:20px 0 5px}.wrap .saboxplugin ::-moz-selection{background:#80828F;color:#fff}.wrap .saboxplugin ::selection{background:#80828F;color:#fff}.wrap .saboxplugin #saboxplugin-hide{border-top:1px dashed #E1E1E1;margin:1.5em 0;display:none}.wrap .saboxplugin .saboxplugin-border{border-bottom:1px dashed #E1E1E1;margin:2em 0}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4,.wrap .saboxplugin .sabox-inline-slide .sabox-amount5,.wrap .saboxplugin .sabox-inline-slide .sabox-amount6{background-color:transparent;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;font-size:24px;color:#666}.wrap .saboxplugin .sabox-inline-slide .sabox-slider,.wrap .saboxplugin .sabox-inline-slide .sabox-slider2,.wrap .saboxplugin .sabox-inline-slide .sabox-slider3,.wrap .saboxplugin .sabox-inline-slide .sabox-slider4,.wrap .saboxplugin .sabox-inline-slide .sabox-slider5,.wrap .saboxplugin .sabox-inline-slide .sabox-slider6{width:40%;margin:20px 0}.wrap .saboxplugin .sabox-inline-slide .ui-state-default,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default{border:1px solid #73C77B;background-color:#8CE196;font-weight:400;color:#555;outline:0;cursor:pointer}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bl,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,.wrap .saboxplugin .sabox-inline-slide .ui-corner-left{border-bottom-left-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-state-default:before,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-default:before,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-default:before{content:"\2630";display:inline-block;-webkit-font-smoothing:antialiased;color:#fff;font-weight:700;text-shadow:0 1px #73C77B;line-height:1.8}.wrap .saboxplugin .sabox-inline-slide .ui-state-default a,.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:link,.wrap .saboxplugin .sabox-inline-slide .ui-state-default a:visited{color:#fff;text-decoration:none}.wrap .saboxplugin .sabox-inline-slide .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-state-hover,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-widget-content .ui-state-hover,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-focus,.wrap .saboxplugin .sabox-inline-slide .ui-widget-header .ui-state-hover{background:#9BEBA3}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-left,.wrap .saboxplugin .sabox-inline-slide .ui-corner-tl,.wrap .saboxplugin .sabox-inline-slide .ui-corner-top{border-top-left-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-right,.wrap .saboxplugin .sabox-inline-slide .ui-corner-top,.wrap .saboxplugin .sabox-inline-slide .ui-corner-tr{border-top-right-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-corner-all,.wrap .saboxplugin .sabox-inline-slide .ui-corner-bottom,.wrap .saboxplugin .sabox-inline-slide .ui-corner-br,.wrap .saboxplugin .sabox-inline-slide .ui-corner-right{border-bottom-right-radius:0}.wrap .saboxplugin .sabox-inline-slide .ui-slider-horizontal{height:1.3em}.wrap .saboxplugin .sabox-inline-slide .ui-slider .ui-slider-handle{width:1.8em;height:1.8em;cursor:pointer;text-align:center}.wrap .saboxplugin .sabox-inline-slide .ui-widget-content{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);border:1px solid #B2BFCA;background:#F1F2F7;color:#222}.wp-color-result,.wrap .saboxplugin .wp-color-result:after{border-radius:0;-webkit-box-shadow:none!important;-moz-box-shadow:none!important;box-shadow:none!important;outline:0}.wrap .saboxplugin .wp-color-result:after{font-size:12px;border-left:1px solid #D3D6DB;line-height:42px;padding:0 7.5px}.wrap .saboxplugin .wp-color-result{border:1px solid #D3D6DB;height:42px;padding-left:40px;outline:0;background-color:#D3D6DB}.wrap .saboxplugin .wp-color-result:hover:after{border-color:#AFAEAE;border-left:1px solid #D3D6DB}.wrap .saboxplugin .wp-picker-container .button{color:#FFF;background-color:#80828F;border:none;height:44px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-radius:0;padding:0 15px 1px}.wrap .saboxplugin .wp-picker-container input.wp-color-picker[type=text]{height:44px}.wrap .saboxplugin .saboxplugin-icon:before{content:"\f336";display:inline-block;-webkit-font-smoothing:antialiased;font:50px/.6 dashicons;vertical-align:middle;color:#FA5148;padding-right:5px}.wrap .saboxplugin textarea[name=saboxplugin]{resize:none;border:none;background-color:#FFF;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;color:#777;padding:0;font-size:13px;line-height:1.4;overflow:hidden;width:99%}.wrap .saboxplugin .saboxplugin-question{display:inline-block;vertical-align:middle;padding:10px 0;margin-right:40px;color:#666;width:100%;max-width:700px;min-width:247px;line-height:1.6;font-size:18px}.wrap .saboxplugin .saboxplugin-switch{display:inline-block;vertical-align:top;padding:10px 0}.wrap .saboxplugin .sab-toggle{position:absolute;margin-left:-9999px;visibility:hidden}.wrap .saboxplugin .sab-toggle+label{display:block;position:relative;cursor:pointer;outline:0;user-select:none}.wrap .saboxplugin input.sab-toggle-yes-no+label{padding:2px;width:120px;height:40px}.wrap .saboxplugin input.sab-toggle-yes-no+label:after,.wrap .saboxplugin input.sab-toggle-yes-no+label:before{display:block;position:absolute;top:0;left:0;bottom:0;right:0;color:#fff;font-family:"Open Sans",serif;font-size:20px;text-align:center;line-height:42px}.wrap .saboxplugin input.sab-toggle-yes-no+label:before{background-color:#D3D6DB;content:attr(data-off);transition:transform .5s;backface-visibility:hidden;-webkit-backface-visibility:hidden}.wrap .saboxplugin input.sab-toggle-yes-no+label:after{background-color:#8CE196;content:attr(data-on);transition:transform .5s;transform:rotateY(180deg);backface-visibility:hidden;-webkit-backface-visibility:hidden}.wrap .saboxplugin input.sab-toggle-yes-no:checked+label:before{transform:rotateY(180deg)}.wrap .saboxplugin input.sab-toggle-yes-no:checked+label:after{transform:rotateY(0)}.wrap .saboxplugin .sab-title-div{height:50px;clear:both}.wrap .saboxplugin .sab-title-div .sab-title{font-size:18px;line-height:26px;padding-top:16px;padding-right:15px;display:block;float:left}.wrap .saboxplugin .sab-box{background:#fff;border:1px solid #E5E5E5;box-shadow:0 1px 1px rgba(0,0,0,.04);padding:15px;margin-top:40px;position:relative;overflow:hidden}.wrap .saboxplugin .sab-box p{margin:5px 0 5px 70px;color:#777}.wrap .saboxplugin .sab-box-legend,.wrap .saboxplugin .sab-box-version{position:absolute;left:0;top:0;height:100%}.wrap .saboxplugin .sab-box-version{background:#80828F;padding:10px 15px}.wrap .saboxplugin .sab-icon-help,.wrap .saboxplugin .sab-icon-version{color:#FFF;font-size:25px}.wrap .saboxplugin .sab-infos{display:block;margin:0 auto;padding-left:70px;font-weight:700;color:#777}.wrap .saboxplugin .sab-infos span{color:#777;font-weight:400}.wrap .saboxplugin .sab-infos-title{font-weight:700;color:#777}.wrap .saboxplugin .sab-icon-version:before{content:"\f348";display:inline-block;-webkit-font-smoothing:antialiased;font:400 30px/1.5 dashicons;vertical-align:top}.clearfix:after,.clearfix:before{content:' ';display:table;line-height:0;clear:both}.ie7 .clearfix{zoom:1}@media (min-width:900px) and (max-width:1199px){.wrap .saboxplugin .saboxplugin-question{max-width:480px;font-size:20px}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{font-size:20px}.wrap .saboxplugin .postbox .inside{padding:0 20px 12px}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{right:40px}}@media screen and (max-width:899px){.wrap .saboxplugin .saboxplugin-question{font-size:18px;line-height:2;max-width:1000px;text-align:left;min-width:100px}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{font-size:18px}.wrap .saboxplugin .saboxplugin-switch{display:block}.wrap .saboxplugin input.sab-toggle-yes-no+label{width:auto}.wrap .saboxplugin textarea[name=saboxplugin]{width:100%;height:60px;text-align:center}.wrap .saboxplugin p.description{text-align:center}.wrap .saboxplugin .postbox .inside{padding:0 20px 12px}.wrap .saboxplugin .sabox-inline-slide .ui-widget-content{width:100%}}@media screen and (max-width:783px){.wrap .saboxplugin .saboxplugin-icon:before{font:40px/.8 dashicons}.wp-core-ui .button{padding:0 14px}.wrap .saboxplugin #poststuff .inside{margin:0}.wrap .saboxplugin .meta-box-sortables .postbox .handlediv:before{right:12px;font:400 20px/1.2 dashicons;padding:8px 10px}.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4{vertical-align:baseline}}@media screen and (max-width:600px){.wrap .saboxplugin .sabox-inline-slide .sabox-amount,.wrap .saboxplugin .sabox-inline-slide .sabox-amount2,.wrap .saboxplugin .sabox-inline-slide .sabox-amount3,.wrap .saboxplugin .sabox-inline-slide .sabox-amount4,.wrap .saboxplugin .saboxplugin-switch{text-align:center}.wrap .saboxplugin .saboxplugin-question{text-align:center;line-height:1.2}.wrap .saboxplugin .saboxplugin-border{margin:0}}
|
css/simple-author-box-rtl.min.css
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
.saboxplugin-wrap{direction:rtl;unicode-bidi:embed;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;border:1px solid;border-color:#EEE;width:100%;clear:both;display:block;overflow:hidden}.saboxplugin-wrap .saboxplugin-gravatar{float:right;padding:20px}.saboxplugin-wrap .saboxplugin-authorname{font-size:18px;line-height:1;margin:20px 0 0 20px;display:block}.saboxplugin-wrap .saboxplugin-authorname a{text-decoration:none}.saboxplugin-wrap .saboxplugin-authorname a:focus{outline:0}.saboxplugin-wrap .saboxplugin-desc{display:block;margin:5px 20px}.saboxplugin-wrap .saboxplugin-desc a{text-decoration:none}.saboxplugin-wrap .saboxplugin-desc p{margin:5px 0 12px}.saboxplugin-wrap .saboxplugin-web{margin:0 20px 15px;text-align:right}.saboxplugin-wrap .sab-web-position{text-align:left}.saboxplugin-wrap .saboxplugin-web a{color:#ccc;text-decoration:none}.saboxplugin-wrap .saboxplugin-socials{position:relative;z-index:50;display:block;background:#FCFCFC;padding:0 15px;-webkit-box-shadow:0 1px 0 0 #eee inset;-moz-box-shadow:0 1px 0 0 #eee inset;box-shadow:0 1px 0 0 #eee inset}.saboxplugin-wrap .saboxplugin-socials a{text-decoration:none;padding:0;margin:0;border:0;-webkit-transition:opacity .4s;-moz-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s}.saboxplugin-wrap .saboxplugin-socials a:hover{opacity:.8;-webkit-transition:opacity .4s;-moz-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color:before{display:block;width:30px;height:30px;line-height:33px;text-align:center;speak:none}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color{font-family:FontAwesome;font-style:normal;font-weight:400;text-decoration:inherit;font-size:14px;position:relative;display:-moz-inline-stack;display:inline-block;vertical-align:middle;zoom:1;margin:10px 5px;background-clip:content-box;-moz-background-clip:content-box;-webkit-background-clip:content-box;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;overflow:hidden}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey:before{display:block;text-align:center;speak:none;line-height:1}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey{font-family:FontAwesome;font-style:normal;font-weight:400;text-decoration:inherit;font-size:20px;position:relative;display:-moz-inline-stack;display:inline-block;vertical-align:middle;zoom:1;margin:10px 5px;color:#444}.clearfix:after,.clearfix:before{content:' ';display:table;line-height:0;clear:both}.ie7 .clearfix{zoom:1}.saboxplugin-wrap .saboxplugin-socials.sabox-colored .saboxplugin-icon-color{color:#fff}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-addthis:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-addthis:before{content:'\f067'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-behance:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-behance:before{content:'\f1b4'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-delicious:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-delicious:before{content:'\f1a5'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-deviantart:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-deviantart:before{content:'\f1bd'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-digg:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-digg:before{content:'\f1a6'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-dribbble:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-dribbble:before{content:'\f17d'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-facebook:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-facebook:before{content:'\f09a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-flickr:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-flickr:before{content:'\f16e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-github:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-github:before{content:'\f09b'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-google:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-google:before{content:'\f1a0'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-googleplus:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-googleplus:before{content:'\f0d5'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-html5:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-html5:before{content:'\f13b'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-instagram:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-instagram:before{content:'\f16d'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-linkedin:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-linkedin:before{content:'\f0e1'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-pinterest:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-pinterest:before{content:'\f0d2'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-reddit:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-reddit:before{content:'\f1a1'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-rss:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-rss:before{content:'\f09e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-sharethis:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-sharethis:before{content:'\f1e0'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-skype:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-skype:before{content:'\f17e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-soundcloud:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-soundcloud:before{content:'\f1be'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-spotify:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-spotify:before{content:'\f1bc'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-stackoverflow:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-stackoverflow:before{content:'\f16c'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-steam:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-steam:before{content:'\f1b6'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-stumbleUpon:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-stumbleUpon:before{content:'\f1a4'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-tumblr:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-tumblr:before{content:'\f173'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-twitter:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-twitter:before{content:'\f099'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-vimeo:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-vimeo:before{content:'\f194'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-windows:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-windows:before{content:'\f17a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-wordpress:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-wordpress:before{content:'\f19a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-yahoo:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-yahoo:before{content:'\f19e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-youtube:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-youtube:before{content:'\f167'}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-addthis{background:#FF8662;border:1px solid #D5644B;text-shadow:#d5644b 1px 1px,#d5644b 2px 2px,#d5644b 3px 3px,#d5644b 4px 4px,#d5644b 5px 5px,#d5644b 6px 6px,#d5644b 7px 7px,#d5644b 8px 8px,#d5644b 9px 9px,#d5644b 10px 10px,#d5644b 11px 11px,#d5644b 12px 12px,#d5644b 13px 13px,#d5644b 14px 14px,#d5644b 15px 15px,#d5644b 16px 16px,#d5644b 17px 17px,#d5644b 18px 18px,#d5644b 19px 19px,#d5644b 20px 20px,#d5644b 21px 21px,#d5644b 22px 22px,#d5644b 23px 23px,#d5644b 24px 24px,#d5644b 25px 25px,#d5644b 26px 26px,#d5644b 27px 27px,#d5644b 28px 28px,#d5644b 29px 29px,#d5644b 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-behance{background:#0294FF;border:1px solid #0083D4;text-shadow:#0083d4 1px 1px,#0083d4 2px 2px,#0083d4 3px 3px,#0083d4 4px 4px,#0083d4 5px 5px,#0083d4 6px 6px,#0083d4 7px 7px,#0083d4 8px 8px,#0083d4 9px 9px,#0083d4 10px 10px,#0083d4 11px 11px,#0083d4 12px 12px,#0083d4 13px 13px,#0083d4 14px 14px,#0083d4 15px 15px,#0083d4 16px 16px,#0083d4 17px 17px,#0083d4 18px 18px,#0083d4 19px 19px,#0083d4 20px 20px,#0083d4 21px 21px,#0083d4 22px 22px,#0083d4 23px 23px,#0083d4 24px 24px,#0083d4 25px 25px,#0083d4 26px 26px,#0083d4 27px 27px,#0083d4 28px 28px,#0083d4 29px 29px,#0083d4 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-delicious{background:#0294FF;border:1px solid #007ECD;text-shadow:#007ecd 1px 1px,#007ecd 2px 2px,#007ecd 3px 3px,#007ecd 4px 4px,#007ecd 5px 5px,#007ecd 6px 6px,#007ecd 7px 7px,#007ecd 8px 8px,#007ecd 9px 9px,#007ecd 10px 10px,#007ecd 11px 11px,#007ecd 12px 12px,#007ecd 13px 13px,#007ecd 14px 14px,#007ecd 15px 15px,#007ecd 16px 16px,#007ecd 17px 17px,#007ecd 18px 18px,#007ecd 19px 19px,#007ecd 20px 20px,#007ecd 21px 21px,#007ecd 22px 22px,#007ecd 23px 23px,#007ecd 24px 24px,#007ecd 25px 25px,#007ecd 26px 26px,#007ecd 27px 27px,#007ecd 28px 28px,#007ecd 29px 29px,#007ecd 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-deviantart{background:#DCE22B;border:1px solid #B2B423;text-shadow:#b2b423 1px 1px,#b2b423 2px 2px,#b2b423 3px 3px,#b2b423 4px 4px,#b2b423 5px 5px,#b2b423 6px 6px,#b2b423 7px 7px,#b2b423 8px 8px,#b2b423 9px 9px,#b2b423 10px 10px,#b2b423 11px 11px,#b2b423 12px 12px,#b2b423 13px 13px,#b2b423 14px 14px,#b2b423 15px 15px,#b2b423 16px 16px,#b2b423 17px 17px,#b2b423 18px 18px,#b2b423 19px 19px,#b2b423 20px 20px,#b2b423 21px 21px,#b2b423 22px 22px,#b2b423 23px 23px,#b2b423 24px 24px,#b2b423 25px 25px,#b2b423 26px 26px,#b2b423 27px 27px,#b2b423 28px 28px,#b2b423 29px 29px,#b2b423 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-digg{background:#1B8EC4;border:1px solid #126C92;text-shadow:#126c92 1px 1px,#126c92 2px 2px,#126c92 3px 3px,#126c92 4px 4px,#126c92 5px 5px,#126c92 6px 6px,#126c92 7px 7px,#126c92 8px 8px,#126c92 9px 9px,#126c92 10px 10px,#126c92 11px 11px,#126c92 12px 12px,#126c92 13px 13px,#126c92 14px 14px,#126c92 15px 15px,#126c92 16px 16px,#126c92 17px 17px,#126c92 18px 18px,#126c92 19px 19px,#126c92 20px 20px,#126c92 21px 21px,#126c92 22px 22px,#126c92 23px 23px,#126c92 24px 24px,#126c92 25px 25px,#126c92 26px 26px,#126c92 27px 27px,#126c92 28px 28px,#126c92 29px 29px,#126c92 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-dribbble{background:#EF76A4;border:1px solid #C05C84;text-shadow:#c05c84 1px 1px,#c05c84 2px 2px,#c05c84 3px 3px,#c05c84 4px 4px,#c05c84 5px 5px,#c05c84 6px 6px,#c05c84 7px 7px,#c05c84 8px 8px,#c05c84 9px 9px,#c05c84 10px 10px,#c05c84 11px 11px,#c05c84 12px 12px,#c05c84 13px 13px,#c05c84 14px 14px,#c05c84 15px 15px,#c05c84 16px 16px,#c05c84 17px 17px,#c05c84 18px 18px,#c05c84 19px 19px,#c05c84 20px 20px,#c05c84 21px 21px,#c05c84 22px 22px,#c05c84 23px 23px,#c05c84 24px 24px,#c05c84 25px 25px,#c05c84 26px 26px,#c05c84 27px 27px,#c05c84 28px 28px,#c05c84 29px 29px,#c05c84 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-facebook{background:#3B5998;border:1px solid #1E3D7A;text-shadow:#1e3d7a 1px 1px,#1e3d7a 2px 2px,#1e3d7a 3px 3px,#1e3d7a 4px 4px,#1e3d7a 5px 5px,#1e3d7a 6px 6px,#1e3d7a 7px 7px,#1e3d7a 8px 8px,#1e3d7a 9px 9px,#1e3d7a 10px 10px,#1e3d7a 11px 11px,#1e3d7a 12px 12px,#1e3d7a 13px 13px,#1e3d7a 14px 14px,#1e3d7a 15px 15px,#1e3d7a 16px 16px,#1e3d7a 17px 17px,#1e3d7a 18px 18px,#1e3d7a 19px 19px,#1e3d7a 20px 20px,#1e3d7a 21px 21px,#1e3d7a 22px 22px,#1e3d7a 23px 23px,#1e3d7a 24px 24px,#1e3d7a 25px 25px,#1e3d7a 26px 26px,#1e3d7a 27px 27px,#1e3d7a 28px 28px,#1e3d7a 29px 29px,#1e3d7a 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-flickr{background:#FF0586;border:1px solid #D0006F;text-shadow:#d0006f 1px 1px,#d0006f 2px 2px,#d0006f 3px 3px,#d0006f 4px 4px,#d0006f 5px 5px,#d0006f 6px 6px,#d0006f 7px 7px,#d0006f 8px 8px,#d0006f 9px 9px,#d0006f 10px 10px,#d0006f 11px 11px,#d0006f 12px 12px,#d0006f 13px 13px,#d0006f 14px 14px,#d0006f 15px 15px,#d0006f 16px 16px,#d0006f 17px 17px,#d0006f 18px 18px,#d0006f 19px 19px,#d0006f 20px 20px,#d0006f 21px 21px,#d0006f 22px 22px,#d0006f 23px 23px,#d0006f 24px 24px,#d0006f 25px 25px,#d0006f 26px 26px,#d0006f 27px 27px,#d0006f 28px 28px,#d0006f 29px 29px,#d0006f 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-github{background:#829AA8;border:1px solid #4F7385;text-shadow:#4f7385 1px 1px,#4f7385 2px 2px,#4f7385 3px 3px,#4f7385 4px 4px,#4f7385 5px 5px,#4f7385 6px 6px,#4f7385 7px 7px,#4f7385 8px 8px,#4f7385 9px 9px,#4f7385 10px 10px,#4f7385 11px 11px,#4f7385 12px 12px,#4f7385 13px 13px,#4f7385 14px 14px,#4f7385 15px 15px,#4f7385 16px 16px,#4f7385 17px 17px,#4f7385 18px 18px,#4f7385 19px 19px,#4f7385 20px 20px,#4f7385 21px 21px,#4f7385 22px 22px,#4f7385 23px 23px,#4f7385 24px 24px,#4f7385 25px 25px,#4f7385 26px 26px,#4f7385 27px 27px,#4f7385 28px 28px,#4f7385 29px 29px,#4f7385 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-google{background:#E8262F;border:1px solid #C20C18;text-shadow:#c20c18 1px 1px,#c20c18 2px 2px,#c20c18 3px 3px,#c20c18 4px 4px,#c20c18 5px 5px,#c20c18 6px 6px,#c20c18 7px 7px,#c20c18 8px 8px,#c20c18 9px 9px,#c20c18 10px 10px,#c20c18 11px 11px,#c20c18 12px 12px,#c20c18 13px 13px,#c20c18 14px 14px,#c20c18 15px 15px,#c20c18 16px 16px,#c20c18 17px 17px,#c20c18 18px 18px,#c20c18 19px 19px,#c20c18 20px 20px,#c20c18 21px 21px,#c20c18 22px 22px,#c20c18 23px 23px,#c20c18 24px 24px,#c20c18 25px 25px,#c20c18 26px 26px,#c20c18 27px 27px,#c20c18 28px 28px,#c20c18 29px 29px,#c20c18 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-googleplus{background:#DD4B39;border:1px solid #B32414;text-shadow:#b32414 1px 1px,#b32414 2px 2px,#b32414 3px 3px,#b32414 4px 4px,#b32414 5px 5px,#b32414 6px 6px,#b32414 7px 7px,#b32414 8px 8px,#b32414 9px 9px,#b32414 10px 10px,#b32414 11px 11px,#b32414 12px 12px,#b32414 13px 13px,#b32414 14px 14px,#b32414 15px 15px,#b32414 16px 16px,#b32414 17px 17px,#b32414 18px 18px,#b32414 19px 19px,#b32414 20px 20px,#b32414 21px 21px,#b32414 22px 22px,#b32414 23px 23px,#b32414 24px 24px,#b32414 25px 25px,#b32414 26px 26px,#b32414 27px 27px,#b32414 28px 28px,#b32414 29px 29px,#b32414 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-html5{background:#F16528;border:1px solid #C23D08;text-shadow:#c23d08 1px 1px,#c23d08 2px 2px,#c23d08 3px 3px,#c23d08 4px 4px,#c23d08 5px 5px,#c23d08 6px 6px,#c23d08 7px 7px,#c23d08 8px 8px,#c23d08 9px 9px,#c23d08 10px 10px,#c23d08 11px 11px,#c23d08 12px 12px,#c23d08 13px 13px,#c23d08 14px 14px,#c23d08 15px 15px,#c23d08 16px 16px,#c23d08 17px 17px,#c23d08 18px 18px,#c23d08 19px 19px,#c23d08 20px 20px,#c23d08 21px 21px,#c23d08 22px 22px,#c23d08 23px 23px,#c23d08 24px 24px,#c23d08 25px 25px,#c23d08 26px 26px,#c23d08 27px 27px,#c23d08 28px 28px,#c23d08 29px 29px,#c23d08 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-instagram{background:#417096;border:1px solid #244F70;text-shadow:#244f70 1px 1px,#244f70 2px 2px,#244f70 3px 3px,#244f70 4px 4px,#244f70 5px 5px,#244f70 6px 6px,#244f70 7px 7px,#244f70 8px 8px,#244f70 9px 9px,#244f70 10px 10px,#244f70 11px 11px,#244f70 12px 12px,#244f70 13px 13px,#244f70 14px 14px,#244f70 15px 15px,#244f70 16px 16px,#244f70 17px 17px,#244f70 18px 18px,#244f70 19px 19px,#244f70 20px 20px,#244f70 21px 21px,#244f70 22px 22px,#244f70 23px 23px,#244f70 24px 24px,#244f70 25px 25px,#244f70 26px 26px,#244f70 27px 27px,#244f70 28px 28px,#244f70 29px 29px,#244f70 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-linkedin{background:#1583BB;border:1px solid #036390;text-shadow:#036390 1px 1px,#036390 2px 2px,#036390 3px 3px,#036390 4px 4px,#036390 5px 5px,#036390 6px 6px,#036390 7px 7px,#036390 8px 8px,#036390 9px 9px,#036390 10px 10px,#036390 11px 11px,#036390 12px 12px,#036390 13px 13px,#036390 14px 14px,#036390 15px 15px,#036390 16px 16px,#036390 17px 17px,#036390 18px 18px,#036390 19px 19px,#036390 20px 20px,#036390 21px 21px,#036390 22px 22px,#036390 23px 23px,#036390 24px 24px,#036390 25px 25px,#036390 26px 26px,#036390 27px 27px,#036390 28px 28px,#036390 29px 29px,#036390 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-pinterest{background:#CB2027;border:1px solid #9D060E;text-shadow:#9d063e 1px 1px,#9d063e 2px 2px,#9d063e 3px 3px,#9d063e 4px 4px,#9d063e 5px 5px,#9d063e 6px 6px,#9d063e 7px 7px,#9d063e 8px 8px,#9d063e 9px 9px,#9d063e 10px 10px,#9d063e 11px 11px,#9d063e 12px 12px,#9d063e 13px 13px,#9d063e 14px 14px,#9d063e 15px 15px,#9d063e 16px 16px,#9d063e 17px 17px,#9d063e 18px 18px,#9d063e 19px 19px,#9d063e 20px 20px,#9d063e 21px 21px,#9d063e 22px 22px,#9d063e 23px 23px,#9d063e 24px 24px,#9d063e 25px 25px,#9d063e 26px 26px,#9d063e 27px 27px,#9d063e 28px 28px,#9d063e 29px 29px,#9d063e 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-reddit{background:#FF4107;border:1px solid #C62D02;text-shadow:#c62d02 1px 1px,#c62d02 2px 2px,#c62d02 3px 3px,#c62d02 4px 4px,#c62d02 5px 5px,#c62d02 6px 6px,#c62d02 7px 7px,#c62d02 8px 8px,#c62d02 9px 9px,#c62d02 10px 10px,#c62d02 11px 11px,#c62d02 12px 12px,#c62d02 13px 13px,#c62d02 14px 14px,#c62d02 15px 15px,#c62d02 16px 16px,#c62d02 17px 17px,#c62d02 18px 18px,#c62d02 19px 19px,#c62d02 20px 20px,#c62d02 21px 21px,#c62d02 22px 22px,#c62d02 23px 23px,#c62d02 24px 24px,#c62d02 25px 25px,#c62d02 26px 26px,#c62d02 27px 27px,#c62d02 28px 28px,#c62d02 29px 29px,#c62d02 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-rss{background:#FF7A21;border:1px solid #C24B02;text-shadow:#c24b02 1px 1px,#c24b02 2px 2px,#c24b02 3px 3px,#c24b02 4px 4px,#c24b02 5px 5px,#c24b02 6px 6px,#c24b02 7px 7px,#c24b02 8px 8px,#c24b02 9px 9px,#c24b02 10px 10px,#c24b02 11px 11px,#c24b02 12px 12px,#c24b02 13px 13px,#c24b02 14px 14px,#c24b02 15px 15px,#c24b02 16px 16px,#c24b02 17px 17px,#c24b02 18px 18px,#c24b02 19px 19px,#c24b02 20px 20px,#c24b02 21px 21px,#c24b02 22px 22px,#c24b02 23px 23px,#c24b02 24px 24px,#c24b02 25px 25px,#c24b02 26px 26px,#c24b02 27px 27px,#c24b02 28px 28px,#c24b02 29px 29px,#c24b02 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-sharethis{background:#1D9565;border:1px solid #076840;text-shadow:#076840 1px 1px,#076840 2px 2px,#076840 3px 3px,#076840 4px 4px,#076840 5px 5px,#076840 6px 6px,#076840 7px 7px,#076840 8px 8px,#076840 9px 9px,#076840 10px 10px,#076840 11px 11px,#076840 12px 12px,#076840 13px 13px,#076840 14px 14px,#076840 15px 15px,#076840 16px 16px,#076840 17px 17px,#076840 18px 18px,#076840 19px 19px,#076840 20px 20px,#076840 21px 21px,#076840 22px 22px,#076840 23px 23px,#076840 24px 24px,#076840 25px 25px,#076840 26px 26px,#076840 27px 27px,#076840 28px 28px,#076840 29px 29px,#076840 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-skype{background:#3FC1F4;border:1px solid #1B95C2;text-shadow:#1b95c2 1px 1px,#1b95c2 2px 2px,#1b95c2 3px 3px,#1b95c2 4px 4px,#1b95c2 5px 5px,#1b95c2 6px 6px,#1b95c2 7px 7px,#1b95c2 8px 8px,#1b95c2 9px 9px,#1b95c2 10px 10px,#1b95c2 11px 11px,#1b95c2 12px 12px,#1b95c2 13px 13px,#1b95c2 14px 14px,#1b95c2 15px 15px,#1b95c2 16px 16px,#1b95c2 17px 17px,#1b95c2 18px 18px,#1b95c2 19px 19px,#1b95c2 20px 20px,#1b95c2 21px 21px,#1b95c2 22px 22px,#1b95c2 23px 23px,#1b95c2 24px 24px,#1b95c2 25px 25px,#1b95c2 26px 26px,#1b95c2 27px 27px,#1b95c2 28px 28px,#1b95c2 29px 29px,#1b95c2 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-soundcloud{background:#FF5419;border:1px solid #C73002;text-shadow:#c73002 1px 1px,#c73002 2px 2px,#c73002 3px 3px,#c73002 4px 4px,#c73002 5px 5px,#c73002 6px 6px,#c73002 7px 7px,#c73002 8px 8px,#c73002 9px 9px,#c73002 10px 10px,#c73002 11px 11px,#c73002 12px 12px,#c73002 13px 13px,#c73002 14px 14px,#c73002 15px 15px,#c73002 16px 16px,#c73002 17px 17px,#c73002 18px 18px,#c73002 19px 19px,#c73002 20px 20px,#c73002 21px 21px,#c73002 22px 22px,#c73002 23px 23px,#c73002 24px 24px,#c73002 25px 25px,#c73002 26px 26px,#c73002 27px 27px,#c73002 28px 28px,#c73002 29px 29px,#c73002 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-spotify{background:#AECF02;border:1px solid #829900;text-shadow:#829900 1px 1px,#829900 2px 2px,#829900 3px 3px,#829900 4px 4px,#829900 5px 5px,#829900 6px 6px,#829900 7px 7px,#829900 8px 8px,#829900 9px 9px,#829900 10px 10px,#829900 11px 11px,#829900 12px 12px,#829900 13px 13px,#829900 14px 14px,#829900 15px 15px,#829900 16px 16px,#829900 17px 17px,#829900 18px 18px,#829900 19px 19px,#829900 20px 20px,#829900 21px 21px,#829900 22px 22px,#829900 23px 23px,#829900 24px 24px,#829900 25px 25px,#829900 26px 26px,#829900 27px 27px,#829900 28px 28px,#829900 29px 29px,#829900 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-stackoverflow{background:#FF661E;border:1px solid #CE3A00;text-shadow:#ce3a00 1px 1px,#ce3a00 2px 2px,#ce3a00 3px 3px,#ce3a00 4px 4px,#ce3a00 5px 5px,#ce3a00 6px 6px,#ce3a00 7px 7px,#ce3a00 8px 8px,#ce3a00 9px 9px,#ce3a00 10px 10px,#ce3a00 11px 11px,#ce3a00 12px 12px,#ce3a00 13px 13px,#ce3a00 14px 14px,#ce3a00 15px 15px,#ce3a00 16px 16px,#ce3a00 17px 17px,#ce3a00 18px 18px,#ce3a00 19px 19px,#ce3a00 20px 20px,#ce3a00 21px 21px,#ce3a00 22px 22px,#ce3a00 23px 23px,#ce3a00 24px 24px,#ce3a00 25px 25px,#ce3a00 26px 26px,#ce3a00 27px 27px,#ce3a00 28px 28px,#ce3a00 29px 29px,#ce3a00 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-steam{background:#484848;border:1px solid #302B2B;text-shadow:#302b2b 1px 1px,#302b2b 2px 2px,#302b2b 3px 3px,#302b2b 4px 4px,#302b2b 5px 5px,#302b2b 6px 6px,#302b2b 7px 7px,#302b2b 8px 8px,#302b2b 9px 9px,#302b2b 10px 10px,#302b2b 11px 11px,#302b2b 12px 12px,#302b2b 13px 13px,#302b2b 14px 14px,#302b2b 15px 15px,#302b2b 16px 16px,#302b2b 17px 17px,#302b2b 18px 18px,#302b2b 19px 19px,#302b2b 20px 20px,#302b2b 21px 21px,#302b2b 22px 22px,#302b2b 23px 23px,#302b2b 24px 24px,#302b2b 25px 25px,#302b2b 26px 26px,#302b2b 27px 27px,#302b2b 28px 28px,#302b2b 29px 29px,#302b2b 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-stumbleUpon{background:#EB4923;border:1px solid #BE2507;text-shadow:#be2507 1px 1px,#be2507 2px 2px,#be2507 3px 3px,#be2507 4px 4px,#be2507 5px 5px,#be2507 6px 6px,#be2507 7px 7px,#be2507 8px 8px,#be2507 9px 9px,#be2507 10px 10px,#be2507 11px 11px,#be2507 12px 12px,#be2507 13px 13px,#be2507 14px 14px,#be2507 15px 15px,#be2507 16px 16px,#be2507 17px 17px,#be2507 18px 18px,#be2507 19px 19px,#be2507 20px 20px,#be2507 21px 21px,#be2507 22px 22px,#be2507 23px 23px,#be2507 24px 24px,#be2507 25px 25px,#be2507 26px 26px,#be2507 27px 27px,#be2507 28px 28px,#be2507 29px 29px,#be2507 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-tumblr{background:#3C576C;border:1px solid #1E3546;text-shadow:#1e3546 1px 1px,#1e3546 2px 2px,#1e3546 3px 3px,#1e3546 4px 4px,#1e3546 5px 5px,#1e3546 6px 6px,#1e3546 7px 7px,#1e3546 8px 8px,#1e3546 9px 9px,#1e3546 10px 10px,#1e3546 11px 11px,#1e3546 12px 12px,#1e3546 13px 13px,#1e3546 14px 14px,#1e3546 15px 15px,#1e3546 16px 16px,#1e3546 17px 17px,#1e3546 18px 18px,#1e3546 19px 19px,#1e3546 20px 20px,#1e3546 21px 21px,#1e3546 22px 22px,#1e3546 23px 23px,#1e3546 24px 24px,#1e3546 25px 25px,#1e3546 26px 26px,#1e3546 27px 27px,#1e3546 28px 28px,#1e3546 29px 29px,#1e3546 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-twitter{background:#00ACED;border:1px solid #008AB8;text-shadow:#008ab8 1px 1px,#008ab8 2px 2px,#008ab8 3px 3px,#008ab8 4px 4px,#008ab8 5px 5px,#008ab8 6px 6px,#008ab8 7px 7px,#008ab8 8px 8px,#008ab8 9px 9px,#008ab8 10px 10px,#008ab8 11px 11px,#008ab8 12px 12px,#008ab8 13px 13px,#008ab8 14px 14px,#008ab8 15px 15px,#008ab8 16px 16px,#008ab8 17px 17px,#008ab8 18px 18px,#008ab8 19px 19px,#008ab8 20px 20px,#008ab8 21px 21px,#008ab8 22px 22px,#008ab8 23px 23px,#008ab8 24px 24px,#008ab8 25px 25px,#008ab8 26px 26px,#008ab8 27px 27px,#008ab8 28px 28px,#008ab8 29px 29px,#008ab8 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-vimeo{background:#006599;border:1px solid #00496A;text-shadow:#00496a 1px 1px,#00496a 2px 2px,#00496a 3px 3px,#00496a 4px 4px,#00496a 5px 5px,#00496a 6px 6px,#00496a 7px 7px,#00496a 8px 8px,#00496a 9px 9px,#00496a 10px 10px,#00496a 11px 11px,#00496a 12px 12px,#00496a 13px 13px,#00496a 14px 14px,#00496a 15px 15px,#00496a 16px 16px,#00496a 17px 17px,#00496a 18px 18px,#00496a 19px 19px,#00496a 20px 20px,#00496a 21px 21px,#00496a 22px 22px,#00496a 23px 23px,#00496a 24px 24px,#00496a 25px 25px,#00496a 26px 26px,#00496a 27px 27px,#00496a 28px 28px,#00496a 29px 29px,#00496a 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-windows{background:#00ADEF;border:1px solid #038BBC;text-shadow:#038bbc 1px 1px,#038bbc 2px 2px,#038bbc 3px 3px,#038bbc 4px 4px,#038bbc 5px 5px,#038bbc 6px 6px,#038bbc 7px 7px,#038bbc 8px 8px,#038bbc 9px 9px,#038bbc 10px 10px,#038bbc 11px 11px,#038bbc 12px 12px,#038bbc 13px 13px,#038bbc 14px 14px,#038bbc 15px 15px,#038bbc 16px 16px,#038bbc 17px 17px,#038bbc 18px 18px,#038bbc 19px 19px,#038bbc 20px 20px,#038bbc 21px 21px,#038bbc 22px 22px,#038bbc 23px 23px,#038bbc 24px 24px,#038bbc 25px 25px,#038bbc 26px 26px,#038bbc 27px 27px,#038bbc 28px 28px,#038bbc 29px 29px,#038bbc 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-wordpress{background:#21759A;border:1px solid #0F607E;text-shadow:#0f607e 1px 1px,#0f607e 2px 2px,#0f607e 3px 3px,#0f607e 4px 4px,#0f607e 5px 5px,#0f607e 6px 6px,#0f607e 7px 7px,#0f607e 8px 8px,#0f607e 9px 9px,#0f607e 10px 10px,#0f607e 11px 11px,#0f607e 12px 12px,#0f607e 13px 13px,#0f607e 14px 14px,#0f607e 15px 15px,#0f607e 16px 16px,#0f607e 17px 17px,#0f607e 18px 18px,#0f607e 19px 19px,#0f607e 20px 20px,#0f607e 21px 21px,#0f607e 22px 22px,#0f607e 23px 23px,#0f607e 24px 24px,#0f607e 25px 25px,#0f607e 26px 26px,#0f607e 27px 27px,#0f607e 28px 28px,#0f607e 29px 29px,#0f607e 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-yahoo{background:#4101AF;border:1px solid #290074;text-shadow:#290074 1px 1px,#290074 2px 2px,#290074 3px 3px,#290074 4px 4px,#290074 5px 5px,#290074 6px 6px,#290074 7px 7px,#290074 8px 8px,#290074 9px 9px,#290074 10px 10px,#290074 11px 11px,#290074 12px 12px,#290074 13px 13px,#290074 14px 14px,#290074 15px 15px,#290074 16px 16px,#290074 17px 17px,#290074 18px 18px,#290074 19px 19px,#290074 20px 20px,#290074 21px 21px,#290074 22px 22px,#290074 23px 23px,#290074 24px 24px,#290074 25px 25px,#290074 26px 26px,#290074 27px 27px,#290074 28px 28px,#290074 29px 29px,#290074 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-youtube{background:#E52C27;border:1px solid #BE0707;text-shadow:#be0707 1px 1px,#be0707 2px 2px,#be0707 3px 3px,#be0707 4px 4px,#be0707 5px 5px,#be0707 6px 6px,#be0707 7px 7px,#be0707 8px 8px,#be0707 9px 9px,#be0707 10px 10px,#be0707 11px 11px,#be0707 12px 12px,#be0707 13px 13px,#be0707 14px 14px,#be0707 15px 15px,#be0707 16px 16px,#be0707 17px 17px,#be0707 18px 18px,#be0707 19px 19px,#be0707 20px 20px,#be0707 21px 21px,#be0707 22px 22px,#be0707 23px 23px,#be0707 24px 24px,#be0707 25px 25px,#be0707 26px 26px,#be0707 27px 27px,#be0707 28px 28px,#be0707 29px 29px,#be0707 30px 30px}@media screen and (max-width:480px){.saboxplugin-wrap{text-align:center}.saboxplugin-wrap .saboxplugin-gravatar{float:none;padding:20px 0;text-align:center;margin:0 auto;display:block}.saboxplugin-wrap .saboxplugin-gravatar img{float:none;display:inline-block;display:-moz-inline-stack;vertical-align:middle;zoom:1}.saboxplugin-wrap .saboxplugin-desc{margin:0 10px 20px;text-align:center}.saboxplugin-wrap .saboxplugin-authorname{text-align:center;margin:10px 0 20px}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color,.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey{margin:15px 5px}}
|
|
css/simple-author-box.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.saboxplugin-wrap{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;border:1px solid;border-color:#EEE;width:100%;clear:both;display:block;overflow:hidden;word-wrap:break-word}.saboxplugin-wrap .saboxplugin-gravatar{float:left;padding:20px}.saboxplugin-wrap .saboxplugin-authorname{font-size:18px;line-height:1;margin:20px 0 0 20px;display:block}.saboxplugin-wrap .saboxplugin-authorname a{text-decoration:none}.saboxplugin-wrap .saboxplugin-authorname a:focus{outline:0}.saboxplugin-wrap .saboxplugin-desc{display:block;margin:5px 20px}.saboxplugin-wrap .saboxplugin-desc a{text-decoration:none}.saboxplugin-wrap .saboxplugin-desc p{margin:5px 0 12px}.saboxplugin-wrap .saboxplugin-web{margin:0 20px 15px;text-align:left}.saboxplugin-wrap .sab-web-position{text-align:right}.saboxplugin-wrap .saboxplugin-web a{color:#ccc;text-decoration:none}.saboxplugin-wrap .saboxplugin-socials{position:relative;z-index:50;display:block;background:#FCFCFC;padding:0 15px;-webkit-box-shadow:0 1px 0 0 #eee inset;-moz-box-shadow:0 1px 0 0 #eee inset;box-shadow:0 1px 0 0 #eee inset}.saboxplugin-wrap .saboxplugin-socials a{text-decoration:none;padding:0;margin:0;border:0;-webkit-transition:opacity .4s;-moz-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s}.saboxplugin-wrap .saboxplugin-socials a:hover{opacity:.8;-webkit-transition:opacity .4s;-moz-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color:before{display:block;width:30px;height:30px;line-height:33px;text-align:center;speak:none}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color{font-family:FontAwesome;font-style:normal;font-weight:400;text-decoration:inherit;font-size:14px;position:relative;display:-moz-inline-stack;display:inline-block;vertical-align:middle;zoom:1;margin:10px 5px;background-clip:content-box;-moz-background-clip:content-box;-webkit-background-clip:content-box;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;overflow:hidden}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey:before{display:block;text-align:center;speak:none;line-height:1}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey{font-family:FontAwesome;font-style:normal;font-weight:400;text-decoration:inherit;font-size:20px;position:relative;display:-moz-inline-stack;display:inline-block;vertical-align:middle;zoom:1;margin:10px 5px;color:#444}.clearfix:after,.clearfix:before{content:' ';display:table;line-height:0;clear:both}.ie7 .clearfix{zoom:1}.saboxplugin-wrap .saboxplugin-socials.sabox-colored .saboxplugin-icon-color{color:#fff}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-addthis:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-addthis:before{content:'\f067'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-behance:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-behance:before{content:'\f1b4'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-delicious:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-delicious:before{content:'\f1a5'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-deviantart:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-deviantart:before{content:'\f1bd'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-digg:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-digg:before{content:'\f1a6'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-dribbble:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-dribbble:before{content:'\f17d'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-facebook:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-facebook:before{content:'\f09a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-flickr:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-flickr:before{content:'\f16e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-github:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-github:before{content:'\f09b'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-google:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-google:before{content:'\f1a0'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-googleplus:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-googleplus:before{content:'\f0d5'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-html5:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-html5:before{content:'\f13b'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-instagram:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-instagram:before{content:'\f16d'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-linkedin:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-linkedin:before{content:'\f0e1'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-pinterest:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-pinterest:before{content:'\f0d2'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-reddit:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-reddit:before{content:'\f1a1'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-rss:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-rss:before{content:'\f09e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-sharethis:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-sharethis:before{content:'\f1e0'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-skype:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-skype:before{content:'\f17e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-soundcloud:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-soundcloud:before{content:'\f1be'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-spotify:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-spotify:before{content:'\f1bc'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-stackoverflow:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-stackoverflow:before{content:'\f16c'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-steam:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-steam:before{content:'\f1b6'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-stumbleUpon:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-stumbleUpon:before{content:'\f1a4'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-tumblr:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-tumblr:before{content:'\f173'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-twitter:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-twitter:before{content:'\f099'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-vimeo:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-vimeo:before{content:'\f194'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-windows:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-windows:before{content:'\f17a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-wordpress:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-wordpress:before{content:'\f19a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-yahoo:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-yahoo:before{content:'\f19e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-youtube:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-youtube:before{content:'\f167'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-xing:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-xing:before{content:'\f168'}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-addthis{background:#FF8662;border:1px solid #D5644B;text-shadow:#d5644b 1px 1px,#d5644b 2px 2px,#d5644b 3px 3px,#d5644b 4px 4px,#d5644b 5px 5px,#d5644b 6px 6px,#d5644b 7px 7px,#d5644b 8px 8px,#d5644b 9px 9px,#d5644b 10px 10px,#d5644b 11px 11px,#d5644b 12px 12px,#d5644b 13px 13px,#d5644b 14px 14px,#d5644b 15px 15px,#d5644b 16px 16px,#d5644b 17px 17px,#d5644b 18px 18px,#d5644b 19px 19px,#d5644b 20px 20px,#d5644b 21px 21px,#d5644b 22px 22px,#d5644b 23px 23px,#d5644b 24px 24px,#d5644b 25px 25px,#d5644b 26px 26px,#d5644b 27px 27px,#d5644b 28px 28px,#d5644b 29px 29px,#d5644b 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-behance{background:#0294FF;border:1px solid #0083D4;text-shadow:#0083d4 1px 1px,#0083d4 2px 2px,#0083d4 3px 3px,#0083d4 4px 4px,#0083d4 5px 5px,#0083d4 6px 6px,#0083d4 7px 7px,#0083d4 8px 8px,#0083d4 9px 9px,#0083d4 10px 10px,#0083d4 11px 11px,#0083d4 12px 12px,#0083d4 13px 13px,#0083d4 14px 14px,#0083d4 15px 15px,#0083d4 16px 16px,#0083d4 17px 17px,#0083d4 18px 18px,#0083d4 19px 19px,#0083d4 20px 20px,#0083d4 21px 21px,#0083d4 22px 22px,#0083d4 23px 23px,#0083d4 24px 24px,#0083d4 25px 25px,#0083d4 26px 26px,#0083d4 27px 27px,#0083d4 28px 28px,#0083d4 29px 29px,#0083d4 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-delicious{background:#0294FF;border:1px solid #007ECD;text-shadow:#007ecd 1px 1px,#007ecd 2px 2px,#007ecd 3px 3px,#007ecd 4px 4px,#007ecd 5px 5px,#007ecd 6px 6px,#007ecd 7px 7px,#007ecd 8px 8px,#007ecd 9px 9px,#007ecd 10px 10px,#007ecd 11px 11px,#007ecd 12px 12px,#007ecd 13px 13px,#007ecd 14px 14px,#007ecd 15px 15px,#007ecd 16px 16px,#007ecd 17px 17px,#007ecd 18px 18px,#007ecd 19px 19px,#007ecd 20px 20px,#007ecd 21px 21px,#007ecd 22px 22px,#007ecd 23px 23px,#007ecd 24px 24px,#007ecd 25px 25px,#007ecd 26px 26px,#007ecd 27px 27px,#007ecd 28px 28px,#007ecd 29px 29px,#007ecd 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-deviantart{background:#DCE22B;border:1px solid #B2B423;text-shadow:#b2b423 1px 1px,#b2b423 2px 2px,#b2b423 3px 3px,#b2b423 4px 4px,#b2b423 5px 5px,#b2b423 6px 6px,#b2b423 7px 7px,#b2b423 8px 8px,#b2b423 9px 9px,#b2b423 10px 10px,#b2b423 11px 11px,#b2b423 12px 12px,#b2b423 13px 13px,#b2b423 14px 14px,#b2b423 15px 15px,#b2b423 16px 16px,#b2b423 17px 17px,#b2b423 18px 18px,#b2b423 19px 19px,#b2b423 20px 20px,#b2b423 21px 21px,#b2b423 22px 22px,#b2b423 23px 23px,#b2b423 24px 24px,#b2b423 25px 25px,#b2b423 26px 26px,#b2b423 27px 27px,#b2b423 28px 28px,#b2b423 29px 29px,#b2b423 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-digg{background:#1B8EC4;border:1px solid #126C92;text-shadow:#126c92 1px 1px,#126c92 2px 2px,#126c92 3px 3px,#126c92 4px 4px,#126c92 5px 5px,#126c92 6px 6px,#126c92 7px 7px,#126c92 8px 8px,#126c92 9px 9px,#126c92 10px 10px,#126c92 11px 11px,#126c92 12px 12px,#126c92 13px 13px,#126c92 14px 14px,#126c92 15px 15px,#126c92 16px 16px,#126c92 17px 17px,#126c92 18px 18px,#126c92 19px 19px,#126c92 20px 20px,#126c92 21px 21px,#126c92 22px 22px,#126c92 23px 23px,#126c92 24px 24px,#126c92 25px 25px,#126c92 26px 26px,#126c92 27px 27px,#126c92 28px 28px,#126c92 29px 29px,#126c92 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-dribbble{background:#EF76A4;border:1px solid #C05C84;text-shadow:#c05c84 1px 1px,#c05c84 2px 2px,#c05c84 3px 3px,#c05c84 4px 4px,#c05c84 5px 5px,#c05c84 6px 6px,#c05c84 7px 7px,#c05c84 8px 8px,#c05c84 9px 9px,#c05c84 10px 10px,#c05c84 11px 11px,#c05c84 12px 12px,#c05c84 13px 13px,#c05c84 14px 14px,#c05c84 15px 15px,#c05c84 16px 16px,#c05c84 17px 17px,#c05c84 18px 18px,#c05c84 19px 19px,#c05c84 20px 20px,#c05c84 21px 21px,#c05c84 22px 22px,#c05c84 23px 23px,#c05c84 24px 24px,#c05c84 25px 25px,#c05c84 26px 26px,#c05c84 27px 27px,#c05c84 28px 28px,#c05c84 29px 29px,#c05c84 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-facebook{background:#3B5998;border:1px solid #1E3D7A;text-shadow:#1e3d7a 1px 1px,#1e3d7a 2px 2px,#1e3d7a 3px 3px,#1e3d7a 4px 4px,#1e3d7a 5px 5px,#1e3d7a 6px 6px,#1e3d7a 7px 7px,#1e3d7a 8px 8px,#1e3d7a 9px 9px,#1e3d7a 10px 10px,#1e3d7a 11px 11px,#1e3d7a 12px 12px,#1e3d7a 13px 13px,#1e3d7a 14px 14px,#1e3d7a 15px 15px,#1e3d7a 16px 16px,#1e3d7a 17px 17px,#1e3d7a 18px 18px,#1e3d7a 19px 19px,#1e3d7a 20px 20px,#1e3d7a 21px 21px,#1e3d7a 22px 22px,#1e3d7a 23px 23px,#1e3d7a 24px 24px,#1e3d7a 25px 25px,#1e3d7a 26px 26px,#1e3d7a 27px 27px,#1e3d7a 28px 28px,#1e3d7a 29px 29px,#1e3d7a 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-flickr{background:#FF0586;border:1px solid #D0006F;text-shadow:#d0006f 1px 1px,#d0006f 2px 2px,#d0006f 3px 3px,#d0006f 4px 4px,#d0006f 5px 5px,#d0006f 6px 6px,#d0006f 7px 7px,#d0006f 8px 8px,#d0006f 9px 9px,#d0006f 10px 10px,#d0006f 11px 11px,#d0006f 12px 12px,#d0006f 13px 13px,#d0006f 14px 14px,#d0006f 15px 15px,#d0006f 16px 16px,#d0006f 17px 17px,#d0006f 18px 18px,#d0006f 19px 19px,#d0006f 20px 20px,#d0006f 21px 21px,#d0006f 22px 22px,#d0006f 23px 23px,#d0006f 24px 24px,#d0006f 25px 25px,#d0006f 26px 26px,#d0006f 27px 27px,#d0006f 28px 28px,#d0006f 29px 29px,#d0006f 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-github{background:#829AA8;border:1px solid #4F7385;text-shadow:#4f7385 1px 1px,#4f7385 2px 2px,#4f7385 3px 3px,#4f7385 4px 4px,#4f7385 5px 5px,#4f7385 6px 6px,#4f7385 7px 7px,#4f7385 8px 8px,#4f7385 9px 9px,#4f7385 10px 10px,#4f7385 11px 11px,#4f7385 12px 12px,#4f7385 13px 13px,#4f7385 14px 14px,#4f7385 15px 15px,#4f7385 16px 16px,#4f7385 17px 17px,#4f7385 18px 18px,#4f7385 19px 19px,#4f7385 20px 20px,#4f7385 21px 21px,#4f7385 22px 22px,#4f7385 23px 23px,#4f7385 24px 24px,#4f7385 25px 25px,#4f7385 26px 26px,#4f7385 27px 27px,#4f7385 28px 28px,#4f7385 29px 29px,#4f7385 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-google{background:#E8262F;border:1px solid #C20C18;text-shadow:#c20c18 1px 1px,#c20c18 2px 2px,#c20c18 3px 3px,#c20c18 4px 4px,#c20c18 5px 5px,#c20c18 6px 6px,#c20c18 7px 7px,#c20c18 8px 8px,#c20c18 9px 9px,#c20c18 10px 10px,#c20c18 11px 11px,#c20c18 12px 12px,#c20c18 13px 13px,#c20c18 14px 14px,#c20c18 15px 15px,#c20c18 16px 16px,#c20c18 17px 17px,#c20c18 18px 18px,#c20c18 19px 19px,#c20c18 20px 20px,#c20c18 21px 21px,#c20c18 22px 22px,#c20c18 23px 23px,#c20c18 24px 24px,#c20c18 25px 25px,#c20c18 26px 26px,#c20c18 27px 27px,#c20c18 28px 28px,#c20c18 29px 29px,#c20c18 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-googleplus{background:#DD4B39;border:1px solid #B32414;text-shadow:#b32414 1px 1px,#b32414 2px 2px,#b32414 3px 3px,#b32414 4px 4px,#b32414 5px 5px,#b32414 6px 6px,#b32414 7px 7px,#b32414 8px 8px,#b32414 9px 9px,#b32414 10px 10px,#b32414 11px 11px,#b32414 12px 12px,#b32414 13px 13px,#b32414 14px 14px,#b32414 15px 15px,#b32414 16px 16px,#b32414 17px 17px,#b32414 18px 18px,#b32414 19px 19px,#b32414 20px 20px,#b32414 21px 21px,#b32414 22px 22px,#b32414 23px 23px,#b32414 24px 24px,#b32414 25px 25px,#b32414 26px 26px,#b32414 27px 27px,#b32414 28px 28px,#b32414 29px 29px,#b32414 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-html5{background:#F16528;border:1px solid #C23D08;text-shadow:#c23d08 1px 1px,#c23d08 2px 2px,#c23d08 3px 3px,#c23d08 4px 4px,#c23d08 5px 5px,#c23d08 6px 6px,#c23d08 7px 7px,#c23d08 8px 8px,#c23d08 9px 9px,#c23d08 10px 10px,#c23d08 11px 11px,#c23d08 12px 12px,#c23d08 13px 13px,#c23d08 14px 14px,#c23d08 15px 15px,#c23d08 16px 16px,#c23d08 17px 17px,#c23d08 18px 18px,#c23d08 19px 19px,#c23d08 20px 20px,#c23d08 21px 21px,#c23d08 22px 22px,#c23d08 23px 23px,#c23d08 24px 24px,#c23d08 25px 25px,#c23d08 26px 26px,#c23d08 27px 27px,#c23d08 28px 28px,#c23d08 29px 29px,#c23d08 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-instagram{background:#417096;border:1px solid #244F70;text-shadow:#244f70 1px 1px,#244f70 2px 2px,#244f70 3px 3px,#244f70 4px 4px,#244f70 5px 5px,#244f70 6px 6px,#244f70 7px 7px,#244f70 8px 8px,#244f70 9px 9px,#244f70 10px 10px,#244f70 11px 11px,#244f70 12px 12px,#244f70 13px 13px,#244f70 14px 14px,#244f70 15px 15px,#244f70 16px 16px,#244f70 17px 17px,#244f70 18px 18px,#244f70 19px 19px,#244f70 20px 20px,#244f70 21px 21px,#244f70 22px 22px,#244f70 23px 23px,#244f70 24px 24px,#244f70 25px 25px,#244f70 26px 26px,#244f70 27px 27px,#244f70 28px 28px,#244f70 29px 29px,#244f70 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-linkedin{background:#1583BB;border:1px solid #036390;text-shadow:#036390 1px 1px,#036390 2px 2px,#036390 3px 3px,#036390 4px 4px,#036390 5px 5px,#036390 6px 6px,#036390 7px 7px,#036390 8px 8px,#036390 9px 9px,#036390 10px 10px,#036390 11px 11px,#036390 12px 12px,#036390 13px 13px,#036390 14px 14px,#036390 15px 15px,#036390 16px 16px,#036390 17px 17px,#036390 18px 18px,#036390 19px 19px,#036390 20px 20px,#036390 21px 21px,#036390 22px 22px,#036390 23px 23px,#036390 24px 24px,#036390 25px 25px,#036390 26px 26px,#036390 27px 27px,#036390 28px 28px,#036390 29px 29px,#036390 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-pinterest{background:#CB2027;border:1px solid #9D060E;text-shadow:#9d063e 1px 1px,#9d063e 2px 2px,#9d063e 3px 3px,#9d063e 4px 4px,#9d063e 5px 5px,#9d063e 6px 6px,#9d063e 7px 7px,#9d063e 8px 8px,#9d063e 9px 9px,#9d063e 10px 10px,#9d063e 11px 11px,#9d063e 12px 12px,#9d063e 13px 13px,#9d063e 14px 14px,#9d063e 15px 15px,#9d063e 16px 16px,#9d063e 17px 17px,#9d063e 18px 18px,#9d063e 19px 19px,#9d063e 20px 20px,#9d063e 21px 21px,#9d063e 22px 22px,#9d063e 23px 23px,#9d063e 24px 24px,#9d063e 25px 25px,#9d063e 26px 26px,#9d063e 27px 27px,#9d063e 28px 28px,#9d063e 29px 29px,#9d063e 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-reddit{background:#FF4107;border:1px solid #C62D02;text-shadow:#c62d02 1px 1px,#c62d02 2px 2px,#c62d02 3px 3px,#c62d02 4px 4px,#c62d02 5px 5px,#c62d02 6px 6px,#c62d02 7px 7px,#c62d02 8px 8px,#c62d02 9px 9px,#c62d02 10px 10px,#c62d02 11px 11px,#c62d02 12px 12px,#c62d02 13px 13px,#c62d02 14px 14px,#c62d02 15px 15px,#c62d02 16px 16px,#c62d02 17px 17px,#c62d02 18px 18px,#c62d02 19px 19px,#c62d02 20px 20px,#c62d02 21px 21px,#c62d02 22px 22px,#c62d02 23px 23px,#c62d02 24px 24px,#c62d02 25px 25px,#c62d02 26px 26px,#c62d02 27px 27px,#c62d02 28px 28px,#c62d02 29px 29px,#c62d02 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-rss{background:#FF7A21;border:1px solid #C24B02;text-shadow:#c24b02 1px 1px,#c24b02 2px 2px,#c24b02 3px 3px,#c24b02 4px 4px,#c24b02 5px 5px,#c24b02 6px 6px,#c24b02 7px 7px,#c24b02 8px 8px,#c24b02 9px 9px,#c24b02 10px 10px,#c24b02 11px 11px,#c24b02 12px 12px,#c24b02 13px 13px,#c24b02 14px 14px,#c24b02 15px 15px,#c24b02 16px 16px,#c24b02 17px 17px,#c24b02 18px 18px,#c24b02 19px 19px,#c24b02 20px 20px,#c24b02 21px 21px,#c24b02 22px 22px,#c24b02 23px 23px,#c24b02 24px 24px,#c24b02 25px 25px,#c24b02 26px 26px,#c24b02 27px 27px,#c24b02 28px 28px,#c24b02 29px 29px,#c24b02 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-sharethis{background:#1D9565;border:1px solid #076840;text-shadow:#076840 1px 1px,#076840 2px 2px,#076840 3px 3px,#076840 4px 4px,#076840 5px 5px,#076840 6px 6px,#076840 7px 7px,#076840 8px 8px,#076840 9px 9px,#076840 10px 10px,#076840 11px 11px,#076840 12px 12px,#076840 13px 13px,#076840 14px 14px,#076840 15px 15px,#076840 16px 16px,#076840 17px 17px,#076840 18px 18px,#076840 19px 19px,#076840 20px 20px,#076840 21px 21px,#076840 22px 22px,#076840 23px 23px,#076840 24px 24px,#076840 25px 25px,#076840 26px 26px,#076840 27px 27px,#076840 28px 28px,#076840 29px 29px,#076840 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-skype{background:#3FC1F4;border:1px solid #1B95C2;text-shadow:#1b95c2 1px 1px,#1b95c2 2px 2px,#1b95c2 3px 3px,#1b95c2 4px 4px,#1b95c2 5px 5px,#1b95c2 6px 6px,#1b95c2 7px 7px,#1b95c2 8px 8px,#1b95c2 9px 9px,#1b95c2 10px 10px,#1b95c2 11px 11px,#1b95c2 12px 12px,#1b95c2 13px 13px,#1b95c2 14px 14px,#1b95c2 15px 15px,#1b95c2 16px 16px,#1b95c2 17px 17px,#1b95c2 18px 18px,#1b95c2 19px 19px,#1b95c2 20px 20px,#1b95c2 21px 21px,#1b95c2 22px 22px,#1b95c2 23px 23px,#1b95c2 24px 24px,#1b95c2 25px 25px,#1b95c2 26px 26px,#1b95c2 27px 27px,#1b95c2 28px 28px,#1b95c2 29px 29px,#1b95c2 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-soundcloud{background:#FF5419;border:1px solid #C73002;text-shadow:#c73002 1px 1px,#c73002 2px 2px,#c73002 3px 3px,#c73002 4px 4px,#c73002 5px 5px,#c73002 6px 6px,#c73002 7px 7px,#c73002 8px 8px,#c73002 9px 9px,#c73002 10px 10px,#c73002 11px 11px,#c73002 12px 12px,#c73002 13px 13px,#c73002 14px 14px,#c73002 15px 15px,#c73002 16px 16px,#c73002 17px 17px,#c73002 18px 18px,#c73002 19px 19px,#c73002 20px 20px,#c73002 21px 21px,#c73002 22px 22px,#c73002 23px 23px,#c73002 24px 24px,#c73002 25px 25px,#c73002 26px 26px,#c73002 27px 27px,#c73002 28px 28px,#c73002 29px 29px,#c73002 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-spotify{background:#AECF02;border:1px solid #829900;text-shadow:#829900 1px 1px,#829900 2px 2px,#829900 3px 3px,#829900 4px 4px,#829900 5px 5px,#829900 6px 6px,#829900 7px 7px,#829900 8px 8px,#829900 9px 9px,#829900 10px 10px,#829900 11px 11px,#829900 12px 12px,#829900 13px 13px,#829900 14px 14px,#829900 15px 15px,#829900 16px 16px,#829900 17px 17px,#829900 18px 18px,#829900 19px 19px,#829900 20px 20px,#829900 21px 21px,#829900 22px 22px,#829900 23px 23px,#829900 24px 24px,#829900 25px 25px,#829900 26px 26px,#829900 27px 27px,#829900 28px 28px,#829900 29px 29px,#829900 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-stackoverflow{background:#FF661E;border:1px solid #CE3A00;text-shadow:#ce3a00 1px 1px,#ce3a00 2px 2px,#ce3a00 3px 3px,#ce3a00 4px 4px,#ce3a00 5px 5px,#ce3a00 6px 6px,#ce3a00 7px 7px,#ce3a00 8px 8px,#ce3a00 9px 9px,#ce3a00 10px 10px,#ce3a00 11px 11px,#ce3a00 12px 12px,#ce3a00 13px 13px,#ce3a00 14px 14px,#ce3a00 15px 15px,#ce3a00 16px 16px,#ce3a00 17px 17px,#ce3a00 18px 18px,#ce3a00 19px 19px,#ce3a00 20px 20px,#ce3a00 21px 21px,#ce3a00 22px 22px,#ce3a00 23px 23px,#ce3a00 24px 24px,#ce3a00 25px 25px,#ce3a00 26px 26px,#ce3a00 27px 27px,#ce3a00 28px 28px,#ce3a00 29px 29px,#ce3a00 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-steam{background:#484848;border:1px solid #302B2B;text-shadow:#302b2b 1px 1px,#302b2b 2px 2px,#302b2b 3px 3px,#302b2b 4px 4px,#302b2b 5px 5px,#302b2b 6px 6px,#302b2b 7px 7px,#302b2b 8px 8px,#302b2b 9px 9px,#302b2b 10px 10px,#302b2b 11px 11px,#302b2b 12px 12px,#302b2b 13px 13px,#302b2b 14px 14px,#302b2b 15px 15px,#302b2b 16px 16px,#302b2b 17px 17px,#302b2b 18px 18px,#302b2b 19px 19px,#302b2b 20px 20px,#302b2b 21px 21px,#302b2b 22px 22px,#302b2b 23px 23px,#302b2b 24px 24px,#302b2b 25px 25px,#302b2b 26px 26px,#302b2b 27px 27px,#302b2b 28px 28px,#302b2b 29px 29px,#302b2b 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-stumbleUpon{background:#EB4923;border:1px solid #BE2507;text-shadow:#be2507 1px 1px,#be2507 2px 2px,#be2507 3px 3px,#be2507 4px 4px,#be2507 5px 5px,#be2507 6px 6px,#be2507 7px 7px,#be2507 8px 8px,#be2507 9px 9px,#be2507 10px 10px,#be2507 11px 11px,#be2507 12px 12px,#be2507 13px 13px,#be2507 14px 14px,#be2507 15px 15px,#be2507 16px 16px,#be2507 17px 17px,#be2507 18px 18px,#be2507 19px 19px,#be2507 20px 20px,#be2507 21px 21px,#be2507 22px 22px,#be2507 23px 23px,#be2507 24px 24px,#be2507 25px 25px,#be2507 26px 26px,#be2507 27px 27px,#be2507 28px 28px,#be2507 29px 29px,#be2507 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-tumblr{background:#3C576C;border:1px solid #1E3546;text-shadow:#1e3546 1px 1px,#1e3546 2px 2px,#1e3546 3px 3px,#1e3546 4px 4px,#1e3546 5px 5px,#1e3546 6px 6px,#1e3546 7px 7px,#1e3546 8px 8px,#1e3546 9px 9px,#1e3546 10px 10px,#1e3546 11px 11px,#1e3546 12px 12px,#1e3546 13px 13px,#1e3546 14px 14px,#1e3546 15px 15px,#1e3546 16px 16px,#1e3546 17px 17px,#1e3546 18px 18px,#1e3546 19px 19px,#1e3546 20px 20px,#1e3546 21px 21px,#1e3546 22px 22px,#1e3546 23px 23px,#1e3546 24px 24px,#1e3546 25px 25px,#1e3546 26px 26px,#1e3546 27px 27px,#1e3546 28px 28px,#1e3546 29px 29px,#1e3546 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-twitter{background:#00ACED;border:1px solid #008AB8;text-shadow:#008ab8 1px 1px,#008ab8 2px 2px,#008ab8 3px 3px,#008ab8 4px 4px,#008ab8 5px 5px,#008ab8 6px 6px,#008ab8 7px 7px,#008ab8 8px 8px,#008ab8 9px 9px,#008ab8 10px 10px,#008ab8 11px 11px,#008ab8 12px 12px,#008ab8 13px 13px,#008ab8 14px 14px,#008ab8 15px 15px,#008ab8 16px 16px,#008ab8 17px 17px,#008ab8 18px 18px,#008ab8 19px 19px,#008ab8 20px 20px,#008ab8 21px 21px,#008ab8 22px 22px,#008ab8 23px 23px,#008ab8 24px 24px,#008ab8 25px 25px,#008ab8 26px 26px,#008ab8 27px 27px,#008ab8 28px 28px,#008ab8 29px 29px,#008ab8 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-vimeo{background:#006599;border:1px solid #00496A;text-shadow:#00496a 1px 1px,#00496a 2px 2px,#00496a 3px 3px,#00496a 4px 4px,#00496a 5px 5px,#00496a 6px 6px,#00496a 7px 7px,#00496a 8px 8px,#00496a 9px 9px,#00496a 10px 10px,#00496a 11px 11px,#00496a 12px 12px,#00496a 13px 13px,#00496a 14px 14px,#00496a 15px 15px,#00496a 16px 16px,#00496a 17px 17px,#00496a 18px 18px,#00496a 19px 19px,#00496a 20px 20px,#00496a 21px 21px,#00496a 22px 22px,#00496a 23px 23px,#00496a 24px 24px,#00496a 25px 25px,#00496a 26px 26px,#00496a 27px 27px,#00496a 28px 28px,#00496a 29px 29px,#00496a 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-windows{background:#00ADEF;border:1px solid #038BBC;text-shadow:#038bbc 1px 1px,#038bbc 2px 2px,#038bbc 3px 3px,#038bbc 4px 4px,#038bbc 5px 5px,#038bbc 6px 6px,#038bbc 7px 7px,#038bbc 8px 8px,#038bbc 9px 9px,#038bbc 10px 10px,#038bbc 11px 11px,#038bbc 12px 12px,#038bbc 13px 13px,#038bbc 14px 14px,#038bbc 15px 15px,#038bbc 16px 16px,#038bbc 17px 17px,#038bbc 18px 18px,#038bbc 19px 19px,#038bbc 20px 20px,#038bbc 21px 21px,#038bbc 22px 22px,#038bbc 23px 23px,#038bbc 24px 24px,#038bbc 25px 25px,#038bbc 26px 26px,#038bbc 27px 27px,#038bbc 28px 28px,#038bbc 29px 29px,#038bbc 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-wordpress{background:#21759A;border:1px solid #0F607E;text-shadow:#0f607e 1px 1px,#0f607e 2px 2px,#0f607e 3px 3px,#0f607e 4px 4px,#0f607e 5px 5px,#0f607e 6px 6px,#0f607e 7px 7px,#0f607e 8px 8px,#0f607e 9px 9px,#0f607e 10px 10px,#0f607e 11px 11px,#0f607e 12px 12px,#0f607e 13px 13px,#0f607e 14px 14px,#0f607e 15px 15px,#0f607e 16px 16px,#0f607e 17px 17px,#0f607e 18px 18px,#0f607e 19px 19px,#0f607e 20px 20px,#0f607e 21px 21px,#0f607e 22px 22px,#0f607e 23px 23px,#0f607e 24px 24px,#0f607e 25px 25px,#0f607e 26px 26px,#0f607e 27px 27px,#0f607e 28px 28px,#0f607e 29px 29px,#0f607e 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-yahoo{background:#4101AF;border:1px solid #290074;text-shadow:#290074 1px 1px,#290074 2px 2px,#290074 3px 3px,#290074 4px 4px,#290074 5px 5px,#290074 6px 6px,#290074 7px 7px,#290074 8px 8px,#290074 9px 9px,#290074 10px 10px,#290074 11px 11px,#290074 12px 12px,#290074 13px 13px,#290074 14px 14px,#290074 15px 15px,#290074 16px 16px,#290074 17px 17px,#290074 18px 18px,#290074 19px 19px,#290074 20px 20px,#290074 21px 21px,#290074 22px 22px,#290074 23px 23px,#290074 24px 24px,#290074 25px 25px,#290074 26px 26px,#290074 27px 27px,#290074 28px 28px,#290074 29px 29px,#290074 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-youtube{background:#E52C27;border:1px solid #BE0707;text-shadow:#be0707 1px 1px,#be0707 2px 2px,#be0707 3px 3px,#be0707 4px 4px,#be0707 5px 5px,#be0707 6px 6px,#be0707 7px 7px,#be0707 8px 8px,#be0707 9px 9px,#be0707 10px 10px,#be0707 11px 11px,#be0707 12px 12px,#be0707 13px 13px,#be0707 14px 14px,#be0707 15px 15px,#be0707 16px 16px,#be0707 17px 17px,#be0707 18px 18px,#be0707 19px 19px,#be0707 20px 20px,#be0707 21px 21px,#be0707 22px 22px,#be0707 23px 23px,#be0707 24px 24px,#be0707 25px 25px,#be0707 26px 26px,#be0707 27px 27px,#be0707 28px 28px,#be0707 29px 29px,#be0707 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-xing{background:#026466;border:1px solid #004746;text-shadow:#004746 1px 1px,#004746 2px 2px,#004746 3px 3px,#004746 4px 4px,#004746 5px 5px,#004746 6px 6px,#004746 7px 7px,#004746 8px 8px,#004746 9px 9px,#004746 10px 10px,#004746 11px 11px,#004746 12px 12px,#004746 13px 13px,#004746 14px 14px,#004746 15px 15px,#004746 16px 16px,#004746 17px 17px,#004746 18px 18px,#004746 19px 19px,#004746 20px 20px,#004746 21px 21px,#004746 22px 22px,#004746 23px 23px,#004746 24px 24px,#004746 25px 25px,#004746 26px 26px,#004746 27px 27px,#004746 28px 28px,#004746 29px 29px,#004746 30px 30px}@media screen and (max-width:480px){.saboxplugin-wrap{text-align:center}.saboxplugin-wrap .saboxplugin-gravatar{float:none;padding:20px 0;text-align:center;margin:0 auto;display:block}.saboxplugin-wrap .saboxplugin-gravatar img{float:none;display:inline-block;display:-moz-inline-stack;vertical-align:middle;zoom:1}.saboxplugin-wrap .saboxplugin-desc{margin:0 10px 20px;text-align:center}.saboxplugin-wrap .saboxplugin-authorname{text-align:center;margin:10px 0 20px}}
|
1 |
+
.saboxplugin-wrap .saboxplugin-authorname a,.saboxplugin-wrap .saboxplugin-desc a,.saboxplugin-wrap .saboxplugin-web a{text-decoration:none}.saboxplugin-wrap{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;border:1px solid #EEE;width:100%;clear:both;display:block;overflow:hidden;word-wrap:break-word}.saboxplugin-wrap .saboxplugin-gravatar{float:left;padding:20px}.saboxplugin-wrap .saboxplugin-authorname{font-size:18px;line-height:1;margin:20px 0 0 20px;display:block}.saboxplugin-wrap .saboxplugin-authorname a:focus{outline:0}.saboxplugin-wrap .saboxplugin-desc{display:block;margin:5px 20px}.saboxplugin-wrap .saboxplugin-desc p{margin:5px 0 12px}.saboxplugin-wrap .saboxplugin-web{margin:0 20px 15px;text-align:left}.saboxplugin-wrap .sab-web-position{text-align:right}.saboxplugin-wrap .saboxplugin-web a{color:#ccc}.saboxplugin-wrap .saboxplugin-socials{position:relative;z-index:50;display:block;background:#FCFCFC;padding:0 15px;-webkit-box-shadow:0 1px 0 0 #eee inset;-moz-box-shadow:0 1px 0 0 #eee inset;box-shadow:0 1px 0 0 #eee inset}.saboxplugin-wrap .saboxplugin-socials a{text-decoration:none;padding:0;margin:0;border:0;-webkit-transition:opacity .4s;-moz-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color,.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey{font-family:FontAwesome;font-style:normal;font-weight:400;text-decoration:inherit;position:relative;vertical-align:middle;margin:10px 5px;zoom:1}.saboxplugin-wrap .saboxplugin-socials a:hover{opacity:.8;-webkit-transition:opacity .4s;-moz-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color:before{display:block;width:30px;height:30px;line-height:33px;text-align:center;speak:none}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color{font-size:14px;display:-moz-inline-stack;display:inline-block;background-clip:content-box;-moz-background-clip:content-box;-webkit-background-clip:content-box;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;overflow:hidden}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey:before{display:block;text-align:center;speak:none;line-height:1}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey{font-size:20px;display:-moz-inline-stack;display:inline-block;color:#444}.clearfix:after,.clearfix:before{content:' ';display:table;line-height:0;clear:both}.ie7 .clearfix{zoom:1}.saboxplugin-wrap .saboxplugin-socials.sabox-colored .saboxplugin-icon-color{color:#fff}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-addthis:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-addthis:before{content:'\f067'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-behance:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-behance:before{content:'\f1b4'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-delicious:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-delicious:before{content:'\f1a5'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-deviantart:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-deviantart:before{content:'\f1bd'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-digg:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-digg:before{content:'\f1a6'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-dribbble:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-dribbble:before{content:'\f17d'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-facebook:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-facebook:before{content:'\f09a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-flickr:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-flickr:before{content:'\f16e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-github:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-github:before{content:'\f09b'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-google:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-google:before{content:'\f1a0'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-googleplus:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-googleplus:before{content:'\f0d5'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-html5:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-html5:before{content:'\f13b'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-instagram:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-instagram:before{content:'\f16d'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-linkedin:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-linkedin:before{content:'\f0e1'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-pinterest:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-pinterest:before{content:'\f0d2'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-reddit:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-reddit:before{content:'\f1a1'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-rss:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-rss:before{content:'\f09e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-sharethis:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-sharethis:before{content:'\f1e0'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-skype:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-skype:before{content:'\f17e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-soundcloud:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-soundcloud:before{content:'\f1be'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-spotify:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-spotify:before{content:'\f1bc'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-stackoverflow:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-stackoverflow:before{content:'\f16c'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-steam:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-steam:before{content:'\f1b6'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-stumbleUpon:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-stumbleUpon:before{content:'\f1a4'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-tumblr:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-tumblr:before{content:'\f173'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-twitter:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-twitter:before{content:'\f099'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-vimeo:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-vimeo:before{content:'\f194'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-windows:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-windows:before{content:'\f17a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-wordpress:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-wordpress:before{content:'\f19a'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-yahoo:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-yahoo:before{content:'\f19e'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-youtube:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-youtube:before{content:'\f167'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-xing:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-xing:before{content:'\f168'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-mixcloud:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-mixcloud:before{content:'\f289'}.saboxplugin-socials .saboxplugin-icon-color.saboxplugin-icon-goodreads:before,.saboxplugin-socials .saboxplugin-icon-grey.saboxplugin-icon-goodreads:before{content:'\f2a6'}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-addthis{background:#FF8662;border:1px solid #D5644B;text-shadow:#d5644b 1px 1px,#d5644b 2px 2px,#d5644b 3px 3px,#d5644b 4px 4px,#d5644b 5px 5px,#d5644b 6px 6px,#d5644b 7px 7px,#d5644b 8px 8px,#d5644b 9px 9px,#d5644b 10px 10px,#d5644b 11px 11px,#d5644b 12px 12px,#d5644b 13px 13px,#d5644b 14px 14px,#d5644b 15px 15px,#d5644b 16px 16px,#d5644b 17px 17px,#d5644b 18px 18px,#d5644b 19px 19px,#d5644b 20px 20px,#d5644b 21px 21px,#d5644b 22px 22px,#d5644b 23px 23px,#d5644b 24px 24px,#d5644b 25px 25px,#d5644b 26px 26px,#d5644b 27px 27px,#d5644b 28px 28px,#d5644b 29px 29px,#d5644b 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-behance{background:#0294FF;border:1px solid #0083D4;text-shadow:#0083d4 1px 1px,#0083d4 2px 2px,#0083d4 3px 3px,#0083d4 4px 4px,#0083d4 5px 5px,#0083d4 6px 6px,#0083d4 7px 7px,#0083d4 8px 8px,#0083d4 9px 9px,#0083d4 10px 10px,#0083d4 11px 11px,#0083d4 12px 12px,#0083d4 13px 13px,#0083d4 14px 14px,#0083d4 15px 15px,#0083d4 16px 16px,#0083d4 17px 17px,#0083d4 18px 18px,#0083d4 19px 19px,#0083d4 20px 20px,#0083d4 21px 21px,#0083d4 22px 22px,#0083d4 23px 23px,#0083d4 24px 24px,#0083d4 25px 25px,#0083d4 26px 26px,#0083d4 27px 27px,#0083d4 28px 28px,#0083d4 29px 29px,#0083d4 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-delicious{background:#0294FF;border:1px solid #007ECD;text-shadow:#007ecd 1px 1px,#007ecd 2px 2px,#007ecd 3px 3px,#007ecd 4px 4px,#007ecd 5px 5px,#007ecd 6px 6px,#007ecd 7px 7px,#007ecd 8px 8px,#007ecd 9px 9px,#007ecd 10px 10px,#007ecd 11px 11px,#007ecd 12px 12px,#007ecd 13px 13px,#007ecd 14px 14px,#007ecd 15px 15px,#007ecd 16px 16px,#007ecd 17px 17px,#007ecd 18px 18px,#007ecd 19px 19px,#007ecd 20px 20px,#007ecd 21px 21px,#007ecd 22px 22px,#007ecd 23px 23px,#007ecd 24px 24px,#007ecd 25px 25px,#007ecd 26px 26px,#007ecd 27px 27px,#007ecd 28px 28px,#007ecd 29px 29px,#007ecd 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-deviantart{background:#DCE22B;border:1px solid #B2B423;text-shadow:#b2b423 1px 1px,#b2b423 2px 2px,#b2b423 3px 3px,#b2b423 4px 4px,#b2b423 5px 5px,#b2b423 6px 6px,#b2b423 7px 7px,#b2b423 8px 8px,#b2b423 9px 9px,#b2b423 10px 10px,#b2b423 11px 11px,#b2b423 12px 12px,#b2b423 13px 13px,#b2b423 14px 14px,#b2b423 15px 15px,#b2b423 16px 16px,#b2b423 17px 17px,#b2b423 18px 18px,#b2b423 19px 19px,#b2b423 20px 20px,#b2b423 21px 21px,#b2b423 22px 22px,#b2b423 23px 23px,#b2b423 24px 24px,#b2b423 25px 25px,#b2b423 26px 26px,#b2b423 27px 27px,#b2b423 28px 28px,#b2b423 29px 29px,#b2b423 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-digg{background:#1B8EC4;border:1px solid #126C92;text-shadow:#126c92 1px 1px,#126c92 2px 2px,#126c92 3px 3px,#126c92 4px 4px,#126c92 5px 5px,#126c92 6px 6px,#126c92 7px 7px,#126c92 8px 8px,#126c92 9px 9px,#126c92 10px 10px,#126c92 11px 11px,#126c92 12px 12px,#126c92 13px 13px,#126c92 14px 14px,#126c92 15px 15px,#126c92 16px 16px,#126c92 17px 17px,#126c92 18px 18px,#126c92 19px 19px,#126c92 20px 20px,#126c92 21px 21px,#126c92 22px 22px,#126c92 23px 23px,#126c92 24px 24px,#126c92 25px 25px,#126c92 26px 26px,#126c92 27px 27px,#126c92 28px 28px,#126c92 29px 29px,#126c92 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-dribbble{background:#EF76A4;border:1px solid #C05C84;text-shadow:#c05c84 1px 1px,#c05c84 2px 2px,#c05c84 3px 3px,#c05c84 4px 4px,#c05c84 5px 5px,#c05c84 6px 6px,#c05c84 7px 7px,#c05c84 8px 8px,#c05c84 9px 9px,#c05c84 10px 10px,#c05c84 11px 11px,#c05c84 12px 12px,#c05c84 13px 13px,#c05c84 14px 14px,#c05c84 15px 15px,#c05c84 16px 16px,#c05c84 17px 17px,#c05c84 18px 18px,#c05c84 19px 19px,#c05c84 20px 20px,#c05c84 21px 21px,#c05c84 22px 22px,#c05c84 23px 23px,#c05c84 24px 24px,#c05c84 25px 25px,#c05c84 26px 26px,#c05c84 27px 27px,#c05c84 28px 28px,#c05c84 29px 29px,#c05c84 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-facebook{background:#3B5998;border:1px solid #1E3D7A;text-shadow:#1e3d7a 1px 1px,#1e3d7a 2px 2px,#1e3d7a 3px 3px,#1e3d7a 4px 4px,#1e3d7a 5px 5px,#1e3d7a 6px 6px,#1e3d7a 7px 7px,#1e3d7a 8px 8px,#1e3d7a 9px 9px,#1e3d7a 10px 10px,#1e3d7a 11px 11px,#1e3d7a 12px 12px,#1e3d7a 13px 13px,#1e3d7a 14px 14px,#1e3d7a 15px 15px,#1e3d7a 16px 16px,#1e3d7a 17px 17px,#1e3d7a 18px 18px,#1e3d7a 19px 19px,#1e3d7a 20px 20px,#1e3d7a 21px 21px,#1e3d7a 22px 22px,#1e3d7a 23px 23px,#1e3d7a 24px 24px,#1e3d7a 25px 25px,#1e3d7a 26px 26px,#1e3d7a 27px 27px,#1e3d7a 28px 28px,#1e3d7a 29px 29px,#1e3d7a 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-flickr{background:#FF0586;border:1px solid #D0006F;text-shadow:#d0006f 1px 1px,#d0006f 2px 2px,#d0006f 3px 3px,#d0006f 4px 4px,#d0006f 5px 5px,#d0006f 6px 6px,#d0006f 7px 7px,#d0006f 8px 8px,#d0006f 9px 9px,#d0006f 10px 10px,#d0006f 11px 11px,#d0006f 12px 12px,#d0006f 13px 13px,#d0006f 14px 14px,#d0006f 15px 15px,#d0006f 16px 16px,#d0006f 17px 17px,#d0006f 18px 18px,#d0006f 19px 19px,#d0006f 20px 20px,#d0006f 21px 21px,#d0006f 22px 22px,#d0006f 23px 23px,#d0006f 24px 24px,#d0006f 25px 25px,#d0006f 26px 26px,#d0006f 27px 27px,#d0006f 28px 28px,#d0006f 29px 29px,#d0006f 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-github{background:#829AA8;border:1px solid #4F7385;text-shadow:#4f7385 1px 1px,#4f7385 2px 2px,#4f7385 3px 3px,#4f7385 4px 4px,#4f7385 5px 5px,#4f7385 6px 6px,#4f7385 7px 7px,#4f7385 8px 8px,#4f7385 9px 9px,#4f7385 10px 10px,#4f7385 11px 11px,#4f7385 12px 12px,#4f7385 13px 13px,#4f7385 14px 14px,#4f7385 15px 15px,#4f7385 16px 16px,#4f7385 17px 17px,#4f7385 18px 18px,#4f7385 19px 19px,#4f7385 20px 20px,#4f7385 21px 21px,#4f7385 22px 22px,#4f7385 23px 23px,#4f7385 24px 24px,#4f7385 25px 25px,#4f7385 26px 26px,#4f7385 27px 27px,#4f7385 28px 28px,#4f7385 29px 29px,#4f7385 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-google{background:#E8262F;border:1px solid #C20C18;text-shadow:#c20c18 1px 1px,#c20c18 2px 2px,#c20c18 3px 3px,#c20c18 4px 4px,#c20c18 5px 5px,#c20c18 6px 6px,#c20c18 7px 7px,#c20c18 8px 8px,#c20c18 9px 9px,#c20c18 10px 10px,#c20c18 11px 11px,#c20c18 12px 12px,#c20c18 13px 13px,#c20c18 14px 14px,#c20c18 15px 15px,#c20c18 16px 16px,#c20c18 17px 17px,#c20c18 18px 18px,#c20c18 19px 19px,#c20c18 20px 20px,#c20c18 21px 21px,#c20c18 22px 22px,#c20c18 23px 23px,#c20c18 24px 24px,#c20c18 25px 25px,#c20c18 26px 26px,#c20c18 27px 27px,#c20c18 28px 28px,#c20c18 29px 29px,#c20c18 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-googleplus{background:#DD4B39;border:1px solid #B32414;text-shadow:#b32414 1px 1px,#b32414 2px 2px,#b32414 3px 3px,#b32414 4px 4px,#b32414 5px 5px,#b32414 6px 6px,#b32414 7px 7px,#b32414 8px 8px,#b32414 9px 9px,#b32414 10px 10px,#b32414 11px 11px,#b32414 12px 12px,#b32414 13px 13px,#b32414 14px 14px,#b32414 15px 15px,#b32414 16px 16px,#b32414 17px 17px,#b32414 18px 18px,#b32414 19px 19px,#b32414 20px 20px,#b32414 21px 21px,#b32414 22px 22px,#b32414 23px 23px,#b32414 24px 24px,#b32414 25px 25px,#b32414 26px 26px,#b32414 27px 27px,#b32414 28px 28px,#b32414 29px 29px,#b32414 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-html5{background:#F16528;border:1px solid #C23D08;text-shadow:#c23d08 1px 1px,#c23d08 2px 2px,#c23d08 3px 3px,#c23d08 4px 4px,#c23d08 5px 5px,#c23d08 6px 6px,#c23d08 7px 7px,#c23d08 8px 8px,#c23d08 9px 9px,#c23d08 10px 10px,#c23d08 11px 11px,#c23d08 12px 12px,#c23d08 13px 13px,#c23d08 14px 14px,#c23d08 15px 15px,#c23d08 16px 16px,#c23d08 17px 17px,#c23d08 18px 18px,#c23d08 19px 19px,#c23d08 20px 20px,#c23d08 21px 21px,#c23d08 22px 22px,#c23d08 23px 23px,#c23d08 24px 24px,#c23d08 25px 25px,#c23d08 26px 26px,#c23d08 27px 27px,#c23d08 28px 28px,#c23d08 29px 29px,#c23d08 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-instagram{background:#417096;border:1px solid #244F70;text-shadow:#244f70 1px 1px,#244f70 2px 2px,#244f70 3px 3px,#244f70 4px 4px,#244f70 5px 5px,#244f70 6px 6px,#244f70 7px 7px,#244f70 8px 8px,#244f70 9px 9px,#244f70 10px 10px,#244f70 11px 11px,#244f70 12px 12px,#244f70 13px 13px,#244f70 14px 14px,#244f70 15px 15px,#244f70 16px 16px,#244f70 17px 17px,#244f70 18px 18px,#244f70 19px 19px,#244f70 20px 20px,#244f70 21px 21px,#244f70 22px 22px,#244f70 23px 23px,#244f70 24px 24px,#244f70 25px 25px,#244f70 26px 26px,#244f70 27px 27px,#244f70 28px 28px,#244f70 29px 29px,#244f70 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-linkedin{background:#1583BB;border:1px solid #036390;text-shadow:#036390 1px 1px,#036390 2px 2px,#036390 3px 3px,#036390 4px 4px,#036390 5px 5px,#036390 6px 6px,#036390 7px 7px,#036390 8px 8px,#036390 9px 9px,#036390 10px 10px,#036390 11px 11px,#036390 12px 12px,#036390 13px 13px,#036390 14px 14px,#036390 15px 15px,#036390 16px 16px,#036390 17px 17px,#036390 18px 18px,#036390 19px 19px,#036390 20px 20px,#036390 21px 21px,#036390 22px 22px,#036390 23px 23px,#036390 24px 24px,#036390 25px 25px,#036390 26px 26px,#036390 27px 27px,#036390 28px 28px,#036390 29px 29px,#036390 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-pinterest{background:#CB2027;border:1px solid #9D060E;text-shadow:#9d063e 1px 1px,#9d063e 2px 2px,#9d063e 3px 3px,#9d063e 4px 4px,#9d063e 5px 5px,#9d063e 6px 6px,#9d063e 7px 7px,#9d063e 8px 8px,#9d063e 9px 9px,#9d063e 10px 10px,#9d063e 11px 11px,#9d063e 12px 12px,#9d063e 13px 13px,#9d063e 14px 14px,#9d063e 15px 15px,#9d063e 16px 16px,#9d063e 17px 17px,#9d063e 18px 18px,#9d063e 19px 19px,#9d063e 20px 20px,#9d063e 21px 21px,#9d063e 22px 22px,#9d063e 23px 23px,#9d063e 24px 24px,#9d063e 25px 25px,#9d063e 26px 26px,#9d063e 27px 27px,#9d063e 28px 28px,#9d063e 29px 29px,#9d063e 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-reddit{background:#FF4107;border:1px solid #C62D02;text-shadow:#c62d02 1px 1px,#c62d02 2px 2px,#c62d02 3px 3px,#c62d02 4px 4px,#c62d02 5px 5px,#c62d02 6px 6px,#c62d02 7px 7px,#c62d02 8px 8px,#c62d02 9px 9px,#c62d02 10px 10px,#c62d02 11px 11px,#c62d02 12px 12px,#c62d02 13px 13px,#c62d02 14px 14px,#c62d02 15px 15px,#c62d02 16px 16px,#c62d02 17px 17px,#c62d02 18px 18px,#c62d02 19px 19px,#c62d02 20px 20px,#c62d02 21px 21px,#c62d02 22px 22px,#c62d02 23px 23px,#c62d02 24px 24px,#c62d02 25px 25px,#c62d02 26px 26px,#c62d02 27px 27px,#c62d02 28px 28px,#c62d02 29px 29px,#c62d02 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-rss{background:#FF7A21;border:1px solid #C24B02;text-shadow:#c24b02 1px 1px,#c24b02 2px 2px,#c24b02 3px 3px,#c24b02 4px 4px,#c24b02 5px 5px,#c24b02 6px 6px,#c24b02 7px 7px,#c24b02 8px 8px,#c24b02 9px 9px,#c24b02 10px 10px,#c24b02 11px 11px,#c24b02 12px 12px,#c24b02 13px 13px,#c24b02 14px 14px,#c24b02 15px 15px,#c24b02 16px 16px,#c24b02 17px 17px,#c24b02 18px 18px,#c24b02 19px 19px,#c24b02 20px 20px,#c24b02 21px 21px,#c24b02 22px 22px,#c24b02 23px 23px,#c24b02 24px 24px,#c24b02 25px 25px,#c24b02 26px 26px,#c24b02 27px 27px,#c24b02 28px 28px,#c24b02 29px 29px,#c24b02 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-sharethis{background:#1D9565;border:1px solid #076840;text-shadow:#076840 1px 1px,#076840 2px 2px,#076840 3px 3px,#076840 4px 4px,#076840 5px 5px,#076840 6px 6px,#076840 7px 7px,#076840 8px 8px,#076840 9px 9px,#076840 10px 10px,#076840 11px 11px,#076840 12px 12px,#076840 13px 13px,#076840 14px 14px,#076840 15px 15px,#076840 16px 16px,#076840 17px 17px,#076840 18px 18px,#076840 19px 19px,#076840 20px 20px,#076840 21px 21px,#076840 22px 22px,#076840 23px 23px,#076840 24px 24px,#076840 25px 25px,#076840 26px 26px,#076840 27px 27px,#076840 28px 28px,#076840 29px 29px,#076840 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-skype{background:#3FC1F4;border:1px solid #1B95C2;text-shadow:#1b95c2 1px 1px,#1b95c2 2px 2px,#1b95c2 3px 3px,#1b95c2 4px 4px,#1b95c2 5px 5px,#1b95c2 6px 6px,#1b95c2 7px 7px,#1b95c2 8px 8px,#1b95c2 9px 9px,#1b95c2 10px 10px,#1b95c2 11px 11px,#1b95c2 12px 12px,#1b95c2 13px 13px,#1b95c2 14px 14px,#1b95c2 15px 15px,#1b95c2 16px 16px,#1b95c2 17px 17px,#1b95c2 18px 18px,#1b95c2 19px 19px,#1b95c2 20px 20px,#1b95c2 21px 21px,#1b95c2 22px 22px,#1b95c2 23px 23px,#1b95c2 24px 24px,#1b95c2 25px 25px,#1b95c2 26px 26px,#1b95c2 27px 27px,#1b95c2 28px 28px,#1b95c2 29px 29px,#1b95c2 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-soundcloud{background:#FF5419;border:1px solid #C73002;text-shadow:#c73002 1px 1px,#c73002 2px 2px,#c73002 3px 3px,#c73002 4px 4px,#c73002 5px 5px,#c73002 6px 6px,#c73002 7px 7px,#c73002 8px 8px,#c73002 9px 9px,#c73002 10px 10px,#c73002 11px 11px,#c73002 12px 12px,#c73002 13px 13px,#c73002 14px 14px,#c73002 15px 15px,#c73002 16px 16px,#c73002 17px 17px,#c73002 18px 18px,#c73002 19px 19px,#c73002 20px 20px,#c73002 21px 21px,#c73002 22px 22px,#c73002 23px 23px,#c73002 24px 24px,#c73002 25px 25px,#c73002 26px 26px,#c73002 27px 27px,#c73002 28px 28px,#c73002 29px 29px,#c73002 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-spotify{background:#AECF02;border:1px solid #829900;text-shadow:#829900 1px 1px,#829900 2px 2px,#829900 3px 3px,#829900 4px 4px,#829900 5px 5px,#829900 6px 6px,#829900 7px 7px,#829900 8px 8px,#829900 9px 9px,#829900 10px 10px,#829900 11px 11px,#829900 12px 12px,#829900 13px 13px,#829900 14px 14px,#829900 15px 15px,#829900 16px 16px,#829900 17px 17px,#829900 18px 18px,#829900 19px 19px,#829900 20px 20px,#829900 21px 21px,#829900 22px 22px,#829900 23px 23px,#829900 24px 24px,#829900 25px 25px,#829900 26px 26px,#829900 27px 27px,#829900 28px 28px,#829900 29px 29px,#829900 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-stackoverflow{background:#FF661E;border:1px solid #CE3A00;text-shadow:#ce3a00 1px 1px,#ce3a00 2px 2px,#ce3a00 3px 3px,#ce3a00 4px 4px,#ce3a00 5px 5px,#ce3a00 6px 6px,#ce3a00 7px 7px,#ce3a00 8px 8px,#ce3a00 9px 9px,#ce3a00 10px 10px,#ce3a00 11px 11px,#ce3a00 12px 12px,#ce3a00 13px 13px,#ce3a00 14px 14px,#ce3a00 15px 15px,#ce3a00 16px 16px,#ce3a00 17px 17px,#ce3a00 18px 18px,#ce3a00 19px 19px,#ce3a00 20px 20px,#ce3a00 21px 21px,#ce3a00 22px 22px,#ce3a00 23px 23px,#ce3a00 24px 24px,#ce3a00 25px 25px,#ce3a00 26px 26px,#ce3a00 27px 27px,#ce3a00 28px 28px,#ce3a00 29px 29px,#ce3a00 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-steam{background:#484848;border:1px solid #302B2B;text-shadow:#302b2b 1px 1px,#302b2b 2px 2px,#302b2b 3px 3px,#302b2b 4px 4px,#302b2b 5px 5px,#302b2b 6px 6px,#302b2b 7px 7px,#302b2b 8px 8px,#302b2b 9px 9px,#302b2b 10px 10px,#302b2b 11px 11px,#302b2b 12px 12px,#302b2b 13px 13px,#302b2b 14px 14px,#302b2b 15px 15px,#302b2b 16px 16px,#302b2b 17px 17px,#302b2b 18px 18px,#302b2b 19px 19px,#302b2b 20px 20px,#302b2b 21px 21px,#302b2b 22px 22px,#302b2b 23px 23px,#302b2b 24px 24px,#302b2b 25px 25px,#302b2b 26px 26px,#302b2b 27px 27px,#302b2b 28px 28px,#302b2b 29px 29px,#302b2b 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-stumbleUpon{background:#EB4923;border:1px solid #BE2507;text-shadow:#be2507 1px 1px,#be2507 2px 2px,#be2507 3px 3px,#be2507 4px 4px,#be2507 5px 5px,#be2507 6px 6px,#be2507 7px 7px,#be2507 8px 8px,#be2507 9px 9px,#be2507 10px 10px,#be2507 11px 11px,#be2507 12px 12px,#be2507 13px 13px,#be2507 14px 14px,#be2507 15px 15px,#be2507 16px 16px,#be2507 17px 17px,#be2507 18px 18px,#be2507 19px 19px,#be2507 20px 20px,#be2507 21px 21px,#be2507 22px 22px,#be2507 23px 23px,#be2507 24px 24px,#be2507 25px 25px,#be2507 26px 26px,#be2507 27px 27px,#be2507 28px 28px,#be2507 29px 29px,#be2507 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-tumblr{background:#3C576C;border:1px solid #1E3546;text-shadow:#1e3546 1px 1px,#1e3546 2px 2px,#1e3546 3px 3px,#1e3546 4px 4px,#1e3546 5px 5px,#1e3546 6px 6px,#1e3546 7px 7px,#1e3546 8px 8px,#1e3546 9px 9px,#1e3546 10px 10px,#1e3546 11px 11px,#1e3546 12px 12px,#1e3546 13px 13px,#1e3546 14px 14px,#1e3546 15px 15px,#1e3546 16px 16px,#1e3546 17px 17px,#1e3546 18px 18px,#1e3546 19px 19px,#1e3546 20px 20px,#1e3546 21px 21px,#1e3546 22px 22px,#1e3546 23px 23px,#1e3546 24px 24px,#1e3546 25px 25px,#1e3546 26px 26px,#1e3546 27px 27px,#1e3546 28px 28px,#1e3546 29px 29px,#1e3546 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-twitter{background:#00ACED;border:1px solid #008AB8;text-shadow:#008ab8 1px 1px,#008ab8 2px 2px,#008ab8 3px 3px,#008ab8 4px 4px,#008ab8 5px 5px,#008ab8 6px 6px,#008ab8 7px 7px,#008ab8 8px 8px,#008ab8 9px 9px,#008ab8 10px 10px,#008ab8 11px 11px,#008ab8 12px 12px,#008ab8 13px 13px,#008ab8 14px 14px,#008ab8 15px 15px,#008ab8 16px 16px,#008ab8 17px 17px,#008ab8 18px 18px,#008ab8 19px 19px,#008ab8 20px 20px,#008ab8 21px 21px,#008ab8 22px 22px,#008ab8 23px 23px,#008ab8 24px 24px,#008ab8 25px 25px,#008ab8 26px 26px,#008ab8 27px 27px,#008ab8 28px 28px,#008ab8 29px 29px,#008ab8 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-vimeo{background:#006599;border:1px solid #00496A;text-shadow:#00496a 1px 1px,#00496a 2px 2px,#00496a 3px 3px,#00496a 4px 4px,#00496a 5px 5px,#00496a 6px 6px,#00496a 7px 7px,#00496a 8px 8px,#00496a 9px 9px,#00496a 10px 10px,#00496a 11px 11px,#00496a 12px 12px,#00496a 13px 13px,#00496a 14px 14px,#00496a 15px 15px,#00496a 16px 16px,#00496a 17px 17px,#00496a 18px 18px,#00496a 19px 19px,#00496a 20px 20px,#00496a 21px 21px,#00496a 22px 22px,#00496a 23px 23px,#00496a 24px 24px,#00496a 25px 25px,#00496a 26px 26px,#00496a 27px 27px,#00496a 28px 28px,#00496a 29px 29px,#00496a 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-windows{background:#00ADEF;border:1px solid #038BBC;text-shadow:#038bbc 1px 1px,#038bbc 2px 2px,#038bbc 3px 3px,#038bbc 4px 4px,#038bbc 5px 5px,#038bbc 6px 6px,#038bbc 7px 7px,#038bbc 8px 8px,#038bbc 9px 9px,#038bbc 10px 10px,#038bbc 11px 11px,#038bbc 12px 12px,#038bbc 13px 13px,#038bbc 14px 14px,#038bbc 15px 15px,#038bbc 16px 16px,#038bbc 17px 17px,#038bbc 18px 18px,#038bbc 19px 19px,#038bbc 20px 20px,#038bbc 21px 21px,#038bbc 22px 22px,#038bbc 23px 23px,#038bbc 24px 24px,#038bbc 25px 25px,#038bbc 26px 26px,#038bbc 27px 27px,#038bbc 28px 28px,#038bbc 29px 29px,#038bbc 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-wordpress{background:#21759A;border:1px solid #0F607E;text-shadow:#0f607e 1px 1px,#0f607e 2px 2px,#0f607e 3px 3px,#0f607e 4px 4px,#0f607e 5px 5px,#0f607e 6px 6px,#0f607e 7px 7px,#0f607e 8px 8px,#0f607e 9px 9px,#0f607e 10px 10px,#0f607e 11px 11px,#0f607e 12px 12px,#0f607e 13px 13px,#0f607e 14px 14px,#0f607e 15px 15px,#0f607e 16px 16px,#0f607e 17px 17px,#0f607e 18px 18px,#0f607e 19px 19px,#0f607e 20px 20px,#0f607e 21px 21px,#0f607e 22px 22px,#0f607e 23px 23px,#0f607e 24px 24px,#0f607e 25px 25px,#0f607e 26px 26px,#0f607e 27px 27px,#0f607e 28px 28px,#0f607e 29px 29px,#0f607e 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-yahoo{background:#4101AF;border:1px solid #290074;text-shadow:#290074 1px 1px,#290074 2px 2px,#290074 3px 3px,#290074 4px 4px,#290074 5px 5px,#290074 6px 6px,#290074 7px 7px,#290074 8px 8px,#290074 9px 9px,#290074 10px 10px,#290074 11px 11px,#290074 12px 12px,#290074 13px 13px,#290074 14px 14px,#290074 15px 15px,#290074 16px 16px,#290074 17px 17px,#290074 18px 18px,#290074 19px 19px,#290074 20px 20px,#290074 21px 21px,#290074 22px 22px,#290074 23px 23px,#290074 24px 24px,#290074 25px 25px,#290074 26px 26px,#290074 27px 27px,#290074 28px 28px,#290074 29px 29px,#290074 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-youtube{background:#E52C27;border:1px solid #BE0707;text-shadow:#be0707 1px 1px,#be0707 2px 2px,#be0707 3px 3px,#be0707 4px 4px,#be0707 5px 5px,#be0707 6px 6px,#be0707 7px 7px,#be0707 8px 8px,#be0707 9px 9px,#be0707 10px 10px,#be0707 11px 11px,#be0707 12px 12px,#be0707 13px 13px,#be0707 14px 14px,#be0707 15px 15px,#be0707 16px 16px,#be0707 17px 17px,#be0707 18px 18px,#be0707 19px 19px,#be0707 20px 20px,#be0707 21px 21px,#be0707 22px 22px,#be0707 23px 23px,#be0707 24px 24px,#be0707 25px 25px,#be0707 26px 26px,#be0707 27px 27px,#be0707 28px 28px,#be0707 29px 29px,#be0707 30px 30px}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color.saboxplugin-icon-xing{background:#026466;border:1px solid #004746;text-shadow:#004746 1px 1px,#004746 2px 2px,#004746 3px 3px,#004746 4px 4px,#004746 5px 5px,#004746 6px 6px,#004746 7px 7px,#004746 8px 8px,#004746 9px 9px,#004746 10px 10px,#004746 11px 11px,#004746 12px 12px,#004746 13px 13px,#004746 14px 14px,#004746 15px 15px,#004746 16px 16px,#004746 17px 17px,#004746 18px 18px,#004746 19px 19px,#004746 20px 20px,#004746 21px 21px,#004746 22px 22px,#004746 23px 23px,#004746 24px 24px,#004746 25px 25px,#004746 26px 26px,#004746 27px 27px,#004746 28px 28px,#004746 29px 29px,#004746 30px 30px}@media screen and (max-width:480px){.saboxplugin-wrap{text-align:center}.saboxplugin-wrap .saboxplugin-gravatar{float:none;padding:20px 0;text-align:center;margin:0 auto;display:block}.saboxplugin-wrap .saboxplugin-gravatar img{float:none;display:inline-block;display:-moz-inline-stack;vertical-align:middle;zoom:1}.saboxplugin-wrap .saboxplugin-desc{margin:0 10px 20px;text-align:center}.saboxplugin-wrap .saboxplugin-authorname{text-align:center;margin:10px 0 20px}}
|
lang/saboxplugin.mo
DELETED
Binary file
|
lang/saboxplugin.po
DELETED
@@ -1,345 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
4 |
-
"Content-Transfer-Encoding: 8bit\n"
|
5 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
6 |
-
"Project-Id-Version: Simple Author Box\n"
|
7 |
-
"POT-Creation-Date: \n"
|
8 |
-
"PO-Revision-Date: \n"
|
9 |
-
"Last-Translator: Liviu Costache <tiguan@tiguandesign.com>\n"
|
10 |
-
"Language-Team: Tiguandesign.com <tiguan@tiguandesign.com>\n"
|
11 |
-
"MIME-Version: 1.0\n"
|
12 |
-
"Language: en\n"
|
13 |
-
"X-Generator: Poedit 1.6.7\n"
|
14 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"X-Poedit-KeywordsList: _e;__\n"
|
16 |
-
"X-Poedit-Basepath: .\n"
|
17 |
-
"X-Poedit-SearchPath-0: ..\n"
|
18 |
-
|
19 |
-
#. Text in echo
|
20 |
-
#: simple-author-box/template/options.php:165
|
21 |
-
msgid "Add \"nofollow\" attribute on author website link:"
|
22 |
-
msgstr ""
|
23 |
-
|
24 |
-
#. Text in echo
|
25 |
-
#: simple-author-box/template/options.php:112
|
26 |
-
msgid "Author avatar image style:"
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#. Text in echo
|
30 |
-
#: simple-author-box/template/options.php:373
|
31 |
-
msgid "Author description font family:"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#. Text in echo
|
35 |
-
#: simple-author-box/template/options.php:474
|
36 |
-
msgid "Author description font size:"
|
37 |
-
msgstr ""
|
38 |
-
|
39 |
-
#. Text in echo
|
40 |
-
#: simple-author-box/template/options.php:515
|
41 |
-
msgid "Author description font style:"
|
42 |
-
msgstr ""
|
43 |
-
|
44 |
-
#. Text in echo
|
45 |
-
#: simple-author-box/template/options.php:255
|
46 |
-
msgid "Author name color:"
|
47 |
-
msgstr ""
|
48 |
-
|
49 |
-
#. Text in echo
|
50 |
-
#: simple-author-box/template/options.php:327
|
51 |
-
msgid "Author name font family:"
|
52 |
-
msgstr ""
|
53 |
-
|
54 |
-
#. Text in echo
|
55 |
-
#: simple-author-box/template/options.php:412
|
56 |
-
msgid "Author name font size:"
|
57 |
-
msgstr ""
|
58 |
-
|
59 |
-
#. Text in echo
|
60 |
-
#: simple-author-box/template/options.php:350
|
61 |
-
msgid "Author website font family:"
|
62 |
-
msgstr ""
|
63 |
-
|
64 |
-
#. Text in echo
|
65 |
-
#: simple-author-box/template/options.php:443
|
66 |
-
msgid "Author website font size:"
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#. Text in echo
|
70 |
-
#: simple-author-box/template/options.php:264
|
71 |
-
msgid "Author website link color:"
|
72 |
-
msgstr ""
|
73 |
-
|
74 |
-
#. Text in echo
|
75 |
-
#: simple-author-box/template/options.php:145
|
76 |
-
msgid "Author website position:"
|
77 |
-
msgstr ""
|
78 |
-
|
79 |
-
#. Text in echo
|
80 |
-
#: simple-author-box/template/options.php:281
|
81 |
-
msgid "Background color of social icons bar:"
|
82 |
-
msgstr ""
|
83 |
-
|
84 |
-
#. Text in echo
|
85 |
-
#: simple-author-box/template/options.php:273
|
86 |
-
msgid "Border color of Simple Author Box:"
|
87 |
-
msgstr ""
|
88 |
-
|
89 |
-
#. Text in echo
|
90 |
-
#: simple-author-box/template/options.php:91
|
91 |
-
msgid "Bottom margin of author box:"
|
92 |
-
msgstr ""
|
93 |
-
|
94 |
-
#. Text in echo
|
95 |
-
#: simple-author-box/template/options.php:117
|
96 |
-
#: simple-author-box/template/options.php:195
|
97 |
-
msgid "Circle"
|
98 |
-
msgstr ""
|
99 |
-
|
100 |
-
#. Text in echo
|
101 |
-
#: simple-author-box/template/options.php:251
|
102 |
-
msgid "Color options"
|
103 |
-
msgstr ""
|
104 |
-
|
105 |
-
#. Text in echo
|
106 |
-
#: simple-author-box/template/options.php:183
|
107 |
-
msgid "Colored"
|
108 |
-
msgstr ""
|
109 |
-
|
110 |
-
#. Text in echo
|
111 |
-
#: simple-author-box/template/options.php:479
|
112 |
-
msgid "Default font size of author description is 14px."
|
113 |
-
msgstr ""
|
114 |
-
|
115 |
-
#. Text in echo
|
116 |
-
#: simple-author-box/template/options.php:417
|
117 |
-
msgid "Default font size of author name is 18px."
|
118 |
-
msgstr ""
|
119 |
-
|
120 |
-
#. Text in echo
|
121 |
-
#: simple-author-box/template/options.php:448
|
122 |
-
msgid "Default font size of author website is 14px."
|
123 |
-
msgstr ""
|
124 |
-
|
125 |
-
#. Text in echo
|
126 |
-
#: simple-author-box/template/options.php:507
|
127 |
-
msgid "Default font size of social icons is 18px."
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
#. Text in echo
|
131 |
-
#: simple-author-box/template/options.php:531
|
132 |
-
msgid "Disable Font Awesome stylesheet:"
|
133 |
-
msgstr ""
|
134 |
-
|
135 |
-
#. Text in echo
|
136 |
-
#: simple-author-box/template/options.php:31
|
137 |
-
msgid "General options"
|
138 |
-
msgstr ""
|
139 |
-
|
140 |
-
#. Text in echo
|
141 |
-
#: simple-author-box/template/options.php:308
|
142 |
-
msgid "Google font characters subset:"
|
143 |
-
msgstr ""
|
144 |
-
|
145 |
-
#. Text in echo
|
146 |
-
#: simple-author-box/template/options.php:103
|
147 |
-
msgid "Hide the author box if author description is empty:"
|
148 |
-
msgstr ""
|
149 |
-
|
150 |
-
#. Text in echo
|
151 |
-
#: simple-author-box/template/options.php:240
|
152 |
-
msgid "Hide the social icons on author box:"
|
153 |
-
msgstr ""
|
154 |
-
|
155 |
-
#. Text in echo
|
156 |
-
#: simple-author-box/template/options.php:45
|
157 |
-
msgid ""
|
158 |
-
"If you want to manually insert the Simple Author Box in your template file "
|
159 |
-
"(single post view), you can use the following code snippet: "
|
160 |
-
msgstr ""
|
161 |
-
|
162 |
-
#. Text in echo
|
163 |
-
#: simple-author-box/template/options.php:579
|
164 |
-
msgid "Installed Version:"
|
165 |
-
msgstr ""
|
166 |
-
|
167 |
-
#. Text in echo
|
168 |
-
#: simple-author-box/template/options.php:520
|
169 |
-
msgid "Italic"
|
170 |
-
msgstr ""
|
171 |
-
|
172 |
-
#. Text in echo
|
173 |
-
#: simple-author-box/template/options.php:586
|
174 |
-
msgid "Last Update:"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#. Text in echo
|
178 |
-
#: simple-author-box/template/options.php:150
|
179 |
-
msgid "Left"
|
180 |
-
msgstr ""
|
181 |
-
|
182 |
-
#. Text in echo
|
183 |
-
#: simple-author-box/template/options.php:543
|
184 |
-
msgid "Load generated inline style to footer:"
|
185 |
-
msgstr ""
|
186 |
-
|
187 |
-
#. Text in echo
|
188 |
-
#: simple-author-box/template/options.php:34
|
189 |
-
msgid "Manually insert the Simple Author Box:"
|
190 |
-
msgstr ""
|
191 |
-
|
192 |
-
#. Text in echo
|
193 |
-
#: simple-author-box/template/options.php:528
|
194 |
-
msgid "Miscellaneous options"
|
195 |
-
msgstr ""
|
196 |
-
|
197 |
-
#. Text in echo
|
198 |
-
#: simple-author-box/template/options.php:39
|
199 |
-
#: simple-author-box/template/options.php:108
|
200 |
-
#: simple-author-box/template/options.php:126
|
201 |
-
#: simple-author-box/template/options.php:138
|
202 |
-
#: simple-author-box/template/options.php:160
|
203 |
-
#: simple-author-box/template/options.php:170
|
204 |
-
#: simple-author-box/template/options.php:204
|
205 |
-
#: simple-author-box/template/options.php:213
|
206 |
-
#: simple-author-box/template/options.php:222
|
207 |
-
#: simple-author-box/template/options.php:235
|
208 |
-
#: simple-author-box/template/options.php:245
|
209 |
-
#: simple-author-box/template/options.php:537
|
210 |
-
#: simple-author-box/template/options.php:549
|
211 |
-
msgid "No"
|
212 |
-
msgstr ""
|
213 |
-
|
214 |
-
#. Text in echo
|
215 |
-
#: simple-author-box/template/options.php:379
|
216 |
-
msgid "None"
|
217 |
-
msgstr ""
|
218 |
-
|
219 |
-
#. Text in echo
|
220 |
-
#: simple-author-box/template/options.php:520
|
221 |
-
msgid "Normal"
|
222 |
-
msgstr ""
|
223 |
-
|
224 |
-
#. Text in echo
|
225 |
-
#: simple-author-box/template/options.php:155
|
226 |
-
msgid "Open author website link in a new tab:"
|
227 |
-
msgstr ""
|
228 |
-
|
229 |
-
#. Text in echo
|
230 |
-
#: simple-author-box/template/options.php:230
|
231 |
-
msgid "Open social icon links in a new tab:"
|
232 |
-
msgstr ""
|
233 |
-
|
234 |
-
#. Text in echo
|
235 |
-
#: simple-author-box/template/options.php:309
|
236 |
-
msgid "Please note that some Google fonts does not support particular subsets!"
|
237 |
-
msgstr ""
|
238 |
-
|
239 |
-
#. Text in echo
|
240 |
-
#: simple-author-box/template/options.php:150
|
241 |
-
msgid "Right"
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#. Text in echo
|
245 |
-
#: simple-author-box/template/options.php:121
|
246 |
-
msgid "Rotate effect on author avatar hover:"
|
247 |
-
msgstr ""
|
248 |
-
|
249 |
-
#. Text in echo
|
250 |
-
#: simple-author-box/template/options.php:199
|
251 |
-
msgid "Rotate effect on social icons hover:"
|
252 |
-
msgstr ""
|
253 |
-
|
254 |
-
#. Text in echo
|
255 |
-
#: simple-author-box/template/options.php:217
|
256 |
-
msgid "Show a thin border on colored social icons:"
|
257 |
-
msgstr ""
|
258 |
-
|
259 |
-
#. Text in echo
|
260 |
-
#: simple-author-box/template/options.php:133
|
261 |
-
msgid "Show author website:"
|
262 |
-
msgstr ""
|
263 |
-
|
264 |
-
#. Text in echo
|
265 |
-
#: simple-author-box/template/options.php:500
|
266 |
-
msgid "Size of social icons:"
|
267 |
-
msgstr ""
|
268 |
-
|
269 |
-
#. Text in echo
|
270 |
-
#: simple-author-box/template/options.php:290
|
271 |
-
msgid "Social icons color (for symbols only):"
|
272 |
-
msgstr ""
|
273 |
-
|
274 |
-
#. Text in echo
|
275 |
-
#: simple-author-box/template/options.php:190
|
276 |
-
msgid "Social icons style:"
|
277 |
-
msgstr ""
|
278 |
-
|
279 |
-
#. Text in echo
|
280 |
-
#: simple-author-box/template/options.php:177
|
281 |
-
msgid "Social icons type (colored background or symbols only):"
|
282 |
-
msgstr ""
|
283 |
-
|
284 |
-
#. Text in echo
|
285 |
-
#: simple-author-box/template/options.php:117
|
286 |
-
msgid "Square"
|
287 |
-
msgstr ""
|
288 |
-
|
289 |
-
#. Text in echo
|
290 |
-
#: simple-author-box/template/options.php:195
|
291 |
-
msgid "Squares"
|
292 |
-
msgstr ""
|
293 |
-
|
294 |
-
#. Text in echo
|
295 |
-
#: simple-author-box/template/options.php:532
|
296 |
-
msgid ""
|
297 |
-
"Switch to \"Yes\" to prevent Font Awesome from loading its stylesheet, ONLY "
|
298 |
-
"if your theme or another plugin already does."
|
299 |
-
msgstr ""
|
300 |
-
|
301 |
-
#. Text in echo
|
302 |
-
#: simple-author-box/template/options.php:183
|
303 |
-
msgid "Symbols"
|
304 |
-
msgstr ""
|
305 |
-
|
306 |
-
#. Text in echo
|
307 |
-
#: simple-author-box/template/options.php:544
|
308 |
-
msgid ""
|
309 |
-
"This option is useful ONLY if you run a plugin that optimizes your CSS "
|
310 |
-
"delivery or moves your stylesheets to the footer, to get a higher score on "
|
311 |
-
"speed testing services. However, the plugin style is loaded only on single "
|
312 |
-
"post and single page."
|
313 |
-
msgstr ""
|
314 |
-
|
315 |
-
#. Text in echo
|
316 |
-
#: simple-author-box/template/options.php:66
|
317 |
-
msgid "Top margin of author box:"
|
318 |
-
msgstr ""
|
319 |
-
|
320 |
-
#. Text in echo
|
321 |
-
#: simple-author-box/template/options.php:303
|
322 |
-
msgid "Typography options"
|
323 |
-
msgstr ""
|
324 |
-
|
325 |
-
#. Text in echo
|
326 |
-
#: simple-author-box/template/options.php:208
|
327 |
-
msgid "Use flat long shadow effect:"
|
328 |
-
msgstr ""
|
329 |
-
|
330 |
-
#. Text in echo
|
331 |
-
#: simple-author-box/template/options.php:39
|
332 |
-
#: simple-author-box/template/options.php:108
|
333 |
-
#: simple-author-box/template/options.php:126
|
334 |
-
#: simple-author-box/template/options.php:138
|
335 |
-
#: simple-author-box/template/options.php:160
|
336 |
-
#: simple-author-box/template/options.php:170
|
337 |
-
#: simple-author-box/template/options.php:204
|
338 |
-
#: simple-author-box/template/options.php:213
|
339 |
-
#: simple-author-box/template/options.php:222
|
340 |
-
#: simple-author-box/template/options.php:235
|
341 |
-
#: simple-author-box/template/options.php:245
|
342 |
-
#: simple-author-box/template/options.php:537
|
343 |
-
#: simple-author-box/template/options.php:549
|
344 |
-
msgid "Yes"
|
345 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/saboxplugin.pot
DELETED
@@ -1,345 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
4 |
-
"Content-Transfer-Encoding: 8bit\n"
|
5 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
6 |
-
"Project-Id-Version: Simple Author Box\n"
|
7 |
-
"POT-Creation-Date: \n"
|
8 |
-
"PO-Revision-Date: \n"
|
9 |
-
"Last-Translator: Liviu Costache <tiguan@tiguandesign.com>\n"
|
10 |
-
"Language-Team: Tiguandesign.com <tiguan@tiguandesign.com>\n"
|
11 |
-
"MIME-Version: 1.0\n"
|
12 |
-
"Language: en\n"
|
13 |
-
"X-Generator: Poedit 1.6.7\n"
|
14 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"X-Poedit-KeywordsList: _e;__\n"
|
16 |
-
"X-Poedit-Basepath: .\n"
|
17 |
-
"X-Poedit-SearchPath-0: ..\n"
|
18 |
-
|
19 |
-
#. Text in echo
|
20 |
-
#: simple-author-box/template/options.php:165
|
21 |
-
msgid "Add \"nofollow\" attribute on author website link:"
|
22 |
-
msgstr ""
|
23 |
-
|
24 |
-
#. Text in echo
|
25 |
-
#: simple-author-box/template/options.php:112
|
26 |
-
msgid "Author avatar image style:"
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#. Text in echo
|
30 |
-
#: simple-author-box/template/options.php:373
|
31 |
-
msgid "Author description font family:"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#. Text in echo
|
35 |
-
#: simple-author-box/template/options.php:474
|
36 |
-
msgid "Author description font size:"
|
37 |
-
msgstr ""
|
38 |
-
|
39 |
-
#. Text in echo
|
40 |
-
#: simple-author-box/template/options.php:515
|
41 |
-
msgid "Author description font style:"
|
42 |
-
msgstr ""
|
43 |
-
|
44 |
-
#. Text in echo
|
45 |
-
#: simple-author-box/template/options.php:255
|
46 |
-
msgid "Author name color:"
|
47 |
-
msgstr ""
|
48 |
-
|
49 |
-
#. Text in echo
|
50 |
-
#: simple-author-box/template/options.php:327
|
51 |
-
msgid "Author name font family:"
|
52 |
-
msgstr ""
|
53 |
-
|
54 |
-
#. Text in echo
|
55 |
-
#: simple-author-box/template/options.php:412
|
56 |
-
msgid "Author name font size:"
|
57 |
-
msgstr ""
|
58 |
-
|
59 |
-
#. Text in echo
|
60 |
-
#: simple-author-box/template/options.php:350
|
61 |
-
msgid "Author website font family:"
|
62 |
-
msgstr ""
|
63 |
-
|
64 |
-
#. Text in echo
|
65 |
-
#: simple-author-box/template/options.php:443
|
66 |
-
msgid "Author website font size:"
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#. Text in echo
|
70 |
-
#: simple-author-box/template/options.php:264
|
71 |
-
msgid "Author website link color:"
|
72 |
-
msgstr ""
|
73 |
-
|
74 |
-
#. Text in echo
|
75 |
-
#: simple-author-box/template/options.php:145
|
76 |
-
msgid "Author website position:"
|
77 |
-
msgstr ""
|
78 |
-
|
79 |
-
#. Text in echo
|
80 |
-
#: simple-author-box/template/options.php:281
|
81 |
-
msgid "Background color of social icons bar:"
|
82 |
-
msgstr ""
|
83 |
-
|
84 |
-
#. Text in echo
|
85 |
-
#: simple-author-box/template/options.php:273
|
86 |
-
msgid "Border color of Simple Author Box:"
|
87 |
-
msgstr ""
|
88 |
-
|
89 |
-
#. Text in echo
|
90 |
-
#: simple-author-box/template/options.php:91
|
91 |
-
msgid "Bottom margin of author box:"
|
92 |
-
msgstr ""
|
93 |
-
|
94 |
-
#. Text in echo
|
95 |
-
#: simple-author-box/template/options.php:117
|
96 |
-
#: simple-author-box/template/options.php:195
|
97 |
-
msgid "Circle"
|
98 |
-
msgstr ""
|
99 |
-
|
100 |
-
#. Text in echo
|
101 |
-
#: simple-author-box/template/options.php:251
|
102 |
-
msgid "Color options"
|
103 |
-
msgstr ""
|
104 |
-
|
105 |
-
#. Text in echo
|
106 |
-
#: simple-author-box/template/options.php:183
|
107 |
-
msgid "Colored"
|
108 |
-
msgstr ""
|
109 |
-
|
110 |
-
#. Text in echo
|
111 |
-
#: simple-author-box/template/options.php:479
|
112 |
-
msgid "Default font size of author description is 14px."
|
113 |
-
msgstr ""
|
114 |
-
|
115 |
-
#. Text in echo
|
116 |
-
#: simple-author-box/template/options.php:417
|
117 |
-
msgid "Default font size of author name is 18px."
|
118 |
-
msgstr ""
|
119 |
-
|
120 |
-
#. Text in echo
|
121 |
-
#: simple-author-box/template/options.php:448
|
122 |
-
msgid "Default font size of author website is 14px."
|
123 |
-
msgstr ""
|
124 |
-
|
125 |
-
#. Text in echo
|
126 |
-
#: simple-author-box/template/options.php:507
|
127 |
-
msgid "Default font size of social icons is 18px."
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
#. Text in echo
|
131 |
-
#: simple-author-box/template/options.php:531
|
132 |
-
msgid "Disable Font Awesome stylesheet:"
|
133 |
-
msgstr ""
|
134 |
-
|
135 |
-
#. Text in echo
|
136 |
-
#: simple-author-box/template/options.php:31
|
137 |
-
msgid "General options"
|
138 |
-
msgstr ""
|
139 |
-
|
140 |
-
#. Text in echo
|
141 |
-
#: simple-author-box/template/options.php:308
|
142 |
-
msgid "Google font characters subset:"
|
143 |
-
msgstr ""
|
144 |
-
|
145 |
-
#. Text in echo
|
146 |
-
#: simple-author-box/template/options.php:103
|
147 |
-
msgid "Hide the author box if author description is empty:"
|
148 |
-
msgstr ""
|
149 |
-
|
150 |
-
#. Text in echo
|
151 |
-
#: simple-author-box/template/options.php:240
|
152 |
-
msgid "Hide the social icons on author box:"
|
153 |
-
msgstr ""
|
154 |
-
|
155 |
-
#. Text in echo
|
156 |
-
#: simple-author-box/template/options.php:45
|
157 |
-
msgid ""
|
158 |
-
"If you want to manually insert the Simple Author Box in your template file "
|
159 |
-
"(single post view), you can use the following code snippet: "
|
160 |
-
msgstr ""
|
161 |
-
|
162 |
-
#. Text in echo
|
163 |
-
#: simple-author-box/template/options.php:579
|
164 |
-
msgid "Installed Version:"
|
165 |
-
msgstr ""
|
166 |
-
|
167 |
-
#. Text in echo
|
168 |
-
#: simple-author-box/template/options.php:520
|
169 |
-
msgid "Italic"
|
170 |
-
msgstr ""
|
171 |
-
|
172 |
-
#. Text in echo
|
173 |
-
#: simple-author-box/template/options.php:586
|
174 |
-
msgid "Last Update:"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#. Text in echo
|
178 |
-
#: simple-author-box/template/options.php:150
|
179 |
-
msgid "Left"
|
180 |
-
msgstr ""
|
181 |
-
|
182 |
-
#. Text in echo
|
183 |
-
#: simple-author-box/template/options.php:543
|
184 |
-
msgid "Load generated inline style to footer:"
|
185 |
-
msgstr ""
|
186 |
-
|
187 |
-
#. Text in echo
|
188 |
-
#: simple-author-box/template/options.php:34
|
189 |
-
msgid "Manually insert the Simple Author Box:"
|
190 |
-
msgstr ""
|
191 |
-
|
192 |
-
#. Text in echo
|
193 |
-
#: simple-author-box/template/options.php:528
|
194 |
-
msgid "Miscellaneous options"
|
195 |
-
msgstr ""
|
196 |
-
|
197 |
-
#. Text in echo
|
198 |
-
#: simple-author-box/template/options.php:39
|
199 |
-
#: simple-author-box/template/options.php:108
|
200 |
-
#: simple-author-box/template/options.php:126
|
201 |
-
#: simple-author-box/template/options.php:138
|
202 |
-
#: simple-author-box/template/options.php:160
|
203 |
-
#: simple-author-box/template/options.php:170
|
204 |
-
#: simple-author-box/template/options.php:204
|
205 |
-
#: simple-author-box/template/options.php:213
|
206 |
-
#: simple-author-box/template/options.php:222
|
207 |
-
#: simple-author-box/template/options.php:235
|
208 |
-
#: simple-author-box/template/options.php:245
|
209 |
-
#: simple-author-box/template/options.php:537
|
210 |
-
#: simple-author-box/template/options.php:549
|
211 |
-
msgid "No"
|
212 |
-
msgstr ""
|
213 |
-
|
214 |
-
#. Text in echo
|
215 |
-
#: simple-author-box/template/options.php:379
|
216 |
-
msgid "None"
|
217 |
-
msgstr ""
|
218 |
-
|
219 |
-
#. Text in echo
|
220 |
-
#: simple-author-box/template/options.php:520
|
221 |
-
msgid "Normal"
|
222 |
-
msgstr ""
|
223 |
-
|
224 |
-
#. Text in echo
|
225 |
-
#: simple-author-box/template/options.php:155
|
226 |
-
msgid "Open author website link in a new tab:"
|
227 |
-
msgstr ""
|
228 |
-
|
229 |
-
#. Text in echo
|
230 |
-
#: simple-author-box/template/options.php:230
|
231 |
-
msgid "Open social icon links in a new tab:"
|
232 |
-
msgstr ""
|
233 |
-
|
234 |
-
#. Text in echo
|
235 |
-
#: simple-author-box/template/options.php:309
|
236 |
-
msgid "Please note that some Google fonts does not support particular subsets!"
|
237 |
-
msgstr ""
|
238 |
-
|
239 |
-
#. Text in echo
|
240 |
-
#: simple-author-box/template/options.php:150
|
241 |
-
msgid "Right"
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#. Text in echo
|
245 |
-
#: simple-author-box/template/options.php:121
|
246 |
-
msgid "Rotate effect on author avatar hover:"
|
247 |
-
msgstr ""
|
248 |
-
|
249 |
-
#. Text in echo
|
250 |
-
#: simple-author-box/template/options.php:199
|
251 |
-
msgid "Rotate effect on social icons hover:"
|
252 |
-
msgstr ""
|
253 |
-
|
254 |
-
#. Text in echo
|
255 |
-
#: simple-author-box/template/options.php:217
|
256 |
-
msgid "Show a thin border on colored social icons:"
|
257 |
-
msgstr ""
|
258 |
-
|
259 |
-
#. Text in echo
|
260 |
-
#: simple-author-box/template/options.php:133
|
261 |
-
msgid "Show author website:"
|
262 |
-
msgstr ""
|
263 |
-
|
264 |
-
#. Text in echo
|
265 |
-
#: simple-author-box/template/options.php:500
|
266 |
-
msgid "Size of social icons:"
|
267 |
-
msgstr ""
|
268 |
-
|
269 |
-
#. Text in echo
|
270 |
-
#: simple-author-box/template/options.php:290
|
271 |
-
msgid "Social icons color (for symbols only):"
|
272 |
-
msgstr ""
|
273 |
-
|
274 |
-
#. Text in echo
|
275 |
-
#: simple-author-box/template/options.php:190
|
276 |
-
msgid "Social icons style:"
|
277 |
-
msgstr ""
|
278 |
-
|
279 |
-
#. Text in echo
|
280 |
-
#: simple-author-box/template/options.php:177
|
281 |
-
msgid "Social icons type (colored background or symbols only):"
|
282 |
-
msgstr ""
|
283 |
-
|
284 |
-
#. Text in echo
|
285 |
-
#: simple-author-box/template/options.php:117
|
286 |
-
msgid "Square"
|
287 |
-
msgstr ""
|
288 |
-
|
289 |
-
#. Text in echo
|
290 |
-
#: simple-author-box/template/options.php:195
|
291 |
-
msgid "Squares"
|
292 |
-
msgstr ""
|
293 |
-
|
294 |
-
#. Text in echo
|
295 |
-
#: simple-author-box/template/options.php:532
|
296 |
-
msgid ""
|
297 |
-
"Switch to \"Yes\" to prevent Font Awesome from loading its stylesheet, ONLY "
|
298 |
-
"if your theme or another plugin already does."
|
299 |
-
msgstr ""
|
300 |
-
|
301 |
-
#. Text in echo
|
302 |
-
#: simple-author-box/template/options.php:183
|
303 |
-
msgid "Symbols"
|
304 |
-
msgstr ""
|
305 |
-
|
306 |
-
#. Text in echo
|
307 |
-
#: simple-author-box/template/options.php:544
|
308 |
-
msgid ""
|
309 |
-
"This option is useful ONLY if you run a plugin that optimizes your CSS "
|
310 |
-
"delivery or moves your stylesheets to the footer, to get a higher score on "
|
311 |
-
"speed testing services. However, the plugin style is loaded only on single "
|
312 |
-
"post and single page."
|
313 |
-
msgstr ""
|
314 |
-
|
315 |
-
#. Text in echo
|
316 |
-
#: simple-author-box/template/options.php:66
|
317 |
-
msgid "Top margin of author box:"
|
318 |
-
msgstr ""
|
319 |
-
|
320 |
-
#. Text in echo
|
321 |
-
#: simple-author-box/template/options.php:303
|
322 |
-
msgid "Typography options"
|
323 |
-
msgstr ""
|
324 |
-
|
325 |
-
#. Text in echo
|
326 |
-
#: simple-author-box/template/options.php:208
|
327 |
-
msgid "Use flat long shadow effect:"
|
328 |
-
msgstr ""
|
329 |
-
|
330 |
-
#. Text in echo
|
331 |
-
#: simple-author-box/template/options.php:39
|
332 |
-
#: simple-author-box/template/options.php:108
|
333 |
-
#: simple-author-box/template/options.php:126
|
334 |
-
#: simple-author-box/template/options.php:138
|
335 |
-
#: simple-author-box/template/options.php:160
|
336 |
-
#: simple-author-box/template/options.php:170
|
337 |
-
#: simple-author-box/template/options.php:204
|
338 |
-
#: simple-author-box/template/options.php:213
|
339 |
-
#: simple-author-box/template/options.php:222
|
340 |
-
#: simple-author-box/template/options.php:235
|
341 |
-
#: simple-author-box/template/options.php:245
|
342 |
-
#: simple-author-box/template/options.php:537
|
343 |
-
#: simple-author-box/template/options.php:549
|
344 |
-
msgid "Yes"
|
345 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -1,10 +1,9 @@
|
|
1 |
=== Simple Author Box ===
|
2 |
-
Contributors:
|
3 |
-
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=EH65WAWPEYPXU
|
4 |
Tags: author box, responsive author box, author profile fields, author social icons, profile fields, author bio, author description, author profile, user profile, post author, rtl author box
|
5 |
Requires at least: 3.6
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -23,7 +22,8 @@ Adds a cool responsive author box with social icons on your posts.
|
|
23 |
* Option to manually insert the author box on your template file (single.php or author.php)
|
24 |
* Simple Author Box has RTL support
|
25 |
|
26 |
-
|
|
|
27 |
|
28 |
== Installation ==
|
29 |
|
@@ -33,8 +33,6 @@ Check out our [Premium Themes](https://themeforest.net/user/tiguan/portfolio?ref
|
|
33 |
4. Activate the plugin through the 'Plugins' menu in WordPress.
|
34 |
5. A new sub menu item `Simple Author Box` will appear in your main Settings menu.
|
35 |
|
36 |
-
If you need more info, please read the plugin [documentation](http://tiguandesign.com/docs/simple-author-box/).
|
37 |
-
|
38 |
== Screenshots ==
|
39 |
|
40 |
1. Simple Author Box - Colored icons - squares
|
@@ -54,6 +52,21 @@ If you need more info, please read the plugin [documentation](http://tiguandesig
|
|
54 |
|
55 |
== Changelog ==
|
56 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
= 1.7 =
|
58 |
* Fixed a small CSS issue.
|
59 |
* Added a recommendation for an image optimization plugin - ShortPixel
|
1 |
=== Simple Author Box ===
|
2 |
+
Contributors: machothemes
|
|
|
3 |
Tags: author box, responsive author box, author profile fields, author social icons, profile fields, author bio, author description, author profile, user profile, post author, rtl author box
|
4 |
Requires at least: 3.6
|
5 |
+
Tested up to: 4.8
|
6 |
+
Stable tag: 1.9
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
22 |
* Option to manually insert the author box on your template file (single.php or author.php)
|
23 |
* Simple Author Box has RTL support
|
24 |
|
25 |
+
**About us:**
|
26 |
+
We are a young team of WordPress aficionados who love building WordPress plugins & <a href="https://www.machothemes.com/" target="_blank" title="Premium WordPress themes">Premium WordPress themes</a> over on our theme shop. We’re also blogging and wish to help our users find the <a href="https://www.machothemes.com/blog/best-cheap-wordpress-hosting/" target="_blank" title="Best Cheap WordPress Hosting">Best Cheap WordPress Hosting</a> available on the market. Check out our blog.
|
27 |
|
28 |
== Installation ==
|
29 |
|
33 |
4. Activate the plugin through the 'Plugins' menu in WordPress.
|
34 |
5. A new sub menu item `Simple Author Box` will appear in your main Settings menu.
|
35 |
|
|
|
|
|
36 |
== Screenshots ==
|
37 |
|
38 |
1. Simple Author Box - Colored icons - squares
|
52 |
|
53 |
== Changelog ==
|
54 |
|
55 |
+
= 1.9 =
|
56 |
+
* Removed lang folder, translations are now being handled by GlotPress on w.org
|
57 |
+
* Fixed a CSS bug ( https://github.com/MachoThemes/simple-author-box/issues/11 )
|
58 |
+
* Removed ShortPixel Banner ( https://github.com/MachoThemes/simple-author-box/issues/8 )
|
59 |
+
* Minor UI reworks. The plugin's CSS was overwriting a lot of WordPress Core UI styling
|
60 |
+
* Removed RTL CSS stylesheets as they weren't being properly handled. Will re-add them at a later date, after the new UI will be released
|
61 |
+
* Updated the URL that was loading FontAwesome Icons from 4.1 -> 4.7 ( https://github.com/MachoThemes/simple-author-box/issues/9 )
|
62 |
+
* Fixed oEmbed bug on front-end ( https://github.com/MachoThemes/simple-author-box/issues/2 )
|
63 |
+
* Added MixCloud Icon ( https://github.com/MachoThemes/simple-author-box/issues/3 )
|
64 |
+
* Added GoodReads Icon ( https://github.com/MachoThemes/simple-author-box/issues/6 )
|
65 |
+
|
66 |
+
|
67 |
+
= 1.8 =
|
68 |
+
* Changed plugin authorship
|
69 |
+
|
70 |
= 1.7 =
|
71 |
* Fixed a small CSS issue.
|
72 |
* Added a recommendation for an image optimization plugin - ShortPixel
|
simple-author-box.php
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Plugin Name: Simple Author Box
|
4 |
-
* Plugin URI: http://wordpress.org/plugins/simple-author-box/
|
5 |
-
* Description: Adds a responsive author box with social icons on your posts.
|
6 |
-
* Version: 1.
|
7 |
-
* Author:
|
8 |
-
* Author URI:
|
9 |
-
* License: GPLv2
|
10 |
-
*/
|
11 |
|
12 |
-
/* Copyright
|
13 |
|
14 |
THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
|
15 |
IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY
|
@@ -32,423 +32,433 @@
|
|
32 |
Main Plugin Class
|
33 |
-----------------------------------------------------------------------------------------------------------*/
|
34 |
|
35 |
-
if( !class_exists( 'Simple_Author_Box' ) ) {
|
36 |
-
|
37 |
-
class Simple_Author_Box {
|
38 |
-
|
39 |
-
/*----------------------------------------------------------------------------------------------------------
|
40 |
-
Function Construct
|
41 |
-
-----------------------------------------------------------------------------------------------------------*/
|
42 |
-
|
43 |
-
public function __construct() {
|
44 |
-
|
45 |
-
global $options;
|
46 |
-
|
47 |
-
$options = get_option( 'saboxplugin_options', 'checked' ); // retrieve the plugin settings from the options table
|
48 |
-
define( 'SIMPLE_AUTHOR_BOX_LAST_UPDATE', date_i18n( 'F j, Y', '1495262997' ) ); // Defining plugin last update
|
49 |
-
define( 'SIMPLE_AUTHOR_BOX_PATH', plugin_dir_path( __FILE__ ) ); // Defining plugin dir path
|
50 |
-
define( 'SIMPLE_AUTHOR_BOX_DIRNAME', basename( dirname( __FILE__ ) ) ); // Defining plugin dir name
|
51 |
-
define( 'SIMPLE_AUTHOR_BOX_VERSION', 'v1.7'); // Defining plugin version
|
52 |
-
define( 'SIMPLE_AUTHOR_BOX', 'Simple Author Box'); // Defining plugin name
|
53 |
-
define( 'SIMPLE_AUTHOR_BOX_FOOTER', 10 );
|
54 |
-
|
55 |
-
|
56 |
-
add_action( 'admin_init', array( $this, 'saboxplugin_init_settings' ) );
|
57 |
-
add_action( 'plugins_loaded', array( $this, 'saboxplugin_translation' ) );
|
58 |
-
add_action( 'wp_enqueue_scripts', array( $this, 'saboxplugin_author_box_style' ) );
|
59 |
-
add_action( 'wp_enqueue_scripts', array( $this, 'saboxplugin_author_box_font' ) );
|
60 |
-
|
61 |
-
if ( isset( $options['sab_footer_inline_style'] ) ) {
|
62 |
-
add_action( 'wp_footer', array( $this, 'saboxplugin_author_box_inline_style' ), SIMPLE_AUTHOR_BOX_FOOTER+3 );
|
63 |
-
} else {
|
64 |
-
add_action( 'wp_head', array( $this, 'saboxplugin_author_box_inline_style' ), 15 );
|
65 |
-
}
|
66 |
-
|
67 |
-
add_action( 'admin_enqueue_scripts', array( $this, 'saboxplugin_admin_style' ) );
|
68 |
-
add_action( 'admin_enqueue_scripts', array( $this, 'saboxplugin_color_picker' ) );
|
69 |
-
add_action( 'admin_enqueue_scripts', array( $this, 'saboxplugin_scripts' ) );
|
70 |
-
add_action( 'admin_enqueue_scripts', array( $this, 'saboxplugin_collapsible' ) );
|
71 |
-
add_action( 'wp_enqueue_scripts', array( $this, 'saboxplugin_font_awesome_css' ), 999 );
|
72 |
-
|
73 |
-
add_action( 'admin_menu', array( $this, 'saboxplugin_add_menu' ) );
|
74 |
-
|
75 |
-
$this->path = plugin_basename( __FILE__ );
|
76 |
-
add_filter( "plugin_action_links_$this->path", array( $this, 'saboxplugin_settings_link' ) );
|
77 |
-
|
78 |
-
if ( !class_exists( 'Sabox_Social_Icons' ) ) {
|
79 |
-
require_once( SIMPLE_AUTHOR_BOX_PATH . 'core/sabox_social_icons.php' );
|
80 |
-
require_once( SIMPLE_AUTHOR_BOX_PATH . 'core/sabox_author_box.php' );
|
81 |
-
}
|
82 |
-
|
83 |
-
}
|
84 |
-
|
85 |
-
|
86 |
-
/*----------------------------------------------------------------------------------------------------------
|
87 |
-
Activation & Deactivation Hooks
|
88 |
-
-----------------------------------------------------------------------------------------------------------*/
|
89 |
-
|
90 |
-
public static function sab_activate() {
|
91 |
-
// nothing to do yet
|
92 |
-
}
|
93 |
-
|
94 |
-
public static function sab_deactivate() {
|
95 |
-
// nothing to do yet
|
96 |
-
}
|
97 |
-
|
98 |
-
|
99 |
-
/*----------------------------------------------------------------------------------------------------------
|
100 |
-
Load plugin textdomain
|
101 |
-
-----------------------------------------------------------------------------------------------------------*/
|
102 |
-
|
103 |
-
public function saboxplugin_translation() {
|
104 |
-
load_plugin_textdomain( 'saboxplugin', false, SIMPLE_AUTHOR_BOX_DIRNAME . '/lang/' );
|
105 |
-
}
|
106 |
-
|
107 |
-
|
108 |
-
/*----------------------------------------------------------------------------------------------------------
|
109 |
-
Plugin Settings
|
110 |
-
-----------------------------------------------------------------------------------------------------------*/
|
111 |
-
|
112 |
-
public function saboxplugin_init_settings() {
|
113 |
-
register_setting( 'sabox_plugin', 'saboxplugin_options' );
|
114 |
-
register_setting( 'sabox_plugin', 'sab_box_margin_top' );
|
115 |
-
register_setting( 'sabox_plugin', 'sab_box_margin_bottom' );
|
116 |
-
register_setting( 'sabox_plugin', 'sab_box_icon_size' );
|
117 |
-
register_setting( 'sabox_plugin', 'sab_box_name_size' );
|
118 |
-
register_setting( 'sabox_plugin', 'sab_box_web_size' );
|
119 |
-
register_setting( 'sabox_plugin', 'sab_box_name_font' );
|
120 |
-
register_setting( 'sabox_plugin', 'sab_box_subset' );
|
121 |
-
register_setting( 'sabox_plugin', 'sab_box_desc_font' );
|
122 |
-
register_setting( 'sabox_plugin', 'sab_box_web_font' );
|
123 |
-
register_setting( 'sabox_plugin', 'sab_box_desc_size' );
|
124 |
-
}
|
125 |
-
|
126 |
-
|
127 |
-
/*----------------------------------------------------------------------------------------------------------
|
128 |
-
Adding the author box main CSS
|
129 |
-
-----------------------------------------------------------------------------------------------------------*/
|
130 |
|
131 |
-
|
132 |
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
|
137 |
-
|
138 |
-
wp_enqueue_style( 'sab-plugin', plugins_url( '/css/simple-author-box-rtl.min.css', __FILE__ ), false, SIMPLE_AUTHOR_BOX_VERSION ); // to debug rtl style change the url to /css/dev/simple-author-box-rtl.css
|
139 |
-
} else {
|
140 |
-
wp_enqueue_style( 'sab-plugin', plugins_url( '/css/simple-author-box.min.css', __FILE__ ), false, SIMPLE_AUTHOR_BOX_VERSION ); // to debug style change the url to /css/dev/simple-author-box.css
|
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 |
-
$sab_subset = 'subset=latin';
|
167 |
-
}
|
168 |
|
169 |
-
$sab_author_font = get_option( 'sab_box_name_font' );
|
170 |
-
$sab_desc_font = get_option( 'sab_box_desc_font' );
|
171 |
-
$sab_web_font = get_option( 'sab_box_web_font' );
|
172 |
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
}
|
185 |
|
186 |
|
187 |
-
/*----------------------------------------------------------------------------------------------------------
|
188 |
-
|
189 |
-
-----------------------------------------------------------------------------------------------------------*/
|
190 |
-
|
191 |
-
public function saboxplugin_author_box_inline_style() {
|
192 |
-
|
193 |
-
if( !is_single() and !is_page() and !is_author() and !is_archive() ) {
|
194 |
-
return;
|
195 |
-
}
|
196 |
-
|
197 |
-
global $options;
|
198 |
-
|
199 |
-
if ( get_option( 'sab_box_margin_top' ) ) {
|
200 |
-
$sabox_top_margin = get_option( 'sab_box_margin_top' );
|
201 |
-
} else {
|
202 |
-
$sabox_top_margin = 0;
|
203 |
-
}
|
204 |
-
|
205 |
-
if ( get_option( 'sab_box_margin_bottom' ) ) {
|
206 |
-
$sabox_bottom_margin = get_option( 'sab_box_margin_bottom' );
|
207 |
-
} else {
|
208 |
-
$sabox_bottom_margin = 0;
|
209 |
-
}
|
210 |
-
|
211 |
-
if ( get_option( 'sab_box_name_size' ) ) {
|
212 |
-
$sabox_name_size = get_option( 'sab_box_name_size' );
|
213 |
-
} else {
|
214 |
-
$sabox_name_size = 18;
|
215 |
-
}
|
216 |
-
|
217 |
-
if ( isset( $options['sab_web'] ) and get_option( 'sab_box_web_size' ) ) {
|
218 |
-
$sabox_web_size = get_option( 'sab_box_web_size' );
|
219 |
-
} else {
|
220 |
-
$sabox_web_size = 14;
|
221 |
-
}
|
222 |
-
|
223 |
-
if ( get_option( 'sab_box_desc_size' ) ) {
|
224 |
-
$sabox_desc_size = get_option( 'sab_box_desc_size' );
|
225 |
-
} else {
|
226 |
-
$sabox_desc_size = 14;
|
227 |
-
}
|
228 |
-
|
229 |
-
|
230 |
-
if ( get_option( 'sab_box_icon_size' ) ) {
|
231 |
-
$sabox_icon_size = get_option( 'sab_box_icon_size' );
|
232 |
-
} else {
|
233 |
-
$sabox_icon_size = 14;
|
234 |
-
}
|
235 |
-
|
236 |
-
$style = '<style type="text/css">';
|
237 |
-
|
238 |
-
// Border color of Simple Author Box
|
239 |
-
if( isset( $options['sab_box_border'] ) and !empty( $options['sab_box_border'] ) ) {
|
240 |
-
$style .= '.saboxplugin-wrap {border-color:'. esc_html( $options['sab_box_border'] ) .';}';
|
241 |
-
$style .= '.saboxplugin-wrap .saboxplugin-socials {-webkit-box-shadow: 0 0.05em 0 0 '. esc_html( $options['sab_box_border'] ) .' inset; -moz-box-shadow:0 0.05em 0 0 '. esc_html( $options['sab_box_border'] ) .' inset;box-shadow:0 0.05em 0 0 '. esc_html( $options['sab_box_border'] ) .' inset;}';
|
242 |
-
}
|
243 |
-
// Avatar image style
|
244 |
-
if( isset( $options['sab_avatar_style'] ) ) {
|
245 |
-
$style .= '.saboxplugin-wrap .saboxplugin-gravatar img {-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;-o-border-radius:50%;border-radius:50%;}';
|
246 |
-
}
|
247 |
-
// Social icons style
|
248 |
-
if( isset( $options['sab_colored'] ) and isset( $options['sab_icons_style'] ) ) {
|
249 |
-
$style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color {-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;-o-border-radius:50%;border-radius:50%;}';
|
250 |
-
}
|
251 |
-
// Long Shadow
|
252 |
-
if( isset( $options['sab_colored'] ) and !isset( $options['sab_box_long_shadow'] ) ) {
|
253 |
-
$style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color:before {text-shadow: none;}';
|
254 |
-
}
|
255 |
-
// Avatar hover effect
|
256 |
-
if( isset( $options['sab_avatar_style'] ) and isset( $options['sab_avatar_hover'] ) ) {
|
257 |
-
$style .= '.saboxplugin-wrap .saboxplugin-gravatar img {-webkit-transition:all .5s ease;-moz-transition:all .5s ease;-o-transition:all .5s ease;transition:all .5s ease;}';
|
258 |
-
$style .= '.saboxplugin-wrap .saboxplugin-gravatar img:hover {-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);}';
|
259 |
-
}
|
260 |
-
// Social icons hover effect
|
261 |
-
if( isset( $options['sab_icons_style'] ) and isset( $options['sab_social_hover'] ) ) {
|
262 |
-
$style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color, .saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey {-webkit-transition: all 0.3s ease-in-out;-moz-transition: all 0.3s ease-in-out;-o-transition: all 0.3s ease-in-out;-ms-transition: all 0.3s ease-in-out;transition: all 0.3s ease-in-out;}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color:hover,.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey:hover {-webkit-transform: rotate(360deg);-moz-transform: rotate(360deg);-o-transform: rotate(360deg);-ms-transform: rotate(360deg);transform: rotate(360deg);}';
|
263 |
-
}
|
264 |
-
// Thin border
|
265 |
-
if( isset( $options['sab_colored'] ) and !isset( $options['sab_box_thin_border'] ) ) {
|
266 |
-
$style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color {border: medium none !important;}';
|
267 |
-
}
|
268 |
-
// Background color of social icons bar
|
269 |
-
if( isset( $options['sab_box_icons_back'] ) and !empty( $options['sab_box_icons_back'] ) ) {
|
270 |
-
$style .= '.saboxplugin-wrap .saboxplugin-socials{background-color:'. esc_html( $options['sab_box_icons_back'] ) .';}';
|
271 |
-
}
|
272 |
-
// Color of social icons (for symbols only):
|
273 |
-
if( isset( $options['sab_box_icons_color'] ) and !empty( $options['sab_box_icons_color'] ) ) {
|
274 |
-
$style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey {color:'. esc_html( $options['sab_box_icons_color'] ) .';}';
|
275 |
-
}
|
276 |
-
// Author name color
|
277 |
-
if( isset( $options['sab_box_author_color'] ) and !empty( $options['sab_box_author_color'] ) ) {
|
278 |
-
$style .= '.saboxplugin-wrap .saboxplugin-authorname a {color:'. esc_html( $options['sab_box_author_color'] ) .';}';
|
279 |
-
}
|
280 |
-
|
281 |
-
// Author web color
|
282 |
-
if( isset( $options['sab_web'] ) and isset( $options['sab_box_web_color'] ) and !empty( $options['sab_box_web_color'] ) ) {
|
283 |
-
$style .= '.saboxplugin-wrap .saboxplugin-web a {color:'. esc_html( $options['sab_box_web_color'] ) .';}';
|
284 |
-
}
|
285 |
-
|
286 |
-
// Author name font family
|
287 |
-
if ( get_option( 'sab_box_name_font' ) != 'none' ) {
|
288 |
-
$author_name_font = get_option( 'sab_box_name_font' );
|
289 |
-
$style .= '.saboxplugin-wrap .saboxplugin-authorname {font-family:"'. esc_html( $author_name_font ) .'";}';
|
290 |
-
}
|
291 |
-
|
292 |
-
// Author description font family
|
293 |
-
if ( get_option( 'sab_box_desc_font' ) != 'none' ) {
|
294 |
-
$author_desc_font = get_option( 'sab_box_desc_font' );
|
295 |
-
$style .= '.saboxplugin-wrap .saboxplugin-desc {font-family:'. esc_html( $author_desc_font ) .';}';
|
296 |
-
}
|
297 |
-
|
298 |
-
// Author web font family
|
299 |
-
if ( isset( $options['sab_web'] ) and get_option( 'sab_box_web_font' ) != 'none' ) {
|
300 |
-
$author_web_font = get_option( 'sab_box_web_font' );
|
301 |
-
$style .= '.saboxplugin-wrap .saboxplugin-web {font-family:"'. esc_html( $author_web_font ) .'";}';
|
302 |
-
}
|
303 |
-
|
304 |
-
// Author description font style
|
305 |
-
if( isset( $options['sab_desc_style'] ) ) {
|
306 |
-
$style .= '.saboxplugin-wrap .saboxplugin-desc {font-style:italic;}';
|
307 |
-
}
|
308 |
-
// Margin top
|
309 |
-
$style .= '.saboxplugin-wrap {margin-top:'. absint( $sabox_top_margin ) . 'px;}';
|
310 |
-
// Margin bottom
|
311 |
-
$style .= '.saboxplugin-wrap {margin-bottom:'. absint( $sabox_bottom_margin ) . 'px;}';
|
312 |
-
// Author name text size
|
313 |
-
$style .= '.saboxplugin-wrap .saboxplugin-authorname {font-size:'. absint( $sabox_name_size ) . 'px; line-height:'. absint( $sabox_name_size+7 ) .'px;}';
|
314 |
-
// Author description font size
|
315 |
-
$style .= '.saboxplugin-wrap .saboxplugin-desc {font-size:'. absint( $sabox_desc_size ) . 'px; line-height:'. absint( $sabox_desc_size+7 ) .'px;}';
|
316 |
-
// Author website text size
|
317 |
-
$style .= '.saboxplugin-wrap .saboxplugin-web {font-size:'. absint( $sabox_web_size ) . 'px;}';
|
318 |
-
// Icons size
|
319 |
-
$style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color {font-size:'. absint( $sabox_icon_size+3 ) . 'px;}';
|
320 |
-
$style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color:before {width:'. absint( $sabox_icon_size+$sabox_icon_size ) . 'px; height:'. absint( $sabox_icon_size+$sabox_icon_size ) . 'px; line-height:'. absint( $sabox_icon_size+$sabox_icon_size+1 ) . 'px; }';
|
321 |
-
$style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey {font-size:'. absint( $sabox_icon_size ) . 'px;}';
|
322 |
-
$style .= '</style>';
|
323 |
-
|
324 |
-
echo $style;
|
325 |
-
}
|
326 |
-
|
327 |
-
|
328 |
-
/*----------------------------------------------------------------------------------------------------------
|
329 |
-
Adding admin options stylesheet
|
330 |
-
-----------------------------------------------------------------------------------------------------------*/
|
331 |
-
|
332 |
-
public function saboxplugin_admin_style( $hook ) {
|
333 |
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
return;
|
338 |
-
if ( is_rtl() ) {
|
339 |
-
wp_enqueue_style( 'saboxplugin-admin-style', plugin_dir_url( __FILE__ ) . 'css/sabox-admin-style-rtl.min.css' ); // to debug admin rtl style change the url to /css/dev/sabox-admin-style-rtl.css
|
340 |
-
} else {
|
341 |
-
wp_enqueue_style( 'saboxplugin-admin-style', plugin_dir_url( __FILE__ ) . 'css/sabox-admin-style.min.css' ); // to debug admin style change the url to /css/dev/sabox-admin-style.css
|
342 |
-
}
|
343 |
-
wp_enqueue_style( 'jquery-ui', plugin_dir_url( __FILE__ ) . 'css/jquery-ui.min.css' );
|
344 |
|
345 |
-
}
|
346 |
|
|
|
|
|
|
|
347 |
|
348 |
-
|
349 |
-
|
350 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
351 |
|
352 |
-
public function saboxplugin_color_picker( $hook_color ) {
|
353 |
-
// load color picker only on plugin options page
|
354 |
-
global $saboxplugin_settings_page;
|
355 |
-
if ( $hook_color != $saboxplugin_settings_page )
|
356 |
-
return;
|
357 |
-
wp_enqueue_style( 'wp-color-picker' );
|
358 |
-
wp_enqueue_script( 'sabox-color-js', plugins_url('js/sabox-color-picker.js', __FILE__ ), array( 'wp-color-picker' ), false, true );
|
359 |
-
}
|
360 |
|
|
|
|
|
|
|
361 |
|
362 |
-
|
363 |
-
Enqueue scripts to plugin options page
|
364 |
-
-----------------------------------------------------------------------------------------------------------*/
|
365 |
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
if ( $hook_slide != $saboxplugin_settings_page )
|
370 |
-
return;
|
371 |
-
wp_enqueue_script( 'jquery-ui-slider' );
|
372 |
-
wp_enqueue_script( 'sabox-slide', plugins_url('js/sabox-slide.js', __FILE__ ), array( 'jquery', 'jquery-ui-slider' ), SIMPLE_AUTHOR_BOX_VERSION, true );
|
373 |
-
wp_enqueue_script( 'sabox-hide', plugins_url('js/sabox-hide.js', __FILE__ ), array( 'jquery' ), SIMPLE_AUTHOR_BOX_VERSION, true );
|
374 |
|
375 |
-
|
376 |
|
|
|
377 |
|
378 |
-
/*----------------------------------------------------------------------------------------------------------
|
379 |
-
Enqueue scripts to plugin options page for collapsible options
|
380 |
-
-----------------------------------------------------------------------------------------------------------*/
|
381 |
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
return;
|
386 |
-
wp_enqueue_script( 'postbox' );
|
387 |
-
wp_enqueue_script( 'postbox-edit', plugins_url('js/postbox-edit.js', __FILE__ ), array( 'jquery', 'postbox' ) );
|
388 |
-
}
|
389 |
|
|
|
390 |
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
400 |
|
401 |
-
}
|
402 |
|
|
|
|
|
|
|
403 |
|
404 |
-
|
405 |
-
Adding settings link on plugins page
|
406 |
-
-----------------------------------------------------------------------------------------------------------*/
|
407 |
|
408 |
-
|
|
|
409 |
|
410 |
-
|
411 |
-
array_unshift( $links, $settings_link );
|
412 |
-
return $links;
|
413 |
|
414 |
-
|
415 |
|
416 |
|
417 |
-
/*----------------------------------------------------------------------------------------------------------
|
418 |
-
|
419 |
-
-----------------------------------------------------------------------------------------------------------*/
|
420 |
|
421 |
-
|
422 |
|
423 |
-
|
424 |
-
|
425 |
-
|
|
|
|
|
|
|
|
|
426 |
|
427 |
-
|
428 |
|
429 |
|
430 |
-
/*----------------------------------------------------------------------------------------------------------
|
431 |
-
|
432 |
-
-----------------------------------------------------------------------------------------------------------*/
|
433 |
|
434 |
-
|
435 |
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
}
|
444 |
|
445 |
|
446 |
-
if( class_exists( 'Simple_Author_Box' ) ) {
|
447 |
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
|
452 |
-
|
453 |
-
|
454 |
}
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Plugin Name: Simple Author Box
|
4 |
+
* Plugin URI: http://wordpress.org/plugins/simple-author-box/
|
5 |
+
* Description: Adds a responsive author box with social icons on your posts.
|
6 |
+
* Version: 1.9
|
7 |
+
* Author: Macho Themes
|
8 |
+
* Author URI: https://www.machothemes.com/
|
9 |
+
* License: GPLv2
|
10 |
+
*/
|
11 |
|
12 |
+
/* Copyright 2017 Machothemes (email : office [at] machothemes [dot] com)
|
13 |
|
14 |
THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
|
15 |
IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY
|
32 |
Main Plugin Class
|
33 |
-----------------------------------------------------------------------------------------------------------*/
|
34 |
|
35 |
+
if ( ! class_exists( 'Simple_Author_Box' ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
+
class Simple_Author_Box {
|
38 |
|
39 |
+
/*----------------------------------------------------------------------------------------------------------
|
40 |
+
Function Construct
|
41 |
+
-----------------------------------------------------------------------------------------------------------*/
|
42 |
|
43 |
+
public function __construct() {
|
|
|
|
|
|
|
44 |
|
45 |
+
global $options;
|
46 |
|
47 |
+
$options = get_option( 'saboxplugin_options', 'checked' ); // retrieve the plugin settings from the options table
|
48 |
+
define( 'SIMPLE_AUTHOR_BOX_LAST_UPDATE', date_i18n( 'F j, Y', '1409122800' ) ); // Defining plugin last update
|
49 |
+
define( 'SIMPLE_AUTHOR_BOX_PATH', plugin_dir_path( __FILE__ ) ); // Defining plugin dir path
|
50 |
+
define( 'SIMPLE_AUTHOR_BOX_DIRNAME', basename( dirname( __FILE__ ) ) ); // Defining plugin dir name
|
51 |
+
define( 'SIMPLE_AUTHOR_BOX_VERSION', 'v1.9' ); // Defining plugin version
|
52 |
+
define( 'SIMPLE_AUTHOR_BOX', 'Simple Author Box' ); // Defining plugin name
|
53 |
+
define( 'SIMPLE_AUTHOR_BOX_FOOTER', 10 );
|
54 |
|
55 |
|
56 |
+
add_action( 'admin_init', array( $this, 'saboxplugin_init_settings' ) );
|
57 |
+
add_action( 'plugins_loaded', array( $this, 'saboxplugin_translation' ) );
|
58 |
+
add_action( 'wp_enqueue_scripts', array( $this, 'saboxplugin_author_box_style' ) );
|
59 |
+
add_action( 'wp_enqueue_scripts', array( $this, 'saboxplugin_author_box_font' ) );
|
60 |
|
61 |
+
if ( isset( $options['sab_footer_inline_style'] ) ) {
|
62 |
+
add_action( 'wp_footer', array(
|
63 |
+
$this,
|
64 |
+
'saboxplugin_author_box_inline_style'
|
65 |
+
), SIMPLE_AUTHOR_BOX_FOOTER + 3 );
|
66 |
+
} else {
|
67 |
+
add_action( 'wp_head', array( $this, 'saboxplugin_author_box_inline_style' ), 15 );
|
68 |
+
}
|
69 |
|
70 |
+
add_action( 'admin_enqueue_scripts', array( $this, 'saboxplugin_admin_style' ) );
|
71 |
+
add_action( 'admin_enqueue_scripts', array( $this, 'saboxplugin_color_picker' ) );
|
72 |
+
add_action( 'admin_enqueue_scripts', array( $this, 'saboxplugin_scripts' ) );
|
73 |
+
add_action( 'admin_enqueue_scripts', array( $this, 'saboxplugin_collapsible' ) );
|
74 |
+
add_action( 'wp_enqueue_scripts', array( $this, 'saboxplugin_font_awesome_css' ), 999 );
|
75 |
|
76 |
+
add_action( 'admin_menu', array( $this, 'saboxplugin_add_menu' ) );
|
77 |
|
78 |
+
$this->path = plugin_basename( __FILE__ );
|
79 |
+
add_filter( "plugin_action_links_$this->path", array( $this, 'saboxplugin_settings_link' ) );
|
80 |
|
81 |
+
if ( ! class_exists( 'Sabox_Social_Icons' ) ) {
|
82 |
+
require_once( SIMPLE_AUTHOR_BOX_PATH . 'core/sabox_social_icons.php' );
|
83 |
+
require_once( SIMPLE_AUTHOR_BOX_PATH . 'core/sabox_author_box.php' );
|
84 |
+
}
|
85 |
|
86 |
+
}
|
|
|
|
|
87 |
|
|
|
|
|
|
|
88 |
|
89 |
+
/*----------------------------------------------------------------------------------------------------------
|
90 |
+
Activation & Deactivation Hooks
|
91 |
+
-----------------------------------------------------------------------------------------------------------*/
|
92 |
|
93 |
+
public static function sab_activate() {
|
94 |
+
// nothing to do yet
|
95 |
+
}
|
96 |
|
97 |
+
public static function sab_deactivate() {
|
98 |
+
// nothing to do yet
|
99 |
+
}
|
|
|
100 |
|
101 |
|
102 |
+
/*----------------------------------------------------------------------------------------------------------
|
103 |
+
Load plugin textdomain
|
104 |
+
-----------------------------------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
|
106 |
+
public function saboxplugin_translation() {
|
107 |
+
load_plugin_textdomain( 'saboxplugin', false, SIMPLE_AUTHOR_BOX_DIRNAME . '/lang/' );
|
108 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
|
|
|
110 |
|
111 |
+
/*----------------------------------------------------------------------------------------------------------
|
112 |
+
Plugin Settings
|
113 |
+
-----------------------------------------------------------------------------------------------------------*/
|
114 |
|
115 |
+
public function saboxplugin_init_settings() {
|
116 |
+
register_setting( 'sabox_plugin', 'saboxplugin_options' );
|
117 |
+
register_setting( 'sabox_plugin', 'sab_box_margin_top' );
|
118 |
+
register_setting( 'sabox_plugin', 'sab_box_margin_bottom' );
|
119 |
+
register_setting( 'sabox_plugin', 'sab_box_icon_size' );
|
120 |
+
register_setting( 'sabox_plugin', 'sab_box_name_size' );
|
121 |
+
register_setting( 'sabox_plugin', 'sab_box_web_size' );
|
122 |
+
register_setting( 'sabox_plugin', 'sab_box_name_font' );
|
123 |
+
register_setting( 'sabox_plugin', 'sab_box_subset' );
|
124 |
+
register_setting( 'sabox_plugin', 'sab_box_desc_font' );
|
125 |
+
register_setting( 'sabox_plugin', 'sab_box_web_font' );
|
126 |
+
register_setting( 'sabox_plugin', 'sab_box_desc_size' );
|
127 |
+
}
|
128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
|
130 |
+
/*----------------------------------------------------------------------------------------------------------
|
131 |
+
Adding the author box main CSS
|
132 |
+
-----------------------------------------------------------------------------------------------------------*/
|
133 |
|
134 |
+
public function saboxplugin_author_box_style() {
|
|
|
|
|
135 |
|
136 |
+
if ( ! is_single() and ! is_page() and ! is_author() and ! is_archive() ) {
|
137 |
+
return;
|
138 |
+
}
|
|
|
|
|
|
|
|
|
|
|
139 |
|
140 |
+
wp_enqueue_style( 'sab-plugin', plugins_url( '/css/simple-author-box.min.css', __FILE__ ), false, SIMPLE_AUTHOR_BOX_VERSION ); // to debug style change the url to /css/dev/simple-author-box.css
|
141 |
|
142 |
+
}
|
143 |
|
|
|
|
|
|
|
144 |
|
145 |
+
/*----------------------------------------------------------------------------------------------------------
|
146 |
+
Enqueue Google Fonts
|
147 |
+
-----------------------------------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
148 |
|
149 |
+
public function saboxplugin_author_box_font() {
|
150 |
|
151 |
+
if ( ! is_single() and ! is_page() and ! is_author() and ! is_archive() ) {
|
152 |
+
return;
|
153 |
+
}
|
154 |
|
155 |
+
global $options;
|
156 |
+
|
157 |
+
$sab_protocol = is_ssl() ? 'https' : 'http';
|
158 |
+
|
159 |
+
if ( get_option( 'sab_box_subset' ) != 'none' ) {
|
160 |
+
$sab_box_subset = get_option( 'sab_box_subset' );
|
161 |
+
$sab_subset = 'subset=' . $sab_box_subset;
|
162 |
+
|
163 |
+
} else {
|
164 |
+
$sab_subset = 'subset=latin';
|
165 |
+
}
|
166 |
+
|
167 |
+
$sab_author_font = get_option( 'sab_box_name_font' );
|
168 |
+
$sab_desc_font = get_option( 'sab_box_desc_font' );
|
169 |
+
$sab_web_font = get_option( 'sab_box_web_font' );
|
170 |
+
|
171 |
+
if ( get_option( 'sab_box_name_font' ) ) {
|
172 |
+
wp_enqueue_style( 'sab-author-name-font', $sab_protocol . '://fonts.googleapis.com/css?family=' . str_replace( ' ', '+', $sab_author_font ) . ':400,700,400italic,700italic' . $sab_subset, array(), null );
|
173 |
+
}
|
174 |
+
|
175 |
+
if ( get_option( 'sab_box_desc_font' ) ) {
|
176 |
+
wp_enqueue_style( 'sab-author-desc-font', $sab_protocol . '://fonts.googleapis.com/css?family=' . str_replace( ' ', '+', $sab_desc_font ) . ':400,700,400italic,700italic' . $sab_subset, array(), null );
|
177 |
+
}
|
178 |
+
|
179 |
+
if ( isset( $options['sab_web'] ) and get_option( 'sab_box_web_font' ) ) {
|
180 |
+
wp_enqueue_style( 'sab-author-web-font', $sab_protocol . '://fonts.googleapis.com/css?family=' . str_replace( ' ', '+', $sab_web_font ) . ':400,700,400italic,700italic' . $sab_subset, array(), null );
|
181 |
+
}
|
182 |
+
}
|
183 |
+
|
184 |
+
|
185 |
+
/*----------------------------------------------------------------------------------------------------------
|
186 |
+
Adding the author box dynamic stylesheet generated by plugin options
|
187 |
+
-----------------------------------------------------------------------------------------------------------*/
|
188 |
+
|
189 |
+
public function saboxplugin_author_box_inline_style() {
|
190 |
+
|
191 |
+
if ( ! is_single() and ! is_page() and ! is_author() and ! is_archive() ) {
|
192 |
+
return;
|
193 |
+
}
|
194 |
+
|
195 |
+
global $options;
|
196 |
+
|
197 |
+
if ( get_option( 'sab_box_margin_top' ) ) {
|
198 |
+
$sabox_top_margin = get_option( 'sab_box_margin_top' );
|
199 |
+
} else {
|
200 |
+
$sabox_top_margin = 0;
|
201 |
+
}
|
202 |
+
|
203 |
+
if ( get_option( 'sab_box_margin_bottom' ) ) {
|
204 |
+
$sabox_bottom_margin = get_option( 'sab_box_margin_bottom' );
|
205 |
+
} else {
|
206 |
+
$sabox_bottom_margin = 0;
|
207 |
+
}
|
208 |
+
|
209 |
+
if ( get_option( 'sab_box_name_size' ) ) {
|
210 |
+
$sabox_name_size = get_option( 'sab_box_name_size' );
|
211 |
+
} else {
|
212 |
+
$sabox_name_size = 18;
|
213 |
+
}
|
214 |
+
|
215 |
+
if ( isset( $options['sab_web'] ) and get_option( 'sab_box_web_size' ) ) {
|
216 |
+
$sabox_web_size = get_option( 'sab_box_web_size' );
|
217 |
+
} else {
|
218 |
+
$sabox_web_size = 14;
|
219 |
+
}
|
220 |
+
|
221 |
+
if ( get_option( 'sab_box_desc_size' ) ) {
|
222 |
+
$sabox_desc_size = get_option( 'sab_box_desc_size' );
|
223 |
+
} else {
|
224 |
+
$sabox_desc_size = 14;
|
225 |
+
}
|
226 |
+
|
227 |
+
|
228 |
+
if ( get_option( 'sab_box_icon_size' ) ) {
|
229 |
+
$sabox_icon_size = get_option( 'sab_box_icon_size' );
|
230 |
+
} else {
|
231 |
+
$sabox_icon_size = 14;
|
232 |
+
}
|
233 |
+
|
234 |
+
$style = '<style type="text/css">';
|
235 |
+
|
236 |
+
// Border color of Simple Author Box
|
237 |
+
if ( isset( $options['sab_box_border'] ) and ! empty( $options['sab_box_border'] ) ) {
|
238 |
+
$style .= '.saboxplugin-wrap {border-color:' . esc_html( $options['sab_box_border'] ) . ';}';
|
239 |
+
$style .= '.saboxplugin-wrap .saboxplugin-socials {-webkit-box-shadow: 0 0.05em 0 0 ' . esc_html( $options['sab_box_border'] ) . ' inset; -moz-box-shadow:0 0.05em 0 0 ' . esc_html( $options['sab_box_border'] ) . ' inset;box-shadow:0 0.05em 0 0 ' . esc_html( $options['sab_box_border'] ) . ' inset;}';
|
240 |
+
}
|
241 |
+
// Avatar image style
|
242 |
+
if ( isset( $options['sab_avatar_style'] ) ) {
|
243 |
+
$style .= '.saboxplugin-wrap .saboxplugin-gravatar img {-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;-o-border-radius:50%;border-radius:50%;}';
|
244 |
+
}
|
245 |
+
// Social icons style
|
246 |
+
if ( isset( $options['sab_colored'] ) and isset( $options['sab_icons_style'] ) ) {
|
247 |
+
$style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color {-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;-o-border-radius:50%;border-radius:50%;}';
|
248 |
+
}
|
249 |
+
// Long Shadow
|
250 |
+
if ( isset( $options['sab_colored'] ) and ! isset( $options['sab_box_long_shadow'] ) ) {
|
251 |
+
$style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color:before {text-shadow: none;}';
|
252 |
+
}
|
253 |
+
// Avatar hover effect
|
254 |
+
if ( isset( $options['sab_avatar_style'] ) and isset( $options['sab_avatar_hover'] ) ) {
|
255 |
+
$style .= '.saboxplugin-wrap .saboxplugin-gravatar img {-webkit-transition:all .5s ease;-moz-transition:all .5s ease;-o-transition:all .5s ease;transition:all .5s ease;}';
|
256 |
+
$style .= '.saboxplugin-wrap .saboxplugin-gravatar img:hover {-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);}';
|
257 |
+
}
|
258 |
+
// Social icons hover effect
|
259 |
+
if ( isset( $options['sab_icons_style'] ) and isset( $options['sab_social_hover'] ) ) {
|
260 |
+
$style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color, .saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey {-webkit-transition: all 0.3s ease-in-out;-moz-transition: all 0.3s ease-in-out;-o-transition: all 0.3s ease-in-out;-ms-transition: all 0.3s ease-in-out;transition: all 0.3s ease-in-out;}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color:hover,.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey:hover {-webkit-transform: rotate(360deg);-moz-transform: rotate(360deg);-o-transform: rotate(360deg);-ms-transform: rotate(360deg);transform: rotate(360deg);}';
|
261 |
+
}
|
262 |
+
// Thin border
|
263 |
+
if ( isset( $options['sab_colored'] ) and ! isset( $options['sab_box_thin_border'] ) ) {
|
264 |
+
$style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color {border: medium none !important;}';
|
265 |
+
}
|
266 |
+
// Background color of social icons bar
|
267 |
+
if ( isset( $options['sab_box_icons_back'] ) and ! empty( $options['sab_box_icons_back'] ) ) {
|
268 |
+
$style .= '.saboxplugin-wrap .saboxplugin-socials{background-color:' . esc_html( $options['sab_box_icons_back'] ) . ';}';
|
269 |
+
}
|
270 |
+
// Color of social icons (for symbols only):
|
271 |
+
if ( isset( $options['sab_box_icons_color'] ) and ! empty( $options['sab_box_icons_color'] ) ) {
|
272 |
+
$style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey {color:' . esc_html( $options['sab_box_icons_color'] ) . ';}';
|
273 |
+
}
|
274 |
+
// Author name color
|
275 |
+
if ( isset( $options['sab_box_author_color'] ) and ! empty( $options['sab_box_author_color'] ) ) {
|
276 |
+
$style .= '.saboxplugin-wrap .saboxplugin-authorname a {color:' . esc_html( $options['sab_box_author_color'] ) . ';}';
|
277 |
+
}
|
278 |
+
|
279 |
+
// Author web color
|
280 |
+
if ( isset( $options['sab_web'] ) and isset( $options['sab_box_web_color'] ) and ! empty( $options['sab_box_web_color'] ) ) {
|
281 |
+
$style .= '.saboxplugin-wrap .saboxplugin-web a {color:' . esc_html( $options['sab_box_web_color'] ) . ';}';
|
282 |
+
}
|
283 |
+
|
284 |
+
// Author name font family
|
285 |
+
if ( get_option( 'sab_box_name_font' ) != 'none' ) {
|
286 |
+
$author_name_font = get_option( 'sab_box_name_font' );
|
287 |
+
$style .= '.saboxplugin-wrap .saboxplugin-authorname {font-family:"' . esc_html( $author_name_font ) . '";}';
|
288 |
+
}
|
289 |
+
|
290 |
+
// Author description font family
|
291 |
+
if ( get_option( 'sab_box_desc_font' ) != 'none' ) {
|
292 |
+
$author_desc_font = get_option( 'sab_box_desc_font' );
|
293 |
+
$style .= '.saboxplugin-wrap .saboxplugin-desc {font-family:' . esc_html( $author_desc_font ) . ';}';
|
294 |
+
}
|
295 |
+
|
296 |
+
// Author web font family
|
297 |
+
if ( isset( $options['sab_web'] ) and get_option( 'sab_box_web_font' ) != 'none' ) {
|
298 |
+
$author_web_font = get_option( 'sab_box_web_font' );
|
299 |
+
$style .= '.saboxplugin-wrap .saboxplugin-web {font-family:"' . esc_html( $author_web_font ) . '";}';
|
300 |
+
}
|
301 |
+
|
302 |
+
// Author description font style
|
303 |
+
if ( isset( $options['sab_desc_style'] ) ) {
|
304 |
+
$style .= '.saboxplugin-wrap .saboxplugin-desc {font-style:italic;}';
|
305 |
+
}
|
306 |
+
// Margin top
|
307 |
+
$style .= '.saboxplugin-wrap {margin-top:' . absint( $sabox_top_margin ) . 'px;}';
|
308 |
+
// Margin bottom
|
309 |
+
$style .= '.saboxplugin-wrap {margin-bottom:' . absint( $sabox_bottom_margin ) . 'px;}';
|
310 |
+
// Author name text size
|
311 |
+
$style .= '.saboxplugin-wrap .saboxplugin-authorname {font-size:' . absint( $sabox_name_size ) . 'px; line-height:' . absint( $sabox_name_size + 7 ) . 'px;}';
|
312 |
+
// Author description font size
|
313 |
+
$style .= '.saboxplugin-wrap .saboxplugin-desc {font-size:' . absint( $sabox_desc_size ) . 'px; line-height:' . absint( $sabox_desc_size + 7 ) . 'px;}';
|
314 |
+
// Author website text size
|
315 |
+
$style .= '.saboxplugin-wrap .saboxplugin-web {font-size:' . absint( $sabox_web_size ) . 'px;}';
|
316 |
+
// Icons size
|
317 |
+
$style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color {font-size:' . absint( $sabox_icon_size + 3 ) . 'px;}';
|
318 |
+
$style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color:before {width:' . absint( $sabox_icon_size + $sabox_icon_size ) . 'px; height:' . absint( $sabox_icon_size + $sabox_icon_size ) . 'px; line-height:' . absint( $sabox_icon_size + $sabox_icon_size + 1 ) . 'px; }';
|
319 |
+
$style .= '.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey {font-size:' . absint( $sabox_icon_size ) . 'px;}';
|
320 |
+
$style .= '</style>';
|
321 |
+
|
322 |
+
echo $style;
|
323 |
+
}
|
324 |
+
|
325 |
+
|
326 |
+
/*----------------------------------------------------------------------------------------------------------
|
327 |
+
Adding admin options stylesheet
|
328 |
+
-----------------------------------------------------------------------------------------------------------*/
|
329 |
+
|
330 |
+
public function saboxplugin_admin_style( $hook ) {
|
331 |
+
|
332 |
+
// load stylesheet only on plugin options page
|
333 |
+
global $saboxplugin_settings_page;
|
334 |
+
if ( $hook != $saboxplugin_settings_page ) {
|
335 |
+
return;
|
336 |
+
}
|
337 |
+
|
338 |
+
wp_enqueue_style( 'saboxplugin-admin-style', plugin_dir_url( __FILE__ ) . 'css/sabox-admin-style.min.css' ); // to debug admin style change the url to /css/dev/sabox-admin-style.css
|
339 |
+
wp_enqueue_style( 'jquery-ui', plugin_dir_url( __FILE__ ) . 'css/jquery-ui.min.css' );
|
340 |
+
|
341 |
+
}
|
342 |
+
|
343 |
+
|
344 |
+
/*----------------------------------------------------------------------------------------------------------
|
345 |
+
Adding colorpicker to plugin options page
|
346 |
+
-----------------------------------------------------------------------------------------------------------*/
|
347 |
+
|
348 |
+
public function saboxplugin_color_picker( $hook_color ) {
|
349 |
+
// load color picker only on plugin options page
|
350 |
+
global $saboxplugin_settings_page;
|
351 |
+
if ( $hook_color != $saboxplugin_settings_page ) {
|
352 |
+
return;
|
353 |
+
}
|
354 |
+
wp_enqueue_style( 'wp-color-picker' );
|
355 |
+
wp_enqueue_script( 'sabox-color-js', plugins_url( 'js/sabox-color-picker.js', __FILE__ ), array( 'wp-color-picker' ), false, true );
|
356 |
+
}
|
357 |
+
|
358 |
+
|
359 |
+
/*----------------------------------------------------------------------------------------------------------
|
360 |
+
Enqueue scripts to plugin options page
|
361 |
+
-----------------------------------------------------------------------------------------------------------*/
|
362 |
+
|
363 |
+
public function saboxplugin_scripts( $hook_slide ) {
|
364 |
+
// load slide only on plugin options page
|
365 |
+
global $saboxplugin_settings_page;
|
366 |
+
if ( $hook_slide != $saboxplugin_settings_page ) {
|
367 |
+
return;
|
368 |
+
}
|
369 |
+
wp_enqueue_script( 'jquery-ui-slider' );
|
370 |
+
wp_enqueue_script( 'sabox-slide', plugins_url( 'js/sabox-slide.js', __FILE__ ), array(
|
371 |
+
'jquery',
|
372 |
+
'jquery-ui-slider'
|
373 |
+
), SIMPLE_AUTHOR_BOX_VERSION, true );
|
374 |
+
wp_enqueue_script( 'sabox-hide', plugins_url( 'js/sabox-hide.js', __FILE__ ), array( 'jquery' ), SIMPLE_AUTHOR_BOX_VERSION, true );
|
375 |
+
|
376 |
+
}
|
377 |
+
|
378 |
+
|
379 |
+
/*----------------------------------------------------------------------------------------------------------
|
380 |
+
Enqueue scripts to plugin options page for collapsible options
|
381 |
+
-----------------------------------------------------------------------------------------------------------*/
|
382 |
+
|
383 |
+
function saboxplugin_collapsible( $sab_suffix ) {
|
384 |
+
global $saboxplugin_settings_page;
|
385 |
+
if ( $sab_suffix != $saboxplugin_settings_page ) {
|
386 |
+
return;
|
387 |
+
}
|
388 |
+
wp_enqueue_script( 'postbox' );
|
389 |
+
wp_enqueue_script( 'postbox-edit', plugins_url( 'js/postbox-edit.js', __FILE__ ), array(
|
390 |
+
'jquery',
|
391 |
+
'postbox'
|
392 |
+
) );
|
393 |
+
}
|
394 |
+
|
395 |
+
|
396 |
+
/*----------------------------------------------------------------------------------------------------------
|
397 |
+
Enqueue Font Awesome in front-end
|
398 |
+
-----------------------------------------------------------------------------------------------------------*/
|
399 |
+
|
400 |
+
public function saboxplugin_font_awesome_css() {
|
401 |
+
global $options;
|
402 |
+
if ( ! isset( $options['sab_load_fa'] ) ) {
|
403 |
+
wp_enqueue_style( 'font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' );
|
404 |
+
}
|
405 |
+
|
406 |
+
}
|
407 |
|
|
|
408 |
|
409 |
+
/*----------------------------------------------------------------------------------------------------------
|
410 |
+
Adding settings link on plugins page
|
411 |
+
-----------------------------------------------------------------------------------------------------------*/
|
412 |
|
413 |
+
public function saboxplugin_settings_link( $links ) {
|
|
|
|
|
414 |
|
415 |
+
$settings_link = '<a href="options-general.php?page=simple-author-box-options">' . __( 'Settings', 'saboxplugin' ) . '</a>';
|
416 |
+
array_unshift( $links, $settings_link );
|
417 |
|
418 |
+
return $links;
|
|
|
|
|
419 |
|
420 |
+
}
|
421 |
|
422 |
|
423 |
+
/*----------------------------------------------------------------------------------------------------------
|
424 |
+
Adding settings link on plugins page
|
425 |
+
-----------------------------------------------------------------------------------------------------------*/
|
426 |
|
427 |
+
public function saboxplugin_add_menu() {
|
428 |
|
429 |
+
// Add a page to manage the plugin's settings
|
430 |
+
global $saboxplugin_settings_page;
|
431 |
+
$saboxplugin_settings_page = add_menu_page( __( 'Simple Author Box', 'saboxplugin' ), __( 'Simple Author', 'saboxplugin' ), 'manage_options', 'simple-author-box-options', array(
|
432 |
+
$this,
|
433 |
+
'saboxplugin_settings_page'
|
434 |
+
),
|
435 |
+
'dashicons-id' );
|
436 |
|
437 |
+
}
|
438 |
|
439 |
|
440 |
+
/*----------------------------------------------------------------------------------------------------------
|
441 |
+
Busted if user can't manage options
|
442 |
+
-----------------------------------------------------------------------------------------------------------*/
|
443 |
|
444 |
+
public function saboxplugin_settings_page() {
|
445 |
|
446 |
+
if ( ! current_user_can( 'manage_options' ) ) {
|
447 |
+
wp_die( __( 'You do not have sufficient permissions to access this page.', 'saboxplugin' ) );
|
448 |
+
}
|
449 |
+
include( SIMPLE_AUTHOR_BOX_PATH . 'core/sabox-fonts.php' );
|
450 |
+
require_once( SIMPLE_AUTHOR_BOX_PATH . 'template/options.php' );
|
451 |
+
}
|
452 |
+
}
|
453 |
}
|
454 |
|
455 |
|
456 |
+
if ( class_exists( 'Simple_Author_Box' ) ) {
|
457 |
|
458 |
+
// Installation and uninstallation hooks
|
459 |
+
register_activation_hook( __FILE__, array( 'Simple_Author_Box', 'sab_activate' ) );
|
460 |
+
register_deactivation_hook( __FILE__, array( 'Simple_Author_Box', 'sab_deactivate' ) );
|
461 |
|
462 |
+
// Initialise Class
|
463 |
+
$simple_author_box_by_tiguan = new Simple_Author_Box();
|
464 |
}
|
template/options.php
CHANGED
@@ -5,605 +5,575 @@
|
|
5 |
-----------------------------------------------*/
|
6 |
|
7 |
// Exit if accessed directly
|
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 |
-
<div class="saboxplugin-question">
|
47 |
-
<label for="saboxplugin_options[sab_autoinsert]"><?php _e( 'Manually insert the Simple Author Box:', 'saboxplugin' ); ?></label>
|
48 |
-
</div>
|
49 |
-
|
50 |
-
<div class="saboxplugin-switch">
|
51 |
-
<input id="sab-toggle-1" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_autoinsert]" value="1" <?php checked( 1, isset( $options['sab_autoinsert'] ) ); ?> />
|
52 |
-
<label for="sab-toggle-1" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
53 |
-
</div>
|
54 |
-
|
55 |
-
<div id="saboxplugin-hide">
|
56 |
-
|
57 |
-
<p class="description">
|
58 |
-
<?php _e( 'If you want to manually insert the Simple Author Box in your template file (single post view), you can use the following code snippet: ', 'saboxplugin' ); ?>
|
59 |
-
</p>
|
60 |
-
<textarea name="saboxplugin" rows="1" cols="100" onclick="this.focus();this.select()" readonly="readonly"><?php if ( function_exists( 'wpsabox_author_box' ) ) echo wpsabox_author_box(); ?></textarea>
|
61 |
-
|
62 |
-
<?php
|
63 |
-
if ( get_option( 'sab_box_margin_top' ) ) {
|
64 |
-
$sabox_top_margin = get_option( 'sab_box_margin_top' );
|
65 |
-
} else {
|
66 |
-
$sabox_top_margin = 0;
|
67 |
-
}
|
68 |
-
?>
|
69 |
-
|
70 |
-
<script type='text/javascript'>
|
71 |
-
var saboxTopmargin = '<?php echo $sabox_top_margin; ?>';
|
72 |
-
</script>
|
73 |
-
|
74 |
-
<div class="saboxplugin-border"></div>
|
75 |
-
|
76 |
-
<div class="sabox-inline-slide">
|
77 |
-
|
78 |
-
<div class="saboxplugin-question">
|
79 |
-
<label for="saboxplugin_options[sab_box_margin_top]"><?php _e( 'Top margin of author box:', 'saboxplugin' ); ?><input type="text" class="sabox-amount" id="sabox-amount" /></label>
|
80 |
-
</div>
|
81 |
-
|
82 |
-
<div class="sabox-slider" id="sabox-slider"><p></p></div>
|
83 |
-
<input type="hidden" name="sab_box_margin_top" id="sab_box_margin_top" value="<?php echo $sabox_top_margin; ?>" />
|
84 |
-
|
85 |
-
</div>
|
86 |
-
<div class="saboxplugin-border"></div>
|
87 |
-
|
88 |
-
<?php
|
89 |
-
if ( get_option( 'sab_box_margin_bottom' ) ) {
|
90 |
-
$sabox_bottom_margin = get_option( 'sab_box_margin_bottom' );
|
91 |
-
} else {
|
92 |
-
$sabox_bottom_margin = 45;
|
93 |
-
}
|
94 |
-
?>
|
95 |
-
|
96 |
-
<script type='text/javascript'>
|
97 |
-
var saboxBottommargin = '<?php echo $sabox_bottom_margin; ?>';
|
98 |
-
</script>
|
99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
|
101 |
-
|
|
|
|
|
102 |
|
103 |
-
|
104 |
-
<label for="saboxplugin_options[sab_box_margin_bottom]"><?php _e( 'Bottom margin of author box:', 'saboxplugin' ); ?><input type="text" class="sabox-amount2" id="sabox-amount2" /></label>
|
105 |
-
</div>
|
106 |
|
107 |
-
|
108 |
-
<input type="hidden" name="sab_box_margin_bottom" id="sab_box_margin_bottom" value="<?php echo $sabox_bottom_margin; ?>" />
|
109 |
|
110 |
-
|
111 |
-
|
|
|
|
|
112 |
|
113 |
-
|
|
|
114 |
|
115 |
-
|
116 |
-
|
117 |
-
</div>
|
118 |
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
|
|
|
|
|
|
123 |
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
|
128 |
-
<div class="saboxplugin-switch">
|
129 |
-
<input id="sab-toggle-8" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_avatar_style]" value="1" <?php checked( 1, isset( $options['sab_avatar_style'] ) ); ?> />
|
130 |
-
<label for="sab-toggle-8" data-on=<?php _e( 'Circle', 'saboxplugin' ); ?> data-off=<?php _e( 'Square', 'saboxplugin' ); ?>></label>
|
131 |
-
</div>
|
132 |
|
133 |
-
|
134 |
-
<label for="saboxplugin_options[sab_avatar_hover]"><?php _e( 'Rotate effect on author avatar hover:', 'saboxplugin' ); ?></label>
|
135 |
-
</div>
|
136 |
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
|
142 |
-
|
|
|
143 |
|
|
|
|
|
144 |
|
145 |
-
|
146 |
-
<label for="saboxplugin_options[sab_web]"><?php _e( 'Show author website:', 'saboxplugin' ); ?></label>
|
147 |
-
</div>
|
148 |
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
</div>
|
153 |
|
|
|
|
|
|
|
|
|
154 |
|
155 |
-
|
|
|
|
|
156 |
|
157 |
-
|
158 |
-
|
159 |
-
|
|
|
160 |
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
</div>
|
165 |
|
|
|
|
|
|
|
|
|
166 |
|
167 |
-
|
168 |
-
<label for="saboxplugin_options[sab_web_target]"><?php _e( 'Open author website link in a new tab:', 'saboxplugin' ); ?></label>
|
169 |
-
</div>
|
170 |
|
171 |
-
<div class="saboxplugin-switch">
|
172 |
-
<input id="sab-toggle-17" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_web_target]" value="1" <?php checked( 1, isset( $options['sab_web_target'] ) ); ?> />
|
173 |
-
<label for="sab-toggle-17" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
174 |
-
</div>
|
175 |
|
|
|
|
|
|
|
176 |
|
177 |
-
|
178 |
-
|
179 |
-
|
|
|
180 |
|
181 |
-
<div class="saboxplugin-switch">
|
182 |
-
<input id="sab-toggle-18" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_web_rel]" value="1" <?php checked( 1, isset( $options['sab_web_rel'] ) ); ?> />
|
183 |
-
<label for="sab-toggle-18" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
184 |
-
</div>
|
185 |
|
186 |
-
|
187 |
-
</div> <!-- end hide three -->
|
188 |
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
|
|
|
|
|
|
|
|
|
193 |
|
194 |
-
<div class="saboxplugin-switch">
|
195 |
-
<input id="sab-toggle-3" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_colored]" value="1" <?php checked( 1, isset( $options['sab_colored'] ) ); ?> />
|
196 |
-
<label for="sab-toggle-3" data-on=<?php _e( 'Colored', 'saboxplugin' ); ?> data-off=<?php _e( 'Symbols', 'saboxplugin' ); ?>></label>
|
197 |
-
</div>
|
198 |
|
|
|
|
|
|
|
199 |
|
200 |
-
|
|
|
|
|
|
|
201 |
|
202 |
-
<div class="saboxplugin-question">
|
203 |
-
<label for="saboxplugin_options[sab_icons_style]"><?php _e( 'Social icons style:', 'saboxplugin' ); ?></label>
|
204 |
-
</div>
|
205 |
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
</div>
|
210 |
|
211 |
-
|
212 |
-
|
213 |
-
|
|
|
214 |
|
215 |
-
|
216 |
-
|
217 |
-
<label for="sab-toggle-13" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
218 |
-
</div>
|
219 |
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
|
224 |
-
<div class="saboxplugin-switch">
|
225 |
-
<input id="sab-toggle-10" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_box_long_shadow]" value="1" <?php checked( 1, isset( $options['sab_box_long_shadow'] ) ); ?> />
|
226 |
-
<label for="sab-toggle-10" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
227 |
-
</div>
|
228 |
|
229 |
-
|
230 |
-
|
231 |
-
|
|
|
232 |
|
233 |
-
<div class="saboxplugin-switch">
|
234 |
-
<input id="sab-toggle-11" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_box_thin_border]" value="1" <?php checked( 1, isset( $options['sab_box_thin_border'] ) ); ?> />
|
235 |
-
<label for="sab-toggle-11" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
236 |
-
</div>
|
237 |
|
|
|
238 |
|
239 |
-
|
|
|
|
|
240 |
|
|
|
|
|
|
|
|
|
241 |
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
|
|
|
|
|
|
|
251 |
|
252 |
-
|
253 |
-
|
254 |
-
|
|
|
255 |
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
</div>
|
260 |
-
</div>
|
261 |
-
</div>
|
262 |
|
263 |
-
|
264 |
-
|
265 |
-
|
|
|
266 |
|
267 |
-
<div class="saboxplugin-question">
|
268 |
-
<label for="saboxplugin_options[sab_box_author_color]"><?php _e( 'Author name color:', 'saboxplugin' ); ?></label>
|
269 |
-
</div>
|
270 |
|
271 |
-
|
272 |
-
<?php $sab_author_color = ( isset( $options['sab_box_author_color'] ) ) ? $options['sab_box_author_color'] : ''; ?>
|
273 |
-
<input type="text" name="saboxplugin_options[sab_box_author_color]" id="saboxplugin_options[sab_box_author_color]" class="saboxplugin-color-picker" value="<?php echo $sab_author_color; ?>" />
|
274 |
-
</div>
|
275 |
|
276 |
-
<div class="saboxplugin-question">
|
277 |
-
<label for="saboxplugin_options[sab_box_web_color]"><?php _e( 'Author website link color:', 'saboxplugin' ); ?></label>
|
278 |
-
</div>
|
279 |
-
<div class="saboxplugin-switch">
|
280 |
-
<?php $sab_web_color = ( isset( $options['sab_box_web_color'] ) ) ? $options['sab_box_web_color'] : ''; ?>
|
281 |
-
<input type="text" name="saboxplugin_options[sab_box_web_color]" id="saboxplugin_options[sab_box_web_color]" class="saboxplugin-color-picker" value="<?php echo $sab_web_color; ?>" />
|
282 |
-
</div>
|
283 |
|
|
|
|
|
|
|
284 |
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
<?php $sab_border_color = ( isset( $options['sab_box_border'] ) ) ? $options['sab_box_border'] : ''; ?>
|
290 |
-
<input type="text" name="saboxplugin_options[sab_box_border]" id="saboxplugin_options[sab_box_border]" class="saboxplugin-color-picker" value="<?php echo $sab_border_color; ?>" />
|
291 |
-
</div>
|
292 |
|
293 |
-
<div class="saboxplugin-question">
|
294 |
-
<label for="saboxplugin_options[sab_box_icons_back]"><?php _e( 'Background color of social icons bar:', 'saboxplugin' ); ?></label>
|
295 |
-
</div>
|
296 |
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
</div>
|
301 |
|
302 |
-
|
303 |
-
|
304 |
-
|
|
|
|
|
|
|
305 |
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
|
|
|
|
|
|
|
|
|
|
310 |
|
311 |
-
|
312 |
-
|
|
|
313 |
|
|
|
|
|
|
|
|
|
314 |
|
315 |
-
|
316 |
-
|
317 |
-
|
|
|
|
|
|
|
|
|
318 |
|
319 |
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
}
|
332 |
|
333 |
-
|
334 |
-
|
335 |
-
|
|
|
336 |
|
337 |
-
|
|
|
|
|
338 |
|
339 |
-
|
340 |
-
|
341 |
-
|
|
|
342 |
|
|
|
|
|
343 |
|
344 |
-
<div class="saboxplugin-switch">
|
345 |
-
<select name="sab_box_name_font" id="sab_box_name_font" class="sab_box_name_font">
|
346 |
-
<option value="none"><?php _e('None', 'saboxplugin'); ?></option>
|
347 |
-
<?php
|
348 |
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
|
|
|
|
|
|
|
|
|
|
353 |
|
354 |
-
?>
|
355 |
-
</select>
|
356 |
|
357 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
358 |
|
|
|
|
|
|
|
|
|
359 |
|
360 |
-
|
|
|
|
|
361 |
|
362 |
-
|
363 |
-
<label for="sab_box_web_font"><?php _e( 'Author website font family:', 'saboxplugin' ); ?></label>
|
364 |
-
</div>
|
365 |
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
<?php
|
370 |
|
371 |
-
// Listing Google fonts from the array.
|
372 |
-
foreach ($sabox_google_fonts as $sabox_font) {
|
373 |
-
echo '<option value="' . $sabox_font . '"' . selected ($sabox_font, get_option('sab_box_web_font')) . '>' . $sabox_font . '</option>' . "\n";
|
374 |
-
}
|
375 |
|
376 |
-
|
377 |
-
|
|
|
|
|
378 |
|
379 |
-
|
|
|
|
|
|
|
380 |
|
381 |
-
|
|
|
382 |
|
|
|
383 |
|
384 |
|
385 |
-
|
386 |
-
<label for="sab_box_desc_font"><?php _e( 'Author description font family:', 'saboxplugin' ); ?></label>
|
387 |
-
</div>
|
388 |
|
|
|
|
|
|
|
389 |
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
|
400 |
-
|
401 |
-
|
402 |
|
403 |
-
|
404 |
|
|
|
405 |
|
406 |
-
<div class="saboxplugin-border"></div>
|
407 |
|
|
|
|
|
|
|
408 |
|
409 |
-
<?php
|
410 |
-
if ( get_option( 'sab_box_name_size' ) ) {
|
411 |
-
$sabox_name_size = get_option( 'sab_box_name_size' );
|
412 |
-
} else {
|
413 |
-
$sabox_name_size = 18;
|
414 |
-
}
|
415 |
-
?>
|
416 |
|
417 |
-
|
418 |
-
|
419 |
-
|
|
|
420 |
|
|
|
|
|
|
|
|
|
421 |
|
422 |
-
|
|
|
423 |
|
424 |
-
|
425 |
-
<label for="saboxplugin_options[sab_box_name_size]"><?php _e( 'Author name font size:', 'saboxplugin' ); ?><input type="text" class="sabox-amount4" id="sabox-amount4" /></label>
|
426 |
-
</div>
|
427 |
|
428 |
-
<div class="sabox-slider4" id="sabox-slider4"><p></p></div>
|
429 |
-
<input type="hidden" name="sab_box_name_size" id="sab_box_name_size" value="<?php echo $sabox_name_size; ?>" />
|
430 |
-
<p class="description"><?php _e( 'Default font size of author name is 18px.', 'saboxplugin' ); ?></p>
|
431 |
-
</div>
|
432 |
|
|
|
433 |
|
434 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
435 |
|
|
|
|
|
|
|
436 |
|
437 |
-
<div class="saboxplugin-border"></div>
|
438 |
|
|
|
439 |
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
$sabox_web_size = 14;
|
445 |
-
}
|
446 |
-
?>
|
447 |
|
448 |
-
|
449 |
-
|
450 |
-
|
|
|
451 |
|
452 |
|
453 |
-
|
454 |
|
455 |
-
<div class="saboxplugin-question">
|
456 |
-
<label for="saboxplugin_options[sab_box_web_size]"><?php _e( 'Author website font size:', 'saboxplugin' ); ?><input type="text" class="sabox-amount6" id="sabox-amount6" /></label>
|
457 |
-
</div>
|
458 |
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
|
|
|
|
|
|
463 |
|
464 |
-
|
|
|
|
|
465 |
|
466 |
|
|
|
467 |
|
|
|
|
|
|
|
|
|
468 |
|
|
|
|
|
|
|
|
|
469 |
|
|
|
470 |
|
471 |
-
<?php
|
472 |
-
if ( get_option( 'sab_box_desc_size' ) ) {
|
473 |
-
$sabox_desc_size = get_option( 'sab_box_desc_size' );
|
474 |
-
} else {
|
475 |
-
$sabox_desc_size = 14;
|
476 |
-
}
|
477 |
-
?>
|
478 |
|
479 |
-
|
480 |
-
|
481 |
-
|
|
|
|
|
|
|
|
|
482 |
|
|
|
|
|
|
|
483 |
|
484 |
-
<div class="sabox-inline-slide">
|
485 |
|
486 |
-
|
487 |
-
<label for="saboxplugin_options[sab_box_desc_size]"><?php _e( 'Author description font size:', 'saboxplugin' ); ?><input type="text" class="sabox-amount5" id="sabox-amount5" /></label>
|
488 |
-
</div>
|
489 |
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
|
495 |
-
|
|
|
|
|
|
|
496 |
|
497 |
-
|
498 |
-
if ( get_option( 'sab_box_icon_size' ) ) {
|
499 |
-
$sabox_icons_size = get_option( 'sab_box_icon_size' );
|
500 |
-
} else {
|
501 |
-
$sabox_icons_size = 18;
|
502 |
-
}
|
503 |
-
?>
|
504 |
|
505 |
-
|
506 |
-
|
507 |
-
|
|
|
|
|
|
|
|
|
508 |
|
|
|
|
|
|
|
509 |
|
510 |
-
<div class="sabox-inline-slide">
|
511 |
|
512 |
-
|
513 |
-
<label for="saboxplugin_options[sab_box_icon_size]"><?php _e( 'Size of social icons:', 'saboxplugin' ); ?><input type="text" class="sabox-amount3" id="sabox-amount3" /></label>
|
514 |
-
</div>
|
515 |
|
516 |
-
|
|
|
|
|
|
|
517 |
|
518 |
-
|
519 |
|
520 |
-
|
521 |
|
522 |
-
|
523 |
|
|
|
524 |
|
525 |
-
<div class="saboxplugin-border"></div>
|
526 |
|
527 |
-
|
528 |
-
<label for="saboxplugin_options[sab_desc_style]"><?php _e( 'Author description font style:', 'saboxplugin' ); ?></label>
|
529 |
-
</div>
|
530 |
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
</div>
|
535 |
|
|
|
|
|
|
|
|
|
536 |
|
537 |
-
</div>
|
538 |
-
</div>
|
539 |
|
540 |
-
|
541 |
-
|
542 |
-
<div class="inside">
|
543 |
-
<div class="saboxplugin-question">
|
544 |
-
<label for="saboxplugin_options[sab_load_fa]"><?php _e( 'Disable Font Awesome stylesheet:', 'saboxplugin' ); ?></label>
|
545 |
-
<p class="description"><?php _e( 'Switch to "Yes" to prevent Font Awesome from loading its stylesheet, ONLY if your theme or another plugin already does.', 'saboxplugin' ); ?></p>
|
546 |
-
</div>
|
547 |
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
552 |
|
553 |
-
|
|
|
|
|
|
|
554 |
|
555 |
-
|
556 |
-
<label for="saboxplugin_options[sab_footer_inline_style]"><?php _e( 'Load generated inline style to footer:', 'saboxplugin' ); ?></label>
|
557 |
-
<p class="description"><?php _e( 'This option is useful ONLY if you run a plugin that optimizes your CSS delivery or moves your stylesheets to the footer, to get a higher score on speed testing services. However, the plugin style is loaded only on single post and single page.', 'saboxplugin' ); ?></p>
|
558 |
-
</div>
|
559 |
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
|
565 |
-
|
566 |
-
|
|
|
|
|
567 |
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
</form>
|
578 |
-
</div>
|
579 |
-
</div>
|
580 |
-
</div>
|
581 |
-
</div>
|
582 |
-
</div>
|
583 |
-
|
584 |
-
<div class="clearfix"></div>
|
585 |
-
<div class="sab-box"><!-- start sab-box div-->
|
586 |
-
|
587 |
-
<div class="sab-box-version">
|
588 |
-
<i class="sab-icon-version"></i>
|
589 |
-
</div>
|
590 |
-
|
591 |
-
<div class="sab-infos">
|
592 |
-
<?php _e( 'Installed Version:', 'saboxplugin' ); ?>
|
593 |
-
<span>
|
594 |
-
<?php echo SIMPLE_AUTHOR_BOX_VERSION; ?>
|
595 |
-
</span>
|
596 |
-
</div>
|
597 |
-
|
598 |
-
<div class="sab-infos">
|
599 |
-
<?php _e( 'Last Update:', 'saboxplugin' ); ?>
|
600 |
-
<span>
|
601 |
-
<?php echo SIMPLE_AUTHOR_BOX_LAST_UPDATE; ?>
|
602 |
-
</span>
|
603 |
-
</div>
|
604 |
-
|
605 |
-
</div> <!-- end sab-box div -->
|
606 |
-
|
607 |
-
|
608 |
-
</div>
|
609 |
</div>
|
|
5 |
-----------------------------------------------*/
|
6 |
|
7 |
// Exit if accessed directly
|
8 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
9 |
+
exit;
|
10 |
+
}
|
11 |
+
?>
|
12 |
+
|
13 |
+
<div class="wrap">
|
14 |
+
<div class="saboxplugin">
|
15 |
+
<div id="poststuff">
|
16 |
+
<div id="postbox-container" class="postbox-container">
|
17 |
+
<div class="meta-box-sortables ui-sortable" id="normal-sortables">
|
18 |
+
<h2 class="saboxplugin-icon"><?php echo esc_html( get_admin_page_title() ); ?></h2>
|
19 |
+
|
20 |
+
|
21 |
+
<form method="POST" action="options.php">
|
22 |
+
<?php settings_fields( 'sabox_plugin' );
|
23 |
+
do_settings_sections( 'saboxplugin_options' );
|
24 |
+
$options = get_option( 'saboxplugin_options' );
|
25 |
+
?>
|
26 |
+
|
27 |
+
<div class="postbox" id="test1">
|
28 |
+
<button type="button" class="handlediv" aria-expanded="true">
|
29 |
+
<span class="screen-reader-text">Toggle panel: <?php _e( 'General options', 'saboxplugin' ); ?></span>
|
30 |
+
<span class="toggle-indicator" aria-hidden="true"></span>
|
31 |
+
</button>
|
32 |
+
<h2 class="hndle">
|
33 |
+
<span><?php _e( 'General options', 'saboxplugin' ); ?></span>
|
34 |
+
</h2>
|
35 |
+
<div class="inside">
|
36 |
+
<div class="saboxplugin-question">
|
37 |
+
<label for="saboxplugin_options[sab_autoinsert]"><?php _e( 'Manually insert the Simple Author Box:', 'saboxplugin' ); ?></label>
|
38 |
+
</div>
|
39 |
+
|
40 |
+
<div class="saboxplugin-switch">
|
41 |
+
<input id="sab-toggle-1" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_autoinsert]" value="1" <?php checked( 1, isset( $options['sab_autoinsert'] ) ); ?> />
|
42 |
+
<label for="sab-toggle-1" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
43 |
+
</div>
|
44 |
+
|
45 |
+
<div id="saboxplugin-hide">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
|
47 |
+
<p class="description">
|
48 |
+
<?php _e( 'If you want to manually insert the Simple Author Box in your template file (single post view), you can use the following code snippet: ', 'saboxplugin' ); ?>
|
49 |
+
</p>
|
50 |
+
<textarea name="saboxplugin" rows="1" cols="100" onclick="this.focus();this.select();" readonly="readonly"><?php if ( function_exists( 'wpsabox_author_box' ) ) echo wpsabox_author_box(); ?></textarea>
|
51 |
+
|
52 |
+
<?php
|
53 |
+
if ( get_option( 'sab_box_margin_top' ) ) {
|
54 |
+
$sabox_top_margin = get_option( 'sab_box_margin_top' );
|
55 |
+
} else {
|
56 |
+
$sabox_top_margin = 0;
|
57 |
+
}
|
58 |
+
?>
|
59 |
|
60 |
+
<script type='text/javascript'>
|
61 |
+
var saboxTopmargin = '<?php echo $sabox_top_margin; ?>';
|
62 |
+
</script>
|
63 |
|
64 |
+
<div class="saboxplugin-border"></div>
|
|
|
|
|
65 |
|
66 |
+
<div class="sabox-inline-slide">
|
|
|
67 |
|
68 |
+
<div class="saboxplugin-question">
|
69 |
+
<label for="saboxplugin_options[sab_box_margin_top]"><?php _e( 'Top margin of author box:', 'saboxplugin' ); ?>
|
70 |
+
<input type="text" class="sabox-amount" id="sabox-amount"/></label>
|
71 |
+
</div>
|
72 |
|
73 |
+
<div class="sabox-slider" id="sabox-slider"><p></p></div>
|
74 |
+
<input type="hidden" name="sab_box_margin_top" id="sab_box_margin_top" value="<?php echo $sabox_top_margin; ?>"/>
|
75 |
|
76 |
+
</div>
|
77 |
+
<div class="saboxplugin-border"></div>
|
|
|
78 |
|
79 |
+
<?php
|
80 |
+
if ( get_option( 'sab_box_margin_bottom' ) ) {
|
81 |
+
$sabox_bottom_margin = get_option( 'sab_box_margin_bottom' );
|
82 |
+
} else {
|
83 |
+
$sabox_bottom_margin = 45;
|
84 |
+
}
|
85 |
+
?>
|
86 |
|
87 |
+
<script type='text/javascript'>
|
88 |
+
var saboxBottommargin = '<?php echo $sabox_bottom_margin; ?>';
|
89 |
+
</script>
|
90 |
|
|
|
|
|
|
|
|
|
91 |
|
92 |
+
<div class="sabox-inline-slide">
|
|
|
|
|
93 |
|
94 |
+
<div class="saboxplugin-question">
|
95 |
+
<label for="saboxplugin_options[sab_box_margin_bottom]"><?php _e( 'Bottom margin of author box:', 'saboxplugin' ); ?>
|
96 |
+
<input type="text" class="sabox-amount2" id="sabox-amount2"/></label>
|
97 |
+
</div>
|
98 |
|
99 |
+
<div class="sabox-slider2" id="sabox-slider2"><p></p></div>
|
100 |
+
<input type="hidden" name="sab_box_margin_bottom" id="sab_box_margin_bottom" value="<?php echo $sabox_bottom_margin; ?>"/>
|
101 |
|
102 |
+
</div>
|
103 |
+
<div class="saboxplugin-border"></div>
|
104 |
|
105 |
+
</div><!-- end of saboxplugin-hide -->
|
|
|
|
|
106 |
|
107 |
+
<div class="saboxplugin-question">
|
108 |
+
<label for="saboxplugin_options[sab_no_description]"><?php _e( 'Hide the author box if author description is empty:', 'saboxplugin' ); ?></label>
|
109 |
+
</div>
|
|
|
110 |
|
111 |
+
<div class="saboxplugin-switch">
|
112 |
+
<input id="sab-toggle-4" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_no_description]" value="1" <?php checked( 1, isset( $options['sab_no_description'] ) ); ?> />
|
113 |
+
<label for="sab-toggle-4" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
114 |
+
</div>
|
115 |
|
116 |
+
<div class="saboxplugin-question">
|
117 |
+
<label for="saboxplugin_options[sab_avatar_style]"><?php _e( 'Author avatar image style:', 'saboxplugin' ); ?></label>
|
118 |
+
</div>
|
119 |
|
120 |
+
<div class="saboxplugin-switch">
|
121 |
+
<input id="sab-toggle-8" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_avatar_style]" value="1" <?php checked( 1, isset( $options['sab_avatar_style'] ) ); ?> />
|
122 |
+
<label for="sab-toggle-8" data-on=<?php _e( 'Circle', 'saboxplugin' ); ?> data-off=<?php _e( 'Square', 'saboxplugin' ); ?>></label>
|
123 |
+
</div>
|
124 |
|
125 |
+
<div class="saboxplugin-question">
|
126 |
+
<label for="saboxplugin_options[sab_avatar_hover]"><?php _e( 'Rotate effect on author avatar hover:', 'saboxplugin' ); ?></label>
|
127 |
+
</div>
|
|
|
128 |
|
129 |
+
<div class="saboxplugin-switch">
|
130 |
+
<input id="sab-toggle-12" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_avatar_hover]" value="1" <?php checked( 1, isset( $options['sab_avatar_hover'] ) ); ?> />
|
131 |
+
<label for="sab-toggle-12" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
132 |
+
</div>
|
133 |
|
134 |
+
<div class="saboxplugin-border"></div>
|
|
|
|
|
135 |
|
|
|
|
|
|
|
|
|
136 |
|
137 |
+
<div class="saboxplugin-question">
|
138 |
+
<label for="saboxplugin_options[sab_web]"><?php _e( 'Show author website:', 'saboxplugin' ); ?></label>
|
139 |
+
</div>
|
140 |
|
141 |
+
<div class="saboxplugin-switch">
|
142 |
+
<input id="sab-toggle-15" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_web]" value="1" <?php checked( 1, isset( $options['sab_web'] ) ); ?> />
|
143 |
+
<label for="sab-toggle-15" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
144 |
+
</div>
|
145 |
|
|
|
|
|
|
|
|
|
146 |
|
147 |
+
<div id="saboxplugin-hide-three">
|
|
|
148 |
|
149 |
+
<div class="saboxplugin-question">
|
150 |
+
<label for="saboxplugin_options[sab_web_position]"><?php _e( 'Author website position:', 'saboxplugin' ); ?></label>
|
151 |
+
</div>
|
152 |
|
153 |
+
<div class="saboxplugin-switch">
|
154 |
+
<input id="sab-toggle-16" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_web_position]" value="1" <?php checked( 1, isset( $options['sab_web_position'] ) ); ?> />
|
155 |
+
<label for="sab-toggle-16" data-on=<?php _e( 'Right', 'saboxplugin' ); ?> data-off=<?php _e( 'Left', 'saboxplugin' ); ?>></label>
|
156 |
+
</div>
|
157 |
|
|
|
|
|
|
|
|
|
158 |
|
159 |
+
<div class="saboxplugin-question">
|
160 |
+
<label for="saboxplugin_options[sab_web_target]"><?php _e( 'Open author website link in a new tab:', 'saboxplugin' ); ?></label>
|
161 |
+
</div>
|
162 |
|
163 |
+
<div class="saboxplugin-switch">
|
164 |
+
<input id="sab-toggle-17" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_web_target]" value="1" <?php checked( 1, isset( $options['sab_web_target'] ) ); ?> />
|
165 |
+
<label for="sab-toggle-17" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
166 |
+
</div>
|
167 |
|
|
|
|
|
|
|
168 |
|
169 |
+
<div class="saboxplugin-question">
|
170 |
+
<label for="saboxplugin_options[sab_web_rel]"><?php _e( 'Add "nofollow" attribute on author website link:', 'saboxplugin' ); ?></label>
|
171 |
+
</div>
|
|
|
172 |
|
173 |
+
<div class="saboxplugin-switch">
|
174 |
+
<input id="sab-toggle-18" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_web_rel]" value="1" <?php checked( 1, isset( $options['sab_web_rel'] ) ); ?> />
|
175 |
+
<label for="sab-toggle-18" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
176 |
+
</div>
|
177 |
|
178 |
+
<div class="saboxplugin-border"></div>
|
179 |
+
</div> <!-- end hide three -->
|
|
|
|
|
180 |
|
181 |
+
<div class="saboxplugin-question">
|
182 |
+
<label for="saboxplugin_options[sab_colored]"><?php _e( 'Social icons type (colored background or symbols only):', 'saboxplugin' ); ?></label>
|
183 |
+
</div>
|
184 |
|
|
|
|
|
|
|
|
|
185 |
|
186 |
+
<div class="saboxplugin-switch">
|
187 |
+
<input id="sab-toggle-3" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_colored]" value="1" <?php checked( 1, isset( $options['sab_colored'] ) ); ?> />
|
188 |
+
<label for="sab-toggle-3" data-on=<?php _e( 'Colored', 'saboxplugin' ); ?> data-off=<?php _e( 'Symbols', 'saboxplugin' ); ?>></label>
|
189 |
+
</div>
|
190 |
|
|
|
|
|
|
|
|
|
191 |
|
192 |
+
<div id="saboxplugin-hide-two">
|
193 |
|
194 |
+
<div class="saboxplugin-question">
|
195 |
+
<label for="saboxplugin_options[sab_icons_style]"><?php _e( 'Social icons style:', 'saboxplugin' ); ?></label>
|
196 |
+
</div>
|
197 |
|
198 |
+
<div class="saboxplugin-switch">
|
199 |
+
<input id="sab-toggle-9" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_icons_style]" value="1" <?php checked( 1, isset( $options['sab_icons_style'] ) ); ?> />
|
200 |
+
<label for="sab-toggle-9" data-on=<?php _e( 'Circle', 'saboxplugin' ); ?> data-off=<?php _e( 'Squares', 'saboxplugin' ); ?>></label>
|
201 |
+
</div>
|
202 |
|
203 |
+
<div class="saboxplugin-question">
|
204 |
+
<label for="saboxplugin_options[sab_social_hover]"><?php _e( 'Rotate effect on social icons hover:', 'saboxplugin' ); ?></label>
|
205 |
+
</div>
|
206 |
|
207 |
+
<div class="saboxplugin-switch">
|
208 |
+
<input id="sab-toggle-13" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_social_hover]" value="1" <?php checked( 1, isset( $options['sab_social_hover'] ) ); ?> />
|
209 |
+
<label for="sab-toggle-13" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
210 |
+
</div>
|
211 |
|
212 |
+
<div class="saboxplugin-question">
|
213 |
+
<label for="saboxplugin_options[sab_box_long_shadow]"><?php _e( 'Use flat long shadow effect:', 'saboxplugin' ); ?></label>
|
214 |
+
</div>
|
215 |
|
216 |
+
<div class="saboxplugin-switch">
|
217 |
+
<input id="sab-toggle-10" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_box_long_shadow]" value="1" <?php checked( 1, isset( $options['sab_box_long_shadow'] ) ); ?> />
|
218 |
+
<label for="sab-toggle-10" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
219 |
+
</div>
|
220 |
|
221 |
+
<div class="saboxplugin-question">
|
222 |
+
<label for="saboxplugin_options[sab_box_thin_border]"><?php _e( 'Show a thin border on colored social icons:', 'saboxplugin' ); ?></label>
|
223 |
+
</div>
|
|
|
|
|
|
|
224 |
|
225 |
+
<div class="saboxplugin-switch">
|
226 |
+
<input id="sab-toggle-11" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_box_thin_border]" value="1" <?php checked( 1, isset( $options['sab_box_thin_border'] ) ); ?> />
|
227 |
+
<label for="sab-toggle-11" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
228 |
+
</div>
|
229 |
|
|
|
|
|
|
|
230 |
|
231 |
+
</div><!-- end of saboxplugin-hide -->
|
|
|
|
|
|
|
232 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
|
234 |
+
<div class="saboxplugin-question">
|
235 |
+
<label for="saboxplugin_options[sab_link_target]"><?php _e( 'Open social icon links in a new tab:', 'saboxplugin' ); ?></label>
|
236 |
+
</div>
|
237 |
|
238 |
+
<div class="saboxplugin-switch">
|
239 |
+
<input id="sab-toggle-2" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_link_target]" value="1" <?php checked( 1, isset( $options['sab_link_target'] ) ); ?> />
|
240 |
+
<label for="sab-toggle-2" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
241 |
+
</div>
|
|
|
|
|
|
|
242 |
|
|
|
|
|
|
|
243 |
|
244 |
+
<div class="saboxplugin-question">
|
245 |
+
<label for="saboxplugin_options[sab_hide_socials]"><?php _e( 'Hide the social icons on author box:', 'saboxplugin' ); ?></label>
|
246 |
+
</div>
|
|
|
247 |
|
248 |
+
<div class="saboxplugin-switch">
|
249 |
+
<input id="sab-toggle-7" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_hide_socials]" value="1" <?php checked( 1, isset( $options['sab_hide_socials'] ) ); ?> />
|
250 |
+
<label for="sab-toggle-7" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
251 |
+
</div>
|
252 |
+
</div>
|
253 |
+
</div>
|
254 |
|
255 |
+
<div class="postbox closed" id="test1">
|
256 |
+
<button type="button" class="handlediv" aria-expanded="true">
|
257 |
+
<span class="screen-reader-text">Toggle panel: <?php _e( 'Color options', 'saboxplugin' ); ?></span>
|
258 |
+
<span class="toggle-indicator" aria-hidden="true"></span>
|
259 |
+
</button>
|
260 |
+
<h2 class="hndle">
|
261 |
+
<span><?php _e( 'Color options', 'saboxplugin' ); ?></span>
|
262 |
+
</h2>
|
263 |
+
<div class="inside">
|
264 |
|
265 |
+
<div class="saboxplugin-question">
|
266 |
+
<label for="saboxplugin_options[sab_box_author_color]"><?php _e( 'Author name color:', 'saboxplugin' ); ?></label>
|
267 |
+
</div>
|
268 |
|
269 |
+
<div class="saboxplugin-switch">
|
270 |
+
<?php $sab_author_color = ( isset( $options['sab_box_author_color'] ) ) ? $options['sab_box_author_color'] : ''; ?>
|
271 |
+
<input type="text" name="saboxplugin_options[sab_box_author_color]" id="saboxplugin_options[sab_box_author_color]" class="saboxplugin-color-picker" value="<?php echo $sab_author_color; ?>"/>
|
272 |
+
</div>
|
273 |
|
274 |
+
<div class="saboxplugin-question">
|
275 |
+
<label for="saboxplugin_options[sab_box_web_color]"><?php _e( 'Author website link color:', 'saboxplugin' ); ?></label>
|
276 |
+
</div>
|
277 |
+
<div class="saboxplugin-switch">
|
278 |
+
<?php $sab_web_color = ( isset( $options['sab_box_web_color'] ) ) ? $options['sab_box_web_color'] : ''; ?>
|
279 |
+
<input type="text" name="saboxplugin_options[sab_box_web_color]" id="saboxplugin_options[sab_box_web_color]" class="saboxplugin-color-picker" value="<?php echo $sab_web_color; ?>"/>
|
280 |
+
</div>
|
281 |
|
282 |
|
283 |
+
<div class="saboxplugin-question">
|
284 |
+
<label for="saboxplugin_options[sab_box_border]"><?php _e( 'Border color of Simple Author Box:', 'saboxplugin' ); ?></label>
|
285 |
+
</div>
|
286 |
+
<div class="saboxplugin-switch">
|
287 |
+
<?php $sab_border_color = ( isset( $options['sab_box_border'] ) ) ? $options['sab_box_border'] : ''; ?>
|
288 |
+
<input type="text" name="saboxplugin_options[sab_box_border]" id="saboxplugin_options[sab_box_border]" class="saboxplugin-color-picker" value="<?php echo $sab_border_color; ?>"/>
|
289 |
+
</div>
|
290 |
|
291 |
+
<div class="saboxplugin-question">
|
292 |
+
<label for="saboxplugin_options[sab_box_icons_back]"><?php _e( 'Background color of social icons bar:', 'saboxplugin' ); ?></label>
|
293 |
+
</div>
|
|
|
294 |
|
295 |
+
<div class="saboxplugin-switch">
|
296 |
+
<?php $sab_icons_back = ( isset( $options['sab_box_icons_back'] ) ) ? $options['sab_box_icons_back'] : ''; ?>
|
297 |
+
<input type="text" name="saboxplugin_options[sab_box_icons_back]" id="saboxplugin_options[sab_box_icons_back]" class="saboxplugin-color-picker" value="<?php echo $sab_icons_back; ?>"/>
|
298 |
+
</div>
|
299 |
|
300 |
+
<div class="saboxplugin-question">
|
301 |
+
<label for="saboxplugin_options[sab_box_icons_color]"><?php _e( 'Social icons color (for symbols only):', 'saboxplugin' ); ?></label>
|
302 |
+
</div>
|
303 |
|
304 |
+
<div class="saboxplugin-switch">
|
305 |
+
<?php $sab_icons_color = ( isset( $options['sab_box_icons_color'] ) ) ? $options['sab_box_icons_color'] : ''; ?>
|
306 |
+
<input type="text" name="saboxplugin_options[sab_box_icons_color]" id="saboxplugin_options[sab_box_icons_color]" class="saboxplugin-color-picker" value="<?php echo $sab_icons_color; ?>"/>
|
307 |
+
</div>
|
308 |
|
309 |
+
</div>
|
310 |
+
</div>
|
311 |
|
|
|
|
|
|
|
|
|
312 |
|
313 |
+
<div class="postbox closed" id="test3">
|
314 |
+
<button type="button" class="handlediv" aria-expanded="true">
|
315 |
+
<span class="screen-reader-text">Toggle panel: <?php _e( 'Typography options', 'saboxplugin' ); ?></span>
|
316 |
+
<span class="toggle-indicator" aria-hidden="true"></span>
|
317 |
+
</button>
|
318 |
+
<h2 class="hndle">
|
319 |
+
<span><?php _e( 'Typography options', 'saboxplugin' ); ?></span>
|
320 |
+
</h2>
|
321 |
+
<div class="inside">
|
322 |
|
|
|
|
|
323 |
|
324 |
+
<div class="saboxplugin-question">
|
325 |
+
<label for="sab_box_subset"><?php _e( 'Google font characters subset:', 'saboxplugin' ); ?></label>
|
326 |
+
<p class="description"><?php _e( 'Please note that some Google fonts does not support particular subsets!', 'saboxplugin' ); ?></p>
|
327 |
+
</div>
|
328 |
+
<div class="saboxplugin-switch">
|
329 |
+
<select name="sab_box_subset" id="sab_box_subset" class="sab_box_subset">
|
330 |
+
<?php
|
331 |
|
332 |
+
// Listing Google fonts subsets from the array.
|
333 |
+
foreach ( $sabox_google_subset as $sabox_subset ) {
|
334 |
+
echo '<option value="' . $sabox_subset . '"' . selected( $sabox_subset, get_option( 'sab_box_subset' ) ) . '>' . $sabox_subset . '</option>' . "\n";
|
335 |
+
}
|
336 |
|
337 |
+
?>
|
338 |
+
</select>
|
339 |
+
</div>
|
340 |
|
341 |
+
<div class="saboxplugin-border"></div>
|
|
|
|
|
342 |
|
343 |
+
<div class="saboxplugin-question">
|
344 |
+
<label for="sab_box_name_font"><?php _e( 'Author name font family:', 'saboxplugin' ); ?></label>
|
345 |
+
</div>
|
|
|
346 |
|
|
|
|
|
|
|
|
|
347 |
|
348 |
+
<div class="saboxplugin-switch">
|
349 |
+
<select name="sab_box_name_font" id="sab_box_name_font" class="sab_box_name_font">
|
350 |
+
<option value="none"><?php _e( 'None', 'saboxplugin' ); ?></option>
|
351 |
+
<?php
|
352 |
|
353 |
+
// Listing Google fonts from the array.
|
354 |
+
foreach ( $sabox_google_fonts as $sabox_font ) {
|
355 |
+
echo '<option value="' . $sabox_font . '"' . selected( $sabox_font, get_option( 'sab_box_name_font' ) ) . '>' . $sabox_font . '</option>' . "\n";
|
356 |
+
}
|
357 |
|
358 |
+
?>
|
359 |
+
</select>
|
360 |
|
361 |
+
</div>
|
362 |
|
363 |
|
364 |
+
<div class="saboxplugin-border"></div>
|
|
|
|
|
365 |
|
366 |
+
<div class="saboxplugin-question">
|
367 |
+
<label for="sab_box_web_font"><?php _e( 'Author website font family:', 'saboxplugin' ); ?></label>
|
368 |
+
</div>
|
369 |
|
370 |
+
<div class="saboxplugin-switch">
|
371 |
+
<select name="sab_box_web_font" id="sab_box_web_font" class="sab_box_web_font">
|
372 |
+
<option value="none"><?php _e( 'None', 'saboxplugin' ); ?></option>
|
373 |
+
<?php
|
374 |
|
375 |
+
// Listing Google fonts from the array.
|
376 |
+
foreach ( $sabox_google_fonts as $sabox_font ) {
|
377 |
+
echo '<option value="' . $sabox_font . '"' . selected( $sabox_font, get_option( 'sab_box_web_font' ) ) . '>' . $sabox_font . '</option>' . "\n";
|
378 |
+
}
|
379 |
|
380 |
+
?>
|
381 |
+
</select>
|
382 |
|
383 |
+
</div>
|
384 |
|
385 |
+
<div class="saboxplugin-border"></div>
|
386 |
|
|
|
387 |
|
388 |
+
<div class="saboxplugin-question">
|
389 |
+
<label for="sab_box_desc_font"><?php _e( 'Author description font family:', 'saboxplugin' ); ?></label>
|
390 |
+
</div>
|
391 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
392 |
|
393 |
+
<div class="saboxplugin-switch">
|
394 |
+
<select name="sab_box_desc_font" id="sab_box_name_font" class="sab_box_desc_font">
|
395 |
+
<option value="none"><?php _e( 'None', 'saboxplugin' ); ?></option>
|
396 |
+
<?php
|
397 |
|
398 |
+
// Listing Google fonts from the array.
|
399 |
+
foreach ( $sabox_google_fonts as $sabox_font ) {
|
400 |
+
echo '<option value="' . $sabox_font . '"' . selected( $sabox_font, get_option( 'sab_box_desc_font' ) ) . '>' . $sabox_font . '</option>' . "\n";
|
401 |
+
}
|
402 |
|
403 |
+
?>
|
404 |
+
</select>
|
405 |
|
406 |
+
</div>
|
|
|
|
|
407 |
|
|
|
|
|
|
|
|
|
408 |
|
409 |
+
<div class="saboxplugin-border"></div>
|
410 |
|
411 |
|
412 |
+
<?php
|
413 |
+
if ( get_option( 'sab_box_name_size' ) ) {
|
414 |
+
$sabox_name_size = get_option( 'sab_box_name_size' );
|
415 |
+
} else {
|
416 |
+
$sabox_name_size = 18;
|
417 |
+
}
|
418 |
+
?>
|
419 |
|
420 |
+
<script type='text/javascript'>
|
421 |
+
var saboxNamesize = '<?php echo $sabox_name_size; ?>';
|
422 |
+
</script>
|
423 |
|
|
|
424 |
|
425 |
+
<div class="sabox-inline-slide">
|
426 |
|
427 |
+
<div class="saboxplugin-question">
|
428 |
+
<label for="saboxplugin_options[sab_box_name_size]"><?php _e( 'Author name font size:', 'saboxplugin' ); ?>
|
429 |
+
<input type="text" class="sabox-amount4" id="sabox-amount4"/></label>
|
430 |
+
</div>
|
|
|
|
|
|
|
431 |
|
432 |
+
<div class="sabox-slider4" id="sabox-slider4"><p></p></div>
|
433 |
+
<input type="hidden" name="sab_box_name_size" id="sab_box_name_size" value="<?php echo $sabox_name_size; ?>"/>
|
434 |
+
<p class="description"><?php _e( 'Default font size of author name is 18px.', 'saboxplugin' ); ?></p>
|
435 |
+
</div>
|
436 |
|
437 |
|
438 |
+
<div class="saboxplugin-border"></div>
|
439 |
|
|
|
|
|
|
|
440 |
|
441 |
+
<?php
|
442 |
+
if ( get_option( 'sab_box_web_size' ) ) {
|
443 |
+
$sabox_web_size = get_option( 'sab_box_web_size' );
|
444 |
+
} else {
|
445 |
+
$sabox_web_size = 14;
|
446 |
+
}
|
447 |
+
?>
|
448 |
|
449 |
+
<script type='text/javascript'>
|
450 |
+
var saboxWebsize = '<?php echo $sabox_web_size; ?>';
|
451 |
+
</script>
|
452 |
|
453 |
|
454 |
+
<div class="sabox-inline-slide">
|
455 |
|
456 |
+
<div class="saboxplugin-question">
|
457 |
+
<label for="saboxplugin_options[sab_box_web_size]"><?php _e( 'Author website font size:', 'saboxplugin' ); ?>
|
458 |
+
<input type="text" class="sabox-amount6" id="sabox-amount6"/></label>
|
459 |
+
</div>
|
460 |
|
461 |
+
<div class="sabox-slider6" id="sabox-slider6"><p></p></div>
|
462 |
+
<input type="hidden" name="sab_box_web_size" id="sab_box_web_size" value="<?php echo $sabox_web_size; ?>"/>
|
463 |
+
<p class="description"><?php _e( 'Default font size of author website is 14px.', 'saboxplugin' ); ?></p>
|
464 |
+
</div>
|
465 |
|
466 |
+
<div class="saboxplugin-border"></div>
|
467 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
468 |
|
469 |
+
<?php
|
470 |
+
if ( get_option( 'sab_box_desc_size' ) ) {
|
471 |
+
$sabox_desc_size = get_option( 'sab_box_desc_size' );
|
472 |
+
} else {
|
473 |
+
$sabox_desc_size = 14;
|
474 |
+
}
|
475 |
+
?>
|
476 |
|
477 |
+
<script type='text/javascript'>
|
478 |
+
var saboxDescsize = '<?php echo $sabox_desc_size; ?>';
|
479 |
+
</script>
|
480 |
|
|
|
481 |
|
482 |
+
<div class="sabox-inline-slide">
|
|
|
|
|
483 |
|
484 |
+
<div class="saboxplugin-question">
|
485 |
+
<label for="saboxplugin_options[sab_box_desc_size]"><?php _e( 'Author description font size:', 'saboxplugin' ); ?>
|
486 |
+
<input type="text" class="sabox-amount5" id="sabox-amount5"/></label>
|
487 |
+
</div>
|
488 |
|
489 |
+
<div class="sabox-slider5" id="sabox-slider5"><p></p></div>
|
490 |
+
<input type="hidden" name="sab_box_desc_size" id="sab_box_desc_size" value="<?php echo $sabox_desc_size; ?>"/>
|
491 |
+
<p class="description"><?php _e( 'Default font size of author description is 14px.', 'saboxplugin' ); ?></p>
|
492 |
+
</div>
|
493 |
|
494 |
+
<div class="saboxplugin-border"></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
495 |
|
496 |
+
<?php
|
497 |
+
if ( get_option( 'sab_box_icon_size' ) ) {
|
498 |
+
$sabox_icons_size = get_option( 'sab_box_icon_size' );
|
499 |
+
} else {
|
500 |
+
$sabox_icons_size = 18;
|
501 |
+
}
|
502 |
+
?>
|
503 |
|
504 |
+
<script type='text/javascript'>
|
505 |
+
var saboxIconsize = '<?php echo $sabox_icons_size; ?>';
|
506 |
+
</script>
|
507 |
|
|
|
508 |
|
509 |
+
<div class="sabox-inline-slide">
|
|
|
|
|
510 |
|
511 |
+
<div class="saboxplugin-question">
|
512 |
+
<label for="saboxplugin_options[sab_box_icon_size]"><?php _e( 'Size of social icons:', 'saboxplugin' ); ?>
|
513 |
+
<input type="text" class="sabox-amount3" id="sabox-amount3"/></label>
|
514 |
+
</div>
|
515 |
|
516 |
+
<div class="sabox-slider3" id="sabox-slider3"><p></p></div>
|
517 |
|
518 |
+
<input type="hidden" name="sab_box_icon_size" id="sab_box_icon_size" value="<?php echo $sabox_icons_size; ?>"/>
|
519 |
|
520 |
+
<p class="description"><?php _e( 'Default font size of social icons is 18px.', 'saboxplugin' ); ?></p>
|
521 |
|
522 |
+
</div>
|
523 |
|
|
|
524 |
|
525 |
+
<div class="saboxplugin-border"></div>
|
|
|
|
|
526 |
|
527 |
+
<div class="saboxplugin-question">
|
528 |
+
<label for="saboxplugin_options[sab_desc_style]"><?php _e( 'Author description font style:', 'saboxplugin' ); ?></label>
|
529 |
+
</div>
|
|
|
530 |
|
531 |
+
<div class="saboxplugin-switch">
|
532 |
+
<input id="sab-toggle-14" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_desc_style]" value="1" <?php checked( 1, isset( $options['sab_desc_style'] ) ); ?> />
|
533 |
+
<label for="sab-toggle-14" data-on=<?php _e( 'Italic', 'saboxplugin' ); ?> data-off=<?php _e( 'Normal', 'saboxplugin' ); ?>></label>
|
534 |
+
</div>
|
535 |
|
|
|
|
|
536 |
|
537 |
+
</div>
|
538 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
539 |
|
540 |
+
<div class="postbox closed" id="test4">
|
541 |
+
<button type="button" class="handlediv" aria-expanded="true">
|
542 |
+
<span class="screen-reader-text">Toggle panel: <?php _e( 'Miscellaneous options', 'saboxplugin' ); ?></span>
|
543 |
+
<span class="toggle-indicator" aria-hidden="true"></span>
|
544 |
+
</button>
|
545 |
+
<h2 class="hndle">
|
546 |
+
<span><?php _e( 'Miscellaneous options', 'saboxplugin' ); ?></span></h2>
|
547 |
+
<div class="inside">
|
548 |
+
<div class="saboxplugin-question">
|
549 |
+
<label for="saboxplugin_options[sab_load_fa]"><?php _e( 'Disable Font Awesome stylesheet:', 'saboxplugin' ); ?></label>
|
550 |
+
<p class="description"><?php _e( 'Switch to "Yes" to prevent Font Awesome from loading its stylesheet, ONLY if your theme or another plugin already does.', 'saboxplugin' ); ?></p>
|
551 |
+
</div>
|
552 |
|
553 |
+
<div class="saboxplugin-switch">
|
554 |
+
<input id="sab-toggle-6" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_load_fa]" value="1" <?php checked( 1, isset( $options['sab_load_fa'] ) ); ?> />
|
555 |
+
<label for="sab-toggle-6" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
556 |
+
</div>
|
557 |
|
558 |
+
<div class="saboxplugin-border"></div>
|
|
|
|
|
|
|
559 |
|
560 |
+
<div class="saboxplugin-question">
|
561 |
+
<label for="saboxplugin_options[sab_footer_inline_style]"><?php _e( 'Load generated inline style to footer:', 'saboxplugin' ); ?></label>
|
562 |
+
<p class="description"><?php _e( 'This option is useful ONLY if you run a plugin that optimizes your CSS delivery or moves your stylesheets to the footer, to get a higher score on speed testing services. However, the plugin style is loaded only on single post and single page.', 'saboxplugin' ); ?></p>
|
563 |
+
</div>
|
564 |
|
565 |
+
<div class="saboxplugin-switch">
|
566 |
+
<input id="sab-toggle-5" class="sab-toggle sab-toggle-yes-no" type="checkbox" name="saboxplugin_options[sab_footer_inline_style]" value="1" <?php checked( 1, isset( $options['sab_footer_inline_style'] ) ); ?> />
|
567 |
+
<label for="sab-toggle-5" data-on=<?php _e( 'Yes', 'saboxplugin' ); ?> data-off=<?php _e( 'No', 'saboxplugin' ); ?>></label>
|
568 |
+
</div>
|
569 |
|
570 |
+
</div>
|
571 |
+
</div>
|
572 |
+
<?php submit_button(); ?>
|
573 |
+
</form>
|
574 |
+
</div>
|
575 |
+
</div>
|
576 |
+
</div>
|
577 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
578 |
</div>
|
579 |
+
<div class="wp-clearfix"></div>
|
uninstall.php
CHANGED
@@ -14,13 +14,13 @@ if( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
|
14 |
}
|
15 |
|
16 |
delete_option( 'saboxplugin_options' );
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
14 |
}
|
15 |
|
16 |
delete_option( 'saboxplugin_options' );
|
17 |
+
delete_option( 'sab_box_margin_top' );
|
18 |
+
delete_option( 'sab_box_margin_bottom' );
|
19 |
+
delete_option( 'sab_box_icon_size' );
|
20 |
+
delete_option( 'sab_box_name_size' );
|
21 |
+
delete_option( 'sab_box_name_font' );
|
22 |
+
delete_option( 'sab_box_subset' );
|
23 |
+
delete_option( 'sab_box_desc_font' );
|
24 |
+
delete_option( 'sab_box_desc_size' );
|
25 |
+
delete_option( 'sab_box_desc_font' );
|
26 |
+
delete_option( 'sab_box_web_size' );
|