Jetpack by WordPress.com - Version 3.7.3

Version Description

Release Date: May 26, 2016

  • Important security update. Please upgrade immediately.
Download this release

Release Info

Developer samhotchkiss
Plugin Icon 128x128 Jetpack by WordPress.com
Version 3.7.3
Comparing to
See all releases

Code changes from version 3.6.2 to 3.7.3

Files changed (66) hide show
  1. 3rd-party/3rd-party.php +4 -3
  2. 3rd-party/bbpress.php +28 -0
  3. CONTRIBUTING.md +0 -38
  4. _inc/footer.php +1 -1
  5. _inc/genericons/README.md +110 -20
  6. _inc/genericons/genericons/Genericons.eot +0 -0
  7. _inc/genericons/genericons/Genericons.svg +21 -27
  8. _inc/genericons/genericons/Genericons.ttf +0 -0
  9. _inc/genericons/genericons/Genericons.woff +0 -0
  10. _inc/genericons/genericons/genericons.css +58 -9
  11. _inc/genericons/genericons/rtl/genericons-rtl.css +59 -10
  12. _inc/jetpack-jitm.js +75 -0
  13. _inc/jetpack-modules.js +1 -0
  14. _inc/jetpack.js +2 -2
  15. _inc/jp.js +150 -21
  16. _inc/lib/admin-pages/class.jetpack-landing-page.php +22 -1
  17. _inc/lib/markdown/extra.php +50 -50
  18. _inc/lib/markdown/gfm.php +1 -1
  19. changelog.txt +1405 -0
  20. class.jetpack-admin.php +41 -3
  21. class.jetpack-autoupdate.php +23 -83
  22. class.jetpack-cli.php +24 -17
  23. class.jetpack-client-server.php +1 -0
  24. class.jetpack-client.php +4 -4
  25. class.jetpack-ixr-client.php +2 -2
  26. class.jetpack-jitm.php +98 -0
  27. class.jetpack-modules-list-table.php +13 -2
  28. class.jetpack-network.php +229 -200
  29. class.jetpack-options.php +11 -2
  30. class.jetpack-post-images.php +45 -1
  31. class.jetpack-signature.php +2 -2
  32. class.jetpack-sync.php +46 -11
  33. class.jetpack-twitter-cards.php +8 -4
  34. class.jetpack-user-agent.php +10 -9
  35. class.jetpack-xmlrpc-server.php +18 -1
  36. class.jetpack.php +1085 -467
  37. class.json-api-endpoints.php +211 -60
  38. class.json-api.php +39 -28
  39. class.media-extractor.php +1 -1
  40. class.media-summary.php +7 -1
  41. class.photon.php +122 -4
  42. css/dashboard-widget-rtl.css +1 -0
  43. css/dashboard-widget.css +2 -0
  44. css/dashboard-widget.css.map +1 -1
  45. css/jetpack-admin-jitm-rtl.css +91 -0
  46. css/jetpack-admin-jitm-rtl.min.css +3 -0
  47. css/jetpack-admin-jitm.css +88 -0
  48. css/jetpack-admin-jitm.css.map +1 -0
  49. css/jetpack-admin-jitm.min.css +3 -0
  50. css/jetpack-admin-jitm.min.css.map +1 -0
  51. css/jetpack-admin-rtl.css +442 -75
  52. css/jetpack-admin-rtl.min.css +1 -32
  53. css/jetpack-admin.css +442 -43
  54. css/jetpack-admin.css.map +1 -1
  55. css/jetpack-admin.min.css +1 -32
  56. css/jetpack-admin.min.css.map +1 -1
  57. css/jetpack-banners-rtl.css +71 -4
  58. css/jetpack-banners-rtl.min.css +1 -4
  59. css/jetpack-banners.css +71 -0
  60. css/jetpack-banners.css.map +1 -1
  61. css/jetpack-banners.min.css +1 -4
  62. css/jetpack-banners.min.css.map +1 -1
  63. css/jetpack-icons.css +2 -0
  64. css/jetpack-icons.css.map +1 -1
  65. css/jetpack-rtl.css +1 -1
  66. css/jetpack.css +0 -1
3rd-party/3rd-party.php CHANGED
@@ -5,6 +5,7 @@
5
  * is architected
6
  */
7
 
8
- require_once( 'buddypress.php' );
9
- require_once( 'wpml.php' );
10
- require_once( 'bitly.php' );
 
5
  * is architected
6
  */
7
 
8
+ require_once( JETPACK__PLUGIN_DIR . '3rd-party/buddypress.php' );
9
+ require_once( JETPACK__PLUGIN_DIR . '3rd-party/wpml.php' );
10
+ require_once( JETPACK__PLUGIN_DIR . '3rd-party/bitly.php' );
11
+ require_once( JETPACK__PLUGIN_DIR . '3rd-party/bbpress.php' );
3rd-party/bbpress.php ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ add_action( 'init', 'jetpack_bbpress_compat', 11 ); // Priority 11 needed to ensure sharing_display is loaded.
3
+
4
+ /**
5
+ * Adds Jetpack + bbPress Compatibility filters.
6
+ *
7
+ * @author Brandon Kraft
8
+ * @since 3.7.1
9
+ */
10
+ function jetpack_bbpress_compat() {
11
+ if ( function_exists( 'sharing_display' ) ) {
12
+ add_filter( 'bbp_get_topic_content', 'sharing_display', 19 );
13
+ add_action( 'bbp_template_after_single_forum', 'jetpack_sharing_bbpress' );
14
+ add_action( 'bbp_template_after_single_topic', 'jetpack_sharing_bbpress' );
15
+ }
16
+ }
17
+
18
+ /**
19
+ * Display Jetpack "Sharing" buttons on bbPress 2.x forums/ topics/ lead topics/ replies.
20
+ *
21
+ * Determination if the sharing buttons should display on the post type is handled within sharing_display().
22
+ *
23
+ * @author David Decker
24
+ * @since 3.7.0
25
+ */
26
+ function jetpack_sharing_bbpress() {
27
+ sharing_display( null, true );
28
+ }
CONTRIBUTING.md DELETED
@@ -1,38 +0,0 @@
1
- # Want to contribute?
2
-
3
- Did you know that you could be instrumental in making Jetpack more robust and secure? If you use and love Jetpack, why not contribute to the project?
4
-
5
- ## Contributing for Everyone!
6
-
7
- Whether you can barely recognize a filter (or don’t know what that means) or you’ve already authored your own plugins, there are ways for you to pitch in.
8
-
9
- ### Beta Testing
10
-
11
- Beta testers give updates, fixes, and new modules a test run before they’re publicly released, so they’re an important part of the development process. If you'd like to join our Beta group, [contact us](http://jetpack.me/contact-support/)!
12
-
13
- ### Create Bug Reports
14
-
15
- If you find a bug, let us know by creating a new issue [here](https://github.com/Automattic/jetpack/issues/new). You can [check our recommendations to create great bug reports here](http://jetpack.me/contribute/#bugs).
16
-
17
- ### Write and submit a patch
18
-
19
- If you'd like to fix a bug, you can submit a Pull Request. [Follow these detailed steps to find out how](http://jetpack.me/contribute/#patch).
20
-
21
- When creating Pull Requests, remember:
22
-
23
- - [Check In Early, Check In Often](http://blog.codinghorror.com/check-in-early-check-in-often/).
24
- - Write [good commit messages](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
25
- - Respect the [Best practices for WordPress development](http://jetpack.me/contribute/#practices).
26
-
27
- There are a few bonuses that can increase the chances that your Pull Request is accepted:
28
-
29
- - If you've created a new action or filter, [add inline documentation](https://make.wordpress.org/core/handbook/inline-documentation-standards/php-documentation-standards/#4-hooks-actions-and-filters) to help others understand how to use the action or the filter.
30
- - Create [unit tests](https://github.com/Automattic/jetpack/tree/master/tests) if you can. If you're not familiar with Unit Testing, you can check [this tutorial](https://pippinsplugins.com/series/unit-tests-wordpress-plugins/).
31
- - If [Grunt](http://gruntjs.com/) is installed on your testing environmenent, run it after committing your changes. It will allow you to [detect errors in Javascript files](http://jshint.com/about/), compile Sass to CSS, and [a few other things](https://github.com/Automattic/jetpack/blob/master/Gruntfile.js).
32
-
33
- #### Where to get started?
34
-
35
- If you'd like to contribute but don't know where to get started, you can take a look at existing issues:
36
-
37
- - ["Good First Bug"](https://github.com/Automattic/Jetpack/issues?q=is%3Aopen+is%3Aissue+label%3A%22Good+First+Bug%22) issues are a good entry point to get familiar with Jetpack's codebase.
38
- - ["Whisky"](https://github.com/Automattic/jetpack/labels/Whisky%20Ticket) issues are important bugs or enhancements. Take a crack at it if you feel adventurous! :)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
_inc/footer.php CHANGED
@@ -19,7 +19,7 @@
19
  <?php if ( current_user_can( 'jetpack_manage_modules' ) ) : ?><a href="<?php echo esc_url( Jetpack::admin_url( 'page=jetpack-debugger' ) ); ?>" title="<?php esc_attr_e( 'Test your site&#8217;s compatibility with Jetpack.', 'jetpack' ); ?>"><?php _e( 'Debug', 'jetpack' ); ?><?php endif; ?></a>
20
  <a href="http://jetpack.me/contact-support/" title="<?php esc_attr_e( 'Contact the Jetpack Happiness Squad.', 'jetpack' ); ?>"><?php _e( 'Support', 'jetpack' ); ?></a>
21
  <a href="http://jetpack.me/survey/?rel=<?php echo JETPACK__VERSION; ?>" title="<?php esc_attr_e( 'Take a survey. Tell us how we&#8217;re doing.', 'jetpack' ); ?>"><?php _e( 'Give Us Feedback', 'jetpack' ); ?></a>
22
- <?php if ( current_user_can( 'jetpack_disconnect' ) ) : ?>
23
  <a href="<?php echo esc_url( Jetpack::admin_url( 'page=my_jetpack#disconnect' ) ); ?>"><?php esc_html_e( 'Disconnect Jetpack', 'jetpack' ); ?></a>
24
  <?php endif; ?>
25
  </div>
19
  <?php if ( current_user_can( 'jetpack_manage_modules' ) ) : ?><a href="<?php echo esc_url( Jetpack::admin_url( 'page=jetpack-debugger' ) ); ?>" title="<?php esc_attr_e( 'Test your site&#8217;s compatibility with Jetpack.', 'jetpack' ); ?>"><?php _e( 'Debug', 'jetpack' ); ?><?php endif; ?></a>
20
  <a href="http://jetpack.me/contact-support/" title="<?php esc_attr_e( 'Contact the Jetpack Happiness Squad.', 'jetpack' ); ?>"><?php _e( 'Support', 'jetpack' ); ?></a>
21
  <a href="http://jetpack.me/survey/?rel=<?php echo JETPACK__VERSION; ?>" title="<?php esc_attr_e( 'Take a survey. Tell us how we&#8217;re doing.', 'jetpack' ); ?>"><?php _e( 'Give Us Feedback', 'jetpack' ); ?></a>
22
+ <?php if ( Jetpack::is_active() && current_user_can( 'jetpack_disconnect' ) ) : ?>
23
  <a href="<?php echo esc_url( Jetpack::admin_url( 'page=my_jetpack#disconnect' ) ); ?>"><?php esc_html_e( 'Disconnect Jetpack', 'jetpack' ); ?></a>
24
  <?php endif; ?>
25
  </div>
_inc/genericons/README.md CHANGED
@@ -1,13 +1,13 @@
1
- ## Genericons
2
 
3
  Genericons are vector icons embedded in a webfont designed to be clean and simple keeping with a generic aesthetic.
4
 
5
  Use genericons for instant HiDPI, to change icon colors on the fly, or even with CSS effects such as drop-shadows or gradients!
6
 
7
 
8
- ### Usage
9
 
10
- To use it, place the `font` folder in your stylesheet directory and enqueue the genericons.css file. Now you can create an icon like this:
11
 
12
  ```
13
  .my-icon:before {
@@ -24,30 +24,120 @@ This will output a comment icon before every element with the class "my-icon". T
24
  You can also use the bundled example.css if you'd rather insert the icons using HTML tags.
25
 
26
 
27
- ### Notes
28
 
29
- ** Photoshop mockups **
30
 
31
- The `Genericons.ttf` file found in the `font` directory can be placed in your system fonts folder and used Photoshop or other graphics apps if you like.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
 
33
  If you're using Genericons in your Photoshop mockups, please remember to delete the old version of the font from Font Book, and grab the new one from the zip file. This also affects using it in your webdesigns: if you have an old version of the font installed locally, that's the font that'll be used in your website as well, so if you're missing icons, check for old versions of the font on your system.
34
 
35
- ** Pixel grid **
36
 
37
  Genericons has been designed for a 16x16px grid. That means it'll look sharp at font-size: 16px exactly. It'll also be crisp at multiples thereof, such as 32px or 64px. It'll look reasonably crisp at in-between font sizes such as 24px or 48px, but not quite as crisp as 16 or 32. Please don't set the font-size to 17px, though, that'll just look terrible blurry.
38
 
39
- ** Antialiasing **
40
 
41
  If you keep intact the `-webkit-font-smoothing: antialiased;` and `-moz-osx-font-smoothing: grayscale;` CSS properties. That'll make the icons look their best possible, in Firefox and WebKit based browsers.
42
 
43
- ** Updates **
 
 
 
 
44
 
45
  We don't often update icons, but do very carefully when we get good feedback suggesting improvements. Please be mindful if you upgrade, and check that the updated icons behave as you intended.
46
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
 
48
- ### Changelog
 
49
 
50
- ** 3.1 **
51
 
52
  Genericons is now generated using a commandline tool called FontCustom. This makes it far easier to add new icons to the font, but the switch means the download zip now has a different layout, fonts have different filenames, there's now no .otf font included (but the .ttf should suffice), and the font now has slightly different metrics. I've taken great care to ensure this new version should work as a drop-in replacement, but please be mindful and test carefully if you choose to upgrade.
53
 
@@ -63,7 +153,7 @@ Genericons is now generated using a commandline tool called FontCustom. This mak
63
  * New: Paintbrush.
64
  * Updated: Show and Hide icons were updated for clarity.
65
 
66
- ** 3.0.3 **
67
 
68
  Bunch of updates mostly.
69
 
@@ -73,7 +163,7 @@ Bunch of updates mostly.
73
  * Nicer "Share" icon.
74
  * Bigger default Linkedin icon.
75
 
76
- ** 3.0.2 **
77
 
78
  A slew of new stuff and updates.
79
 
@@ -88,7 +178,7 @@ A slew of new stuff and updates.
88
  * The "pin" icon has been updated for style and clarity.
89
  * The Twitter icon has been scaled down to fit with the other social icons.
90
 
91
- ** 3.0.1 **
92
 
93
  Mostly maintenance.
94
 
@@ -97,7 +187,7 @@ Mostly maintenance.
97
  * Replaced tabs with spaces in the helper CSS.
98
  * Changed the Genericons.com copy/paste tool to serve span's instead of div's for casual icon insertion. It's being converted to "inline-block" anyway.
99
 
100
- ** 3.0 **
101
 
102
  Mainly maintenance and a few new icons.
103
 
@@ -107,18 +197,18 @@ Mainly maintenance and a few new icons.
107
  * Genericons.com now has a mini release blog.
108
  * The CSS has prettier formatting, props Konstantin Obenland.
109
 
110
- ** 2.09 **
111
 
112
  Updated Facebook icon to new version. Updated Instagram logo to use new one-color version. Updated Google+ icon to use same radius as Instagram and Facebook. Added a bunch of new icons, cog, unapprove, cart, media player buttons, tablet, send to tablet.
113
 
114
- ** 2.06 **
115
 
116
  Included Base64 encoded version. This is necessary for Genericons to work with CDNs in Firefox. Firefox blocks fonts linked from a different domain. A CDN (typically s.example.com) usually puts the font on a subdomain, and is hence blocked in Firefox.
117
 
118
- ** 2.05 **
119
 
120
  Added a bunch of new icons, including upload to cloud, download to cloud, many more.
121
 
122
- ** 2.0 **
123
 
124
- Initial public release
1
+ # Genericons
2
 
3
  Genericons are vector icons embedded in a webfont designed to be clean and simple keeping with a generic aesthetic.
4
 
5
  Use genericons for instant HiDPI, to change icon colors on the fly, or even with CSS effects such as drop-shadows or gradients!
6
 
7
 
8
+ ## Usage
9
 
10
+ To use it, place the `genericons` folder in your stylesheet directory and enqueue the genericons.css file. Now you can create an icon like this:
11
 
12
  ```
13
  .my-icon:before {
24
  You can also use the bundled example.css if you'd rather insert the icons using HTML tags.
25
 
26
 
27
+ ## Building your own Genericons
28
 
29
+ In the `source` directory, you'll find all Genericons source icons in SVG format. This will allow you to bake your own flavor of Genericons using a tool such as FontCustom (http://fontcustom.com) or Fontello (http://fontello.com). Perhaps you need more logos than are available in the base Genericons package? Just add those logos and bake your own expanded set. Maybe you need just a few of the icons Genericons provides, but would like to trim the fat? Remove the ones you won't need!
30
 
31
+
32
+ ### FontCustom instructions
33
+
34
+ FontCustom is a powerful commandline tool which which bakes icon fonts from the SVG source files. It's the tool Genericons is built on, and it provides highly accurate and perfectly crisp icons, *provided all SVGs have the same pixel height*.
35
+
36
+ It's not that hard to use, and once it's installed you'll never think of icon-fonts the same way again. Seriously, you should try it. Icon fonts for everyone!
37
+
38
+ 1. Install FontCustom. Follow the instructions on the website: http://fontcustom.com/
39
+ 2. In the `source` directory from the Genericons download, open the file called `fontcustom.yml` in a text editor. Customize the `font_name` and `css_selector`.
40
+ 3. Open a terminal. Browse to the `source` directory. Type `fontcustom compile`.
41
+
42
+ You'll now receive a brand new subdirectory called `fontcustom-webfont`. Inside here you'll find your very own flavor of Genericons, with only the icons you want, including a handy example page that'll help you copy/paste the necessary glyphs or CSS values.
43
+
44
+ *Please note*: In the source directory, there's a hidden file called `.fontcustom-manifest.json`. This file is auto-generated by the FontCustom tool, and holds codepoints (unicode addresses) for every glyph, so its address doesn't change when you add or remove icons. If you feel the need to "start fresh" with the unicode addresses, you should delete this file.
45
+
46
+
47
+ ### Fontello instructions
48
+
49
+ Fontello is very easy to use. Just drop the SVG files of the icons you want onto their website and download the font. The downside is that Fontello seems to ignore the 16px pixelgrid, so you'll end up with fuzzy icons. Buyer beware.
50
+
51
+
52
+ ## Notes
53
+
54
+ **Photoshop mockups**
55
+
56
+ The `Genericons.ttf` file can be placed in your system fonts folder and used Photoshop or other graphics apps if you like.
57
 
58
  If you're using Genericons in your Photoshop mockups, please remember to delete the old version of the font from Font Book, and grab the new one from the zip file. This also affects using it in your webdesigns: if you have an old version of the font installed locally, that's the font that'll be used in your website as well, so if you're missing icons, check for old versions of the font on your system.
59
 
60
+ **Pixel grid**
61
 
62
  Genericons has been designed for a 16x16px grid. That means it'll look sharp at font-size: 16px exactly. It'll also be crisp at multiples thereof, such as 32px or 64px. It'll look reasonably crisp at in-between font sizes such as 24px or 48px, but not quite as crisp as 16 or 32. Please don't set the font-size to 17px, though, that'll just look terrible blurry.
63
 
64
+ **Antialiasing**
65
 
66
  If you keep intact the `-webkit-font-smoothing: antialiased;` and `-moz-osx-font-smoothing: grayscale;` CSS properties. That'll make the icons look their best possible, in Firefox and WebKit based browsers.
67
 
68
+ **optimizeLegibility**
69
+
70
+ Note: On Android browsers with version 4.2, 4.3, and probably later, Genericons will simply not show up if you're using the CSS property "text-rendering" set to "optimizeLegibility.
71
+
72
+ **Updates**
73
 
74
  We don't often update icons, but do very carefully when we get good feedback suggesting improvements. Please be mindful if you upgrade, and check that the updated icons behave as you intended.
75
 
76
+ **Base64 encoding**
77
+
78
+ By default, Genericons ships with a stylesheet that includes a base64 encoded version of the font. This is to sidestep issues with cross-origin requests for fonts, that happen when a stylesheet loads a font that's stored on a different domain or subdomain. This is very common when using caching plugins.
79
+
80
+ Base64 encoding comes with a 25% filesize overhead compared to just loading the WOFF file directly. If you know that you won't be loading fonts across domains, or have the ability to edit your server config files to allow it, you can get slightly faster performance by loading Genericons without the base64 encoding. Simply edit `genericons.css` and edit the `@font-face` declaration to match this:
81
+
82
+ ```
83
+ @font-face {
84
+ font-family: 'Genericons';
85
+ src: url('Genericons.woff') format('woff'),
86
+ url('Genericons.ttf') format('truetype'),
87
+ url('Genericons.svg#genericonsregular') format('svg');
88
+ font-weight: normal;
89
+ font-style: normal;
90
+ }
91
+ ```
92
+
93
+
94
+
95
+ ## Changelog
96
+
97
+ **3.4**
98
+
99
+ * Updated: Update Google Plus icon to new geometric version. This also *retires* the "alt" version, so *please be mindful if you choose to update, make sure you use the `f206` glyph, not the `f218` glyph, as it no longer exists!
100
+ * New: Added helper rotation classes to the base CSS, thanks to geminorum. Apply `genericon-rotate-90` to rotate 90 degrees, -180, -270. Or `genericon-flip-horizontal` or -vertical.
101
+
102
+ *Again, it is important if you choose to update to this version, make sure you're not using `genericon-googleplus-alt` or unicode character `f218`, as that has been retired! Use `genericon-googleplus` and glyph `f206` instead!*
103
+
104
+ **3.3.1**
105
+
106
+ Security Hardening: Remove Genericons example.html file. Please visit genericons.com instead.
107
+
108
+ **3.3**
109
+
110
+ The Open Source release.
111
+
112
+ You can now build your own flavors of Genericons with all the SVGs provided.
113
+
114
+
115
+ **3.2**
116
+
117
+ A number of new icons and a couple of quick updates.
118
+
119
+ * New: Activity
120
+ * New: HTML anchor
121
+ * New: Bug
122
+ * New: Download
123
+ * New: Handset
124
+ * New: Microphone
125
+ * New: Minus
126
+ * New: Plus
127
+ * New: Move
128
+ * New: Rating stars, empty, half, full
129
+ * New: Shuffle
130
+ * New: video camera
131
+ * New: Spotify
132
+ * New: Twitch
133
+ * Update: Fixed geometry in Edit icon
134
+ * Update: Updated Foursquare icon
135
+ * IE8 bugfix, slipstreamed into this.
136
 
137
+ Twitch and Spotify mark the last social icons that will be added to Genericons.
138
+ Future social icons will have to happen in a separate font.
139
 
140
+ **3.1**
141
 
142
  Genericons is now generated using a commandline tool called FontCustom. This makes it far easier to add new icons to the font, but the switch means the download zip now has a different layout, fonts have different filenames, there's now no .otf font included (but the .ttf should suffice), and the font now has slightly different metrics. I've taken great care to ensure this new version should work as a drop-in replacement, but please be mindful and test carefully if you choose to upgrade.
143
 
153
  * New: Paintbrush.
154
  * Updated: Show and Hide icons were updated for clarity.
155
 
156
+ **3.0.3**
157
 
158
  Bunch of updates mostly.
159
 
163
  * Nicer "Share" icon.
164
  * Bigger default Linkedin icon.
165
 
166
+ **3.0.2**
167
 
168
  A slew of new stuff and updates.
169
 
178
  * The "pin" icon has been updated for style and clarity.
179
  * The Twitter icon has been scaled down to fit with the other social icons.
180
 
181
+ **3.0.1**
182
 
183
  Mostly maintenance.
184
 
187
  * Replaced tabs with spaces in the helper CSS.
188
  * Changed the Genericons.com copy/paste tool to serve span's instead of div's for casual icon insertion. It's being converted to "inline-block" anyway.
189
 
190
+ **3.0**
191
 
192
  Mainly maintenance and a few new icons.
193
 
197
  * Genericons.com now has a mini release blog.
198
  * The CSS has prettier formatting, props Konstantin Obenland.
199
 
200
+ **2.09**
201
 
202
  Updated Facebook icon to new version. Updated Instagram logo to use new one-color version. Updated Google+ icon to use same radius as Instagram and Facebook. Added a bunch of new icons, cog, unapprove, cart, media player buttons, tablet, send to tablet.
203
 
204
+ **2.06**
205
 
206
  Included Base64 encoded version. This is necessary for Genericons to work with CDNs in Firefox. Firefox blocks fonts linked from a different domain. A CDN (typically s.example.com) usually puts the font on a subdomain, and is hence blocked in Firefox.
207
 
208
+ **2.05**
209
 
210
  Added a bunch of new icons, including upload to cloud, download to cloud, many more.
211
 
212
+ **2.0**
213
 
214
+ Initial public release
_inc/genericons/genericons/Genericons.eot CHANGED
Binary file
_inc/genericons/genericons/Genericons.svg CHANGED
@@ -1,30 +1,32 @@
1
  <?xml version="1.0" standalone="no"?>
2
  <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
  <!--
4
- 2014-10-3: Created.
5
  -->
6
- <svg xmlns="http://www.w3.org/2000/svg">
7
  <metadata>
8
- Created by FontForge 20120731 at Fri Oct 3 09:39:07 2014
9
- By Joen
10
- Created by Joen with FontForge 2.0 (http://fontforge.sf.net)
11
  </metadata>
12
  <defs>
13
  <font id="Genericons" horiz-adv-x="2048" >
14
  <font-face
15
  font-family="Genericons"
16
- font-weight="500"
17
  font-stretch="normal"
18
  units-per-em="2048"
19
- panose-1="2 0 6 9 0 0 0 0 0 0"
20
  ascent="2048"
21
  descent="0"
22
  bbox="-0.0140489 0 2048.01 2048"
23
  underline-thickness="102.4"
24
  underline-position="-204.8"
25
- unicode-range="U+F100-F517"
26
  />
27
  <missing-glyph />
 
 
28
  <glyph glyph-name="uniF413" unicode="&#xf413;"
29
  d="M256 1280c565.504 0 1024 -458.496 1024 -1024h-256c0 423.552 -344.448 768 -768 768v256zM256 1792c848.256 0 1536 -687.744 1536 -1536h-256c0 705.792 -574.208 1280 -1280 1280v256zM448 640c106.112 0 192 -86.0156 192 -192s-85.8877 -192 -192 -192
30
  s-192 86.0156 -192 192s85.8877 192 192 192z" />
@@ -55,13 +57,13 @@ d="M1664 1280h128l-256 -768h-768l256 768h128l86.2725 256h339.455zM1300.86 1280h2
55
  <glyph glyph-name="uniF430" unicode="&#xf430;"
56
  d="M1024 1453.31l86.6562 -86.6553l-342.656 -342.656h896v-128h-896l342.656 -342.656l-86.6562 -86.6553l-493.312 493.312z" />
57
  <glyph glyph-name="uniF515" unicode="&#xf515;"
58
- d="M1024 1920c494.848 0 896 -401.152 896 -896s-401.152 -896 -896 -896s-896 401.152 -896 896s401.152 896 896 896zM1387.52 601.216c29.4404 0 55.6807 23.6807 55.8086 56.0645c0 33.1514 -13.0557 46.4639 -35.4561 59.5195
59
- c-150.4 90.1123 -325.12 135.168 -521.216 135.168c-114.433 0 -224.769 -14.4639 -335.36 -39.6797c-27.1357 -5.12012 -48.7676 -23.8076 -48.7676 -61.4404c0 -29.1836 22.6553 -56.3193 56.7041 -56.3193c11.0078 0 29.4395 5.75977 44.1592 8.83203
60
- c90.2402 18.6875 186.752 30.9756 282.624 30.9756c171.776 0 333.696 -41.3438 463.616 -119.808c13.5684 -8.32031 23.4238 -13.3125 37.8877 -13.3125zM1485.18 838.4c38.9121 0 69.7607 31.3594 69.8887 70.0156c0 31.8721 -11.0078 53.6318 -40.832 70.7842
61
- c-178.433 106.752 -405.376 165.12 -639.872 165.12c-149.76 0 -252.544 -21.248 -353.28 -48.8965c-37.248 -10.624 -55.6797 -36.7354 -55.6797 -74.8799c0 -38.7842 31.3594 -70.1436 69.8877 -70.1436c16.3838 0 26.1123 5.11914 43.5205 10.1113
62
- c81.1514 21.5039 179.071 37.376 292.479 37.376c221.185 0 423.168 -57.4717 568.96 -144c13.3125 -7.55176 25.6006 -15.4873 44.9277 -15.4873zM1596.29 1114.24c45.3115 0 84.6084 35.0713 84.3516 83.8398c0 42.752 -18.9434 66.0479 -46.208 81.4082
63
- c-202.111 118.912 -478.976 172.928 -742.016 172.928c-155.008 0 -297.472 -17.5361 -425.216 -55.168c-32.5117 -9.59961 -62.7197 -36.9922 -62.7197 -85.6318c0 -47.8721 36.7354 -85.6318 84.4795 -85.6318c16.5117 0 33.0244 6.39941 46.0801 9.72754
64
- c113.024 30.5918 236.416 43.0078 357.888 43.0078c243.328 0 495.104 -53.5039 657.28 -150.784c17.0244 -9.34375 27.7764 -13.6953 46.0801 -13.6953z" />
65
  <glyph glyph-name="uniF448" unicode="&#xf448;"
66
  d="M512 384v1280h384v-1280h-384zM1152 1664h384v-1280h-384v1280z" />
67
  <glyph glyph-name="uniF453" unicode="&#xf453;"
@@ -163,12 +165,8 @@ d="M1024 1664l640 -512l-128 -128v-512h-1024v512l-128 128zM1152 576v448h-256v-448
163
  <glyph glyph-name="uniF458" unicode="&#xf458;"
164
  d="M1920 1024l-1024 -640v480l-768 -480v1280l768 -480v480z" />
165
  <glyph glyph-name="uniF218" unicode="&#xf218;"
166
- d="M1792 1152h256v-128h-256v-256h-128v256h-256v128h256v256h128v-256zM1301.5 1920l-150.528 -84.7363h-145.792c54.0166 -44.6719 167.04 -138.624 167.04 -317.439c0 -173.952 -98.8154 -256.256 -197.504 -333.952
167
- c-30.5918 -30.4639 -65.9199 -63.4883 -65.9199 -115.2s35.3281 -79.8721 61.1846 -101.12l84.7354 -65.792c103.424 -86.9121 197.376 -166.912 197.376 -329.216c0 -221.184 -213.888 -444.544 -618.368 -444.544c-341.119 0 -505.728 162.304 -505.728 336.384
168
- c0 84.6084 42.3682 204.544 181.12 286.849c145.792 89.4717 343.424 101.119 449.152 108.159c-32.8965 42.3682 -70.5283 87.04 -70.5283 159.744c0 40.1924 11.7754 63.7441 23.5518 91.7764c-25.9844 -2.04785 -51.7119 -4.6084 -75.2637 -4.6084
169
- c-249.216 0 -390.4 185.856 -390.4 369.28c0 108.032 49.4082 227.968 150.528 315.008c134.144 110.592 294.016 129.408 420.864 129.408h484.479zM1094.53 480.768c0 119.809 -77.5684 183.425 -256.385 310.528c-18.8154 2.30371 -30.5918 2.30371 -54.0156 2.30371
170
- c-21.1201 0 -148.224 -4.60742 -246.912 -37.6318c-51.8398 -18.8154 -202.368 -75.1357 -202.368 -242.304c0 -166.784 162.305 -286.848 413.952 -286.848c225.792 0 345.729 108.159 345.729 253.951zM906.496 1238.02c54.0156 54.1445 58.752 129.408 58.624 171.648
171
- c0 169.344 -101.12 432.768 -296.192 432.768c-61.3115 0 -127.104 -30.5918 -164.735 -77.5674c-39.9365 -49.4082 -51.7119 -112.896 -51.7119 -174.08c0 -157.568 91.6475 -418.561 294.016 -418.561c58.752 0 122.368 28.2881 160 65.792z" />
172
  <glyph glyph-name="uniF513" unicode="&#xf513;"
173
  d="M1920 1280l-555.136 -387.968l212.863 -636.032l-553.728 394.496l-553.728 -394.496l212.991 636.032l-555.264 387.968h685.312l210.688 640l210.688 -640h685.312zM1024 807.68l307.584 -219.136l-118.4 353.536l300.288 209.92h-371.456l-118.016 358.528v-702.849z
174
  " />
@@ -398,12 +396,8 @@ c-48.2559 175.232 -96.5117 350.336 -144.64 525.568c-53.6318 190.976 -111.232 286
398
  c117.888 100.991 206.464 154.111 265.472 159.487c139.521 13.3125 225.28 -81.2793 257.536 -283.392c34.8164 -218.24 58.8799 -353.92 72.4482 -407.04c40.1924 -180.992 84.4805 -271.36 132.736 -271.36c37.5039 0 93.8232 58.752 169.088 176.128
399
  c75.0078 117.376 115.2 206.849 120.576 268.16c10.624 101.376 -29.4404 152.192 -120.576 152.192c-43.0078 0 -87.2959 -9.98438 -132.736 -29.1846c88.0645 285.952 256.512 424.704 504.704 416.769z" />
400
  <glyph glyph-name="uniF206" unicode="&#xf206;"
401
- d="M571.904 570.112c-36.4805 0 -71.6807 -1.02441 -110.208 -1.02441c-127.36 0 -240.513 -32 -333.696 -83.3281v484.864c78.0801 -78.208 189.696 -126.208 329.984 -126.336c20.2236 0 39.6797 1.02344 58.8799 2.43164
402
- c-18.8164 -35.9678 -32.2559 -76.1602 -32.2559 -118.271c0 -70.9121 39.04 -111.36 87.2959 -158.336zM575.232 937.088c-163.584 4.86426 -319.104 155.008 -347.265 369.792c-28.2881 214.912 81.4082 379.264 244.992 374.4
403
- c163.584 -4.86426 303.488 -181.12 331.648 -396.032c28.2881 -214.784 -65.9199 -353.024 -229.376 -348.16zM965.504 217.856c4.99219 -21.248 7.80762 -43.1367 7.80762 -65.5361c0 -8.19238 -0.639648 -16.2559 -1.02344 -24.3203h-588.288
404
- c-115.328 0 -211.712 76.7998 -243.712 181.504c74.8799 110.72 228.224 189.824 401.408 187.904c56.832 -0.640625 109.823 -9.72852 157.952 -25.3438c132.352 -91.9043 238.976 -149.376 265.855 -254.208zM1920 1536h-256v256h-128v-256h-256v-128h256v-256h128v256
405
- h256v-1024.13c0 -141.312 -114.688 -256 -256 -256h-506.624c2.55957 16.7676 4.22363 33.5361 4.22363 50.3037c0 183.937 -39.6797 276.48 -235.647 423.424c-56.1924 42.2402 -178.688 128.769 -178.688 186.881c0 67.9678 19.4561 101.632 121.856 181.504
406
- c104.96 82.0479 179.328 190.208 179.328 324.352c0 146.176 -59.7764 278.912 -172.16 343.296h159.36l135.68 142.464h-606.977c-174.336 0 -332.159 -72.832 -436.352 -181.376v65.2803c0 141.312 114.688 256 256 256h1280c141.312 0 256 -114.688 256 -256v-128z" />
407
  <glyph glyph-name="uniF407" unicode="&#xf407;"
408
  d="M1280 1536l256 -128v-128h-128h-128h-128h-128h-128h-128h-128h-128h-128v128l256 128c0 70.7842 57.3438 128 128 128h384c70.7842 0 128 -57.2158 128 -128zM1088 1408c35.3281 0 64 28.6719 64 64s-28.6719 64 -64 64h-256c-35.3281 0 -64 -28.6719 -64 -64
409
  s28.6719 -64 64 -64h256zM1280 1216h128v-704c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.6562 0 -128 57.2158 -128 128v704h128v-704h128v704h128v-704h128v704h128v-704h128v704z" />
1
  <?xml version="1.0" standalone="no"?>
2
  <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
  <!--
4
+ 2015-9-18: Created with FontForge (http://fontforge.org)
5
  -->
6
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
7
  <metadata>
8
+ Created by FontForge 20150618 at Fri Sep 18 10:24:13 2015
9
+ By Joen Asmussen
10
+ Copyright (c) 2015, Joen Asmussen
11
  </metadata>
12
  <defs>
13
  <font id="Genericons" horiz-adv-x="2048" >
14
  <font-face
15
  font-family="Genericons"
16
+ font-weight="400"
17
  font-stretch="normal"
18
  units-per-em="2048"
19
+ panose-1="2 0 5 3 0 0 0 0 0 0"
20
  ascent="2048"
21
  descent="0"
22
  bbox="-0.0140489 0 2048.01 2048"
23
  underline-thickness="102.4"
24
  underline-position="-204.8"
25
+ unicode-range="U+0020-F517"
26
  />
27
  <missing-glyph />
28
+ <glyph glyph-name="space" unicode=" " horiz-adv-x="200"
29
+ />
30
  <glyph glyph-name="uniF413" unicode="&#xf413;"
31
  d="M256 1280c565.504 0 1024 -458.496 1024 -1024h-256c0 423.552 -344.448 768 -768 768v256zM256 1792c848.256 0 1536 -687.744 1536 -1536h-256c0 705.792 -574.208 1280 -1280 1280v256zM448 640c106.112 0 192 -86.0156 192 -192s-85.8877 -192 -192 -192
32
  s-192 86.0156 -192 192s85.8877 192 192 192z" />
57
  <glyph glyph-name="uniF430" unicode="&#xf430;"
58
  d="M1024 1453.31l86.6562 -86.6553l-342.656 -342.656h896v-128h-896l342.656 -342.656l-86.6562 -86.6553l-493.312 493.312z" />
59
  <glyph glyph-name="uniF515" unicode="&#xf515;"
60
+ d="M1024 1920c499.2 0 896 -396.8 896 -896s-396.8 -896 -896 -896s-896 396.8 -896 896s396.8 896 896 896zM1382.4 601.6c38.3994 0 64 25.6006 64 51.2002c0 38.4004 -12.8008 51.2002 -38.4004 64c-153.6 89.6006 -332.8 140.8 -524.8 140.8
61
+ c-115.2 0 -217.601 -25.5996 -320 -51.1992c-25.6006 -12.8008 -51.2002 -25.6006 -51.2002 -64c0 -25.6006 12.7998 -51.2002 51.2002 -51.2002c0 0 25.5996 12.7998 38.3994 12.7998c89.6006 12.7998 192 25.5996 281.601 25.5996
62
+ c166.399 0 332.8 -38.3994 460.8 -115.199c12.7998 -12.8008 25.5996 -12.8008 38.4004 -12.8008zM1484.8 832c38.4004 0 64 38.4004 64 76.7998c0 38.4004 -12.7998 64 -38.3994 76.7998c-179.2 102.4 -409.601 166.4 -640 166.4c-153.601 0 -256 -25.5996 -358.4 -51.2002
63
+ c-38.4004 -12.7998 -51.2002 -38.3994 -51.2002 -76.7998s38.4004 -76.7998 76.7998 -89.5996c12.8008 0 25.6006 12.7998 38.4004 12.7998c76.7998 25.5996 179.2 38.3994 294.4 38.3994c217.6 0 422.399 -51.1992 563.199 -140.8
64
+ c25.6006 0 25.6006 -12.7998 51.2002 -12.7998zM1600 1113.6c38.4004 0 76.7998 38.4004 76.7998 89.6006c0 38.3994 -25.5996 64 -51.2002 76.7998c-204.8 128 -473.6 179.2 -742.399 179.2c-153.601 0 -294.4 -12.7998 -422.4 -51.2002
65
+ c-38.3994 -12.7998 -64 -38.4004 -64 -89.5996c0 -51.2002 38.4004 -89.6006 89.6006 -89.6006c25.5996 0 38.3994 12.7998 51.1992 12.7998c115.2 25.6006 230.4 38.4004 358.4 38.4004c243.2 0 486.4 -51.2002 652.8 -153.6
66
+ c25.6006 -12.8008 38.4004 -12.8008 51.2002 -12.8008z" />
67
  <glyph glyph-name="uniF448" unicode="&#xf448;"
68
  d="M512 384v1280h384v-1280h-384zM1152 1664h384v-1280h-384v1280z" />
69
  <glyph glyph-name="uniF453" unicode="&#xf453;"
165
  <glyph glyph-name="uniF458" unicode="&#xf458;"
166
  d="M1920 1024l-1024 -640v480l-768 -480v1280l768 -480v480z" />
167
  <glyph glyph-name="uniF218" unicode="&#xf218;"
168
+ d="M729.6 1152h550.4s12.7998 -38.4004 12.7998 -89.5996c0 -332.801 -230.399 -563.2 -563.2 -563.2c-320 0 -588.8 268.8 -588.8 588.8s281.601 588.8 588.8 588.8c153.601 0 294.4 -51.2002 384 -153.6l-153.6 -153.601c-38.4004 25.6006 -102.4 76.8008 -230.4 76.8008
169
+ c-204.8 0 -371.199 -166.4 -371.199 -371.2s166.399 -371.2 371.199 -371.2c230.4 0 320 166.4 332.801 243.2h-332.801v204.8zM1664 1152h128v-128h-128v-128h-128v128h-128v128h128v128h128v-128z" />
 
 
 
 
170
  <glyph glyph-name="uniF513" unicode="&#xf513;"
171
  d="M1920 1280l-555.136 -387.968l212.863 -636.032l-553.728 394.496l-553.728 -394.496l212.991 636.032l-555.264 387.968h685.312l210.688 640l210.688 -640h685.312zM1024 807.68l307.584 -219.136l-118.4 353.536l300.288 209.92h-371.456l-118.016 358.528v-702.849z
172
  " />
396
  c117.888 100.991 206.464 154.111 265.472 159.487c139.521 13.3125 225.28 -81.2793 257.536 -283.392c34.8164 -218.24 58.8799 -353.92 72.4482 -407.04c40.1924 -180.992 84.4805 -271.36 132.736 -271.36c37.5039 0 93.8232 58.752 169.088 176.128
397
  c75.0078 117.376 115.2 206.849 120.576 268.16c10.624 101.376 -29.4404 152.192 -120.576 152.192c-43.0078 0 -87.2959 -9.98438 -132.736 -29.1846c88.0645 285.952 256.512 424.704 504.704 416.769z" />
398
  <glyph glyph-name="uniF206" unicode="&#xf206;"
399
+ d="M729.6 1152h550.4s12.7998 -38.4004 12.7998 -89.5996c0 -332.801 -230.399 -563.2 -563.2 -563.2c-320 0 -588.8 268.8 -588.8 588.8s281.601 588.8 588.8 588.8c153.601 0 294.4 -51.2002 384 -153.6l-153.6 -153.601c-38.4004 25.6006 -102.4 76.8008 -230.4 76.8008
400
+ c-204.8 0 -371.199 -166.4 -371.199 -371.2s166.399 -371.2 371.199 -371.2c230.4 0 320 166.4 332.801 243.2h-332.801v204.8zM1664 1152h128v-128h-128v-128h-128v128h-128v128h128v128h128v-128z" />
 
 
 
 
401
  <glyph glyph-name="uniF407" unicode="&#xf407;"
402
  d="M1280 1536l256 -128v-128h-128h-128h-128h-128h-128h-128h-128h-128h-128v128l256 128c0 70.7842 57.3438 128 128 128h384c70.7842 0 128 -57.2158 128 -128zM1088 1408c35.3281 0 64 28.6719 64 64s-28.6719 64 -64 64h-256c-35.3281 0 -64 -28.6719 -64 -64
403
  s28.6719 -64 64 -64h256zM1280 1216h128v-704c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.6562 0 -128 57.2158 -128 128v704h128v-704h128v704h128v-704h128v704h128v-704h128v704z" />
_inc/genericons/genericons/Genericons.ttf CHANGED
Binary file
_inc/genericons/genericons/Genericons.woff CHANGED
Binary file
_inc/genericons/genericons/genericons.css CHANGED
@@ -9,19 +9,20 @@
9
  IE9 uses WOFF which is base64 encoded to allow cross-site embedding.
10
  So unfortunately, IE9 will throw a console error, but it'll still work.
11
  When the font is base64 encoded, cross-site embedding works in Firefox */
12
-
13
  @font-face {
14
- font-family: 'Genericons';
15
- src: url('Genericons.eot');
 
 
16
  }
17
 
18
  @font-face {
19
- font-family: 'Genericons';
20
- src: url(data:application/font-woff;charset=utf-8;base64,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) format('woff'),
21
- url('Genericons.ttf') format('truetype'),
22
- url('Genericons.svg#genericonsregular') format('svg');
23
- font-weight: normal;
24
- font-style: normal;
25
  }
26
 
27
  @media screen and (-webkit-min-device-pixel-ratio:0) {
@@ -56,6 +57,54 @@
56
  }
57
 
58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
  /**
60
  * Individual icons
61
  */
9
  IE9 uses WOFF which is base64 encoded to allow cross-site embedding.
10
  So unfortunately, IE9 will throw a console error, but it'll still work.
11
  When the font is base64 encoded, cross-site embedding works in Firefox */
 
12
  @font-face {
13
+ font-family: "Genericons";
14
+ src: url("./Genericons.eot?") format("embedded-opentype");
15
+ font-weight: normal;
16
+ font-style: normal;
17
  }
18
 
19
  @font-face {
20
+ font-family: "Genericons";
21
+ src: url("data:application/x-font-woff;charset=utf-8;base64,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") format("woff"),
22
+ url("./Genericons.ttf") format("truetype"),
23
+ url("./Genericons.svg#Genericons") format("svg");
24
+ font-weight: normal;
25
+ font-style: normal;
26
  }
27
 
28
  @media screen and (-webkit-min-device-pixel-ratio:0) {
57
  }
58
 
59
 
60
+ /**
61
+ * Helper classes
62
+ */
63
+
64
+ .genericon-rotate-90 {
65
+ -webkit-transform: rotate(90deg);
66
+ -moz-transform: rotate(90deg);
67
+ -ms-transform: rotate(90deg);
68
+ -o-transform: rotate(90deg);
69
+ transform: rotate(90deg);
70
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
71
+ }
72
+
73
+ .genericon-rotate-180 {
74
+ -webkit-transform: rotate(180deg);
75
+ -moz-transform: rotate(180deg);
76
+ -ms-transform: rotate(180deg);
77
+ -o-transform: rotate(180deg);
78
+ transform: rotate(180deg);
79
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
80
+ }
81
+
82
+ .genericon-rotate-270 {
83
+ -webkit-transform: rotate(270deg);
84
+ -moz-transform: rotate(270deg);
85
+ -ms-transform: rotate(270deg);
86
+ -o-transform: rotate(270deg);
87
+ transform: rotate(270deg);
88
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
89
+ }
90
+
91
+ .genericon-flip-horizontal {
92
+ -webkit-transform: scale(-1, 1);
93
+ -moz-transform: scale(-1, 1);
94
+ -ms-transform: scale(-1, 1);
95
+ -o-transform: scale(-1, 1);
96
+ transform: scale(-1, 1);
97
+ }
98
+
99
+ .genericon-flip-vertical {
100
+ -webkit-transform: scale(1, -1);
101
+ -moz-transform: scale(1, -1);
102
+ -ms-transform: scale(1, -1);
103
+ -o-transform: scale(1, -1);
104
+ transform: scale(1, -1);
105
+ }
106
+
107
+
108
  /**
109
  * Individual icons
110
  */
_inc/genericons/genericons/rtl/genericons-rtl.css CHANGED
@@ -1,4 +1,4 @@
1
- /* This file was automatically generated on Oct 03 2014 13:34:55 */
2
 
3
  /**
4
 
@@ -11,19 +11,20 @@
11
  IE9 uses WOFF which is base64 encoded to allow cross-site embedding.
12
  So unfortunately, IE9 will throw a console error, but it'll still work.
13
  When the font is base64 encoded, cross-site embedding works in Firefox */
14
-
15
  @font-face {
16
- font-family: 'Genericons';
17
- src: url('../Genericons.eot');
 
 
18
  }
19
 
20
  @font-face {
21
- font-family: 'Genericons';
22
- src: url(data:application/font-woff;charset=utf-8;base64,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) format('woff'),
23
- url('../Genericons.ttf') format('truetype'),
24
- url('../Genericons.svg#genericonsregular') format('svg');
25
- font-weight: normal;
26
- font-style: normal;
27
  }
28
 
29
  @media screen and (-webkit-min-device-pixel-ratio:0) {
@@ -58,6 +59,54 @@
58
  }
59
 
60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  /**
62
  * Individual icons
63
  */
1
+ /* This file was automatically generated on Sep 18 2015 08:27:44 */
2
 
3
  /**
4
 
11
  IE9 uses WOFF which is base64 encoded to allow cross-site embedding.
12
  So unfortunately, IE9 will throw a console error, but it'll still work.
13
  When the font is base64 encoded, cross-site embedding works in Firefox */
 
14
  @font-face {
15
+ font-family: "Genericons";
16
+ src: url(".././Genericons.eot?") format("embedded-opentype");
17
+ font-weight: normal;
18
+ font-style: normal;
19
  }
20
 
21
  @font-face {
22
+ font-family: "Genericons";
23
+ src: url("data:application/x-font-woff;charset=utf-8;base64,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") format("woff"),
24
+ url(".././Genericons.ttf") format("truetype"),
25
+ url(".././Genericons.svg#Genericons") format("svg");
26
+ font-weight: normal;
27
+ font-style: normal;
28
  }
29
 
30
  @media screen and (-webkit-min-device-pixel-ratio:0) {
59
  }
60
 
61
 
62
+ /**
63
+ * Helper classes
64
+ */
65
+
66
+ .genericon-rotate-90 {
67
+ -webkit-transform: rotate(90deg);
68
+ -moz-transform: rotate(90deg);
69
+ -ms-transform: rotate(90deg);
70
+ -o-transform: rotate(90deg);
71
+ transform: rotate(90deg);
72
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
73
+ }
74
+
75
+ .genericon-rotate-180 {
76
+ -webkit-transform: rotate(180deg);
77
+ -moz-transform: rotate(180deg);
78
+ -ms-transform: rotate(180deg);
79
+ -o-transform: rotate(180deg);
80
+ transform: rotate(180deg);
81
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
82
+ }
83
+
84
+ .genericon-rotate-270 {
85
+ -webkit-transform: rotate(270deg);
86
+ -moz-transform: rotate(270deg);
87
+ -ms-transform: rotate(270deg);
88
+ -o-transform: rotate(270deg);
89
+ transform: rotate(270deg);
90
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
91
+ }
92
+
93
+ .genericon-flip-horizontal {
94
+ -webkit-transform: scale(-1, 1);
95
+ -moz-transform: scale(-1, 1);
96
+ -ms-transform: scale(-1, 1);
97
+ -o-transform: scale(-1, 1);
98
+ transform: scale(-1, 1);
99
+ }
100
+
101
+ .genericon-flip-vertical {
102
+ -webkit-transform: scale(1, -1);
103
+ -moz-transform: scale(1, -1);
104
+ -ms-transform: scale(1, -1);
105
+ -o-transform: scale(1, -1);
106
+ transform: scale(1, -1);
107
+ }
108
+
109
+
110
  /**
111
  * Individual icons
112
  */
_inc/jetpack-jitm.js ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* global jitmL10n, jQuery */
2
+
3
+ (function($, jitmL10n) {
4
+
5
+ ///////////////////////////////////////
6
+ // INIT
7
+ ///////////////////////////////////////
8
+
9
+ var data;
10
+
11
+ $(document).ready(function () {
12
+
13
+ data = {
14
+ 'action' : 'jitm_ajax',
15
+ 'jitmNonce' : jitmL10n.jitm_nonce,
16
+ 'photon' : jitmL10n.photon_msgs
17
+ };
18
+
19
+ initEvents();
20
+
21
+ });
22
+
23
+ ///////////////////////////////////////
24
+ // FUNCTIONS
25
+ ///////////////////////////////////////
26
+
27
+ function initEvents() {
28
+
29
+ var module_slug, success_msg, fail_msg, hide_msg;
30
+
31
+ // On dismiss of JITM admin notice
32
+ $('.jp-jitm .dismiss').click(function() {
33
+ // hide the notice
34
+ $('.jp-jitm').hide();
35
+
36
+ // ajax request to save dismiss and never show again
37
+ data.jitmActionToTake = 'dismiss';
38
+ module_slug = $(this).data('module');
39
+ data.jitmModule = module_slug;
40
+
41
+ $.post( jitmL10n.ajaxurl, data, function (response) {
42
+ if ( true === response.success ) {
43
+ //console.log('successfully dismissed for ever')
44
+ }
45
+ });
46
+ });
47
+
48
+ $('.jp-jitm .activate').click(function() {
49
+
50
+ data.jitmActionToTake = 'activate';
51
+
52
+ // get the module we're working with using the data-module attribute
53
+ module_slug = $(this).data('module');
54
+ success_msg = data[module_slug].success;
55
+ fail_msg = data[module_slug].fail;
56
+
57
+ data.jitmModule = module_slug;
58
+
59
+ // since 2.8 ajaxurl is always defined in the admin header and points to admin-ajax.php
60
+ $.post( jitmL10n.ajaxurl, data, function (response) {
61
+ // If there's no response, something bad happened
62
+ if ( true === response.success ) {
63
+ $('.jp-jitm').html('<p><span class="icon"></span>'+success_msg+'</p>');
64
+ hide_msg = setTimeout(function () {
65
+ $('.jp-jitm').hide('slow');
66
+ }, 5000);
67
+ } else {
68
+ $('.jp-jitm').html('<p><span class="icon"></span>'+fail_msg+'</p>');
69
+ }
70
+ });
71
+
72
+ });
73
+ }
74
+
75
+ })(jQuery, jitmL10n);
_inc/jetpack-modules.js CHANGED
@@ -74,6 +74,7 @@
74
  set_modal_tab( null );
75
  originPoint.focus();
76
  $( '.modal' )[0].removeAttribute( 'tabindex' );
 
77
  };
78
 
79
  set_modal_tab = function( tab ) {
74
  set_modal_tab( null );
75
  originPoint.focus();
76
  $( '.modal' )[0].removeAttribute( 'tabindex' );
77
+ event.preventDefault();
78
  };
79
 
80
  set_modal_tab = function( tab ) {
_inc/jetpack.js CHANGED
@@ -63,7 +63,7 @@ jetpack = {
63
  jQuery( '#jp-disconnect a' ).click( function() {
64
  if ( confirm( jetpackL10n.ays_disconnect ) ) {
65
  jQuery( this ).addClass( 'clicked' ).css( {
66
- 'background-image': 'url( ' + userSettings.url + 'wp-admin/images/wpspin_light.gif )',
67
  'background-position': '9px 5px',
68
  'background-size': '16px 16px'
69
  } ).unbind( 'click' ).click( function() { return false; } );
@@ -74,7 +74,7 @@ jetpack = {
74
  jQuery( '#jp-unlink a' ).click( function() {
75
  if ( confirm( jetpackL10n.ays_unlink ) ) {
76
  jQuery( this ).css( {
77
- 'background-image': 'url( ' + userSettings.url + 'wp-admin/images/wpspin_light.gif )',
78
  'background-position': '9px 5px',
79
  'background-size': '16px 16px'
80
  } ).unbind( 'click' ).click( function() { return false; } );
63
  jQuery( '#jp-disconnect a' ).click( function() {
64
  if ( confirm( jetpackL10n.ays_disconnect ) ) {
65
  jQuery( this ).addClass( 'clicked' ).css( {
66
+ 'background-image': 'url( ' + userSettings.url + 'wp-includes/images/spinner-2x.gif )',
67
  'background-position': '9px 5px',
68
  'background-size': '16px 16px'
69
  } ).unbind( 'click' ).click( function() { return false; } );
74
  jQuery( '#jp-unlink a' ).click( function() {
75
  if ( confirm( jetpackL10n.ays_unlink ) ) {
76
  jQuery( this ).css( {
77
+ 'background-image': 'url( ' + userSettings.url + 'wp-includes/images/spinner-2x.gif )',
78
  'background-position': '9px 5px',
79
  'background-size': '16px 16px'
80
  } ).unbind( 'click' ).click( function() { return false; } );
_inc/jp.js CHANGED
@@ -12,20 +12,37 @@
12
  $( document ).ready(function () {
13
 
14
  data = {
15
- 'action' : 'jetpack_admin_ajax',
16
  'jumpstartModules' : jetpackL10n.jumpstart_modules,
17
  'jumpstartModSlug' : jetpackL10n.jumpstart_modules,
18
  'jumpstartNonce' : jetpackL10n.activate_nonce,
19
  'jumpstartStatsURLS' : jetpackL10n.jumpstart_stats_urls,
20
- 'showJumpstart' : jetpackL10n.show_jumpstart
 
 
21
  };
22
 
23
  initEvents();
24
- loadModules( 'Recommended', 'mod-recommended', '.modules' );
 
25
  if('1' === data.showJumpstart) {
26
  loadModules( 'Jumpstart', 'mod-jumpstart', '#jp-config-list' );
27
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  jumpStartAJAX();
 
29
  });
30
 
31
  ///////////////////////////////////////
@@ -54,10 +71,15 @@
54
  }
55
 
56
  function initEvents () {
 
 
 
 
57
 
58
  // Show preconfigured list of features to enable via "Jump-start"
59
  $( '.jp-config-list-btn' ).click(function(){
60
  $( '#jp-config-list' ).toggle();
 
61
 
62
  //Log Jump Start event "learn more" in MC Stats
63
  new Image().src = data.jumpstartStatsURLS.learnmore;
@@ -84,11 +106,16 @@
84
  }, 100 );
85
  }
86
  };
 
 
 
 
 
87
  }
88
 
89
  function initModalEvents() {
90
  var $modal = $( '.modal' );
91
- $( '.module h3, .feature a, .configs a, .more-info' ).on( 'click keypress', function (e) {
92
  // Only show modal on enter when keypress recorded (accessibility)
93
  if ( e.keyCode && 13 !== e.keyCode ) {
94
  return;
@@ -165,9 +192,13 @@
165
  }
166
 
167
 
168
- // Render modules
169
  for ( i = 0; i < renderingmodules.length; i++ ) {
170
- html += wp.template( template )( renderingmodules[i] );
 
 
 
 
171
  }
172
 
173
  $( location ).append( html );
@@ -219,14 +250,19 @@
219
  $( '#jump-start-area' ).hide( 600 );
220
 
221
  data.disableJumpStart = true;
 
222
 
223
  $.post( jetpackL10n.ajaxurl, data, function (response) {
224
  // If there's no response, something bad happened
225
  if ( ! response ) {
226
  //console.log( 'Option "jetpack_dismiss_jumpstart" not updated.' );
227
  }
 
 
228
  });
229
 
 
 
230
  // Log Jump Start event in MC Stats
231
  new Image().src = data.jumpstartStatsURLS.dismiss;
232
 
@@ -235,12 +271,14 @@
235
 
236
  // Activate all Jump-start modules
237
  $( '#jump-start' ).click(function () {
 
238
 
239
- var module, dataName, configURL;
240
-
241
- $( '.spinner' ).show();
242
 
243
  data.jumpStartActivate = 'jump-start-activate';
 
244
 
245
  $( '#jp-config-list' ).hide();
246
 
@@ -254,23 +292,25 @@
254
 
255
  // Only target Jump Start modules
256
  _.each( module, function( mod ) {
257
- dataName = $( 'div[data-name="' + mod.module_name + '"]' );
258
  configURL = mod.configure_url;
259
-
260
- // Replace inactive content with active, provide config url
261
- _.find( dataName, function( div ) {
262
- $( div.children ).find( '.notconfigurable ').hide();
263
- $( div.children ).find( '.configurable ' ).replaceWith( '<a class="button alignright" data-name="' + mod.module_name + '" title="Configure" href="' + configURL + '">Configure</a>' );
264
- div.className += ' active';
265
- });
266
  });
267
 
268
- $( '.spinner, .jstart, #jumpstart-cta' ).hide();
269
- $( '.jumpstart-message, .miguel' ).toggle();
 
270
 
271
  // Log Jump Start event in MC Stats
272
  new Image().src = data.jumpstartStatsURLS.jumpstarted;
273
 
 
 
 
274
  });
275
 
276
  return false;
@@ -282,18 +322,107 @@
282
  */
283
 
284
  $( '#jump-start-deactivate' ).click(function () {
285
- $( '.spinner' ).show();
286
 
287
  data.jumpStartDeactivate = 'jump-start-deactivate';
 
288
 
289
  $.post( jetpackL10n.ajaxurl, data, function ( response ) {
290
  //$('#jumpstart-cta').html(response);
291
  $( '#deactivate-success' ).html( response );
292
- $( '.spinner' ).hide();
 
 
293
  });
294
 
295
  return false;
296
  });
297
  }
298
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
299
  })( jQuery, jetpackL10n.modules, jetpackL10n.currentVersion, jetpackL10n );
12
  $( document ).ready(function () {
13
 
14
  data = {
 
15
  'jumpstartModules' : jetpackL10n.jumpstart_modules,
16
  'jumpstartModSlug' : jetpackL10n.jumpstart_modules,
17
  'jumpstartNonce' : jetpackL10n.activate_nonce,
18
  'jumpstartStatsURLS' : jetpackL10n.jumpstart_stats_urls,
19
+ 'nuxAdminStatsURLS' : jetpackL10n.admin_stats_urls,
20
+ 'showJumpstart' : jetpackL10n.show_jumpstart,
21
+ 'adminNonce' : jetpackL10n.admin_nonce
22
  };
23
 
24
  initEvents();
25
+ loadModules( 'Performance-Security', 'mod-nux', '#nux-performance-security' );
26
+ loadModules( 'Traffic', 'mod-nux', '#nux-traffic' );
27
  if('1' === data.showJumpstart) {
28
  loadModules( 'Jumpstart', 'mod-jumpstart', '#jp-config-list' );
29
  }
30
+
31
+ /*
32
+ We are listening to see if we need to refresh the data.
33
+ We'd need to refresh the data only if the page is navigated to
34
+ via the back or forward browser buttons. We do this so the
35
+ browser cache isn't out of sync with the real data generated by the
36
+ AJAX event.
37
+ */
38
+ onload = function() {
39
+ if ( window.location.hash.substr( '#refresh' ) ) {
40
+ refreshData();
41
+ }
42
+ };
43
+
44
  jumpStartAJAX();
45
+ adminAJAX();
46
  });
47
 
48
  ///////////////////////////////////////
71
  }
72
 
73
  function initEvents () {
74
+ // Only show module table if Jumpstart isn't there
75
+ if ( ! data.showJumpstart ) {
76
+ $( '.nux-intro' ).show();
77
+ }
78
 
79
  // Show preconfigured list of features to enable via "Jump-start"
80
  $( '.jp-config-list-btn' ).click(function(){
81
  $( '#jp-config-list' ).toggle();
82
+ recalculateModuleHeights();
83
 
84
  //Log Jump Start event "learn more" in MC Stats
85
  new Image().src = data.jumpstartStatsURLS.learnmore;
106
  }, 100 );
107
  }
108
  };
109
+
110
+ // This function will track the number of clicks on the "See the other X Jetpack features"
111
+ $( '.full-features-btn' ).click( function() {
112
+ new Image().src = data.nuxAdminStatsURLS.learnmore+'-full-features-btn';
113
+ });
114
  }
115
 
116
  function initModalEvents() {
117
  var $modal = $( '.modal' );
118
+ $( '.module h3, .feature a, .configs a, .more-info, .feat h4' ).on( 'click keypress', function (e) {
119
  // Only show modal on enter when keypress recorded (accessibility)
120
  if ( e.keyCode && 13 !== e.keyCode ) {
121
  return;
192
  }
193
 
194
 
195
+ // Render modules. Don't show active in Jumpstart.
196
  for ( i = 0; i < renderingmodules.length; i++ ) {
197
+ if ( 'Jumpstart' === prop && ! renderingmodules[i].activated ) {
198
+ html += wp.template( template )( renderingmodules[i] );
199
+ } else if ( 'Jumpstart' !== prop ) {
200
+ html += wp.template( template )( renderingmodules[i] );
201
+ }
202
  }
203
 
204
  $( location ).append( html );
250
  $( '#jump-start-area' ).hide( 600 );
251
 
252
  data.disableJumpStart = true;
253
+ data.action = 'jetpack_jumpstart_ajax';
254
 
255
  $.post( jetpackL10n.ajaxurl, data, function (response) {
256
  // If there's no response, something bad happened
257
  if ( ! response ) {
258
  //console.log( 'Option "jetpack_dismiss_jumpstart" not updated.' );
259
  }
260
+
261
+ window.location.hash = 'refresh';
262
  });
263
 
264
+ $( '.nux-intro' ).show();
265
+
266
  // Log Jump Start event in MC Stats
267
  new Image().src = data.jumpstartStatsURLS.dismiss;
268
 
271
 
272
  // Activate all Jump-start modules
273
  $( '#jump-start' ).click(function () {
274
+ var module, dataName, configURL, checkBox;
275
 
276
+ $( '.jumpstart-spinner' ).show().css( 'display', 'block' );
277
+ $( '#jump-start' ).hide();
278
+ $( '.dismiss-jumpstart' ).hide();
279
 
280
  data.jumpStartActivate = 'jump-start-activate';
281
+ data.action = 'jetpack_jumpstart_ajax';
282
 
283
  $( '#jp-config-list' ).hide();
284
 
292
 
293
  // Only target Jump Start modules
294
  _.each( module, function( mod ) {
295
+ dataName = $( 'label[for="active-' + mod.module_slug + '"]' + '.plugin-action__label' );
296
  configURL = mod.configure_url;
297
+ checkBox = $( 'input[id="active-' + mod.module_slug + '"]' );
298
+
299
+ $( '#toggle-' + mod.module_slug ).addClass( 'activated' );
300
+ dataName.html( 'ACTIVE' );
301
+ $( checkBox ).prop( 'checked', true );
 
 
302
  });
303
 
304
+ $( '.jumpstart-spinner, .jstart, #jumpstart-cta, .manage-cta-inactive' ).hide();
305
+ $( '.jumpstart-message, .miguel, .manage-cta-active' ).toggle();
306
+ $( '#jump-start-area' ).delay( 5000 ).hide( 600 );
307
 
308
  // Log Jump Start event in MC Stats
309
  new Image().src = data.jumpstartStatsURLS.jumpstarted;
310
 
311
+ $( '.nux-intro' ).show();
312
+
313
+ window.location.hash = 'refresh';
314
  });
315
 
316
  return false;
322
  */
323
 
324
  $( '#jump-start-deactivate' ).click(function () {
325
+ $( '.jumpstart-spinner' ).show();
326
 
327
  data.jumpStartDeactivate = 'jump-start-deactivate';
328
+ data.action = 'jetpack_jumpstart_ajax';
329
 
330
  $.post( jetpackL10n.ajaxurl, data, function ( response ) {
331
  //$('#jumpstart-cta').html(response);
332
  $( '#deactivate-success' ).html( response );
333
+ $( '.jumpstart-spinner' ).hide();
334
+ window.location.hash = '';
335
+
336
  });
337
 
338
  return false;
339
  });
340
  }
341
 
342
+ /*
343
+ Handles the module activation ajax actions
344
+ */
345
+ function adminAJAX() {
346
+ $( '.nux-in' ).on( 'keypress click', '.form-toggle', function( e ){
347
+ if ( e.which !== 13 && e.type !== 'click' ) {
348
+ return;
349
+ }
350
+ var thisElementId = e.target.id,
351
+ thisLabel = $( 'label[for="' + thisElementId + '"]' + '.plugin-action__label'),
352
+ index;
353
+
354
+ data.action = 'jetpack_admin_ajax';
355
+ data.thisModuleSlug = thisElementId.replace( 'active-', '' );
356
+ data.toggleModule = 'nux-toggle-module';
357
+
358
+ index = $( '#toggle-' + data.thisModuleSlug ).data( 'index' );
359
+
360
+ thisLabel.hide();
361
+ $( '.module-spinner-' + data.thisModuleSlug ).show();
362
+
363
+ $.post( jetpackL10n.ajaxurl, data, function ( response ) {
364
+ if ( 0 !== response ) {
365
+
366
+ // Log NUX Admin event in MC Stats
367
+ if( true === response.activated ){
368
+ new Image().src = data.nuxAdminStatsURLS.enabled+','+'enabled-'+data.thisModuleSlug;
369
+ }else{
370
+ new Image().src = data.nuxAdminStatsURLS.deactivated+','+'deactivated-'+data.thisModuleSlug;
371
+ }
372
+
373
+ $( '.module-spinner-' + response.module ).hide();
374
+
375
+ // This is a hacky way around not showing the config link when activated.
376
+ response.noConfig = _.indexOf( [ 'photon', 'enhanced-distribution' ], response.module );
377
+
378
+ // Preserves the modal index so it can be rendered properly after the data has changed
379
+ response.index = index;
380
+
381
+ $( '#toggle-' + response.module ).replaceWith( wp.template( 'mod-nux' )( response ) );
382
+
383
+ // Refreshes the modal element data
384
+ _.extend( _.findWhere( modules, { module: response.module } ), response );
385
+
386
+ // Manual element alteration for Manage, since it's not part of the template
387
+ if ( 'manage' === data.thisModuleSlug ) {
388
+ if ( response.activated ) {
389
+ thisLabel.show().html( 'ACTIVE' );
390
+ $( '#manage-row' ).addClass( 'activated' );
391
+ } else {
392
+ thisLabel.show().html( 'INACTIVE' );
393
+ $( '#manage-row' ).removeClass( 'activated' );
394
+ }
395
+
396
+ $( '.manage-cta-inactive' ).toggle();
397
+ $( '.manage-cta-active' ).toggle();
398
+ return;
399
+ }
400
+
401
+ initModalEvents();
402
+ window.location.hash = 'refresh';
403
+ }
404
+
405
+ }, 'json' );
406
+ });
407
+ }
408
+
409
+ /*
410
+ This function will refresh any data elements that we've
411
+ changed via AJAX. Necessary when page is visited via back/forward
412
+ browsing.
413
+ */
414
+ function refreshData() {
415
+ // Clean up
416
+ $( '#nux-performance-security, #nux-traffic' ).empty();
417
+ $( '#jump-start-area' ).hide();
418
+ $( '.nux-intro' ).show();
419
+
420
+ data.action = 'jetpack_admin_ajax_refresh';
421
+ data.refreshData = 'refresh';
422
+ $.post( jetpackL10n.ajaxurl, data, function ( response ) {
423
+ modules = _.values( response );
424
+ loadModules( 'Performance-Security', 'mod-nux', '#nux-performance-security' );
425
+ loadModules( 'Traffic', 'mod-nux', '#nux-traffic' );
426
+ }, 'json' );
427
+ }
428
  })( jQuery, jetpackL10n.modules, jetpackL10n.currentVersion, jetpackL10n );
_inc/lib/admin-pages/class.jetpack-landing-page.php CHANGED
@@ -123,7 +123,8 @@ class Jetpack_Landing_Page extends Jetpack_Admin_Page {
123
  $module_name[] = $val['module_name'];
124
  }
125
  }
126
- $jumpstart_module_list = implode( $module_name, ', ' );
 
127
 
128
  return $jumpstart_module_list;
129
  }
@@ -253,6 +254,24 @@ class Jetpack_Landing_Page extends Jetpack_Admin_Page {
253
 
254
  }
255
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
256
  function page_admin_scripts() {
257
  // Enqueue jp.js and localize it
258
  wp_enqueue_script( 'jetpack-js', plugins_url( '_inc/jp.js', JETPACK__PLUGIN_FILE ),
@@ -272,7 +291,9 @@ class Jetpack_Landing_Page extends Jetpack_Admin_Page {
272
  'jumpstart_modules' => $this->jumpstart_module_tag( 'Jumpstart' ),
273
  'show_jumpstart' => $this->jetpack_show_jumpstart(),
274
  'activate_nonce' => wp_create_nonce( 'jetpack-jumpstart-nonce' ),
 
275
  'jumpstart_stats_urls' => $this->build_jumpstart_stats_urls( array( 'dismiss', 'jumpstarted', 'learnmore', 'viewed', 'manual' ) ),
 
276
  'site_url_manage' => Jetpack::build_raw_urls( get_site_url() ),
277
  )
278
  );
123
  $module_name[] = $val['module_name'];
124
  }
125
  }
126
+ $last_item = array_pop( $module_name );
127
+ $jumpstart_module_list = implode( $module_name, ', ' ) . ', and ' . $last_item;
128
 
129
  return $jumpstart_module_list;
130
  }
254
 
255
  }
256
 
257
+ /*
258
+ * Build an array of NUX admin stats urls.
259
+ * requires the build URL args passed as an array
260
+ *
261
+ * @param array $nux_admin_stats
262
+ * @return (array) of built stats urls
263
+ */
264
+ function build_nux_admin_stats_urls( $nux_admin_stats ) {
265
+ $nux_admin_urls = array();
266
+
267
+ foreach ( $nux_admin_stats as $value) {
268
+ $nux_admin_urls[ $value ] = Jetpack::build_stats_url( array( 'x_jetpack-nux' => $value ) );
269
+ }
270
+
271
+ return $nux_admin_urls;
272
+
273
+ }
274
+
275
  function page_admin_scripts() {
276
  // Enqueue jp.js and localize it
277
  wp_enqueue_script( 'jetpack-js', plugins_url( '_inc/jp.js', JETPACK__PLUGIN_FILE ),
291
  'jumpstart_modules' => $this->jumpstart_module_tag( 'Jumpstart' ),
292
  'show_jumpstart' => $this->jetpack_show_jumpstart(),
293
  'activate_nonce' => wp_create_nonce( 'jetpack-jumpstart-nonce' ),
294
+ 'admin_nonce' => wp_create_nonce( 'jetpack-admin-nonce' ),
295
  'jumpstart_stats_urls' => $this->build_jumpstart_stats_urls( array( 'dismiss', 'jumpstarted', 'learnmore', 'viewed', 'manual' ) ),
296
+ 'admin_stats_urls' => $this->build_nux_admin_stats_urls( array( 'enabled', 'deactivated', 'learnmore' ) ),
297
  'site_url_manage' => Jetpack::build_raw_urls( get_site_url() ),
298
  )
299
  );
_inc/lib/markdown/extra.php CHANGED
@@ -72,31 +72,31 @@ class Markdown_Parser {
72
  ### Configuration Variables ###
73
 
74
  # Change to ">" for HTML output.
75
- var $empty_element_suffix = MARKDOWN_EMPTY_ELEMENT_SUFFIX;
76
- var $tab_width = MARKDOWN_TAB_WIDTH;
77
 
78
  # Change to `true` to disallow markup or entities.
79
- var $no_markup = false;
80
- var $no_entities = false;
81
 
82
  # Predefined urls and titles for reference links and images.
83
- var $predef_urls = array();
84
- var $predef_titles = array();
85
 
86
 
87
  ### Parser Implementation ###
88
 
89
  # Regex to match balanced [brackets].
90
  # Needed to insert a maximum bracked depth while converting to PHP.
91
- var $nested_brackets_depth = 6;
92
- var $nested_brackets_re;
93
 
94
- var $nested_url_parenthesis_depth = 4;
95
- var $nested_url_parenthesis_re;
96
 
97
  # Table of hash values for escaped characters:
98
- var $escape_chars = '\`*_{}[]()>#+-.!';
99
- var $escape_chars_re;
100
 
101
 
102
  function __construct() {
@@ -124,12 +124,12 @@ class Markdown_Parser {
124
 
125
 
126
  # Internal hashes used during transformation.
127
- var $urls = array();
128
- var $titles = array();
129
- var $html_hashes = array();
130
 
131
  # Status flag to avoid invalid nesting.
132
- var $in_anchor = false;
133
 
134
 
135
  function setup() {
@@ -195,7 +195,7 @@ class Markdown_Parser {
195
  return $text . "\n";
196
  }
197
 
198
- var $document_gamut = array(
199
  # Strip link definitions, store in hashes.
200
  "stripLinkDefinitions" => 20,
201
 
@@ -423,7 +423,7 @@ class Markdown_Parser {
423
  }
424
 
425
 
426
- var $block_gamut = array(
427
  #
428
  # These are all the transformations that form block-level
429
  # tags like paragraphs, headers, and list items.
@@ -485,7 +485,7 @@ class Markdown_Parser {
485
  }
486
 
487
 
488
- var $span_gamut = array(
489
  #
490
  # These are all the transformations that occur *within* block-level
491
  # tags like paragraphs, headers, and list items.
@@ -888,7 +888,7 @@ class Markdown_Parser {
888
  return "\n". $result ."\n\n";
889
  }
890
 
891
- var $list_level = 0;
892
 
893
  function processListItems($list_str, $marker_any_re) {
894
  #
@@ -1002,22 +1002,22 @@ class Markdown_Parser {
1002
  }
1003
 
1004
 
1005
- var $em_relist = array(
1006
  '' => '(?:(?<!\*)\*(?!\*)|(?<!_)_(?!_))(?=\S|$)(?![\.,:;]\s)',
1007
  '*' => '(?<=\S|^)(?<!\*)\*(?!\*)',
1008
  '_' => '(?<=\S|^)(?<!_)_(?!_)',
1009
  );
1010
- var $strong_relist = array(
1011
  '' => '(?:(?<!\*)\*\*(?!\*)|(?<!_)__(?!_))(?=\S|$)(?![\.,:;]\s)',
1012
  '**' => '(?<=\S|^)(?<!\*)\*\*(?!\*)',
1013
  '__' => '(?<=\S|^)(?<!_)__(?!_)',
1014
  );
1015
- var $em_strong_relist = array(
1016
  '' => '(?:(?<!\*)\*\*\*(?!\*)|(?<!_)___(?!_))(?=\S|$)(?![\.,:;]\s)',
1017
  '***' => '(?<=\S|^)(?<!\*)\*\*\*(?!\*)',
1018
  '___' => '(?<=\S|^)(?<!_)___(?!_)',
1019
  );
1020
- var $em_strong_prepared_relist;
1021
 
1022
  function prepareItalicsAndBold() {
1023
  #
@@ -1483,7 +1483,7 @@ class Markdown_Parser {
1483
 
1484
  # String length function for detab. `_initDetab` will create a function to
1485
  # hanlde UTF-8 if the default function does not exist.
1486
- var $utf8_strlen = 'mb_strlen';
1487
 
1488
  function detab($text) {
1489
  #
@@ -1552,24 +1552,24 @@ class MarkdownExtra_Parser extends Markdown_Parser {
1552
  ### Configuration Variables ###
1553
 
1554
  # Prefix for footnote ids.
1555
- var $fn_id_prefix = "";
1556
 
1557
  # Optional title attribute for footnote links and backlinks.
1558
- var $fn_link_title = MARKDOWN_FN_LINK_TITLE;
1559
- var $fn_backlink_title = MARKDOWN_FN_BACKLINK_TITLE;
1560
 
1561
  # Optional class attribute for footnote links and backlinks.
1562
- var $fn_link_class = MARKDOWN_FN_LINK_CLASS;
1563
- var $fn_backlink_class = MARKDOWN_FN_BACKLINK_CLASS;
1564
 
1565
  # Optional class prefix for fenced code block.
1566
- var $code_class_prefix = MARKDOWN_CODE_CLASS_PREFIX;
1567
  # Class attribute for code blocks goes on the `code` tag;
1568
  # setting this to true will put attributes on the `pre` tag instead.
1569
- var $code_attr_on_pre = MARKDOWN_CODE_ATTR_ON_PRE;
1570
 
1571
  # Predefined abbreviations.
1572
- var $predef_abbr = array();
1573
 
1574
 
1575
  ### Parser Implementation ###
@@ -1605,15 +1605,15 @@ class MarkdownExtra_Parser extends Markdown_Parser {
1605
 
1606
 
1607
  # Extra variables used during extra transformations.
1608
- var $footnotes = array();
1609
- var $footnotes_ordered = array();
1610
- var $footnotes_ref_count = array();
1611
- var $footnotes_numbers = array();
1612
- var $abbr_desciptions = array();
1613
- var $abbr_word_re = '';
1614
 
1615
  # Give the current footnote number.
1616
- var $footnote_counter = 1;
1617
 
1618
 
1619
  function setup() {
@@ -1656,9 +1656,9 @@ class MarkdownExtra_Parser extends Markdown_Parser {
1656
  ### Extra Attribute Parser ###
1657
 
1658
  # Expression to use to catch attributes (includes the braces)
1659
- var $id_class_attr_catch_re = '\{((?:[ ]*[#.][-_:a-zA-Z0-9]+){1,})[ ]*\}';
1660
  # Expression to use when parsing in a context when no capture is desired
1661
- var $id_class_attr_nocatch_re = '\{(?:[ ]*[#.][-_:a-zA-Z0-9]+){1,}[ ]*\}';
1662
 
1663
  function doExtraAttributes($tag_name, $attr) {
1664
  #
@@ -1744,20 +1744,20 @@ class MarkdownExtra_Parser extends Markdown_Parser {
1744
  ### HTML Block Parser ###
1745
 
1746
  # Tags that are always treated as block tags:
1747
- var $block_tags_re = 'p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|address|form|fieldset|iframe|hr|legend|article|section|nav|aside|hgroup|header|footer|figcaption';
1748
 
1749
  # Tags treated as block tags only if the opening tag is alone on its line:
1750
- var $context_block_tags_re = 'script|noscript|ins|del|iframe|object|source|track|param|math|svg|canvas|audio|video';
1751
 
1752
  # Tags where markdown="1" default to span mode:
1753
- var $contain_span_tags_re = 'p|h[1-6]|li|dd|dt|td|th|legend|address';
1754
 
1755
  # Tags which must not have their contents modified, no matter where
1756
  # they appear:
1757
- var $clean_tags_re = 'script|math|svg';
1758
 
1759
  # Tags that do not need to be closed.
1760
- var $auto_close_tags_re = 'hr|img|param|source|track';
1761
 
1762
 
1763
  function hashHTMLBlocks($text) {
@@ -2835,17 +2835,17 @@ class MarkdownExtra_Parser extends Markdown_Parser {
2835
  # Redefining emphasis markers so that emphasis by underscore does not
2836
  # work in the middle of a word.
2837
  #
2838
- var $em_relist = array(
2839
  '' => '(?:(?<!\*)\*(?!\*)|(?<![a-zA-Z0-9_])_(?!_))(?=\S|$)(?![\.,:;]\s)',
2840
  '*' => '(?<=\S|^)(?<!\*)\*(?!\*)',
2841
  '_' => '(?<=\S|^)(?<!_)_(?![a-zA-Z0-9_])',
2842
  );
2843
- var $strong_relist = array(
2844
  '' => '(?:(?<!\*)\*\*(?!\*)|(?<![a-zA-Z0-9_])__(?!_))(?=\S|$)(?![\.,:;]\s)',
2845
  '**' => '(?<=\S|^)(?<!\*)\*\*(?!\*)',
2846
  '__' => '(?<=\S|^)(?<!_)__(?![a-zA-Z0-9_])',
2847
  );
2848
- var $em_strong_relist = array(
2849
  '' => '(?:(?<!\*)\*\*\*(?!\*)|(?<![a-zA-Z0-9_])___(?!_))(?=\S|$)(?![\.,:;]\s)',
2850
  '***' => '(?<=\S|^)(?<!\*)\*\*\*(?!\*)',
2851
  '___' => '(?<=\S|^)(?<!_)___(?![a-zA-Z0-9_])',
72
  ### Configuration Variables ###
73
 
74
  # Change to ">" for HTML output.
75
+ public $empty_element_suffix = MARKDOWN_EMPTY_ELEMENT_SUFFIX;
76
+ public $tab_width = MARKDOWN_TAB_WIDTH;
77
 
78
  # Change to `true` to disallow markup or entities.
79
+ public $no_markup = false;
80
+ public $no_entities = false;
81
 
82
  # Predefined urls and titles for reference links and images.
83
+ public $predef_urls = array();
84
+ public $predef_titles = array();
85
 
86
 
87
  ### Parser Implementation ###
88
 
89
  # Regex to match balanced [brackets].
90
  # Needed to insert a maximum bracked depth while converting to PHP.
91
+ public $nested_brackets_depth = 6;
92
+ public $nested_brackets_re;
93
 
94
+ public $nested_url_parenthesis_depth = 4;
95
+ public $nested_url_parenthesis_re;
96
 
97
  # Table of hash values for escaped characters:
98
+ public $escape_chars = '\`*_{}[]()>#+-.!';
99
+ public $escape_chars_re;
100
 
101
 
102
  function __construct() {
124
 
125
 
126
  # Internal hashes used during transformation.
127
+ public $urls = array();
128
+ public $titles = array();
129
+ public $html_hashes = array();
130
 
131
  # Status flag to avoid invalid nesting.
132
+ public $in_anchor = false;
133
 
134
 
135
  function setup() {
195
  return $text . "\n";
196
  }
197
 
198
+ public $document_gamut = array(
199
  # Strip link definitions, store in hashes.
200
  "stripLinkDefinitions" => 20,
201
 
423
  }
424
 
425
 
426
+ public $block_gamut = array(
427
  #
428
  # These are all the transformations that form block-level
429
  # tags like paragraphs, headers, and list items.
485
  }
486
 
487
 
488
+ public $span_gamut = array(
489
  #
490
  # These are all the transformations that occur *within* block-level
491
  # tags like paragraphs, headers, and list items.
888
  return "\n". $result ."\n\n";
889
  }
890
 
891
+ public $list_level = 0;
892
 
893
  function processListItems($list_str, $marker_any_re) {
894
  #
1002
  }
1003
 
1004
 
1005
+ public $em_relist = array(
1006
  '' => '(?:(?<!\*)\*(?!\*)|(?<!_)_(?!_))(?=\S|$)(?![\.,:;]\s)',
1007
  '*' => '(?<=\S|^)(?<!\*)\*(?!\*)',
1008
  '_' => '(?<=\S|^)(?<!_)_(?!_)',
1009
  );
1010
+ public $strong_relist = array(
1011
  '' => '(?:(?<!\*)\*\*(?!\*)|(?<!_)__(?!_))(?=\S|$)(?![\.,:;]\s)',
1012
  '**' => '(?<=\S|^)(?<!\*)\*\*(?!\*)',
1013
  '__' => '(?<=\S|^)(?<!_)__(?!_)',
1014
  );
1015
+ public $em_strong_relist = array(
1016
  '' => '(?:(?<!\*)\*\*\*(?!\*)|(?<!_)___(?!_))(?=\S|$)(?![\.,:;]\s)',
1017
  '***' => '(?<=\S|^)(?<!\*)\*\*\*(?!\*)',
1018
  '___' => '(?<=\S|^)(?<!_)___(?!_)',
1019
  );
1020
+ public $em_strong_prepared_relist;
1021
 
1022
  function prepareItalicsAndBold() {
1023
  #
1483
 
1484
  # String length function for detab. `_initDetab` will create a function to
1485
  # hanlde UTF-8 if the default function does not exist.
1486
+ public $utf8_strlen = 'mb_strlen';
1487
 
1488
  function detab($text) {
1489
  #
1552
  ### Configuration Variables ###
1553
 
1554
  # Prefix for footnote ids.
1555
+ public $fn_id_prefix = "";
1556
 
1557
  # Optional title attribute for footnote links and backlinks.
1558
+ public $fn_link_title = MARKDOWN_FN_LINK_TITLE;
1559
+ public $fn_backlink_title = MARKDOWN_FN_BACKLINK_TITLE;
1560
 
1561
  # Optional class attribute for footnote links and backlinks.
1562
+ public $fn_link_class = MARKDOWN_FN_LINK_CLASS;
1563
+ public $fn_backlink_class = MARKDOWN_FN_BACKLINK_CLASS;
1564
 
1565
  # Optional class prefix for fenced code block.
1566
+ public $code_class_prefix = MARKDOWN_CODE_CLASS_PREFIX;
1567
  # Class attribute for code blocks goes on the `code` tag;
1568
  # setting this to true will put attributes on the `pre` tag instead.
1569
+ public $code_attr_on_pre = MARKDOWN_CODE_ATTR_ON_PRE;
1570
 
1571
  # Predefined abbreviations.
1572
+ public $predef_abbr = array();
1573
 
1574
 
1575
  ### Parser Implementation ###
1605
 
1606
 
1607
  # Extra variables used during extra transformations.
1608
+ public $footnotes = array();
1609
+ public $footnotes_ordered = array();
1610
+ public $footnotes_ref_count = array();
1611
+ public $footnotes_numbers = array();
1612
+ public $abbr_desciptions = array();
1613
+ public $abbr_word_re = '';
1614
 
1615
  # Give the current footnote number.
1616
+ public $footnote_counter = 1;
1617
 
1618
 
1619
  function setup() {
1656
  ### Extra Attribute Parser ###
1657
 
1658
  # Expression to use to catch attributes (includes the braces)
1659
+ public $id_class_attr_catch_re = '\{((?:[ ]*[#.][-_:a-zA-Z0-9]+){1,})[ ]*\}';
1660
  # Expression to use when parsing in a context when no capture is desired
1661
+ public $id_class_attr_nocatch_re = '\{(?:[ ]*[#.][-_:a-zA-Z0-9]+){1,}[ ]*\}';
1662
 
1663
  function doExtraAttributes($tag_name, $attr) {
1664
  #
1744
  ### HTML Block Parser ###
1745
 
1746
  # Tags that are always treated as block tags:
1747
+ public $block_tags_re = 'p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|address|form|fieldset|iframe|hr|legend|article|section|nav|aside|hgroup|header|footer|figcaption';
1748
 
1749
  # Tags treated as block tags only if the opening tag is alone on its line:
1750
+ public $context_block_tags_re = 'script|noscript|ins|del|iframe|object|source|track|param|math|svg|canvas|audio|video';
1751
 
1752
  # Tags where markdown="1" default to span mode:
1753
+ public $contain_span_tags_re = 'p|h[1-6]|li|dd|dt|td|th|legend|address';
1754
 
1755
  # Tags which must not have their contents modified, no matter where
1756
  # they appear:
1757
+ public $clean_tags_re = 'script|math|svg';
1758
 
1759
  # Tags that do not need to be closed.
1760
+ public $auto_close_tags_re = 'hr|img|param|source|track';
1761
 
1762
 
1763
  function hashHTMLBlocks($text) {
2835
  # Redefining emphasis markers so that emphasis by underscore does not
2836
  # work in the middle of a word.
2837
  #
2838
+ public $em_relist = array(
2839
  '' => '(?:(?<!\*)\*(?!\*)|(?<![a-zA-Z0-9_])_(?!_))(?=\S|$)(?![\.,:;]\s)',
2840
  '*' => '(?<=\S|^)(?<!\*)\*(?!\*)',
2841
  '_' => '(?<=\S|^)(?<!_)_(?![a-zA-Z0-9_])',
2842
  );
2843
+ public $strong_relist = array(
2844
  '' => '(?:(?<!\*)\*\*(?!\*)|(?<![a-zA-Z0-9_])__(?!_))(?=\S|$)(?![\.,:;]\s)',
2845
  '**' => '(?<=\S|^)(?<!\*)\*\*(?!\*)',
2846
  '__' => '(?<=\S|^)(?<!_)__(?![a-zA-Z0-9_])',
2847
  );
2848
+ public $em_strong_relist = array(
2849
  '' => '(?:(?<!\*)\*\*\*(?!\*)|(?<![a-zA-Z0-9_])___(?!_))(?=\S|$)(?![\.,:;]\s)',
2850
  '***' => '(?<=\S|^)(?<!\*)\*\*\*(?!\*)',
2851
  '___' => '(?<=\S|^)(?<!_)___(?![a-zA-Z0-9_])',
_inc/lib/markdown/gfm.php CHANGED
@@ -267,7 +267,7 @@ class WPCom_GHF_Markdown_Parser extends MarkdownExtra_Parser {
267
  $pattern = get_shortcode_regex();
268
 
269
  // don't match markdown link anchors that could be mistaken for shortcodes.
270
- $pattern .= '(?!\()';
271
 
272
  return "/$pattern/s";
273
  }
267
  $pattern = get_shortcode_regex();
268
 
269
  // don't match markdown link anchors that could be mistaken for shortcodes.
270
+ $pattern .= '(?!\()';
271
 
272
  return "/$pattern/s";
273
  }
changelog.txt ADDED
@@ -0,0 +1,1405 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ == Changelog ==
2
+ = 3.7.2 =
3
+ Release date: September 29th, 2015
4
+
5
+ * Bug Fix: REST API: Fixed an error when saving drafts and publishing posts
6
+
7
+ = 3.7.1 =
8
+ Release date: September 28th, 2015
9
+
10
+ * Enhancement: General: Added inline documentation for various filters and functions
11
+ * Enhancement: General: Added custom capabilities for module management on multi-site installs
12
+ * Enhancement: General: Cleaned up old changelog entries from readme
13
+ * Enhancement: General: Cleaned up unused i18n textdomains
14
+ * Enhancement: General: Updated the new settings page to look better in various translations
15
+ * Enhancement: REST API: Added new endpoints to manage users
16
+ * Enhancement: Sharing: Updated the Google logo
17
+ * Bug Fix: Carousel: Page scroll no longer disappears after closing the carousel
18
+ * Bug Fix: Contact Form: Fields are sent and displayed in the correct order
19
+ * Bug Fix: Contact Form: No longer showing a notice on AJAX actions in feedback lists
20
+ * Bug Fix: Contact Form: Made using more than two notification emails possible
21
+ * Bug Fix: Contact Form: Mitigate a potential stored XSS vulnerability. Thanks to Marc-Alexandre Montpas (Sucuri)
22
+ * Bug Fix: General: Mitigate a potential information disclosure. Thanks to Jaime Delgado Horna
23
+ * Bug Fix: General: Fixed a locale error in the notifications popout
24
+ * Bug Fix: General: Fixed a possible fatal error in the client area
25
+ * Bug Fix: General: Fixed compatibility issues with certain use cases
26
+ * Bug Fix: General: Disabled connection warnings for multisites with domain mapping
27
+ * Bug Fix: General: Updated translations for correct link display in admin notices
28
+ * Bug Fix: REST API: Fixed a fatal error in one of the endpoints
29
+ * Bug Fix: Sharing: Fixed OpenGraph tags for Instagram embeds
30
+ * Bug Fix: Sharing: Fixed compatibility issues with bbPress
31
+ * Bug Fix: Widget Visibility: Fixed a fatal error in case of a missing tag
32
+
33
+ = 3.7.0 =
34
+ Release date: September 9th, 2015
35
+
36
+ Feature Enhancements:
37
+
38
+ * New admin page interface to easily configure Jetpack
39
+ * Added staging site support for testing a connected Jetpack site
40
+
41
+ Additional changes:
42
+
43
+ * Enhancement: CLI: Added a possibility to change all options with confirmation for some of them
44
+ * Enhancement: Gallery: Added filters to allow new gallery types to be declared
45
+ * Enhancement: General: Added inline documentation for actions, filters, etc.
46
+ * Enhancement: General: Changed class variable declarations keyword from var to public
47
+ * Enhancement: General: Made the Settings page module toggle buttons more accessible
48
+ * Enhancement: General: The admin bar now loads new notifications popout
49
+ * Enhancement: General: Renamed some modules to avoid redundant prefixes
50
+ * Enhancement: General: Switched to the WordPress Core's spinner image
51
+ * Enhancement: General: Updated the bot list
52
+ * Enhancement: Manage: Added the ability to activate a network-wide plugin on a single site from WordPress.com
53
+ * Enhancement: Photon: Added a way to check image URLs against custom domains
54
+ * Enhancement: Photon: Added prompts on the media upload page telling the user about Photon
55
+ * Enhancement: Publicize: Added width and height values to OpenGraph tags for default images
56
+ * Enhancement: Related Posts: Added a filter to allow disabling nofollow
57
+ * Enhancement: REST API: Added new API endpoints to extend API functionality
58
+ * Enhancement: REST API: Added new fields to existing API endpoints
59
+ * Enhancement: Sharing: Added a possibility to opt-out of sharing for a single post
60
+ * Enhancement: Sharing: Added bbPress support
61
+ * Enhancement: Sharing: Added more configuration to the Likes modal
62
+ * Enhancement: Sharing: Made the reddit button open a new tab
63
+ * Enhancement: Sharing: Removed unused files
64
+ * Enhancement: Shortcodes: Added auto embed option inside comments
65
+ * Enhancement: Shortcodes: Added autohide parameter to the YouTube shortcode
66
+ * Enhancement: Subscriptions: added an action that triggers at the end of the subscription process
67
+ * Enhancement: VideoPress: Videos are now embedded using a new player
68
+ * Enhancement: Widget Visibility: Added parent page logic
69
+ * Enhancement: Widget Visibility: Added support for split terms
70
+ * Enhancement: Widgets: Added actions to the Social Media widget
71
+ * Enhancement: Widgets: Switched the Display Posts widget to the new API version
72
+ * Bug Fix: General: Fixed scrolling to top after modal window closing
73
+ * Bug Fix: Infinite Scroll: Added a check for cases when output buffering is disabled
74
+ * Bug Fix: Infinite Scroll: Added translation to the copyright message
75
+ * Bug Fix: Manage: Fixed automatic update synchronization on WordPress multisite network admin
76
+ * Bug Fix: Manage: Redirects back to WordPress.com are allowed from the customizer view
77
+ * Bug Fix: Media: Fixed duplicate images bug in the Media Extractor
78
+ * Bug Fix: Publicize: Made it possible to remove previously set message
79
+ * Bug Fix: Sharing: Added a thumbnail image to OpenGraph tags on pages with DailyMotion embeds
80
+ * Bug Fix: Sharing: Fixed Twitter Cards tags escaping
81
+ * Bug Fix: Sharing: Made OpenGraph tags for title and description use proper punctuation
82
+ * Bug Fix: Sharing: Made sure Likes can be disabled on the front page
83
+ * Bug Fix: Shortcodes: Fixed Facebook embeds by placing the scipt in the footer
84
+ * Bug Fix: Shortcodes: Fixed PollDaddy shortcode issues over SSL connections
85
+ * Bug Fix: Shortcodes: Made responsive video wrappers only wrap video embeds
86
+ * Bug Fix: Shortcodes: Made SoundCloud accept percents for dimensions
87
+ * Bug Fix: Social Links: Fixed a possible conflict with another class
88
+ * Bug Fix: Stats: Made sure the Stats URL is always escaped properly
89
+
90
+ = 3.6.1 =
91
+ Release Date: July 24, 2015
92
+
93
+ * Enhancement: Fully compatible with upcoming WordPress 4.3
94
+ * Enhancement: Site Icon: Start to deprecate Site Icon in favor of Core's version (if available)
95
+ * Bug Fix: Subscriptions: You can now use more than one Subscription form on a single page
96
+ * Bug Fix: Quieted PHP notices and warnings with the JSON API, Display Posts Widget and Gallery Widget (slideshow mode)
97
+ * Bug Fix: Correct permissions check for connection panel
98
+ * Hardening: Increase permissions checks
99
+
100
+ = 3.6 =
101
+ Release Date: July 6th, 2015
102
+ Release Post: http://jetpack.me/2015/07/06/jetpack-3-6-updated-social-widgets-jetpack-cli-and-more/
103
+
104
+ Feature Enhancements:
105
+
106
+ * CLI: Add a number of Jetpack CLI improvements: see http://jetpack.me/support/jetpack-cli
107
+ * New Jetpack admin page for connection management
108
+ * New Social Media Icons widget
109
+ * FB Like Box: A visual refresh of the Facebook likebox widget
110
+ * Protect: When your IP is blocked, use a math captcha as a fallback instead of a complete block
111
+
112
+ Additional changes:
113
+
114
+ * Enhancement: Custom CSS: Add more Flexbox support and other enhancements
115
+ * Enhancement: Extra Sidebar Widgets: Top Posts Widget: Choose what Post Types to display
116
+ * Enhancement: General: Save on some requests! print CSS inline when there isn't much of it
117
+ * Enhancement: Likes: Likes can now be shown on all post types
118
+ * Enhancement: Minileven: Add Featured Image to Gallery Post Format and Pages
119
+ * Enhancement: Mobile Theme: Add div wrapping View Mobile Site link to allow for easier CSS customizations
120
+ * Enhancement: Omnisearch: Link to edit post in titles
121
+ * Enhancement: Protect: Learn Trusted Headers locally and cache blocks properly
122
+ * Enhancement: REST API: Add locale support
123
+ * Enhancement: Sharing: Retire StumbleUpon
124
+ * Enhancement: Sharing: Upgrade to reCAPTCHA 2.0 for Email Sharing
125
+ * Enhancement: Shortcode Embeds: Add Mesh oembed support
126
+ * Enhancement: Shortcode Embeds: New Wufoo Shortcode from WordPress.com
127
+ * Enhancement: Shortcode Embeds: Mixcloud: handle accented characters in URLs
128
+ * Enhancement: Site Logo: Adding itemprops to support logo schema.
129
+ * Enhancement: Slideshow Gallery: New parameters *size* and *autostart*
130
+ * Enhancement: Slideshow Gallery: Use more reliable CSS for resizing instead of js
131
+ * Enhancement: Stats: No longer track stats for preview pages
132
+ * Enhancement: Tiled Gallery: Improve the shapes and distributions of shapes in the Tiled Gallery, based on observations for its usage.
133
+ * Enhancement: Protect: Whitelist for multisite globally and locally
134
+ * Enhancement: Sharing: LinkedIn always uses https for share counts. (saved extra http request)
135
+ * Bug Fix: Carousel: Jetpack Carousel now supports HTML5 gallery
136
+ * Bug Fix: Extra Sidebar Widgets: Choose Images button works in accessibility mode
137
+ * Bug Fix: General: Fix: Cannot remove hooks from filter 'jetpack_get_available_modules'
138
+ * Bug Fix: Infinite Scroll: Check that search terms exist before matching against post title. fixes #2075
139
+ * Bug Fix: Likes: Never double show on search results
140
+ * Bug Fix: Notifications: Notifications didn't load on wp-admin/network pages
141
+ * Bug Fix: Sharing: Fix Facebook share button not showing for Australian & Canadian locale
142
+ * Bug Fix: Shortcode Embed: Slideshare Shortcode now fixed
143
+ * Bug Fix: SSO: Hide login no matter what when using the filter to do so
144
+ * Bug Fix: Subs Widget: Don't hide email input if submit failed
145
+ * Bug Fix: Tiled Gallery: Show columns setting for Thumbnail Grid when Tiled Mosaic galleries are the default
146
+ * Bug Fix: Twitter Cards: Remove deprecated card types
147
+
148
+ = 3.5.3 =
149
+ Release Date: May 6th, 2015
150
+
151
+ * Security Hardening: Remove Genericons example.html file.
152
+
153
+ = 3.5.2 =
154
+ Release Date: May 5th, 2015
155
+
156
+ * Bug Fix: Sharing: Changes Facebook share count endpoint
157
+
158
+
159
+ = 3.5.1 =
160
+ Release Date: May 5th, 2015
161
+
162
+ * Enhancement: Sharing: Changes Facebook share count method per Facebook API change
163
+ * Enhancement: General: Remove .po files to reduce plugin size
164
+ * Bug Fix: General: Remove identity crisis notification
165
+ * Bug Fix: Subscriptions: Correct required input validation
166
+ * Security hardening
167
+
168
+ = 3.5 =
169
+ Release Date: April 23rd, 2015
170
+ Release Post: http://jetpack.me/2016/04/23/jetpack-3-5-menu-management/
171
+
172
+ Jetpack 3.5 introduces the ability to manage your site's menus directly from WordPress.com and several bug fixes and enhancements. This upgrade is recommended for all users.
173
+
174
+ * Enhancement: General: Change security reporting to use a transient instead of option to reduce backup load
175
+ * Enhancement: General: Improve module search
176
+ * Enhancement: JSON API: Allow users to manage menus through WordPress.com
177
+ * Enhancement: Sharing: Reduce spam through email sharing
178
+ * Bug Fix: Custom CSS: Improve recall of CSS revisions
179
+ * Bug Fix: Extra Sidebar Widgets: Change class name for Contact Info widget
180
+ * Bug Fix: Extra Sidebar Widgets: Fix errors when adding widgets via the customizer
181
+ * Bug Fix: Extra Sidebar Widgets: Fix PHP notices in RSS widget
182
+ * Bug Fix: General: Fix redirect loop on activation
183
+ * Bug Fix: General: Styling fixes
184
+ * Bug Fix: Protect: Add IP translation fallback when inet_pton is not available
185
+ * Bug Fix: Protect: Always allow login from local IDs
186
+ * Bug Fix: Protect: Sanitize displayed IP after block
187
+ * Bug Fix: Publicize: Prevent generating Facebook profile links for app-scoped user IDs
188
+ * Bug Fix: Subscriptions: Improve error handling
189
+ * Bug Fix: Theme Tools: Include breadcrumb code
190
+ * Misc: Extra Sidebar Widgets: Remove Readmill Widget
191
+
192
+ = 3.4.3 =
193
+ Release Date: April 20th, 2015
194
+
195
+ * Security hardening.
196
+
197
+ = 3.4.2 =
198
+ Release Date: April 19th, 2015
199
+
200
+ * Bug Fix: Contact info widget namespacing
201
+ * Bug Fix: Javascript errors on wp-admin due to stats display code
202
+ * Bug Fix: Potential fatal error from improperly called function
203
+ * Bug Fix: Potential fatal error when protect servers are unreachable for WordPress Multisite
204
+
205
+ = 3.4.1 =
206
+ Release Date: March 19th, 2015
207
+
208
+ * Bug Fix: General: Modules not displaying properly in non-English installs
209
+ * Bug Fix: Manage: Some installs showing a transient fatal error
210
+ * Bug Fix: Protect: Protect module not auto-activating for users who upgrade
211
+ * Bug Fix: Omnisearch: Some installs not properly reporting WP version number, causing Omnisearch error
212
+ * Bug Fix: Stats: Top posts/pages widget not loading
213
+ * Bug Fix: Contact Info Widget: Fix conflict with Avada theme
214
+
215
+ = 3.4 =
216
+ Release Date: March 18th, 2015
217
+
218
+ Release Post: http://jetpack.me/2015/03/17/jetpack-3-4-protect-secure-and-simplify/
219
+
220
+ * Enhancement : Config Settings: provide a notification for users that update features settings
221
+ * Enhancement : Config Settings: provide a notification for users that update features settings
222
+ * Enhancement : Contact Form: Use the predefined $title variable in the anchor tag in grunion contact form button
223
+ * Enhancement : Contact Form: Use the predefined $title variable in the anchor tag in the button on admin
224
+ * Enhancement : Custom Content Type: Add all Custom Post Types to Omnisearch
225
+ * Enhancement : Custom Content Type: Add option to add Testimonial Custom Content Type in admin
226
+ * Enhancement : Custom Content Type: bring consistency between the portfolio and testimonial shared codebase
227
+ * Enhancement : Custom Content Type: code cleanup
228
+ * Enhancement : Custom Content Type: register namespaced 'jetpack_portfolio' shortcode/use a prefix for shortcode for Portfolio
229
+ * Enhancement : Custom Content Type: set shortcode image size to 'large' and add jetpack_portfolio_thumbnail_size filter to allow themes to set their own size for Portfolio
230
+ * Enhancement : Custom Content Type: testimonial shortcode enhancement
231
+ * Enhancement : Extra Sidebar Widgets: Add subscription widget wildcard
232
+ * Enhancement : Extra Sidebar Widgets: Likes and Sharing Shortcodes
233
+ * Enhancement : Extra Sidebar Widgets: Minor fixes to Facebook widget plugin for SSL
234
+ * Enhancement : Fix/update jetpack version
235
+ * Enhancement : General: Add DNS Prefetching
236
+ * Enhancement : General: Add Jetpack admin dashboard widget
237
+ * Enhancement : GlotPress: Update GP_Locales and GP_Locale classes
238
+ * Enhancement : Improved control over Nova Theme Menu output markup
239
+ * Enhancement : Infinite Scroll: Adds a `button` wrapper for the infinity handle.
240
+ * Enhancement : Infinite Scroll: Check for response.html before using indexOf
241
+ * Enhancement : Integrate BruteProtect for protection against Brute Force attacks
242
+ * Enhancement : JSON API Manage: Added Mock Jetpack Option to Sync options that don't have to live in the Database
243
+ * Enhancement : JSON API: Add/empty trash days option to sync
244
+ * Enhancement : Jump Start: Add "Jump Start" interface for new users
245
+ * Enhancement : Manage: Add "modified_before" and "modified_after" parameters to /sites/%s/posts/ via JSON API
246
+ * Enhancement : Mobile Theme: Add filter for choosing mobile theme menu
247
+ * Enhancement : Notifications: Changes to load the new notifications client.
248
+ * Enhancement : Protect: Add a filter so that user can add thier own bots
249
+ * Enhancement : Protect: Add security reporting
250
+ * Enhancement : Protect: Add/whitelist endpoints via JSON API for Jetpack Protect
251
+ * Enhancement : Publicize: update connection confirmation message
252
+ * Enhancement : Sharing: Add custom service name as a class
253
+ * Enhancement : Sharing: display name of custom service in link title
254
+ * Enhancement : Sharing: Remove default post types for showing share links
255
+ * Enhancement : Sharing: use Jetpack version number when enqueing sharing.js
256
+ * Enhancement : Shortcodes Team Partnerships: Backport fixes from SoundCloud 2.3.1 through 3.0.2
257
+ * Enhancement : Shortlinks: use HTTPS when possible
258
+ * Enhancement : Stats: Make loading of stats async
259
+ * Enhancement : Subscriptions: Added settings field for comment sub text
260
+ * Enhancement : Subscriptions: Hide Form After Submit
261
+ * Enhancement : Subscriptions: remove label from widget title
262
+ * Enhancement : Subscriptions: Update subscriptions.php
263
+ * Bug Fix : Contact form: Increase CSS specificity for Contact Forms in widgets
264
+ * Bug Fix : Custom Content Type: Testimonial Custom Content Type: use core `WP_Customize_Image_Control` instead of custom...
265
+ * Bug Fix : Extra Sidebar Widgets: add missing & to if statement for widget visibility
266
+ * Bug Fix : Extra Sidebar Widgets: Don't require height/width values in the Twitter Timeline widget
267
+ * Bug Fix : Extra Sidebar Widgets: Upload images from the customizer/Extra Sidebar Widgets Tiled Galleries for Gallery Widget
268
+ * Bug Fix : General: Fix bug that was preventing modules from displaying properly
269
+ * Bug Fix : Manage: When calling /sites/%s/posts/ include all attachments not just the first five via JSON API
270
+ * Bug Fix : Mobile Theme: Minileven; Start after DOM ready
271
+ * Bug Fix : Sharing: Open sharing in same window
272
+ * Bug Fix : Stats language
273
+ * Bug Fix : Subscritpions: fix invalid field when no email address
274
+
275
+
276
+ = 3.3.2 =
277
+ Release Date: February 19th, 2015
278
+
279
+ * Enhancement: Updated translation files.
280
+ * Enhancement: Heartbeat: Correctly stat new datasets.
281
+ * Bug Fix: Widget Visibility: Correct some caching of visibility results that may get evaluated too soon.
282
+ * Bug Fix: Contact Form: Hardening.
283
+ * Bug Fix: Photon: Make sure our gallery filter can parse array inputs as well as the default html.
284
+
285
+ = 3.3.1 =
286
+ Release Date: February 11th, 2015
287
+
288
+ * Bug Fix: JSON API: Minor versioning data.
289
+ * Bug Fix: Markdown: Re-run KSES after processing to account for syntax changes.
290
+ * Bug Fix: Media Extractor: Don't call a gallery a gallery if it hasn't got any pictures!
291
+ * Bug Fix: Module Management: Handle a core api change for folks running trunk.
292
+ * Bug Fix: Related Posts: CSS -- better clear rows.
293
+ * Bug Fix: Sharing: Including sharing account on Pinterest unofficial buttons as well.
294
+ * Bug Fix: Sharing: Properly version external assets by Jetpack release version.
295
+ * Bug Fix: Shortcodes: Soundcloud: Backport API compatibility fixes.
296
+ * Bug Fix: Shortcodes: Flickr: Tidy up our regex url pattern matching.
297
+ * Bug Fix: Subscriptions: Don't add 'Email Address' as the value -- we have placeholders!
298
+ * Bug Fix: Widgets: Gallery Widget: Allow folks to upload images from the widget area in the customizer.
299
+
300
+ = 3.3 =
301
+ Release Date: December 15th, 2014
302
+ Release Post: http://jetpack.me/2014/12/16/jetpack-3-3-a-single-home-for-all-your-wordpress-sites/
303
+
304
+ * Enhancement: Adds responsive video support to BuddyPress.
305
+ * Enhancement: Custom Content Types: Added 'order' and 'orderby' options to portfolio shortcode.
306
+ * Enhancement: Display notice when Jetpack Development Mode is on.
307
+ * Enhancement: General: Update compatibility with Twenty Fifteen.
308
+ * Enhancement: Image URL can now be overwritten with the `jetpack_images_fit_image_url_override` filter after dimensions are set by Photon.
309
+ * Enhancement: JSON API: Add Endpoint for trigger Plugin Autoupdates.
310
+ * Enhancement: JSON API: General Improvements. Documentation on http://developer.wordpress.com/
311
+ * Enhancement: Likes: Updated the code to accept arbitrary CPTs.
312
+ * Enhancement: Related Posts: Allow filter by `post_format`.
313
+ * Enhancement: Sharing: add new `jetpack_sharing_counts` filter for option to turn off sharing counts.
314
+ * Enhancement: Sharing: Use the Site Logo Theme Tool and the Site Icon as fallbacks for image tags.
315
+ * Enhancement: Shortcodes: Made the code more readable by using output buffers instead of string concatenation.
316
+ * Enhancement: Site Logo: Add alias functions to provide backward compatibility for themes expecting the old function calls.
317
+ * Enhancement: Slideshow: Add title and alt text to images.
318
+ * Enhancement: Subscription Form: Do not display the logged in user's email address by default.
319
+ * Enhancement: Top Posts Widget: Refactor to allow conditional loading of the css.
320
+ * Enhancement: Top Posts: Add `jetpack_top_posts_widget_count` filter to control number of displayed posts.
321
+ * Bug Fix: Change subscribe_text from `p` to `div` so that it can contain block-level elements.
322
+ * Bug Fix: Fonts: Change path to look for the svg in the right directory.
323
+ * Bug Fix: Increase CSS specificity for Contact Forms in widgets.
324
+ * Bug Fix: JSON API: Plugins Update: Make sure the plugin doesn't get deactivated.
325
+ * Bug Fix: Likes: Fixes issues where likes don't load, load master iframe after scripts are loaded.
326
+ * Bug Fix: Notes Module: Avoid a PHP Notice in cli scripts when the request doesn't contain a User-Agent header.
327
+ * Bug Fix: Nova Menu CPT: fix notice when we have no taxonomies.
328
+ * Bug Fix: Nova Menus: Use current instance to maintain object context.
329
+ * Bug Fix: Related Posts: Add filter for `_enabled_for_request()`.
330
+ * Bug Fix: Sharing: Prevent duplicate @ in shared Tweets.
331
+ * Bug Fix: Site Logo: `get_site_logo()` now properly returns the site logo ID when provided in the `$show` argument.
332
+ * Bug Fix: Site Logo: Correct evaluation of the Display Header Text in Customizer preview.
333
+
334
+ = 3.2.1 =
335
+ Release Date: November 14th, 2014
336
+
337
+ * Enhancement: Updated translation files.
338
+ * Enhancement: JSON API: More object vars passed back to some queries. Documentation on http://developer.wordpress.com/
339
+ * Bug Fix: JSON API: Pass back correct author in `me/posts` data.
340
+ * Bug Fix: JSON API: Don't check if a post is freshly pressed on remote Jetpack sites where the function doesn't exist.
341
+ * Bug Fix: Site Logo: Add backward-compatible template tags to match the standalone release.
342
+ * Bug Fix: Don't use __DIR__ -- it's 5.3+ only, and WordPress supports back to 5.2.
343
+ * Bug Fix: Retool how we remove the source styles when using the concatenated version.
344
+ * Bug Fix: Shortcodes: TED: Correct default language code from `eng` to `en`.
345
+ * Bug Fix: Gallery Widget: Add a default background color.
346
+ * Bug Fix: Subscription Notifications: Remove the label.
347
+ * Bug Fix: Sharing: enqueue Genericons on static front page as well if selected.
348
+
349
+ = 3.2 =
350
+ Release Date: October 29, 2014
351
+ Release Post: http://jetpack.me/2014/11/03/jetpack-3-2/
352
+
353
+ * Enhancement: Speed Improvements (woohoo!).
354
+ * Enhancement: Add site icons: an avatar for your blog.
355
+ * Enhancement: Improvements to API endpoints.
356
+ * Enhancement: Add oEmbed sources (Twitter, SoundCloud, Instagram, DailyMotion, Vine).
357
+ * Enhancement: Add indicators to make it easier to see which modules are active.
358
+ * Enhancement: Improve debug tool.
359
+ * Enhancement: Add new 'Site Logos' code to theme tools, for themes that opt in to support it.
360
+ * Enhancement: Improved caching for related posts.
361
+ * Enhancement: Added "Remember Me" functionality to Single Sign On.
362
+ * Enhancement: Improved accessibility.
363
+ * Enhancement: Added additional filters to Widget Visibility.
364
+ * Bug Fix: Fixed PHP Notice errors for Likes, Widget Visibility.
365
+ * Bug Fix: Improvements to the testimonials CPT.
366
+ * Bug Fix: Improved RTL on VideoPress admin.
367
+ * Bug Fix: Removed Google+ Authorship module (discontinued by Google).
368
+ * Bug Fix: Fixed use of deprecated function in mobile theme.
369
+ * Bug Fix: Various fixes to Tiled Galleries.
370
+ * Bug Fix: Various fixes to Contact Form.
371
+ * Bug Fix: Various fixes to oEmbed.
372
+ * Bug Fix: Various fixes to Single Sign On.
373
+ * Bug Fix: Fixed styles in ShareDaddy.
374
+ * Bug Fix: Better match protocols (http/https) to the site.
375
+
376
+
377
+ = 3.1.1 =
378
+ Release Date: August 7, 2014
379
+
380
+ * Enhancement: Update translation files for strings that had been submitted/approved since release.
381
+ * Bug Fix: Social Links: Add a function check to better degrade if Publicize isn't around.
382
+ * Bug Fix: Open Graph: Add WordPress SEO back to the blacklist, until they update how they opt us out.
383
+ * Bug Fix: Asset Minification: Add another caveat ( empty $plugin ) to short out on.
384
+ * Bug Fix: Deprecated Hooks: Fixing our expectations where something that should be an array occasionally wasn't.
385
+ * Bug Fix: Custom CSS: Add extra whitelist rule for -o-keyframe rules.
386
+
387
+ = 3.1 =
388
+ Release Date: July 31, 2014
389
+ Release Post: http://jetpack.me/2014/07/31/jetpack-3-1-portfolio-custom-post-types-a-new-logo-and-much-more/
390
+
391
+ * Enhancement: New Custom Content Types module.
392
+ * Enhancement: New Jetpack Logo.
393
+ * Enhancement: New optional JSON API endpoints for viewing updates and managing plugins and themes.
394
+ * Enhancement: New Custom Post Type: Portfolio!
395
+ * Enhancement: Rearranged buttons on the modules modals for easier management.
396
+ * Enhancement: Jetpack Settings have improved keyboard accessibility.
397
+ * Enhancement: Improved RTL support for After the Deadline, Carousel, Contact Form, Comics CPT, Custom CSS, Omnisearch, Publicize, Related Posts, Slideshow short code, Tiled Gallery, Widget-Visibility and Widgets Gallery.
398
+ * Enhancement: Contact Form: Add an "Empty Spam" option.
399
+ * Enhancement: i18n: Change the priority of where plugin_textdomain is hooked so that the plugins can better translate Jetpack.
400
+ * Enhancement: Monitor: Displays how often the site is checked for downtime.
401
+ * Enhancement: Shortcode: Added Mixcloud shortcode and oEmbed support.
402
+ * Enhancement: Social Links: Improved handling of customizer hooks in non-admin context.
403
+ * Enhancement: Stats: The smiley image is gone by default.
404
+ * Enhancement: Stats: Added link to the configure page for stats so that the stats settings page is easier to find.
405
+ * Enhancement: Theme Tools: Added the responsive videos to theme tools so that themes can support responsive videos more easily.
406
+ * Update: Updated Genericons to version 3.1, new icons for website, ellipsis, foursquare, x-post, sitemap, hierarchy and paintbrush.
407
+ * Bug Fix: Contact Form: Prefix function to avoid conflicts with other plugins.
408
+ * Bug Fix: Custom CSS: Admin UI has a responsive layout.
409
+ * Bug Fix: Custom CSS: Custom $content_width value doesn't overwrite theme's $content_width.
410
+ * Bug Fix: Contact Form: Feedback link takes you to the form page.
411
+ * Bug Fix: Carousel: Confirms an avatar is returned by get_avatar before displaying.
412
+ * Bug Fix: Featured Content: Don't remove setting validation.
413
+ * Bug Fix: Infinite Scroll: Google Universal Analytics support added.
414
+ * Bug Fix: Multisite: Add message when updating multisite settings.
415
+ * Bug Fix: Photon: Photon will no longer upscale images larger than the original size.
416
+ * Bug Fix: Photon: Check that the image exists before rewriting the image URL to utilize Photon.
417
+ * Bug Fix: Sharing: Pinterest adds attribute to display share count.
418
+ * Bug Fix: Sharing: Respect an empty sharing title.
419
+ * Bug Fix: Sharing: Share buttons now appear in the bbPress forms.
420
+ * Bug Fix: Sharing: Support for multiple meta html tag og:image values.
421
+ * Bug Fix: Single Sign On: Logout allows override of forcing Single Sign On.
422
+ * Bug Fix: Single Sign On: Remove the lost password link on auto-forward logout.
423
+ * Bug Fix: Social Links: Do not use anonymous function for compatibility with PHP 5.2.
424
+ * Bug Fix: Tiled Galleries: Update jQuery mouseover caption effect to reduce flickering.
425
+ * Bug Fix: Widgets Visibility: Works better in the customizer admin view.
426
+
427
+ = 3.0.2 =
428
+ Release Date: June 17, 2014
429
+
430
+ * Enhancement: General: Make module categories filter more visible when active.
431
+ * Enhancement: General: Updated translation files with more strings added since the last release.
432
+ * Enhancement: General: Allow deep-linking to the Contact Support form.
433
+ * Bug Fix: General: RTL Jetpack Admin UI looks better.
434
+ * Bug Fix: General: Fixed PHP warning when bulk deactivating modules.
435
+ * Bug Fix: General: Removed an unnecessary description.
436
+ * Bug Fix: General: Resolved an SSL error on Jetpack Admin UI.
437
+ * Bug Fix: General: Fix error comparing signatures when the WordPress installation is using site_url filters (applied mostly to WPEngine sites).
438
+ * Bug Fix: General: Resolved PHP strict error on the mobile menu.
439
+ * Bug Fix: General: Fix timing of conditional checks, so that calling developer mode via a plugin works again.
440
+ * Bug Fix: General: Main page categories tab now properly translates module names.
441
+ * Bug Fix: Related Posts: Fix a typo, the "more info" link now works.
442
+ * Bug Fix: Likes: Improve button styling.
443
+ * Bug Fix: Likes: Remove unused UI for Reblog settings on social settings page.
444
+ * Bug Fix: Contact Form: Updated to no longer use a deprecated Akismet function.
445
+ * Bug Fix: Contact Form: Sends email to the administrator that is not marked as spam again.
446
+ * Bug Fix: Open Graph: Resolved PHP warning on open graph gallery pages when the gallery is empty.
447
+
448
+ = 3.0.1 =
449
+ Release Date: May 22, 2014
450
+
451
+ * Bug Fix: AtD: A wpcom-only function got synced by mistake and caused a few errors. Fixed.
452
+ * Bug Fix: Post By Email: Add static keyword to a function.
453
+ * Bug Fix: ShareDaddy: In the admin-side configuration of sharing links, we used a Path icon instead of Pinterest. Oops!
454
+ * Bug Fix: ShareDaddy: We inadvertently appended `via @jetpack` to some twitter shares. This is no longer the case.
455
+ * Bug Fix: Related Posts: Tidying up and relocation of the `resync` button formerly on the more info modal.
456
+ * Bug Fix: Infinite Scroll: Work better with core's MediaElement.js
457
+ * Bug Fix: Heartbeat: Undeclared variable fixed.
458
+
459
+ = 3.0 =
460
+ Release Date: May 20, 2014
461
+ Release Post: http://jetpack.me/2014/05/20/jetpack-3-0/
462
+
463
+ * New User Interface for managing modules and settings
464
+ * New Module: Verfication Tools
465
+ * Enhancement: New look for the Sharing module
466
+ * Enhancement: Multiple improvements on which Twitter handle a Twitter card will display
467
+ * Enhancement: Add option to hide Google+ Authorship banner while still receiving the benefits
468
+ * Enhancement: Many Infinite Scroll enhancements to improve performance
469
+ * Enhancement: Infinite Scroll will use your CPT's display name instead of "Older Posts"
470
+ * Enhancement: JSON API added /media/new endpoint
471
+ * Enhancement: Added filter to assign new default image for Open Graph tags
472
+ * Enhancement: New [jetpack-related-posts] shortcode to add Related Posts to page instead of default placement
473
+ * Enhancement: Added SSO option to turn off login form completely, to use WordPress.com login exclusively
474
+ * Enhancement: The [googlemaps] shortcode allows for Google Maps Engine
475
+ * Enhancement: YouTube shortcode allows HD playback
476
+ * Enhancement: Smoother, Faster Tiled Galleries!
477
+ * Enhancement: New languages! Use Jetpack in Irish, Fulah, and Tigrinya
478
+ * Bug Fix: Use your browser's Back and Forward buttons when naviagating a Carousel
479
+ * Bug Fix: Various Related Posts fixes and improvements for added flexibility
480
+ * Bug Fix: WordPress 3.9: Restores ability to edit Contact Forms
481
+ * Bug Fix: WordPress 3.9: Restores Gallery Widget compatability
482
+ * Bug Fix: Ensure Markdown is kept when Bulk Editing posts
483
+ * Bug Fix: Improved Jetpack's Multisite Network Admin page for networks with a large number of sites
484
+ * Bug Fix: Ensure Sharing settings persist when Bulk Editing a post
485
+ * Bug Fix: Various other shortcode improvements
486
+
487
+ = 2.9.3 =
488
+ Release Date: April 10, 2014
489
+
490
+ * Important security update. CVE-2014-0173
491
+
492
+ = 2.9.2 =
493
+ Release Date: March 17, 2014
494
+
495
+ * Bug Fix: Publicize: When publishing from a mobile app or third-party client, Publicize now works again.
496
+
497
+ = 2.9.1 =
498
+ Release Date: March 6, 2014
499
+
500
+ * Bug Fix: After the Deadline: Fix a Javascript glitch that could prevent publishing of posts.
501
+ * Bug Fix: SSO: Disable the implementation of an option that had been removed before release. This would have only been an issue if a site administrator had enabled the module during an early beta of 2.9.
502
+
503
+ = 2.9 =
504
+ Release Date: February 26, 2014
505
+ Release Post: http://jetpack.me/2014/02/26/jetpack-2-9/
506
+
507
+ * Added Multisite network functionality
508
+ * New Module: Related Posts
509
+ * Enhancement: Single Sign On
510
+ * Enhancement: Mixcloud shortcode and oEmbed
511
+ * Enhancement: Gist shortcode and oEmbed
512
+ * Enhancement: Modify Facebook Like Box widget to support new Facebook parameters
513
+ * Enhancement: Rolled the Push Notifications module into the Notes module
514
+ * Enhancement: Update kses with Markdown
515
+ * Enhancement: Adding keyboard accessibility to sharing buttons config page
516
+ * Enhancement: Pull WordPress testing bits from the new official git mirror at WordPress.org
517
+ * Bug Fix: Widget Visibility
518
+ * Bug Fix: Revisions box in Custom CSS
519
+ * Bug Fix: Fix several bugs in the WordPress Posts Widget so that it correctly updates
520
+ * Bug Fix: Limit Login Attempts no longer generates false positives from xmlrpc.
521
+ * Bug Fix: Clear max_posts transient on theme switch.
522
+ * Bug Fix: Lower priority of sync to allow all CPTs to be registered.
523
+ * Bug Fix: Contact form fields emailed in correct order.
524
+
525
+ * Other bugfixes and enhancements at https://github.com/Automattic/jetpack/commits/2.9
526
+
527
+ = 2.8 =
528
+ Release Date: January 31, 2014
529
+ Release Post: http://jetpack.me/2014/01/31/jetpack-2-8-introducing-markdown-and-improving-monitor/
530
+
531
+ * New Module: Markdown
532
+ * Module Update: Jetpack Monitor
533
+ * Enhancement: Infinite Scroll: Keep track of $current_day between requests so the_date() works well.
534
+ * Enhancement: Embeds: New filter to turn off embeds in comments.
535
+ * Enhancement: Contact Form: Add placeholder support.
536
+ * Enhancement: Widget: Gravatar Profile: Added filters to allow users to customize headings and fixed output of personal links.
537
+ * Enhancement: Facebook OG Tags: Add `published_time`, `modified_time`, and `author` if the post type supports it.
538
+ * Enhancement: Sharing: Display buttons on CPT archive pages.
539
+ * Enhancement: Sharing: Add `get_share_title` function and filter.
540
+ * Enhancement: Sharing: Add filter `sharing_display_link`.
541
+ * Enhancement: Twitter Timeline: Flesh out tweet limit option.
542
+ * Enhancement: Social Links: Add Google+ to the list of supported services.
543
+ * Enhancement: Stats: Improve dashboard styles in 3.8.
544
+ * Enhancement: Stats: No longer use Quantcast.
545
+ * Enhancement: Top Posts: Add `jetpack_top_posts_days` filter.
546
+ * Enhancement: AtD: Add TinyMCE 4 compatibility for its pending arrival in WordPress 3.9
547
+ * Enhancement: Genericons: Update to v3.0.3
548
+ * Enhancement: Tiled Galleries: Add alt attributes to images.
549
+ * Enhancement: Shortcode: YouTube: Accept protocol-relative URLs.
550
+ * Enhancement: Shortcode: Slideshow: Add white background option.
551
+ * Enhancement: Shortcode: YouTube: Add support for the two closed-caption arguments.
552
+ * Enhancement: Shortcode: Vimeo: Update the regex to support the new embed code.
553
+ * Enhancement: Shortcode: Google Maps: Update the regex to handle new format for embeds.
554
+ * Enhancement: Likes: Avoid a PHP Notice when $_POST['post_type'] is not set in meta_box_save.
555
+ * Enhancement: Smush images to save on file size.
556
+ * Enhancement: Publicize: Enable opt-in publicizing of custom post types.
557
+ * Bug Fix: Random Redirect: Further namespace to avoid conflicts.
558
+ * Bug Fix: Twitter Timeline: Resolve undefined index notice.
559
+ * Bug Fix: Featured Content: Add extra class_exists() check to be extra careful.
560
+ * Bug Fix: Facebook OG Tags: Change OG type of Home and Front Page to 'website'
561
+ * Bug Fix: Widget Visibility: Add support for old-style single use widgets.
562
+ * Bug Fix: Google Authorship: Support apostrophe in author names.
563
+ * Bug Fix: Media Extractor: Assorted graceful failure caveats.
564
+ * Bug Fix: Carousel: 'Link to None' bug fixed.
565
+ * Bug Fix: Embeds: Bandcamp: Switch escaping function for album and track IDs to handle (int)s greater than PHP_INT_MAX
566
+ * Bug Fix: Some plugins trying to catch brute-force attacks mistakenly flagged the Jetpack connection as one.
567
+
568
+ = 2.7 =
569
+ Release Date: December 11, 2013
570
+ Release Post: http://jetpack.me/2013/12/11/jetpack-2-7-publicize/
571
+
572
+ * Enhancement: Google+ Publicize
573
+ * Enhancement: Add Cloudup as an oEmbed provider
574
+ * Enhancement: Subscriptions: Add subscribe_field_id filter to allow updated ids when using multiple widgets
575
+ * Enhancement: Infinite Scroll: TwentyFourteen Support
576
+ * Bug Fix: Contact Form: Fix warning when form is called outside the loop
577
+ * Bug Fix: Featured Content: Moving Settings to Customizer, provide option to set default tag as fallback, specify all supported post-types rather than just additional ones. Description Updates
578
+ * Bug Fix: Featured Content: Compat with 'additional_post_types' theme support argument. Comment updates
579
+ * Bug Fix: Featured Content: Make sure $term is an object before we treat it as one
580
+ * Bug Fix: GlotPress: Merge with latest GlotPress
581
+ * Bug Fix: Infinite Scroll: prevent Undefined index notice that can cause IS to fail when user has WP_DEBUG set to true
582
+ * Bug Fix: Infinite Scroll: Improved compatibility with Carousel, Tiled Galleries, VideoPress, and the `[audio]` and `[video]` shortcodes
583
+ * Bug Fix: Likes: Stop manually including version.php and trust the global. Some whitespace fixes, and if it's an attachment, follow the post_status of the parent post
584
+ * Bug Fix: Mobile Theme: Display password field for Gallery format protected posts
585
+ * Bug Fix: Sharing: Add new translation width for share button, and Google Plus icons
586
+ * Bug Fix: Shortcodes: Support Ineternational Google domains for maps
587
+ * Bug Fix: Shortcodes: Facebook Embeds: Register alternate permalink.php URL for posts
588
+ * Bug Fix: Subscriptions: Moved inline styles from widget email input to separate css file
589
+ * Bug Fix: Theme Tools: Fix glitch where random-redirect.php also showed as a plugin being deleted if you were deleting Jetpack
590
+ * Bug Fix: Misc: Internationalization & RTL updates
591
+ * Bug Fix: Misc: Prevent collisions with 'Facebook Featured Image & OG Meta Tags' plugin
592
+
593
+ = 2.6.1 =
594
+ Release Date: December 3, 2013
595
+
596
+ * Bug Fix: minor styling fix in pre- and post-MP6/3.8 UI changes.
597
+ * Bug Fix: Stats: spinner gif url fix when the user is viewing it over https.
598
+ * Bug Fix: Stats: Switch to esc_html from htmlspecialchars in error message -- better to be native
599
+ * Bug Fix: Media Extractor: some hosts don't compile unicode for preg_match_all, so we temporarily removed the block that depended on it.
600
+ * Bug Fix: Media Extractor: Add in some error handling for malformed URLs.
601
+ * Bug Fix: Twitter Cards: treat single-image galleries as a photo-type.
602
+ * Bug Fix: Update conflicting plugins for OG tags and Twitter Cards.
603
+ * Bug Fix: Correct max supported version number -- had been 3.6, update to 3.7.1
604
+
605
+ = 2.6 =
606
+ Release Date: November 28, 2013
607
+ Release Post: http://jetpack.me/2013/11/26/new-release-jetpack-2-6/
608
+
609
+ * Enhancement: WPCC / now called [SSO](http://jetpack.me/support/sso/): refactored.
610
+ * Enhancement: Monitor: new module which will notify you if your site goes down(http://jetpack.me/support/monitor/).
611
+ * Enhancement: Custom CSS: replace Ace editor with Codemirror.
612
+ * Enhancement: Widgets: new “Display Posts” widget.
613
+ * Enhancement: WP-CLI: add commands to disconnect a site and manage modules.
614
+ * Enhancement: Contact Form: new filters, `grunion_contact_form_field_html` and `grunion_should_send_email`.
615
+ * Enhancement: Custom Post Types: new restaurant post type.
616
+ * Enhancement: Genericons: update to version 3.0.2.
617
+ * Enhancement: Infinite Scroll: many improvements and fixes.
618
+ * Enhancement: Likes: performance improvements.
619
+ * Enhancement: MP6: Jetpack icons are now compatible with WordPress 3.8.
620
+ * Enhancement: Open Graph: better descriptions, fallback images, and media extraction from video posts.
621
+ * Enhancement: Publicize: new background token tests for connected publicize services and display problems on settings sharing and add new post.
622
+ * Enhancement: Shortcodes: updated Bandcamp shortcode to support the `tracklist` and `minimal` attributes, as well as more `artwork` attribute values.
623
+ * Enhancement: Shortlinks: add Custom Post Type support.
624
+ * Enhancement: Subscriptions: add more ways to customize the subscriptions widget.
625
+ * Enhancement: Twitter Cards: better media management and card type detection, and better handling of conflicts with other Twitter Cards plugins.
626
+ * Enhancement: better handling of conflicts with other plugins.
627
+ * Bug Fix: After the Deadline: add a typeof check for `tinyMCEPreInit.mceInit` to prevent js errors.
628
+ * Bug Fix: Carousel: speed improvements and several bugfixes.
629
+ * Bug Fix: Contact Form: remove nonce creating issues with caching plugins.
630
+ * Bug Fix: Custom Post Types: Testimonials: return if featured image is empty so it can be removed after it’s been set.
631
+ * Bug Fix: Featured Content: add additional post type support through the `additional_post_types` argument.
632
+ * Bug Fix: Google Authorship: support apostrophes in Google+ profiles.
633
+ * Bug Fix: Google Authorship: use a regexp Instead of using `mb_convert_encoding`, which doesn’t enjoy universal support.
634
+ * Bug Fix: Heartbeat: ensure that it never triggers more than once per week.
635
+ * Bug Fix: JSON API: add new `?meta=` parameter that allows you to expand the data found in the `meta->links` responses.
636
+ * Bug Fix: JSON API: add new `is_private` response to the sites endpoint and `global_ID` response to the reader and post endpoints.
637
+ * Bug Fix: Mobile Theme: allow small images to display inline.
638
+ * Bug Fix: Mobile Theme: fix fatal errors for missing `minileven_header` function.
639
+ * Bug Fix: Photon: fix errors when an image is not uploaded properly.
640
+ * Bug Fix: Shortcodes: improvements to Archives, Google+, Presentations, Vine and Youtube.
641
+ * Bug Fix: Tiled Galleries: improve display of panoramic images and fix errors when an image is not uploaded properly.
642
+
643
+ = 2.5 =
644
+ Release Date: September 19, 2013
645
+ Release Post: http://jetpack.me/2013/09/19/jetpack-2-5/
646
+
647
+ * Enhancement: Connect your Google+ profile and WordPress site to prove authorship of posts.
648
+ * Enhancement: Improved sharing buttons display.
649
+ * Enhancement: Comment on your posts using Google+ to signin.
650
+ * Enhancement: Embed Google+ posts into your posts.
651
+ * Enhancement: Added event logging capabilities for debugging
652
+ * Enhancement: LaTeX is now available in dev mode
653
+ * Enhancement: Introduced gallery widget
654
+ * Enhancement: Added new module: VideoPress
655
+ * Enhancement: Updated identity crisis checker
656
+ * Enhancement: Tiled Gallery widget added
657
+ * Enhancement: Google +1 button changed to Google+ Share button, to avoid confusion
658
+ * Enhancement: Added check to ensure Google+ authorship accounts have disconnected properly
659
+ * Enhancement: Updated identity crisis checker
660
+ * Enhancement: Tiled Gallery widget added
661
+ * Enhancement: Google +1 button changed to Google+ Share button, to avoid confusion
662
+ * Enhancement: Added the ability to embed Facebook posts
663
+ * Bug Fix: Redirect issue with G+ authorship when WordPress is not in the root directory
664
+ * Enhancement: Better security if carousel to prevent self-XSS
665
+ * Enhancement: Better handling of cookies for subsites on multisite installs
666
+ * Bug Fix: Check for post in G+ authorship before accessing it
667
+
668
+ = 2.4.2 =
669
+ Release Date: September 5, 2013
670
+
671
+ * Enhancement: Converted to module headers to detect Auto-Activating modules.
672
+ * Enhancement: WPCC: Added 'Close' link to deactivate WPCC in the admin nag.
673
+ * Enhancement: JSON API: Add User Nicename to the user data.
674
+ * Bug Fix: Contact Form: Stopped using a short tag.
675
+ * Bug Fix: Changed CSS selector to catch MP6 stylings.
676
+ * Bug Fix: Dropped __FILE__ references in class.jetpack.php in favor of JETPACK__PLUGIN_DIR constant, now code that deactivates the plugin from the connect nag works again.
677
+ * Bug Fix: Random Redirect: Add random-redirect to the plugins overriden list, in case someone is using Matt's Random Redirect plugin.
678
+ * Bug Fix: Tiled Gallery: Revert r757178 relating to tiled gallery defaults.
679
+ * Bug Fix: Return false, not zero, if $GLOBALS['content_width'] isn't defined.
680
+ * Bug Fix: WPCC: Don't call wp_login_url() in the constructor -- if someone is running a custom login page, that can break things if their plugin runs get_permalink as a filter before init.
681
+ * Bug Fix: Tiled Gallery: Add fallback if post_parent == 0 due to infinite_scroll_load_other_plugins_scripts.
682
+ * Bug Fix: Custom CSS: Set the ACE gutter z-index to 1.
683
+ * Bug Fix: Custom Post Types: Switch from wp_redirect() to wp_safe_redirect().
684
+ * Bug Fix: Likes: Set overflow:hidden; on the likes adminbar item.
685
+ * Bug Fix: Mobile Theme: Migrate where/when the custom header stuff is included.
686
+ * Bug Fix: Slideshow Shortcode: Add a height of 410px.
687
+
688
+ = 2.4.1 =
689
+ Release Date: September 4, 2013
690
+
691
+ * Enhancement: Don't auto-activate WPCC.
692
+
693
+ = 2.4 =
694
+ Release Date: August 30, 2013
695
+ Release Post: http://jetpack.me/2013/09/04/jetpack-2-4-widget-visibility-and-wpcc-and-more/
696
+
697
+ * Enhancement: WordPress.com Connect (WPCC): New Module.
698
+ * Enhancement: Widget Visibility: New Module.
699
+ * Enhancement: Shortcode: Addition of new Twitter Timeline shortcode.
700
+ * Enhancement: Shortcode: Addition of new Presentation shortcode.
701
+ * Enhancement: Shortcode: Addition of new Vine shortcode.
702
+ * Enhancement: Custom Post Types: CPTs are available.
703
+ * Enhancement: Subscriptions: Add 'jetpack_is_post_mailable' filter.
704
+ * Enhancement: OpenGraph: Add Twitter Cards meta tags as well.
705
+ * Enhancement: Custom CSS: Update lessc and scssc preprocessors to 0.4.0 and 0.0.7 respectively.
706
+ * Enhancement: Omnisearch: Add Media results.
707
+ * Enhancement: Likes: Use a protocol-agnostic iframe, instead of forced HTTPS.
708
+ * Enhancement: Top Posts: Increase post limit.
709
+ * Enhancement: Publicize: Updated JS and UI.
710
+ * Enhancement: Photon: New filter to let site admins/owners enable photon for HTTPS urls.
711
+ * Enhancement: New jetpack_get_available_modules filter.
712
+ * Enhancement: Subscriptions: Antispam measures.
713
+ * Bug Fix: Add inline style to keep plugins/themes from inadvertently hiding the Connect box.
714
+ * Bug Fix: Custom CSS: Respect the new wp_revisions_to_keep filter.
715
+ * Bug Fix: Photon: Only hook jetpack_photon_url into the filter if the user has Photon active.
716
+ * Bug Fix: Heartbeat: Used wrong object, occasinally fatal-erroring out for the cron.
717
+ * Bug Fix: Add an empty debug.php file to the /modules/ folder, to solve some update issues where it never got deleted.
718
+
719
+ = 2.3.5 =
720
+ Release Date: August 12, 2013
721
+
722
+ * Enhancement: Added Path support to Publicize.
723
+
724
+ = 2.3.4 =
725
+ Release Date: August 6, 2013
726
+
727
+ * Bug Fix: Correct when output occurs with CSV export for feedback.
728
+ * Bug Fix: Tidy up the Heartbeat API.
729
+ * Enhancement: User Agent: Improve detecting of bots.
730
+ * Enhancement: Genericons: Make sure we're pulling the freshest version from genericons.com on each release.
731
+ * Enhancement: JSON API: Open up replies/new endpoints so that users can comment on blogs that are not in their access token.
732
+ * Enhancement: Photon: Apply to `get_post_gallery()` function as well.
733
+ * Enhancement: Tiled Galleries: Add a default bottom margin to be more robust out of the box.
734
+ * Translations: Adding in fresher translation files.
735
+ * Deprecation: Removing the retinization code for 3.4, as it was included in WordPress trunk from 3.5 onwards.
736
+
737
+ = 2.3.3 =
738
+ Release Date: July 26, 2013
739
+
740
+ * Bug Fix: We were inadvertently overwriting cron schedules with our Jetpack heartbeat. This should now be fixed.
741
+ * Enhancement: New Facebook Sharing icons.
742
+ * Enhancement: Minor update to the Minileven stylesheet.
743
+
744
+ = 2.3.2 =
745
+ Release Date: July 25, 2013
746
+
747
+ * Bug Fix: Fixed an issue where Facebook Pages were not available when connecting a Publicize account.
748
+ * Bug Fix: For some web hosts, fixed an issue where 'Jetpack ID' error would occur consistently on connecting to WordPress.com.
749
+ * Enhancement: Adding some new stats and heartbeat checking to Jetpack.
750
+
751
+ = 2.3.1 =
752
+ Release Date: July 2, 2013
753
+
754
+ * Enhancement: Social Links: Retooling the class for better consistency and performance behind the scenes.
755
+ * Enhancement: Omnisearch: Make it easier to search Custom Post Types. No longer need to extend the class, if all you want is a basic display. Just call `new Jetpack_Omnisearch_Posts( 'cpt' );`
756
+ * Enhancement: Sharing Buttons: LinkedIn: Use the official button's sharing link on the Jetpack implementation for a more consistent sharing experience and produce better results on LinkedIn's end.
757
+ * Enhancement: Debug / Connection: Better logic in determining whether the server can use SSL to connect to WPCOM servers.
758
+ * Enhancement: Sharing: Twitter: Calculate the size of the Tweet based on the short URL rather than the full URL size.
759
+ * Enhancement: Debug: More readable and understandable messages.
760
+ * Enhancement: Likes: Including some MP6 styles.
761
+ * Enhancement: Comments: Add new core classes to comment form. See http://core.trac.wordpress.org/changeset/24525
762
+ * Bug Fix: Omnisearch: Don't load everything initially, run the providers off admin_init, and then issue an action for folks to hook into.
763
+ * Bug Fix: Omnisearch: Modify some child class functions to match the parent's parameters and avoid strict notices in newer versions of PHP.
764
+ * Bug Fix: Omnisearch: Hide the search form in the module description if the current user can't use it.
765
+ * Bug Fix: Comment Form: Use edit_pages, not edit_page (fixes glitch in previous beta, never publicly released).
766
+ * Bug Fix: Twitter Timeline Widget: Additional testing of values and casting to default if they are nonconforming.
767
+ * Bug Fix: Sharing: Pinterest: Make the button wider if there's a count to avoid overlapping with others.
768
+ * Bug Fix: Post By Email: Change configuration_redirect to static.
769
+ * Bug Fix: Likes: Don't call configuration_redirect as a static, do it as a method.
770
+ * Bug Fix: Add some further security measures to module activation.
771
+
772
+ = 2.3 =
773
+ Release Date: June 19, 2013
774
+ Release Post: http://jetpack.me/2013/06/19/jetpack-2-3/
775
+
776
+ * Enhancement: Omnisearch: Search once, get results from everything! Omnisearch is a single search box that lets you search many different things
777
+ * Enhancement: Debugger: this module helps you debug connection issues right from your dashboard, and contact the Jetpack support team if needed
778
+ * Enhancement: Social Links: this module is a canonical source, based on Publicize, that themes can use to let users specify where social icons should link to
779
+ * Enhancement: It’s now easier to find out if a module is active or note, thanks to the new Jetpack::is_module_active()
780
+ * Enhancement: Contact Form: You are now able to customize the submit button text thanks to the submit_button_text parameter
781
+ * Enhancement: Comments: We've added a filter to let users customize the Comment Reply label, and users can now also customize the prompt on the comment form again.
782
+ * Enhancement: Mobile Theme: Add genericons.css and registering it so it’s easily accessible to other modules that may want it
783
+ * Enhancement: Tiled Galleries: You can now customize the captions, thanks to the jetpack_slideshow_slide_caption filter
784
+ * Enhancement: Widgets: Twitter Timeline: Add the noscrollbar option
785
+ * Enhancement: Widgets: Facebook Like Box Widget: add a show_border attribute
786
+ * Enhancement: Widgets: FB Like Box: let Jetpack users override the iframe background color set in an inline style attribute by using the jetpack_fb_likebox_bg filter
787
+ * Bug Fix: Carousel: Fix a bug where double-clicking a gallery thumbnail broke the carousel functionality
788
+ * Bug Fix: Comments: Change “must-log-in” to class from ID
789
+ * Bug Fix: Contact Form: Make the Add Contact Form link a button, ala Add Media in core
790
+ * Bug Fix: Contact Form: Fix encoding of field labels
791
+ * Bug Fix: Contact Form: Remove references to missing images
792
+ * Bug Fix: Fix 2 XSS vulnerabilities
793
+ * Bug Fix: JSON API: Minor fixes for bbPress compatibility
794
+ * Bug Fix: JSON API: Fix metadata bugs
795
+ * Bug Fix: JSON API: Add a new hook that is fired when a post is posted using the API
796
+ * Bug Fix: JSON API: Prefork/REST: update path normalizer to accept versions other than 1
797
+ * Bug Fix: JSON API: Remove extra parenthesis in CSS
798
+ * Bug Fix: Custom CSS: Move content width filters higher up so that they’re active for all users, not just logged-in admins.
799
+ * Bug Fix: Custom CSS: All CSS properties that accept images as values need to be allowed to be declared multiple times so that cross-browser gradients work
800
+ * Bug Fix: Infinite Scroll: Allow themes to define a custom function to render the IS footer
801
+ * Bug Fix: Infinite Scroll: Fix up Twenty Thirteen styles for RTL and small viewports.
802
+ * Bug Fix: Likes: Fix ‘Call to undefined function’
803
+ * Bug Fix: Likes: Add scrolling no to iframe to make sure that like button in admin bar does not show scrollbars
804
+ * Bug Fix: Likes: Remove setInterval( JetpackLikesWidgetQueueHandler, 250 ) call that was causing heavy CPU load
805
+ * Bug Fix: Mobile Theme: Remove unused variable & function call
806
+ * Bug Fix: Publicize: Fix LinkedIn profile URL generation
807
+ * Bug Fix: Publicize: Better refresh handling for services such as LinkedIn and Facebook
808
+ * Bug Fix: Shortcodes: Audio shortcode: Treat src as element 0. Fixes audio shortcodes created by wp_embed_register_handler when an audio url is on a line by itself
809
+ * Bug Fix: Bandcamp: Updates to the Bandcamp shortcode
810
+ * Bug Fix: Stats: Fix missing function get_editable_roles on non-admin page loads
811
+ * Bug Fix: Widgets: Twitter Timeline: Fix HTML links in admin; set default values for width/height; change some of the sanitization functions
812
+ * Bug Fix: Widgets: Top Posts Widget: Exclude attachments
813
+ * Bug Fix: Widgets: Top Posts Widget: fix data validation for number of posts
814
+ * Bug Fix: Fix PHP warnings non-static method called dynamically
815
+ * Bug Fix: Fixed an issue in image extraction from HTML content
816
+ * Bug Fix: Open Graph: Change default minimum size for og:image too 200×200
817
+ * Note: The old Twitter widget was removed in favour of Twitter Timeline widget
818
+ * Note: Add is_module_active() to make it easier to detect what is and what isn’t
819
+ * Note: Compressing images via lossless methods
820
+ * Note: Tidying up jetpack’s CSS
821
+ * Note: Set the max DB version for our retina overrides that were meant to stop for WordPress 3.5
822
+ * Note: Updating spin.js to the current version, and shifting to the canonical jquery.spin.js library
823
+ * Note: Adding Jetpack_Options class, and abstracting out options functions to it
824
+
825
+ = 2.2.5 =
826
+ Release Date: May 1, 2013
827
+
828
+ * Enhancement: Stats: Counting of registered users' views can now be enabled for specific roles
829
+ * Bug Fix: Security tightening for metadata support in the REST API
830
+ * Bug Fix: Update the method for checking Twitter Timeline widget_id and update coding standards
831
+ * Bug Fix: Custom CSS: Allow the content width setting to be larger than the theme's content width
832
+ * Bug Fix: Custom CSS: Fix possible missing argument warning.
833
+
834
+ = 2.2.4 =
835
+ Release Date: April 26, 2013
836
+
837
+ * Bug Fix: JSON API compat file include was not assigning a variable correctly, thus throwing errors. This has been resolved.
838
+
839
+ = 2.2.3 =
840
+ Release Date: April 26, 2013
841
+
842
+ * Enhancement: Comments - Add the reply-title H3 to the comment form so that themes or user CSS can style it
843
+ * Enhancement: Custom CSS - Support for the CSS @viewport
844
+ * Enhancement: JSON API - Support for i_like, is_following, and is_reblogged
845
+ * Enhancement: JSON API: Custom Post Type Support
846
+ * Enhancement: JSON API: Meta Data Support
847
+ * Enhancement: JSON API: Bundled Support for bbPress
848
+ * Enhancement: JSON API: Additions of following, reblog, and like status for post endpoints.
849
+ * Enhancement: Shortcodes - Add Bandcamp shortcode
850
+ * Enhancement: Tiled Galleries - Add code to get blog_id
851
+ * Bug Fix: Carousel - Support relative image paths incase a plugin is filtering attachment URLs to be relative instead of absolute
852
+ * Bug Fix: Carousel - Add likes widget to images / Respect comment settings for name/email
853
+ * Bug Fix: Carousel - Make name and email optional if the setting in the admin area says they are
854
+ * Bug Fix: Contact Form - Bug fixes, including a fix for WP-CLI
855
+ * Bug Fix: Contact Form - Remove deprecated .live calls, delegate lazily to jQuery(document) since it's all in an iframe modal
856
+ * Bug Fix: Contact Form - RTL styles
857
+ * Bug Fix: Contact Form - Better handle MP6 icons
858
+ * Bug Fix: Custom CSS - array_shift() took a variable by reference, so avoid passing it the result of a function
859
+ * Bug Fix: Custom CSS - Allow case-insensitive CSS properties (<a href="http://wordpress.org/support/topic/two-issues-with-jetpack-css-module?replies=9">ref</a>)
860
+ * Bug Fix: Infinite Scroll - Maintain main query's `post__not_in` values when querying posts for IS
861
+ * Bug Fix: Infinite Scroll - Ensure that IS's `pre_get_posts` method isn't applied in the admin. Also fixes an incorrect use of `add_filter()` where `add_action()` was meant. Fixes #1696-plugins
862
+ * Bug Fix: Infinite Scroll - CSS update - IS footer was too large in Firefox
863
+ * Bug Fix: Infinite Scroll - Add bundled support for Twenty Thirteen default theme
864
+ * Bug Fix: Infinite Scroll - Include posts table's prefix when modifying the SQL WordPress generates to retrieve posts for Infinite Scroll
865
+ * Bug Fix: JSON API - Use wp_set_comment_status to change the comment status, to make sure actions are run where needed
866
+ * Bug Fix: Likes - Update style and logic for matching id's
867
+ * Bug Fix: Mobile Theme - Ensure that <code>minileven_actual_current_theme()</code> is child-theme compatible + other updates
868
+ * Bug Fix: Mobile Theme - Update method for finding currently active theme.
869
+ * Bug Fix: Notifications - Remove the postmessage.js enqueue since this feature solely supports native postMessage
870
+ * Bug Fix: Notifications - Clean up script enqueues and use core versions of underscore and backbone on wpcom as fallbacks
871
+ * Bug Fix: Notifications - Enqueue v2 scripts and style
872
+ * Bug Fix: Notifications - Prefix module-specific scripts and style to prevent collision
873
+ * Bug Fix: Notifications - Include lang and dir attributes on #wpnt-notes-panel so the notifications iframe can use these to display correctly
874
+ * Bug Fix: Open Graph: Use the profile OG type instead of author. Add tags for first/last names
875
+ * Bug Fix: Publicize - Remove the Yahoo! service because they stopped supporting that API entirely
876
+ * Bug Fix: Publicize - fix fatal errors caused by using a method on a non-object. Props @ipstenu
877
+ * Bug Fix: Sharing - Adding 2x graphics for Pocket sharing service
878
+ * Bug Fix: Sharing - Bug fixes, and a new filter
879
+ * Bug Fix: Shortcodes - Audio: make sure that the Jetpack audion shortcode does not override the 3.6 core audio shortcode. Also, we need to filter the old Jetpack-style shortcode to properly set the params for the Core audio shortcode.
880
+ * Bug Fix: Shortcodes - Audio: Re-enable the flash player
881
+ * Bug Fix: Shortcodes - Slideshow: RTL styling update
882
+ * Bug Fix: Tiled Galleries - Fix IE8 display bug where it doesn't honor inline CSS for width on images
883
+ * Bug Fix: Tiled Galleries - Remove depreacted hover call, use mouseenter mouseleave instead
884
+ * Enhancement: Twitter Timeline Widget: New JavaScript based widget. Old one will discontinue May 7th.
885
+
886
+ = 2.2.2 =
887
+ Release Date: April 5, 2013
888
+
889
+ * Enhancement: Mobile Theme: Add controls for custom CSS.
890
+ * Enhancement: Sharing: Add Pocket to the available services.
891
+ * Bug Fix: Custom CSS: Update the method for generating content width setting.
892
+ * Bug Fix: JSON API: Security updates.
893
+ * Bug Fix: Likes: Add settings for email notifications and misc style updates.
894
+ * Bug Fix: Notifications: Add the post types to sync after init.
895
+ * Bug Fix: Publicize: RTL styling.
896
+ * Bug Fix: Shortcodes: security fixes and function prefixing.
897
+ * Bug Fix: Widgets: Update wording on the Top Posts widget for clarity.
898
+ * Bug Fix: Jetpack Post Images security fixes.
899
+
900
+ = 2.2.1 =
901
+ Release Date: March 28, 2013
902
+
903
+ * Enhancement: Development Mode: Define the `JETPACK_DEV_DEBUG` constant to `true` to enable an offline mode for localhost development. Only modules that don't require a WordPress.com connection can be enabled in this mode.
904
+ * Enhancement: Likes: Added the number of likes to the wp-admin/edit.php screens.
905
+ * Enhancement: Mobile Theme - design refresh
906
+ * Enhancement: Shortcodes - Add a filter to the shortcode loading section so that a plugin can override what Jetpack loads for shortcodes
907
+ * Enhancement: Widgets - Filter Jetpack's widgets so that a plugin can control which widgets get loaded
908
+ * Bug Fix: Comments - Add in a wrapper div with id='commentform'
909
+ * Bug Fix: Contact Form - Added date field with datepicker
910
+ * Bug Fix: Contact Form - Allowed non-text widgets to use contact forms by running their output through the widget_text filter
911
+ * Bug Fix: Custom CSS - Allowing color values to be defined multiple times
912
+ * Bug Fix: Custom CSS - Dynamically loading the correct CSS/LESS/SCSS mode for the CSS editor if the user changes the preprocessor
913
+ * Bug Fix: Custom CSS - Using the unminified worker CSS
914
+ * Bug Fix: Custom CSS - Added rule: reminder about using .custom-background on body selector
915
+ * Bug Fix: Custom CSS - Modified rule: Removed portion of overqualification rule that deems 'a.foo' overqualified if there are no other 'a' rules
916
+ * Bug Fix: Custom CSS - Ensuring that the editor and the textarea behind it are using the same font so that the cursor appears in the correct location
917
+ * Bug Fix: Custom CSS - Fix a bug that caused some sites to always ignore the base theme's CSS when in preview mode
918
+ * Bug Fix: Custom CSS - Run stripslashes() before passing CSS to save()
919
+ * Bug Fix: Custom CSS - Moving inline CSS and JavaScript into external files
920
+ * Bug Fix: Infinite Scroll - Use the `is_main_query()` function and query method
921
+ * Bug Fix: Infinite Scroll - Remove unused styles and an unnecessary margin setting
922
+ * Bug Fix: Infinite Scroll - Allow the query used with IS to be filtered, so IS can be applied to a new query within a page template
923
+ * Bug Fix: JSON API - Catch the 'User cannot view password protected post' error from can_view_post and bypass it for likes actions if the user has the password entered
924
+ * Bug Fix: Likes - Bump cache buster, Don't show likes for password protected posts
925
+ * Bug Fix: Notifications - Remove a redundant span closing tag
926
+ * Bug Fix: Photon - If an image is already served from Photon but the anchor tag that surrounds it hasn't had its `href` value rewritten to use Photon, do so. Accounts for WP galleries whose individual items are linked to the original image files
927
+ * Bug Fix: Publicize - Allows GLOBAL_CAP to be filtered, Adds an AYS to connection deletion, UI improvement for MP6 (and in general)
928
+ * Bug Fix: Sharedaddy - Fire the sharing redirect earlier for increased plugin compatibility
929
+ * Bug Fix: Stats - Move the display:none CSS output to wp_head so it gets written inside the HEAD tag if the option to hide the stats smilie is active
930
+ * Bug Fix: Tiled Galleries - A more descriptive name for the default gallery type
931
+ * Bug Fix: Tiled Galleries - Hide the Columns setting for gallery types that don't support it
932
+ * Bug Fix: Run the admin_menu action late so that plugins hooking into it get a chance to run
933
+ * Bug Fix: Prophylactic strict equality check
934
+
935
+ = 2.2 =
936
+ Release Date: February 26, 2013
937
+ Release Post: http://jetpack.me/2013/02/26/jetpack-2-2-likes/
938
+
939
+ * Enhancement: Likes: Allow your readers to show their appreciation of your posts.
940
+ * Enhancement: Shortcodes: SoundCloud: Update to version 2.3 of the SoundCloud plugin (HTML5 default player, various fixes).
941
+ * Enhancement: Shortcodes: Subscriptions: Add a shortcode to enable placement of a subscription signup form in a post or page.
942
+ * Enhancement: Sharedaddy: Allow selecting multiple images from a post using the Pinterest share button.
943
+ * Enhancement: Contact Form: Allow feedbacks to be marked spam in bulk.
944
+ * Enhancement: Widgets: Readmill Widget: Give your visitors a link to send your book to their Readmill library.
945
+ * Note: Notifications: Discontinue support for Internet Explorer 7 and below.
946
+ * Bug Fix: JSON API: Fix authorization problems that some users were experiencing.
947
+ * Bug Fix: JSON API: Sticky posts were not being sorted correctly in /posts requests.
948
+ * Bug Fix: Stats: sync stats_options so server has roles array needed for view_stats cap check.
949
+ * Bug Fix: Infinite Scroll: Display improvements.
950
+ * Bug Fix: Infinite Scroll: WordPress compatibility fixes.
951
+ * Bug Fix: Photon: Only rewrite iamge urls if the URL is compatible with Photon.
952
+ * Bug Fix: Photon: Account for registered image sizes with one or more dimesions set to zero.
953
+ * Bug Fix: Subscriptions: Make HTML markup more valid.
954
+ * Bug Fix: Subscriptions: Fixed notices displayed in debug mode.
955
+ * Bug Fix: Custom CSS: CSS warnings and errors should now work in environments where JavaScript is concatenated or otherwise modified before being served.
956
+ * Bug Fix: Hovercards: WordPress compatibility fixes.
957
+ * Bug Fix: Improved image handling for the Sharing and Publicize modules.
958
+ * Bug Fix: Carousel: Display and Scrollbar fixes.
959
+ * Bug Fix: Tiled Galleries: Restrict images in tiled galleries from being set larger than their containers.
960
+ * Bug Fix: Widgets: Gravatar Profile: CSS fixes.
961
+ * Bug Fix: Publicize: Strip HTML comments from the data we send to the third party services.
962
+ * Bug Fix: Notifications: Dropped support for IE7 and below in the notifications menu.
963
+ * Bug Fix: Custom CSS Editor: Allow custom themes to save CSS more easily.
964
+ * Bug Fix: Infinite Scroll: Waits until the DOM is ready before loading the scrolling code.
965
+ * Bug Fix: Mobile Theme: If the user has disabled the custom header text color, show the default black header text color.
966
+ * Bug Fix: Mobile Theme: Fix for the "View Full Site" link.
967
+ * Bug Fix: Mobile Theme: Use a filter to modify the output of wp_title().
968
+ * Bug Fix: Publicize: Twitter: Re-enable character count turning red when more than 140 characters are typed.
969
+
970
+ = 2.1.2 =
971
+ Release Date: February 5, 2013
972
+
973
+ * Enhancement: Infinite Scroll: Introduce filters for Infinite Scroll.
974
+ * Enhancement: Shortcodes: TED shortcode.
975
+ * Bug Fix: Carousel: Make sure to use large image sizes.
976
+ * Bug Fix: Carousel: Clicking the back button in your browser after exiting a carousel gallery brings you back to the gallery.
977
+ * Bug Fix: Carousel: Fix a scrollbar issue.
978
+ * Bug Fix: Comments: Move the get_avatar() function out of the base class.
979
+ * Bug Fix: Contact Form: Prevent the form from displaying i18n characters.
980
+ * Bug Fix: Contact Form: Remove the !important CSS rule.
981
+ * Bug Fix: Infinite Scroll: Main query arguments are not respected when using default permalink.
982
+ * Bug Fix: JSON API: Trap 'wp_die' for new comments and image uploads.
983
+ * Bug Fix: JSON API: Use a better array key for the user_ID.
984
+ * Bug Fix: JSON API: Make the class instantiable only once, but multi-use.
985
+ * Bug Fix: JSON API: Fix lookup of pages by page slug.
986
+ * Bug Fix: JSON API: Updates for post likes.
987
+ * Bug Fix: Mobile Theme: Remove Android download link for BB10 and Playbook.
988
+ * Bug Fix: Open Graph: Stop using Loop functions to get post data for meta tags.
989
+ * Bug Fix: Photon: Suppress and check for warnings when pasing_url and using it.
990
+ * Bug Fix: Photon: Ensure full image size can be used.
991
+ * Bug Fix: Photon: Resolve Photon / YouTube embed conflict.
992
+ * Bug Fix: Photon: Fix dimension parsing from URLs.
993
+ * Bug Fix: Photon: Make sure that width/height atts are greater than zero.
994
+ * Bug Fix: Sharedaddy: Layout fixes for share buttons.
995
+ * Bug Fix: Sharedaddy: Always send Facebook a language locale.
996
+ * Bug Fix: Sharedaddy: Don't look up share counts for empty URLs.
997
+ * Bug Fix: Shortcodes: Ensure that images don't overflow their containers in the slideshow shortcode.
998
+ * Bug Fix: Shortcodes: only enqueue jquery if archive supports Infinite Scroll in the Audio Shortcode.
999
+ * Bug Fix: Tiled Galleries: Use a more specific class for gallery item size to avoid conflicts.
1000
+ * Bug Fix: Tiled Galleries: Fixing scrolling issue when tapping on a Tiled Gallery on Android.
1001
+ * Bug Fix: Widgets: Gravatar profile widget typo.
1002
+ * Bug Fix: Widgets: Add (Jetpack) to widget titles.
1003
+ * Bug Fix: Widgets: Twitter wasn't wrapping links in the t.co shortener.
1004
+ * Bug Fix: Widgets: Facebook Likebox updates to handling the language locale.
1005
+ * Bug Fix: Widgets: Top Posts: Fixed a WP_DEBUG notice.
1006
+ * Bug Fix: Widgets: Gravatar Profile Widget: transient names must be less than 45 characters long.
1007
+ * Bug Fix: typo in delete_post_action function.
1008
+ * Bug Fix: Load rendered LaTeX image on same protocol as its page.
1009
+
1010
+
1011
+ = 2.1.1 =
1012
+ Release Date: January 5, 2013
1013
+
1014
+ * Bug Fix: Fix for an error appearing for blogs updating from Jetpack 1.9.2 or earlier to 2.1.
1015
+
1016
+ = 2.1 =
1017
+ Release Date: January 4, 2013
1018
+ Release Post: http://jetpack.me/2013/01/04/galleries/
1019
+
1020
+ * Enhancement: Tiled Galleries: Show off your photos with cool mosaic galleries.
1021
+ * Enhancement: Slideshow gallery type: Display any gallery as a slideshow.
1022
+ * Enhancement: Custom CSS: Allow zoom property.
1023
+ * Enhancement: Stats: Show WordPress.com subscribers in stats.
1024
+ * Bug Fix: Fix errors shown after connecting Jetpack to WordPress.com.
1025
+ * Bug Fix: Photon: Fix bug causing errors to be shown in some posts.
1026
+ * Bug Fix: Photon: Convert all images in posts when Photon is active.
1027
+ * Bug Fix: Infinite Scroll: Improved compatibility with the other modules.
1028
+ * Bug Fix: Custom CSS: Updated editor to fix missing file errors.
1029
+ * Bug Fix: Publicize: Don't show the Facebook profile option if this is a Page-only account.
1030
+ * Bug Fix: Photon: A fix for photos appearing shrunken if they didn't load quickly enough.
1031
+ * Bug Fix: Sharing: A compatibility fix for posts that only have partial featured image data.
1032
+ * Bug Fix: Publicize/Sharing: For sites without a static homepage, don't set the OpenGraph url value to the first post permalink.
1033
+ * Bug Fix: Mobile Theme: Better compatibility with the customizer on mobile devices.
1034
+ * Bug Fix: Sharing: Don't show sharing options on front page if that option is turned off.
1035
+ * Bug Fix: Contact Form: Fix PHP warning shown when adding a Contact Form in WordPress 3.5.
1036
+ * Bug Fix: Photon: Handle images with relative paths.
1037
+ * Bug Fix: Contact Form: Fix compatibility with the Shortcode Embeds module.
1038
+
1039
+
1040
+ = 2.0.4 =
1041
+ Release Date: December 14, 2012
1042
+
1043
+ * Bug Fix: Open Graph: Correct a bug that prevents Jetpack from being activated if the SharePress plugin isn't installed.
1044
+
1045
+ = 2.0.3 =
1046
+ Release Date: December 14, 2012
1047
+
1048
+ * Enhancement: Infinite Scroll: support [VideoPress](http://wordpress.org/extend/plugins/video/) plugin.
1049
+ * Enhancement: Photon: Apply to all images retrieved from the Media Library.
1050
+ * Enhancement: Photon: Retina image support.
1051
+ * Enhancement: Custom CSS: Refined editor interface.
1052
+ * Enhancement: Custom CSS: Support [Sass](http://sass-lang.com/) and [LESS](http://lesscss.org/) with built-in preprocessors.
1053
+ * Enhancement: Open Graph: Better checks for other plugins that may be loading Open Graph tags to prevent Jetpack from doubling meta tag output.
1054
+ * Bug Fix: Infinite Scroll: Respect relative image dimensions.
1055
+ * Bug Fix: Photon: Detect custom-cropped images and use those with Photon, rather than trying to use the original.
1056
+ * Bug Fix: Custom CSS: Fix for bug preventing @import from working with url()-style URLs.
1057
+
1058
+ = 2.0.2 =
1059
+ Release Date: November 21, 2012
1060
+
1061
+ * Bug Fix: Remove an erroneous PHP short open tag with the full tag to correct fatal errors under certain PHP configurations.
1062
+
1063
+ = 2.0.1 =
1064
+ Release Date: November 21, 2012
1065
+
1066
+ * Enhancement: Photon: Support for the [Lazy Load](http://wordpress.org/extend/plugins/lazy-load/) plugin.
1067
+ * Bug Fix: Photon: Fix warped images with un- or under-specified dimensions.
1068
+ * Bug Fix: Photon: Fix warped images with pre-photonized URLs; don't try to photonize them twice.
1069
+ * Bug Fix: Infinite Scroll: Check a child theme's parent theme for infinite scroll support.
1070
+ * Bug Fix: Infinite Scroll: Correct a bug with archives that resulted in posts appearing on archives that they didn't belong on.
1071
+ * Bug Fix: Publicize: Send the correct shortlink to Twitter (et al.) if your site uses a shortener other than wp.me.
1072
+ * Bug Fix: Sharing: Improved theme compatibility for the Google+ button.
1073
+ * Bug Fix: Notifications: Use locally-installed Javascript libraries if available.
1074
+
1075
+ = 2.0 =
1076
+ Release Date: November 8, 2012
1077
+ Release Post: http://jetpack.me/2012/11/08/jetpack-2-0-publicize-to-facebook-twitter-linkedin-tumblr-post-by-email-photon-infinite-scroll/
1078
+
1079
+ * Enhancement: Publicize: Connect your site to popular social networks and automatically share new posts with your friends.
1080
+ * Enhancement: Post By Email: Publish posts to your blog directly from your personal email account.
1081
+ * Enhancement: Photon: Images served through the global WordPress.com cloud.
1082
+ * Enhancement: Infinite Scroll: Better/faster browsing by pulling the next set of posts into view automatically when the reader approaches the bottom of the page.
1083
+ * Enhancement: Open Graph: Provides more detailed information about your posts to social networks.
1084
+ * Enhancement: JSON API: New parameters for creating and viewing posts.
1085
+ * Enhancement: Improved compatibility for the upcoming WordPress 3.5.
1086
+ * Bug Fix: Sharing: When you set your sharing buttons to use icon, text, or icon + text mode, the Google+ button will display accordingly.
1087
+ * Bug Fix: Gravatar Profile Widget: Allow basic HTML to be displayed.
1088
+ * Bug Fix: Twitter Widget: Error handling fixes.
1089
+ * Bug Fix: Sharing: Improved theme compatibility
1090
+ * Bug Fix: JSON API: Fixed error when creating some posts in some versions of PHP.
1091
+
1092
+ = 1.9.2 =
1093
+ Release Date: October 29, 2012
1094
+
1095
+ * Bug Fix: Only sync options on upgrade once.
1096
+
1097
+ = 1.9.1 =
1098
+ * Enhancement: Notifications feature is enabled for logged-out users when the module is active & the toolbar is shown by another plugin.
1099
+ * Bug Fix: Use proper CDN addresses to avoid SSL cert issues.
1100
+ * Bug Fix: Prioritize syncing comments over deleting comments on WordPress.com. Fixes comment notifications marked as spam appearing to be trashed.
1101
+
1102
+ = 1.9 =
1103
+ Release Date: October 26, 2012
1104
+ Release Post: http://jetpack.me/2012/10/26/jetpack-1-9-toolbar-notifications/
1105
+
1106
+ * Enhancement: Notifications: Display Notifications in the toolbar and support reply/moderation of comment notifications.
1107
+ * Enhancement: Mobile Push Notifications: Added support for mobile push notifications of new comments for users that linked their accounts to WordPress.com accounts.
1108
+ * Enhancement: JSON API: Allows applications to send API requests via WordPress.com (see [the docs](http://developer.wordpress.com/docs/api/) )
1109
+ * Enhancement: Sync: Modules (that require the data) sync full Post/Comment to ensure consistent data on WP.com (eg Stats)
1110
+ * Enhancement: Sync: Improve syncing of site options to WP.com
1111
+ * Enhancement: Sync: Sync attachment parents to WP.com
1112
+ * Enhancement: Sync: Add signing of WP.com user ids for Jetpack Comments
1113
+ * Enhancement: Sync: Mark and obfuscate private posts.
1114
+ * Enhancement: Privacy: Default disable enhanced-distribution and json-api modules if site appears to be private.
1115
+ * Enhancement: Custom CSS: allow applying Custom CSS to mobile theme.
1116
+ * Enhancement: Sharing: On HTTPS pageloads, load as much of the sharing embeds as possible from HTTPS URLs.
1117
+ * Enhancement: Contact Form: Overhaul of the contact form code to fix incompatibilites with other plugins.
1118
+ * Bug Fix: Only allow users with manage_options permission to enable/disable modules
1119
+ * Bug Fix: Custom CSS: allow '/' in media query units; e.g. (-o-min-device-pixel-ratio: 3/2)
1120
+ * Bug Fix: Custom CSS: leave comments alone in CSS when editing but minify on the frontend
1121
+ * Bug Fix: Sharing: Keep "more" pane open so Google+ Button isn't obscured
1122
+ * Bug Fix: Carousel: Make sure the original size is used, even when it is exceedingly large.
1123
+ * Bug Fix: Exclude iPad from Twitter on iPhone mobile browsing
1124
+ * Bug Fix: Sync: On .org user role changes synchronize the change to .com
1125
+ * Bug Fix: Contact Form: Fix a bug where some web hosts would reject mail from the contact form due to email address spoofing.
1126
+
1127
+ = 1.8.3 =
1128
+ Release Date: October 23, 2012
1129
+
1130
+ * Bug Fix: Subscriptions: Fix a bug where subscriptions were not being sent from the blog.
1131
+ * Bug Fix: Twitter: Fix a bug where the Twitter username was being saved as blank.
1132
+ * Bug Fix: Fix a bug where Contact Form notification emails were not being sent.
1133
+
1134
+ = 1.8.2 =
1135
+ Release Date: October 4, 2012
1136
+
1137
+ * Bug Fix: Subscriptions: Fix a bug where subscriptions were not sent for posts and comments written by some authors.
1138
+ * Bug Fix: Widgets: Fix CSS that was uglifying some themes (like P2).
1139
+ * Bug Fix: Widgets: Improve Top Posts and Pages styling.
1140
+ * Bug Fix: Custom CSS: Make the default "Welcome" message translatable.
1141
+ * Bug Fix: Fix Lithuanian translation.
1142
+
1143
+ = 1.8.1 =
1144
+ Release Date: September 28, 2012
1145
+
1146
+ * Bug Fix: Stats: Fixed a bug preventing some users from viewing stats.
1147
+ * Bug Fix: Mobile Theme: Fixed some disabled toolbar buttons.
1148
+ * Bug Fix: Top Posts widget: Fixed a bug preventing the usage of the Top Posts widget.
1149
+ * Bug Fix: Mobile Theme: Fixed a bug that broke some sites when the Subscriptions module was not enabled and the Mobile Theme module was enabled.
1150
+ * Bug Fix: Mobile Theme: Made mobile app promos in the Mobile Theme footer opt-in.
1151
+ * Bug Fix: Twitter Widget: A fix to prevent malware warnings.
1152
+ * Bug Fix: Mobile Theme: Fixed a bug that caused errors for some users with custom header images.
1153
+
1154
+ = 1.8 =
1155
+ Release Date: September 27, 2012
1156
+ Release Post: http://jetpack.me/2012/09/27/jetpack-1-8-mobile-theme/
1157
+
1158
+ * Enhancement: Mobile Theme: Automatically serve a slimmed down version of your site to users on mobile devices.
1159
+ * Enhancement: Multiuser: Allow multiple users to link their accounts to WordPress.com accounts.
1160
+ * Enhancement: Custom CSS: Added support for object-fit, object-position, transition, and filter properties.
1161
+ * Enhancement: Twitter Widget: Added Follow button
1162
+ * Enhancement: Widgets: Added Top Posts and Pages widget
1163
+ * Enhancement: Mobile Push Notifications: Added support for mobile push notifications on new comments.
1164
+ * Enhancement: VideoPress: Shortcodes now support the HD option, for default HD playback.
1165
+ * Bug Fix: Twitter Widget: Fixed tweet permalinks in the Twitter widget
1166
+ * Bug Fix: Custom CSS: @import rules and external images are no longer stripped out of custom CSS
1167
+ * Bug Fix: Custom CSS: Fixed warnings and notices displayed in debug mode
1168
+ * Bug Fix: Sharing: Fixed double-encoding of image URLs
1169
+ * Bug Fix: Sharing: Fix Google +1 button HTML validation issues (again :))
1170
+ * Bug Fix: Gravatar Profile Widget: Reduce size of header margins
1171
+
1172
+ = 1.7 =
1173
+ Release Date: August 23, 2012
1174
+ Release Post: http://jetpack.me/2012/08/23/jetpack-1-7-custom-css/
1175
+
1176
+ * Enhancement: CSS Editor: Customize your site's design without modifying your theme.
1177
+ * Enhancement: Comments: Submit the comment within the iframe. No more full page load to jetpack.wordpress.com.
1178
+ * Enhancement: Sharing: Share counts for Twitter, Facebook, LinkedIn
1179
+ * Enhancement: Sharing: Improve styling
1180
+ * Enhancement: Sharing: Add support for ReCaptcha
1181
+ * Enhancement: Sharing: Better extensability through filters
1182
+ * Enhancement: Widgets: Twitter: Attempt to reduce errors by storing a long lasting copy of the data. Thanks, kareldonk :)
1183
+ * Regression Fix: Sharing: Properly store and display the sharing label option's default value.
1184
+ * Bug Fix: Contact Form: remove worse-than-useless nonce.
1185
+ * Bug Fix: Subscriptions: remove worse-than-useless nonce.
1186
+ * Bug Fix: Sharing: Don't show sharing buttons twice on attachment pages.
1187
+ * Bug Fix: Sharing: Increase width of Spanish Like button for Facebook.
1188
+ * Bug Fix: Sharing: Use the correct URL to the throbber.
1189
+ * Bug Fix: Stats: Fix notice about undefined variable $alt
1190
+ * Bug Fix: Subscriptions: Make Subscriptions module obey the settings of the Settngs -> Discussion checkboxes for Follow Blog/Comments
1191
+ * Bug Fix: Shortcodes: VideoPress: Compatibility with the latest version of VideoPress
1192
+ * Bug Fix: Shortcodes: Audio: Include JS File for HTML5 audio player
1193
+ * Bug Fix: Hovercards: Improve cache handling.
1194
+ * Bug Fix: Widgets: Gravatar Profle: Correctly display service icons in edge cases.
1195
+ * Bug Fix: Widgets: Gravatar Profle: Prevent ugly "flash" of too-large image when page first loads on some sites
1196
+ * Bug Fix: Carousel: CSS Compatibility with more themes.
1197
+
1198
+ = 1.6.1 =
1199
+ Release Date: August 4, 2012
1200
+
1201
+ * Bug Fix: Prevent Fatal error under certain conditions in sharing module
1202
+ * Bug Fix: Add cachebuster to sharing.css
1203
+ * Bug Fix: Disable via for Twitter until more robust code is in place
1204
+
1205
+ = 1.6 =
1206
+ Release Date: August 2, 2012
1207
+ Release Post: http://jetpack.me/2012/08/02/jetpack-1-6-retina-and-pinterest/
1208
+
1209
+ * Enhancement: Carousel: Better image resolution selection based on available width/height.
1210
+ * Enhancement: Carousel: Load image caption, metadata, comments, et alii when a slide is clicked to switch to instead of waiting.
1211
+ * Enhancement: Carousel: Added a "Comment" button and handling to scroll to and focus on comment textarea.
1212
+ * Enhancement: Widgets: Facebook Likebox now supports a height parameter and a better width parameter.
1213
+ * Enhancement: Widgets: Better feedback when widgets are not set up properly.
1214
+ * Enhancement: Shortcodes: Google Maps shortcode now supports percentages in the width.
1215
+ * Enhancement: Shortcodes: Update Polldaddy shortcode for more efficient Javascript libraries.
1216
+ * Enhancement: Shortcodes: Youtube shortcode now has playlist support.
1217
+ * Enhancement: Add Gravatar Profile widget.
1218
+ * Enhancement: Update Sharedaddy to latest version, including Pinterest support.
1219
+ * Enhancement: Retinize Jetpack and much of WordPress.
1220
+ * Bug Fix: Shortcodes: Fix Audio shortcode color parameter and rename encoding function.
1221
+ * Bug Fix: Shortcodes: Don't output HTML 5 version of the Audio shortcode because of a bug with Google Reader.
1222
+ * Bug Fix: Jetpack Comments: Don't overlead the addComments object if it doesn't exist. Fixes spacing issue with comment form.
1223
+ * Bug Fix: Contact Form: If send_to_editor() exists, use it. Fixes an IE9 text area issue.
1224
+
1225
+ = 1.5 =
1226
+ Release Date: July 31, 2012
1227
+
1228
+ * Enhancement: Add Gallery Carousel feature
1229
+ * Note: the Carousel module bundles http://fgnass.github.com/spin.js/ (MIT license)
1230
+
1231
+ = 1.4.2 =
1232
+ Release Date: June 20, 2012
1233
+
1234
+ * Bug Fix: Jetpack Comments: Add alternative Javascript event listener for Internet 8 users.
1235
+ * Enhancement: Remove more PHP 4 backwards-compatible code (WordPress andJetpack only support PHP 5).
1236
+ * Enhancement: Remove more WordPress 3.1 and under backwards-compatible code.
1237
+
1238
+ = 1.4.1 =
1239
+ Release Date: June 15, 2012
1240
+
1241
+ * Bug Fix: Jetpack Comments / Subscriptions: Add checkboxes and logic control for the Subscription checkboxes.
1242
+
1243
+ = 1.4 =
1244
+ Release Date: June 14, 2012
1245
+
1246
+ * Enhancement: Add Jetpack Comments feature.
1247
+ * Bug Fix: Sharing: Make the sharing_label translatable.
1248
+ * Bug Fix: Sharing: Fixed the file type on the LinkedIn graphic.
1249
+ * Bug Fix: Sharing: Fixes for the Faceboox Like button language locales.
1250
+ * Bug Fix: Sharing: Updates for the "more" button when used with touch screen devices.
1251
+ * Bug Fix: Sharing: Properly scope the More button so that multiple More buttons on a page behave properly.
1252
+ * Bug Fix: Shortcodes: Update the YouTube and Audio shortcodes to better handle spaces in the URLs.
1253
+ * Bug Fix: Shortcodes: Make the YouTube shortcode respect embed settings in Settings -> Media when appropriate.
1254
+ * Bug Fix: Shortcodes: Removed the Slide.com shortcode; Slide.com no longer exists.
1255
+ * Bug Fix: Shortcodes: Match both http and https links in the [googlemaps] shortcode.
1256
+ * Bug Fix: After the Deadline: Code clean up and removal of inconsistencies.
1257
+
1258
+ = 1.3.4 =
1259
+ Release Date: May 24, 2012
1260
+
1261
+ * Bug Fix: Revert changes to the top level menu that are causing problems.
1262
+
1263
+ = 1.3.3 =
1264
+ Release Date: May 22, 2012
1265
+
1266
+ * Bug Fix: Fix notices caused by last update
1267
+
1268
+ = 1.3.2 =
1269
+ Release Date: May 22, 2012
1270
+
1271
+ * Bug Fix: Fix Jetpack menu so that Akismet and VaultPress submenus show up.
1272
+
1273
+ = 1.3.1 =
1274
+ Release Date: May 22, 2012
1275
+
1276
+ * Enhancement: Add a new widget, the Facebook Likebox
1277
+ * Bug Fix: Sharing: Sharing buttons can now be used on custom post types.
1278
+ * Bug Fix: Contact Forms: Make Contact Forms widget shortcode less aggressive about the shortcodes it converts.
1279
+ * Bug Fix: Ensure contact forms are parsed correctly in text widgets.
1280
+ * Bug Fix: Connection notices now only appear on the Dashboard and plugin page.
1281
+ * Bug Fix: Connection notices are now dismissable if Jetpack is not network activated.
1282
+ * Bug Fix: Subscriptions: Fix an issue that was causing errors with new BuddyPress forum posts.
1283
+
1284
+ = 1.3 =
1285
+ Release Date: April 25, 2012
1286
+ Release Post: http://jetpack.me/2012/04/24/jetpack-1-3-released-contact-forms/
1287
+
1288
+ * Enhancement: Add Contact Forms feature. Formerly Grunion Contact Forms.
1289
+ * Bug Fix: Tweak YouTube autoembedder to catch more YouTube URLs.
1290
+ * Bug Fix: Correctly load the Sharing CSS files.
1291
+
1292
+ = 1.2.4 =
1293
+ Release Date: April 6, 2012
1294
+
1295
+ * Bug Fix: Fix rare bug with static front pages
1296
+
1297
+ = 1.2.3 =
1298
+ Release Date: April 5, 2012
1299
+
1300
+ * Enhancement: Twitter Widget: Expand t.co URLs
1301
+ * Bug Fix: Various PHP Notices.
1302
+ * Bug Fix: WordPress Deprecated `add_contextual_help()` notices
1303
+ * Bug Fix: Don't display unimportant DB errors when processing Jetpack nonces
1304
+ * Bug Fix: Correctly sync data during certain MultiSite cases.
1305
+ * Bug Fix: Stats: Allow sparkline img to load even when there is a DB upgrade.
1306
+ * Bug Fix: Stats: Replace "loading title" with post title regardless of type and status.
1307
+ * Bug Fix: Stats: Avoid edge case infinite redirect for `show_on_front=page` sites where the `home_url()` conatins uppercase letters.
1308
+ * Bug Fix: Subscriptions: Don't send subscriptions if the feature is turned off in Jetpack.
1309
+ * Bug Fix: Subscriptions: Fix pagination of subscribers.
1310
+ * Bug Fix: Subscriptions: Sync data about categories/tags as well to improve subscription emails.
1311
+ * Bug Fix: Subscriptions: Better styling for the subscription success message.
1312
+ * Bug Fix: Shortcodes: Support for multiple Google Maps in one post. Support for all Google Maps URLs.
1313
+ * Bug Fix: Shortcodes: Improved support for youtu.be URLs
1314
+ * Bug Fix: Shortcodes: Improved Vimeo embeds.
1315
+ * Bug Fix: Sharing: Switch to the 20px version of Google's +1 button for consistency.
1316
+ * Bug Fix: Sharing: Fix Google +1 button HTML validation issues.
1317
+ * Bug Fix: Sharing: Disable sharing buttons during preview.
1318
+ * Bug Fix: Spelling and Grammar: Properly handle proofreading settings.
1319
+ * Bug Fix: Spelling and Grammar: Don't prevent post save when proofreading service is unavailable.
1320
+
1321
+ = 1.2.2 =
1322
+ Release Date: December 6, 2011
1323
+
1324
+ * Bug Fix: Ensure expected modules get reactivated correctly during upgrade.
1325
+ * Bug Fix: Don't send subscription request during spam comment submission.
1326
+ * Bug Fix: Increased theme compatibility for subscriptions.
1327
+ * Bug Fix: Remove reference to unused background image.
1328
+
1329
+ = 1.2.1 =
1330
+ Release Date: November 18, 2011
1331
+
1332
+ * Bug Fix: Ensure Site Stats menu item is accessible.
1333
+ * Bug Fix: Fixed errors displayed during some upgrades.
1334
+ * Bug Fix: Fix inaccurate new modules "bubble" in menu for some upgrades.
1335
+ * Bug Fix: Fix VaultPress detection.
1336
+ * Bug Fix: Fix link to http://jetpack.me/faq/
1337
+
1338
+ = 1.2 =
1339
+ Release Date: November 17, 2011
1340
+ Release Post: http://jetpack.me/2011/11/17/announcing-jetpack-1-2/
1341
+
1342
+ * Enhancement: Add Subscriptions: Subscribe to site's posts and posts' comments.
1343
+ * Enhancement: Add Google Maps shortcode.
1344
+ * Enhancement: Add Image Widget.
1345
+ * Enhancement: Add RSS Links Widget.
1346
+ * Enhancement: Stats: More responsive stats dashboard.
1347
+ * Enhancement: Shortcodes: Google Maps, VideoPress
1348
+ * Enhancement: Sharing: Google+, LinkedIn
1349
+ * Enhancement: Enhanced Distribution: Added Jetpack blogs to http://en.wordpress.com/firehose/
1350
+ * Bug Fix: Spelling and Grammar: WordPress 3.3 compatibility.
1351
+ * Bug Fix: Translatable module names/descriptinos.
1352
+ * Bug Fix: Correctly detect host's ability to make outgoing HTTPS requests.
1353
+
1354
+ = 1.1.3 =
1355
+ Release Date: July 19, 2011
1356
+
1357
+ * Bug Fix: Increase compatibility with WordPress 3.2's new `wp_remote_request()` API.
1358
+ * Bug Fix: Increase compatibility with Admin Bar.
1359
+ * Bug Fix: Stats: Improved performance when creating new posts.
1360
+ * Bug Fix: Twitter Widget: Fix PHP Notice.
1361
+ * Bug Fix: Sharedaddy: Fix PHP Warning.
1362
+ * Enhancement: AtD: Add spellcheck button to Distraction Free Writing screen.
1363
+ * Translations: Added: Bosnian, Danish, German, Finnish, Galician, Croatian, Indonesian, Macedonian, Norwegian (Bokmål), Russian, Slovak, Serbian, Swedish
1364
+ * Translations: Updated: Spanish, French, Italian, Japanese, Brazilian Portuguese, Portuguese
1365
+
1366
+ = 1.1.2 =
1367
+ Release Date: July 6, 2011
1368
+
1369
+ * Bug Fix: Note, store, and keep fresh the time difference between the Jetpack site's host and the Jetpack servers at WordPress.com. Should fix all "timestamp is too old" errors.
1370
+ * Bug Fix: Improve experience on hosts capable of making outgoing HTTPS requests but incapable of verifying SSL certificates. Fixes some "register_http_request_failed", "error setting certificate verify locations", and "error:14090086:lib(20):func(144):reason(134)" errors.
1371
+ * Bug Fix: Better fallback when WordPress.com is experiencing problems.
1372
+ * Bug Fix: It's Jetpack, not JetPack :)
1373
+ * Bug Fix: Remove PHP Warnings/Notices.
1374
+ * Bug Fix: AtD: JS based XSS bug. Props markjaquith.
1375
+ * Bug Fix: AtD: Prevent stored configuration options from becoming corrupted.
1376
+ * Bug Fix: Stats: Prevent missing old stats for some blogs.
1377
+ * Bug Fix: Twitter Widget: Fix formatting of dates/times in PHP4.
1378
+ * Bug Fix: Twitter Widget: Cache the response from Twitter to prevent "Twitter did not respond. Please wait a few minutes and refresh this page." errors.
1379
+ * Enhancement: Slightly improved RTL experience. Jetpack 1.2 should include a much better fix.
1380
+ * Enhancement: Sharedaddy: Improve localization for Facebook Like button.
1381
+ * Enhancement: Gravatar Hovercards: Improved experience for Windows browsers.
1382
+
1383
+ = 1.1.1 =
1384
+ Release Date: March 19, 2011
1385
+ * Bug Fix: Improve experience on hosts capable of making outgoing HTTPS requests but incapable of verifying SSL certificates. Fixes most "Your Jetpack has a glitch. Connecting this site with WordPress.com is not possible. This usually means your site is not publicly accessible (localhost)." errors.
1386
+ * Bug Fix: Sharedaddy: Fatal error under PHP4. Disable on PHP4 hosts.
1387
+ * Bug Fix: Stats: Fatal error under PHP4. Rewrite to be PHP4 compatible.
1388
+ * Bug Fix: Stats: Fatal error on some sites modifying/removing core WordPress user roles. Add sanity check.
1389
+ * Bug Fix: Stats: Replace debug output with error message in dashboard widget.
1390
+ * Bug Fix: Stats: Rework hook priorities so that stats views are always counted even if a plugin (such as Paginated Comments) bails early on template_redirect.
1391
+ * Bug Fix: Identify the module that connot be activated to fatal error during single module activation.
1392
+ * Bug Fix: `glob()` is not always available. Use `opendir()`, `readdir()`, `closedir()`.
1393
+ * Bug Fix: Send permalink options to Stats Server for improved per post permalink calculation.
1394
+ * Bug Fix: Do not hide Screen Options and Help links during Jetpack call to connect.
1395
+ * Bug Fix: Improve readablitiy of text.
1396
+ * Bug Fix: AtD: Correctly store/display options.
1397
+ * Enhancement: Output more informative error messages.
1398
+ * Enhancement: Improve CSS styling.
1399
+ * Enhancement: Stats: Query all post types and statuses when getting posts for stats reports.
1400
+ * Enhancement: Improve performance of LaTeX URLs be using cookieless CDN.
1401
+
1402
+ = 1.1 =
1403
+ Release Date: March 9, 2011
1404
+
1405
+ * Initial release
class.jetpack-admin.php CHANGED
@@ -74,6 +74,14 @@ class Jetpack_Admin {
74
  $jetpack_active = Jetpack::is_active() || Jetpack::is_development_mode();
75
  foreach ( $available_modules as $module ) {
76
  if ( $module_array = $this->jetpack->get_module( $module ) ) {
 
 
 
 
 
 
 
 
77
  $short_desc = apply_filters( 'jetpack_short_module_description', $module_array['description'], $module );
78
  // Fix: correct multibyte strings truncate with checking for mbstring extension
79
  $short_desc_trunc = ( function_exists( 'mb_strlen' ) )
@@ -93,16 +101,34 @@ class Jetpack_Admin {
93
  $module_array['configure_url'] = Jetpack::module_configuration_url( $module );
94
 
95
  ob_start();
 
 
 
 
 
 
96
  do_action( 'jetpack_learn_more_button_' . $module );
97
  $module_array['learn_more_button'] = ob_get_clean();
98
 
99
  ob_start();
100
  if ( Jetpack::is_active() && has_action( 'jetpack_module_more_info_connected_' . $module ) ) {
 
 
 
 
 
 
101
  do_action( 'jetpack_module_more_info_connected_' . $module );
102
  } else {
 
 
 
 
 
 
103
  do_action( 'jetpack_module_more_info_' . $module );
104
  }
105
-
106
  /**
107
  * Filter the long description of a module.
108
  *
@@ -127,13 +153,25 @@ class Jetpack_Admin {
127
  * add_filter( 'jetpack_search_terms_$module', 'jetpack_$module_search_terms' );
128
  *
129
  * @since 3.5.0
130
- * @param string The search terms (comma separated)
 
131
  */
132
  echo apply_filters( 'jetpack_search_terms_' . $module, '' );
133
  $module_array['search_terms'] = ob_get_clean();
134
 
135
  $module_array['configurable'] = false;
136
- if ( current_user_can( 'manage_options' ) && apply_filters( 'jetpack_module_configurable_' . $module, false ) ) {
 
 
 
 
 
 
 
 
 
 
 
137
  $module_array['configurable'] = sprintf( '<a href="%1$s">%2$s</a>', esc_url( Jetpack::module_configuration_url( $module ) ), __( 'Configure', 'jetpack' ) );
138
  }
139
 
74
  $jetpack_active = Jetpack::is_active() || Jetpack::is_development_mode();
75
  foreach ( $available_modules as $module ) {
76
  if ( $module_array = $this->jetpack->get_module( $module ) ) {
77
+ /**
78
+ * Filters each module's short description.
79
+ *
80
+ * @since 3.0.0
81
+ *
82
+ * @param string $module_array['description'] Module description.
83
+ * @param string $module Module slug.
84
+ */
85
  $short_desc = apply_filters( 'jetpack_short_module_description', $module_array['description'], $module );
86
  // Fix: correct multibyte strings truncate with checking for mbstring extension
87
  $short_desc_trunc = ( function_exists( 'mb_strlen' ) )
101
  $module_array['configure_url'] = Jetpack::module_configuration_url( $module );
102
 
103
  ob_start();
104
+ /**
105
+ * Allow the display of a "Learn More" button.
106
+ * The dynamic part of the action, $module, is the module slug.
107
+ *
108
+ * @since 3.0.0
109
+ */
110
  do_action( 'jetpack_learn_more_button_' . $module );
111
  $module_array['learn_more_button'] = ob_get_clean();
112
 
113
  ob_start();
114
  if ( Jetpack::is_active() && has_action( 'jetpack_module_more_info_connected_' . $module ) ) {
115
+ /**
116
+ * Allow the display of information text when Jetpack is connected to WordPress.com.
117
+ * The dynamic part of the action, $module, is the module slug.
118
+ *
119
+ * @since 3.0.0
120
+ */
121
  do_action( 'jetpack_module_more_info_connected_' . $module );
122
  } else {
123
+ /**
124
+ * Allow the display of information text when Jetpack is connected to WordPress.com.
125
+ * The dynamic part of the action, $module, is the module slug.
126
+ *
127
+ * @since 3.0.0
128
+ */
129
  do_action( 'jetpack_module_more_info_' . $module );
130
  }
131
+
132
  /**
133
  * Filter the long description of a module.
134
  *
153
  * add_filter( 'jetpack_search_terms_$module', 'jetpack_$module_search_terms' );
154
  *
155
  * @since 3.5.0
156
+ *
157
+ * @param string The search terms (comma separated).
158
  */
159
  echo apply_filters( 'jetpack_search_terms_' . $module, '' );
160
  $module_array['search_terms'] = ob_get_clean();
161
 
162
  $module_array['configurable'] = false;
163
+ if (
164
+ current_user_can( 'manage_options' ) &&
165
+ /**
166
+ * Allow the display of a configuration link in the Jetpack Settings screen.
167
+ *
168
+ * @since 3.0.0
169
+ *
170
+ * @param string $module Module name.
171
+ * @param bool false Should the Configure module link be displayed? Default to false.
172
+ */
173
+ apply_filters( 'jetpack_module_configurable_' . $module, false )
174
+ ) {
175
  $module_array['configurable'] = sprintf( '<a href="%1$s">%2$s</a>', esc_url( Jetpack::module_configuration_url( $module ) ), __( 'Configure', 'jetpack' ) );
176
  }
177
 
class.jetpack-autoupdate.php CHANGED
@@ -31,8 +31,8 @@ class Jetpack_Autoupdate {
31
  }
32
 
33
  private function __construct() {
34
- $this->updates_allowed = Jetpack::is_module_active( 'manage' );
35
 
 
36
  // Only run automatic updates if a user as opted in by activating the manage module.
37
  if ( $this->updates_allowed ) {
38
  add_filter( 'auto_update_plugin', array( $this, 'autoupdate_plugin' ), 10, 2 );
@@ -41,14 +41,6 @@ class Jetpack_Autoupdate {
41
  add_action( 'automatic_updates_complete', array( $this, 'automatic_updates_complete' ), 10, 1 );
42
  add_action( 'shutdown', array( $this, 'log_results' ) );
43
  }
44
-
45
- // Anytime WordPress saves update data, we'll want to update our Jetpack option as well.
46
- if ( is_main_site() ) {
47
- add_action( 'set_site_transient_update_plugins', array( $this, 'save_update_data' ) );
48
- add_action( 'set_site_transient_update_themes', array( $this, 'save_update_data' ) );
49
- add_action( 'set_site_transient_update_core', array( $this, 'save_update_data' ) );
50
- }
51
-
52
  }
53
 
54
  function autoupdate_plugin( $update, $item ) {
@@ -89,70 +81,6 @@ class Jetpack_Autoupdate {
89
  $this->autoupdate_expected[ $type ][] = $item;
90
  }
91
 
92
- /**
93
- * Calculates available updates and saves them to a Jetpack Option
94
- * Update data is saved in the following schema:
95
- *
96
- * array (
97
- * 'plugins' => (int) number of plugin updates available
98
- * 'themes' => (int) number of theme updates available
99
- * 'wordpress' => (int) number of wordpress core updates available
100
- * 'translations' => (int) number of translation updates available
101
- * 'total' => (int) total of all available updates
102
- * 'wp_version' => (string) the current version of WordPress that is running
103
- * 'wp_update_version' => (string) the latest available version of WordPress, only present if a WordPress update is needed
104
- * 'site_is_version_controlled' => (bool) is the site under version control
105
- * )
106
- */
107
- function save_update_data() {
108
- global $wp_version;
109
-
110
- $update_data = wp_get_update_data();
111
-
112
- // Stores the individual update counts as well as the total count.
113
- if ( isset( $update_data['counts'] ) ) {
114
- $updates = $update_data['counts'];
115
- }
116
-
117
- // Stores the current version of WordPress.
118
- $updates['wp_version'] = $wp_version;
119
-
120
- // If we need to update WordPress core, let's find the latest version number.
121
- if ( ! empty( $updates['wordpress'] ) ) {
122
- $cur = get_preferred_from_update_core();
123
- if ( isset( $cur->response ) && 'upgrade' === $cur->response ) {
124
- $updates['wp_update_version'] = $cur->current;
125
- }
126
- }
127
-
128
- $updates['site_is_version_controlled'] = (bool) $this->is_version_controlled();
129
- Jetpack_Options::update_option( 'updates', $updates );
130
- }
131
-
132
- /**
133
- * Finds out if a site is using a version control system.
134
- * We'll store that information as a transient with a 24 expiration.
135
- * We only need to check once per day.
136
- *
137
- * @return string ( '1' | '0' )
138
- */
139
- function is_version_controlled() {
140
- $is_version_controlled = get_transient( 'jetpack_site_is_vcs' );
141
-
142
- if ( false === $is_version_controlled ) {
143
- include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
144
- $updater = new WP_Automatic_Updater();
145
- $is_version_controlled = strval( $updater->is_vcs_checkout( $context = ABSPATH ) );
146
- // transients should not be empty
147
- if ( empty( $is_version_controlled ) ) {
148
- $is_version_controlled = '0';
149
- }
150
- set_transient( 'jetpack_site_is_vcs', $is_version_controlled, DAY_IN_SECONDS );
151
- }
152
-
153
- return $is_version_controlled;
154
- }
155
-
156
  /**
157
  * On completion of an automatic update, let's store the results.
158
  *
@@ -190,26 +118,38 @@ class Jetpack_Autoupdate {
190
  * @param $items 'plugin' or 'theme'
191
  */
192
  function log_items( $items ) {
193
- $items_updated = 0;
194
- $items_failed = 0;
195
- $item_results = $this->get_successful_updates( $items );
 
196
 
197
  foreach( $this->autoupdate_expected[ $items ] as $item ) {
198
  if ( in_array( $item, $item_results ) ) {
199
- $items_updated++;
200
  $this->log[ $items ][ $item ] = true;
201
  } else {
202
- $items_failed++;
203
  $this->log[ $items ][ $item ] = new WP_Error( "$items-fail", $this->get_error_message( $item, $type = $items ) );
 
204
  }
205
  }
206
 
207
- if ( $items_updated ) {
208
- $this->jetpack->stat( "autoupdates/$items-success", $items_updated );
209
  }
210
 
211
- if ( $items_failed ) {
212
- $this->jetpack->stat( "autoupdates/$items-fail", $items_failed );
 
 
 
 
 
 
 
 
 
 
213
  }
214
 
215
  }
@@ -271,4 +211,4 @@ class Jetpack_Autoupdate {
271
  }
272
 
273
  }
274
- Jetpack_Autoupdate::init();
31
  }
32
 
33
  private function __construct() {
 
34
 
35
+ $this->updates_allowed = Jetpack::is_module_active( 'manage' );
36
  // Only run automatic updates if a user as opted in by activating the manage module.
37
  if ( $this->updates_allowed ) {
38
  add_filter( 'auto_update_plugin', array( $this, 'autoupdate_plugin' ), 10, 2 );
41
  add_action( 'automatic_updates_complete', array( $this, 'automatic_updates_complete' ), 10, 1 );
42
  add_action( 'shutdown', array( $this, 'log_results' ) );
43
  }
 
 
 
 
 
 
 
 
44
  }
45
 
46
  function autoupdate_plugin( $update, $item ) {
81
  $this->autoupdate_expected[ $type ][] = $item;
82
  }
83
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  /**
85
  * On completion of an automatic update, let's store the results.
86
  *
118
  * @param $items 'plugin' or 'theme'
119
  */
120
  function log_items( $items ) {
121
+ $num_items_updated = 0;
122
+ $num_items_failed = 0;
123
+ $item_results = $this->get_successful_updates( $items );
124
+ $items_failed = array();
125
 
126
  foreach( $this->autoupdate_expected[ $items ] as $item ) {
127
  if ( in_array( $item, $item_results ) ) {
128
+ $num_items_updated++;
129
  $this->log[ $items ][ $item ] = true;
130
  } else {
131
+ $num_items_failed++;
132
  $this->log[ $items ][ $item ] = new WP_Error( "$items-fail", $this->get_error_message( $item, $type = $items ) );
133
+ $items_failed[] = $item;
134
  }
135
  }
136
 
137
+ if ( $num_items_updated ) {
138
+ $this->jetpack->stat( "autoupdates/$items-success", $num_items_updated );
139
  }
140
 
141
+ if ( $num_items_failed ) {
142
+ // bump stats
143
+ $this->jetpack->stat( "autoupdates/$items-fail", $num_items_failed );
144
+ Jetpack::load_xml_rpc_client();
145
+ $xml = new Jetpack_IXR_Client( array(
146
+ 'user_id' => get_current_user_id()
147
+ ) );
148
+ $request = array(
149
+ 'plugins' => $items_failed,
150
+ 'blog_id' => Jetpack_Options::get_option( 'id' ),
151
+ );
152
+ $xml->query( 'jetpack.debug_autoupdate', $request );
153
  }
154
 
155
  }
211
  }
212
 
213
  }
214
+ Jetpack_Autoupdate::init();
class.jetpack-cli.php CHANGED
@@ -191,7 +191,7 @@ class Jetpack_CLI extends WP_CLI_Command {
191
 
192
  switch ( $action ) {
193
  case 'options':
194
- $options_to_reset = Jetpack::get_jetapck_options_for_reset();
195
 
196
  // Reset the Jetpack options
197
  _e( "Resetting Jetpack Options...\n", "jetpack" );
@@ -326,7 +326,7 @@ class Jetpack_CLI extends WP_CLI_Command {
326
  }
327
 
328
  /**
329
- * Manage Jetpack Protect Settings
330
  *
331
  * ## OPTIONS
332
  *
@@ -465,11 +465,14 @@ class Jetpack_CLI extends WP_CLI_Command {
465
  */
466
  public function options( $args, $assoc_args ) {
467
  $action = isset( $args[0] ) ? $args[0] : 'list';
468
- $safe_to_modify = Jetpack::get_jetapck_options_for_reset();
469
 
470
  // Jumpstart is special
471
  array_push( $safe_to_modify, 'jumpstart' );
472
 
 
 
 
473
  if ( ! in_array( $action, array( 'list', 'get', 'delete', 'update' ) ) ) {
474
  WP_CLI::error( sprintf( __( '%s is not a valid command.', 'jetpack' ), $action ) );
475
  }
@@ -501,22 +504,13 @@ class Jetpack_CLI extends WP_CLI_Command {
501
  WP_CLI::success( "\t" . $option );
502
  break;
503
  case 'delete':
504
- // Check if it's safe to modify
505
- if ( ! in_array( $args[1], $safe_to_modify ) ) {
506
- WP_CLI::error( __( 'It is not recommended to delete this option.', 'jetpack' ) );
507
- }
508
-
509
- // Are you sure?
510
- jetpack_cli_are_you_sure();
511
 
512
  Jetpack_Options::delete_option( $args[1] );
513
  WP_CLI::success( sprintf( __( 'Deleted option: %s', 'jetpack' ), $args[1] ) );
514
  break;
515
  case 'update':
516
- // Check if it's safe to modify
517
- if ( ! in_array( $args[1], $safe_to_modify ) ) {
518
- WP_CLI::error( __( 'It is not recommended to change this option.', 'jetpack' ) );
519
- }
520
 
521
  // Updating arrays would get pretty tricky...
522
  $value = Jetpack_Options::get_option( $args[1] );
@@ -573,17 +567,30 @@ class Jetpack_CLI extends WP_CLI_Command {
573
  *
574
  * Written outside of the class so it's not listed as an executable command w/ 'wp jetpack'
575
  *
 
576
  * @param $error_msg string (optional)
577
  */
578
- function jetpack_cli_are_you_sure( $error_msg = false ) {
579
  $cli = new Jetpack_CLI();
580
 
581
  // Default cancellation message
582
  if ( ! $error_msg ) {
583
- $error_msg = sprintf( __( 'Action cancelled. Have a question? %sjetpack.me/support%s', 'jetpack' ), $cli->green_open, $cli->color_close );
 
 
 
 
 
 
 
 
 
 
 
 
584
  }
585
 
586
- WP_CLI::line( _x( 'Are you sure? This cannot be undone. Type "yes" to continue:', '"yes" is a command. Do not translate that.', 'jetpack' ) );
587
  $handle = fopen( "php://stdin", "r" );
588
  $line = fgets( $handle );
589
  if ( 'yes' != trim( $line ) ){
191
 
192
  switch ( $action ) {
193
  case 'options':
194
+ $options_to_reset = Jetpack::get_jetpack_options_for_reset();
195
 
196
  // Reset the Jetpack options
197
  _e( "Resetting Jetpack Options...\n", "jetpack" );
326
  }
327
 
328
  /**
329
+ * Manage Protect Settings
330
  *
331
  * ## OPTIONS
332
  *
465
  */
466
  public function options( $args, $assoc_args ) {
467
  $action = isset( $args[0] ) ? $args[0] : 'list';
468
+ $safe_to_modify = Jetpack::get_jetpack_options_for_reset();
469
 
470
  // Jumpstart is special
471
  array_push( $safe_to_modify, 'jumpstart' );
472
 
473
+ // Is the option flagged as unsafe?
474
+ $flagged = ! in_array( $args[1], $safe_to_modify );
475
+
476
  if ( ! in_array( $action, array( 'list', 'get', 'delete', 'update' ) ) ) {
477
  WP_CLI::error( sprintf( __( '%s is not a valid command.', 'jetpack' ), $action ) );
478
  }
504
  WP_CLI::success( "\t" . $option );
505
  break;
506
  case 'delete':
507
+ jetpack_cli_are_you_sure( $flagged );
 
 
 
 
 
 
508
 
509
  Jetpack_Options::delete_option( $args[1] );
510
  WP_CLI::success( sprintf( __( 'Deleted option: %s', 'jetpack' ), $args[1] ) );
511
  break;
512
  case 'update':
513
+ jetpack_cli_are_you_sure( $flagged );
 
 
 
514
 
515
  // Updating arrays would get pretty tricky...
516
  $value = Jetpack_Options::get_option( $args[1] );
567
  *
568
  * Written outside of the class so it's not listed as an executable command w/ 'wp jetpack'
569
  *
570
+ * @param $flagged bool false = normal option | true = flagged by get_jetpack_options_for_reset()
571
  * @param $error_msg string (optional)
572
  */
573
+ function jetpack_cli_are_you_sure( $flagged = false, $error_msg = false ) {
574
  $cli = new Jetpack_CLI();
575
 
576
  // Default cancellation message
577
  if ( ! $error_msg ) {
578
+ $error_msg =
579
+ __( 'Action cancelled. Have a question?', 'jetpack' )
580
+ . ' '
581
+ . $cli->green_open
582
+ . 'jetpack.me/support'
583
+ . $cli->color_close;
584
+ }
585
+
586
+ if ( ! $flagged ) {
587
+ $prompt_message = __( 'Are you sure? This cannot be undone. Type "yes" to continue:', '"yes" is a command. Do not translate that.', 'jetpack' );
588
+ } else {
589
+ /* translators: Don't translate the word yes here. */
590
+ $prompt_message = __( 'Are you sure? Modifying this option may disrupt your Jetpack connection. Type "yes" to continue.', 'jetpack' );
591
  }
592
 
593
+ WP_CLI::line( $prompt_message );
594
  $handle = fopen( "php://stdin", "r" );
595
  $line = fgets( $handle );
596
  if ( 'yes' != trim( $line ) ){
class.jetpack-client-server.php CHANGED
@@ -117,6 +117,7 @@ class Jetpack_Client_Server {
117
  }
118
 
119
  // Sync all registers options and constants
 
120
  do_action( 'jetpack_sync_all_registered_options' );
121
 
122
  // Start nonce cleaner
117
  }
118
 
119
  // Sync all registers options and constants
120
+ /** This action is documented in class.jetpack.php */
121
  do_action( 'jetpack_sync_all_registered_options' );
122
 
123
  // Start nonce cleaner
class.jetpack-client.php CHANGED
@@ -135,14 +135,14 @@ class Jetpack_Client {
135
  */
136
  public static function _wp_remote_request( $url, $args, $set_fallback = false ) {
137
  /**
138
- * SSL verification (`sslverify`) for the JetpackClient remote request
139
  * defaults to off, use this filter to force it on.
140
- *
141
  * Return `true` to ENABLE SSL verification, return `false`
142
  * to DISABLE SSL verification.
143
- *
144
  * @since 3.6
145
- *
146
  * @param bool Whether to force `sslverify` or not.
147
  */
148
  if ( apply_filters( 'jetpack_client_verify_ssl_certs', false ) ) {
135
  */
136
  public static function _wp_remote_request( $url, $args, $set_fallback = false ) {
137
  /**
138
+ * SSL verification (`sslverify`) for the JetpackClient remote request
139
  * defaults to off, use this filter to force it on.
140
+ *
141
  * Return `true` to ENABLE SSL verification, return `false`
142
  * to DISABLE SSL verification.
143
+ *
144
  * @since 3.6
145
+ *
146
  * @param bool Whether to force `sslverify` or not.
147
  */
148
  if ( apply_filters( 'jetpack_client_verify_ssl_certs', false ) ) {
class.jetpack-ixr-client.php CHANGED
@@ -8,7 +8,7 @@
8
  *
9
  */
10
  class Jetpack_IXR_Client extends IXR_Client {
11
- var $jetpack_args = null;
12
 
13
  function __construct( $args = array(), $path = false, $port = 80, $timeout = 15 ) {
14
  $defaults = array(
@@ -97,7 +97,7 @@ class Jetpack_IXR_Client extends IXR_Client {
97
  * @since 1.5
98
  */
99
  class Jetpack_IXR_ClientMulticall extends Jetpack_IXR_Client {
100
- var $calls = array();
101
 
102
  function __construct( $args = array(), $path = false, $port = 80, $timeout = 15 ) {
103
  parent::__construct( $args, $path, $port, $timeout );
8
  *
9
  */
10
  class Jetpack_IXR_Client extends IXR_Client {
11
+ public $jetpack_args = null;
12
 
13
  function __construct( $args = array(), $path = false, $port = 80, $timeout = 15 ) {
14
  $defaults = array(
97
  * @since 1.5
98
  */
99
  class Jetpack_IXR_ClientMulticall extends Jetpack_IXR_Client {
100
+ public $calls = array();
101
 
102
  function __construct( $args = array(), $path = false, $port = 80, $timeout = 15 ) {
103
  parent::__construct( $args, $path, $port, $timeout );
class.jetpack-jitm.php ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Jetpack just in time messaging through out the admin
5
+ *
6
+ * @since 3.7.0
7
+ */
8
+ class Jetpack_JITM {
9
+
10
+ /**
11
+ * @var Jetpack_JITM
12
+ **/
13
+ private static $instance = null;
14
+
15
+ static function init() {
16
+ if ( is_null( self::$instance ) ) {
17
+ self::$instance = new Jetpack_JITM;
18
+ }
19
+
20
+ return self::$instance;
21
+ }
22
+
23
+ private function __construct() {
24
+ global $pagenow;
25
+ $jetpack_hide_jitm = Jetpack_Options::get_option( 'hide_jitm' );
26
+ if ( 'media-new.php' == $pagenow && ! Jetpack::is_module_active( 'photon' ) && 'hide' != $jetpack_hide_jitm['photon'] ) {
27
+ add_action( 'admin_enqueue_scripts', array( $this, 'jitm_enqueue_files' ) );
28
+ add_action( 'post-plupload-upload-ui', array( $this, 'photon_msg' ) );
29
+ }
30
+ }
31
+
32
+ /*
33
+ * Present Photon just in time activation msg
34
+ *
35
+ */
36
+ function photon_msg() {
37
+ if ( current_user_can( 'jetpack_manage_modules' ) ) { ?>
38
+ <div class="jp-jitm">
39
+ <a href="#" data-module="photon" class="dismiss"><span class="genericon genericon-close"></span></a>
40
+ <div class="jp-emblem">
41
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0" y="0" viewBox="0 0 172.9 172.9" enable-background="new 0 0 172.9 172.9" xml:space="preserve">
42
+ <path d="M86.4 0C38.7 0 0 38.7 0 86.4c0 47.7 38.7 86.4 86.4 86.4s86.4-38.7 86.4-86.4C172.9 38.7 134.2 0 86.4 0zM83.1 106.6l-27.1-6.9C49 98 45.7 90.1 49.3 84l33.8-58.5V106.6zM124.9 88.9l-33.8 58.5V66.3l27.1 6.9C125.1 74.9 128.4 82.8 124.9 88.9z"/>
43
+ </svg>
44
+ </div>
45
+ <p>
46
+ <?php _e( 'Deliver super-fast images to your visitors that are automatically optimized for any device.', 'jetpack' ); ?>
47
+ </p>
48
+ <p>
49
+ <a href="#" data-module="photon" class="activate button button-jetpack">
50
+ <?php esc_html_e( 'Activate Photon', 'jetpack' ); ?>
51
+ </a>
52
+ </p>
53
+ </div>
54
+ <?php
55
+ //jitm is being viewed, track it
56
+ $jetpack = Jetpack::init();
57
+ $jetpack->stat( 'jitm', 'photon-viewed' );
58
+ $jetpack->do_stats( 'server_side' );
59
+ }
60
+ }
61
+
62
+ /*
63
+ * Function to enqueue jitm css and js
64
+ */
65
+ function jitm_enqueue_files( $hook ) {
66
+
67
+ $wp_styles = new WP_Styles();
68
+ $min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
69
+ wp_enqueue_style( 'jetpack-jitm-css', plugins_url( "css/jetpack-admin-jitm{$min}.css", JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION . '-20121016' );
70
+ $wp_styles->add_data( 'jetpack-jitm-css', 'rtl', true );
71
+
72
+ // Enqueue javascript to handle jitm notice events
73
+ wp_enqueue_script( 'jetpack-jitm-js', plugins_url( '_inc/jetpack-jitm.js', JETPACK__PLUGIN_FILE ),
74
+ array( 'jquery' ), JETPACK__VERSION, true );
75
+ wp_localize_script(
76
+ 'jetpack-jitm-js',
77
+ 'jitmL10n',
78
+ array(
79
+ 'ajaxurl' => admin_url( 'admin-ajax.php' ),
80
+ 'jitm_nonce' => wp_create_nonce( 'jetpack-jitm-nonce' ),
81
+ 'photon_msgs' => array(
82
+ 'success' => __( 'Success! Photon is now actively optimizing and serving your images for free.', 'jetpack' ),
83
+ 'fail' => __( 'We are sorry but unfortunately Photon did not activate.', 'jetpack' )
84
+ )
85
+ )
86
+ );
87
+ }
88
+ }
89
+ /**
90
+ * Filter to turn off all just in time messages
91
+ *
92
+ * @since 3.7.0
93
+ *
94
+ * @param bool true Whether to show just in time messages.
95
+ */
96
+ if ( apply_filters( 'jetpack_just_in_time_msgs', false ) ) {
97
+ Jetpack_JITM::init();
98
+ }
class.jetpack-modules-list-table.php CHANGED
@@ -18,6 +18,13 @@ class Jetpack_Modules_List_Table extends WP_List_Table {
18
 
19
  $this->items = $this->all_items = Jetpack_Admin::init()->get_modules();
20
  $this->items = $this->filter_displayed_table_items( $this->items );
 
 
 
 
 
 
 
21
  $this->items = apply_filters( 'jetpack_modules_list_table_items', $this->items );
22
  $this->_column_headers = array( $this->get_columns(), array(), array(), 'name' );
23
  $modal_info = isset( $_GET['info'] ) ? $_GET['info'] : false;
@@ -61,7 +68,7 @@ class Jetpack_Modules_List_Table extends WP_List_Table {
61
  wp_enqueue_script( 'jetpack-modules-list-table' );
62
 
63
  /**
64
- * Filters the js_templates callback value
65
  *
66
  * @since 3.6.0
67
  *
@@ -86,7 +93,7 @@ class Jetpack_Modules_List_Table extends WP_List_Table {
86
  <span class='info'>{{{ item.name }}}</span>
87
  <div class="row-actions">
88
  <span class="dep-msg"><?php _ex( 'WordPress now has Site Icon built in!', '"Site Icon" is the feature name.', 'jetpack' ); ?></span>
89
- <span class='configure'><a href="<?php esc_html_e( admin_url( 'options-general.php' ), 'jetpack' ); ?>"><?php _e( 'configure' , 'jetpack' ); ?></a></span>
90
  </div>
91
  </td>
92
  </tr>
@@ -294,12 +301,16 @@ class Jetpack_Modules_List_Table extends WP_List_Table {
294
 
295
  function column_description( $item ) {
296
  ob_start();
 
297
  echo apply_filters( 'jetpack_short_module_description', $item['description'], $item['module'] );
 
298
  do_action( 'jetpack_learn_more_button_' . $item['module'] );
299
  echo '<div id="more-info-' . $item['module'] . '" class="more-info">';
300
  if ( Jetpack::is_active() && has_action( 'jetpack_module_more_info_connected_' . $item['module'] ) ) {
 
301
  do_action( 'jetpack_module_more_info_connected_' . $item['module'] );
302
  } else {
 
303
  do_action( 'jetpack_module_more_info_' . $item['module'] );
304
  }
305
  echo '</div>';
18
 
19
  $this->items = $this->all_items = Jetpack_Admin::init()->get_modules();
20
  $this->items = $this->filter_displayed_table_items( $this->items );
21
+ /**
22
+ * Filters the list of modules available to be displayed in the Jetpack Settings screen.
23
+ *
24
+ * @since 3.0.0
25
+ *
26
+ * @param array $this->items Array of Jetpack modules.
27
+ */
28
  $this->items = apply_filters( 'jetpack_modules_list_table_items', $this->items );
29
  $this->_column_headers = array( $this->get_columns(), array(), array(), 'name' );
30
  $modal_info = isset( $_GET['info'] ) ? $_GET['info'] : false;
68
  wp_enqueue_script( 'jetpack-modules-list-table' );
69
 
70
  /**
71
+ * Filters the js_templates callback value.
72
  *
73
  * @since 3.6.0
74
  *
93
  <span class='info'>{{{ item.name }}}</span>
94
  <div class="row-actions">
95
  <span class="dep-msg"><?php _ex( 'WordPress now has Site Icon built in!', '"Site Icon" is the feature name.', 'jetpack' ); ?></span>
96
+ <span class='configure'><a href="<?php esc_html_e( admin_url( 'customize.php?autofocus[control]=site_icon' ), 'jetpack' ); ?>"><?php _e( 'Configure' , 'jetpack' ); ?></a></span>
97
  </div>
98
  </td>
99
  </tr>
301
 
302
  function column_description( $item ) {
303
  ob_start();
304
+ /** This action is documented in class.jetpack-admin.php */
305
  echo apply_filters( 'jetpack_short_module_description', $item['description'], $item['module'] );
306
+ /** This action is documented in class.jetpack-admin.php */
307
  do_action( 'jetpack_learn_more_button_' . $item['module'] );
308
  echo '<div id="more-info-' . $item['module'] . '" class="more-info">';
309
  if ( Jetpack::is_active() && has_action( 'jetpack_module_more_info_connected_' . $item['module'] ) ) {
310
+ /** This action is documented in class.jetpack-admin.php */
311
  do_action( 'jetpack_module_more_info_connected_' . $item['module'] );
312
  } else {
313
+ /** This action is documented in class.jetpack-admin.php */
314
  do_action( 'jetpack_module_more_info_' . $item['module'] );
315
  }
316
  echo '</div>';
class.jetpack-network.php CHANGED
@@ -34,9 +34,9 @@ class Jetpack_Network {
34
  * @var array
35
  */
36
  private $setting_defaults = array(
37
- 'auto-connect' => 0,
38
- 'sub-site-connection-override' => 1,
39
- // 'manage_auto_activated_modules' => 0,
40
  );
41
 
42
  /**
@@ -51,29 +51,28 @@ class Jetpack_Network {
51
  * Sanity check to ensure the install is Multisite and we
52
  * are in Network Admin
53
  */
54
- if (is_multisite() && is_network_admin()) {
55
- add_action('network_admin_menu', array($this, 'add_network_admin_menu'));
56
- add_action('network_admin_edit_jetpack-network-settings', array($this, 'save_network_settings_page'), 10, 0);
57
  add_filter( 'admin_body_class', array( $this, 'body_class' ) );
58
 
59
- if( isset( $_GET['page'] ) && 'jetpack' == $_GET['page'] ) {
60
- add_action( 'admin_init', array ( $this, 'jetpack_sites_list' ) );
61
  }
62
  }
63
 
64
  /*
65
  * Things that should only run on multisite
66
  */
67
- if( is_multisite() && is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) {
68
  add_action( 'wp_before_admin_bar_render', array( $this, 'add_to_menubar' ) );
69
 
70
-
71
  /*
72
  * If admin wants to automagically register new sites set the hook here
73
  *
74
  * This is a hacky way because xmlrpc is not available on wpmu_new_blog
75
  */
76
- if( $this->get_option( 'auto-connect' ) == 1 ) {
77
  add_action( 'wpmu_new_blog', array( $this, 'do_automatically_add_new_site' ) );
78
  }
79
  }
@@ -87,27 +86,29 @@ class Jetpack_Network {
87
  * Modules can be set in Network Admin > Jetpack > Settings
88
  *
89
  * @since 2.9
 
90
  * @param array $modules
 
91
  * @return array
92
  **/
93
  public function set_auto_activated_modules( $modules ) {
94
  return $modules;
95
 
96
- /* Remove the toggles for 2.9, re-evaluate how they're done and added for a 3.0 release. They don't feel quite right yet.
97
  if( 1 == $this->get_option( 'manage_auto_activated_modules' ) ) {
98
  return (array) $this->get_option( 'modules' );
99
  } else {
100
  return $modules;
101
  }
102
- */
103
  }
104
 
105
-
106
  /**
107
  * Registers new sites upon creation
108
  *
109
  * @since 2.9
110
- * @uses wpmu_new_blog
 
111
  * @param int $blog_id
112
  **/
113
  public function do_automatically_add_new_site( $blog_id ) {
@@ -116,7 +117,7 @@ class Jetpack_Network {
116
 
117
  /**
118
  * Adds .network-admin class to the body tag
119
- * Helps distiguish network admin JP styles from regular site JP styles
120
  *
121
  * @since 2.9
122
  */
@@ -133,7 +134,7 @@ class Jetpack_Network {
133
  * @return Jetpack_Network
134
  */
135
  public static function init() {
136
- if (!self::$instance || !is_a(self::$instance, 'Jetpack_Network')) {
137
  self::$instance = new Jetpack_Network;
138
  }
139
 
@@ -161,11 +162,14 @@ class Jetpack_Network {
161
  * @since 2.9
162
  **/
163
  public function deactivate() {
164
- if( !is_network_admin() ) return; // Only fire if in network admin
 
 
 
165
 
166
  $sites = $this->wp_get_sites();
167
 
168
- foreach( $sites as $s ) {
169
  switch_to_blog( $s->blog_id );
170
  $active_plugins = get_option( 'active_plugins' );
171
 
@@ -175,7 +179,7 @@ class Jetpack_Network {
175
  * individually (before network activation) stay activated
176
  * when the network deactivation occurs
177
  */
178
- if( !in_array( 'jetpack/jetpack.php', $active_plugins ) ) {
179
  Jetpack::disconnect();
180
  }
181
  }
@@ -183,23 +187,24 @@ class Jetpack_Network {
183
  }
184
 
185
  /**
186
- * Adds a link to the Jetpack Network Admin page in the netowrk admin menu bar.
187
  *
188
  * @since 2.9
189
  **/
190
- public function add_to_menubar () {
191
  global $wp_admin_bar;
192
  // Don't show for logged out users or single site mode.
193
- if ( ! is_user_logged_in() || ! is_multisite() )
194
- return;
195
-
196
- $wp_admin_bar->add_node( array(
197
- 'parent' => 'network-admin',
198
- 'id' => 'network-admin-jetpack',
199
- 'title' => __( 'Jetpack' , 'jetpack' ),
200
- 'href' => $this->get_url( 'network_admin_page' ),
 
201
  ) );
202
- }
203
 
204
  /**
205
  * Returns various URL strings. Factory like
@@ -213,40 +218,46 @@ class Jetpack_Network {
213
  * - subsitedisconnect: Pass array( 'name' => 'subsitedisconnect', 'site_id' => SITE_ID )
214
  *
215
  * @since 2.9
 
216
  * @param Mixed $args
 
217
  * @return String
218
  **/
219
  public function get_url( $args ) {
220
  $url = null; // Default url value
221
 
222
- if( is_string( $args ) )
223
- $name = $args;
224
- else
225
- $name = $args['name'];
226
-
227
 
228
- switch( $name ) {
229
- case 'subsiteregister':
230
- if( !isset( $args['site_id'] ) ) {
231
- break; // If there is not a site id present we cannot go further
232
- }
233
- $url = network_admin_url(
234
- 'admin.php?page=jetpack&action=subsiteregister&site_id='
235
- . $args['site_id'] );
236
- break;
237
-
238
- case 'network_admin_page':
239
- $url = network_admin_url( 'admin.php?page=jetpack' );
240
- break;
241
- case 'subsitedisconnect':
242
- if( !isset( $args['site_id'] ) ) {
243
- break; // If there is not a site id present we cannot go further
244
- }
245
- $url = network_admin_url(
246
- 'admin.php?page=jetpack&action=subsitedisconnect&site_id='
247
- . $args['site_id'] );
248
- break;
 
 
 
249
  }
 
250
  return $url;
251
  }
252
 
@@ -256,9 +267,9 @@ class Jetpack_Network {
256
  * @since 2.9
257
  */
258
  public function add_network_admin_menu() {
259
- add_menu_page( __( 'Jetpack', 'jetpack' ), __( 'Jetpack', 'jetpack' ), 'manage_network_plugins', 'jetpack', array( $this, 'network_admin_page' ), 'div', 3 );
260
- add_submenu_page( 'jetpack', __( 'Jetpack Sites', 'jetpack' ), __( 'Sites', 'jetpack' ), 'manage_sites', 'jetpack', array( $this, 'network_admin_page' ) );
261
- add_submenu_page( 'jetpack', __( 'Settings', 'jetpack' ), __( 'Settings', 'jetpack' ), 'manage_network_plugins', 'jetpack-settings', array( $this, 'render_network_admin_settings_page' ) );
262
 
263
  /**
264
  * As jetpack_register_genericons is by default fired off a hook,
@@ -268,18 +279,19 @@ class Jetpack_Network {
268
  require_once( JETPACK__PLUGIN_DIR . '_inc/genericons.php' );
269
  jetpack_register_genericons();
270
 
271
- if ( ! wp_style_is( 'jetpack-icons', 'registered' ) )
272
  wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION );
 
273
 
274
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_menu_css' ) );
275
  }
276
 
277
- /**
278
  * Adds JP menu icon
279
  *
280
  * @since 2.9
281
  **/
282
- function admin_menu_css() {
283
  wp_enqueue_style( 'jetpack-icons' );
284
  }
285
 
@@ -292,8 +304,8 @@ class Jetpack_Network {
292
  public function jetpack_sites_list() {
293
  Jetpack::init();
294
 
295
- if( isset( $_GET['action'] ) ) {
296
- switch( $_GET['action'] ) {
297
  case 'subsiteregister':
298
  /*
299
  * @todo check_admin_referer( 'jetpack-subsite-register' );
@@ -301,19 +313,20 @@ class Jetpack_Network {
301
  Jetpack::log( 'subsiteregister' );
302
 
303
  // If !$_GET['site_id'] stop registration and error
304
- if( !isset( $_GET['site_id'] ) || empty( $_GET['site_id'] ) ) {
305
- // Log error to state cookie for display later
306
- /**
307
- * @todo Make state messages show on Jetpack NA pages
308
- **/
309
- Jetpack::state( 'missing_site_id', 'Site ID must be provided to register a sub-site' );
310
  break;
311
  }
312
 
313
  // Send data to register endpoint and retrieve shadow blog details
314
  $result = $this->do_subsiteregister();
315
- $url = $this->get_url( 'network_admin_page' );
316
- if( is_wp_error( $result ) ) {
 
317
  $url = add_query_arg( 'action', 'connection_failed', $url );
318
  } else {
319
  $url = add_query_arg( 'action', 'connected', $url );
@@ -321,16 +334,18 @@ class Jetpack_Network {
321
 
322
  wp_safe_redirect( $url );
323
  break;
 
324
  case 'subsitedisconnect':
325
  Jetpack::log( 'subsitedisconnect' );
326
 
327
- if( !isset( $_GET['site_id'] ) || empty( $_GET['site_id'] ) ) {
328
  Jetpack::state( 'missing_site_id', 'Site ID must be provided to disconnect a sub-site' );
329
  break;
330
  }
331
 
332
  $this->do_subsitedisconnect();
333
  break;
 
334
  case 'connected':
335
  case 'connection_failed':
336
  add_action( 'jetpack_notices', array( $this, 'show_jetpack_notice' ) );
@@ -340,10 +355,9 @@ class Jetpack_Network {
340
  }
341
 
342
  public function show_jetpack_notice() {
343
-
344
- if( isset( $_GET['action'] ) && 'connected' == $_GET['action'] ) {
345
  $notice = 'Blog successfully connected';
346
- } else if( isset( $_GET['action'] ) && 'connection_failed' == $_GET['action'] ) {
347
  $notice = 'Blog connection <strong>failed</strong>';
348
  }
349
 
@@ -354,13 +368,13 @@ class Jetpack_Network {
354
  * Disconnect functionality for an individual site
355
  *
356
  * @since 2.9
357
- * @see Jetpack_Network::jetpack_sites_list()
358
  */
359
  public function do_subsitedisconnect( $site_id = null ) {
360
  if ( ! current_user_can( 'jetpack_disconnect' ) ) {
361
  return;
362
  }
363
- $site_id = ( is_null( $site_id ) ) ? $_GET['site_id']: $site_id;
364
  switch_to_blog( $site_id );
365
  Jetpack::disconnect();
366
  restore_current_blog();
@@ -370,8 +384,8 @@ class Jetpack_Network {
370
  * Registers a subsite with the Jetpack servers
371
  *
372
  * @since 2.9
373
- * @todo Break apart into easier to manage chunks that can be unit tested
374
- * @see Jetpack_Network::jetpack_sites_list();
375
  */
376
  public function do_subsiteregister( $site_id = null ) {
377
  if ( ! current_user_can( 'jetpack_disconnect' ) ) {
@@ -381,7 +395,7 @@ class Jetpack_Network {
381
  $jp = Jetpack::init();
382
 
383
  // Figure out what site we are working on
384
- $site_id = ( is_null( $site_id ) ) ? $_GET['site_id']: $site_id;
385
 
386
  // Build secrets to sent to wpcom for verification
387
  $secrets = $jp->generate_secrets();
@@ -395,20 +409,20 @@ class Jetpack_Network {
395
  /*
396
  * Here we need to switch to the subsite
397
  * For the registration process we really only hijack how it
398
- * works for an idividual site and pass in some extra data here
399
  */
400
  switch_to_blog( $site_id );
401
 
402
  // Save the secrets in the subsite so when the wpcom server does a pingback it
403
  // will be able to validate the connection
404
  Jetpack_Options::update_option( 'register',
405
- $secrets[0] . ':' .$secrets[1]. ':' . $secrets[2]
406
  );
407
 
408
  // Gra info for gmt offset
409
  $gmt_offset = get_option( 'gmt_offset' );
410
  if ( ! $gmt_offset ) {
411
- $gmt_offset = 0;
412
  }
413
 
414
  /*
@@ -419,28 +433,29 @@ class Jetpack_Network {
419
  * @todo Find out if sending the stats_id is necessary
420
  */
421
  $stat_options = get_option( 'stats_options' );
422
- $stat_id = $stat_options = isset($stats_options['blog_id']) ? $stats_options['blog_id'] : null;
 
423
  $args = array(
424
- 'method' => 'POST',
425
- 'body' => array(
426
- 'network_url' => $this->get_url( 'network_admin_page' ),
427
- 'network_wpcom_blog_id' => $network_wpcom_blog_id,
428
- 'siteurl' => site_url(),
429
- 'home' => home_url(),
430
- 'gmt_offset' => $gmt_offset,
431
- 'timezone_string' => (string) get_option( 'timezone_string' ),
432
- 'site_name' => (string) get_option( 'blogname' ),
433
- 'secret_1' => $secrets[0],
434
- 'secret_2' => $secrets[1],
435
- 'site_lang' => get_locale(),
436
- 'timeout' => $timeout,
437
- 'stats_id' => $stat_id, // Is this still required?
438
- 'user_id' => get_current_user_id(),
439
- ),
440
- 'headers' => array(
441
- 'Accept' => 'application/json',
442
- ),
443
- 'timeout' => $timeout,
444
  );
445
 
446
  // Attempt to retrieve shadow blog details
@@ -458,20 +473,24 @@ class Jetpack_Network {
458
  */
459
  $valid_response = $jp->validate_remote_register_response( $response );
460
 
461
- if( is_wp_error( $valid_response ) || !$valid_response ) {
 
462
  return $valid_response;
463
  }
464
 
465
  // Grab the response values to work with
466
  $code = wp_remote_retrieve_response_code( $response );
467
  $entity = wp_remote_retrieve_body( $response );
468
- if ( $entity )
469
  $json = json_decode( $entity );
470
- else
471
  $json = false;
 
472
 
473
- if ( empty( $json->jetpack_secret ) || ! is_string( $json->jetpack_secret ) )
474
- return new Jetpack_Error( 'jetpack_secret', '', $code );
 
 
475
 
476
  if ( isset( $json->jetpack_public ) ) {
477
  $jetpack_public = (int) $json->jetpack_public;
@@ -479,13 +498,11 @@ class Jetpack_Network {
479
  $jetpack_public = false;
480
  }
481
 
482
- Jetpack_Options::update_options(
483
- array(
484
- 'id' => (int) $json->jetpack_id,
485
  'blog_token' => (string) $json->jetpack_secret,
486
  'public' => $jetpack_public,
487
- )
488
- );
489
 
490
  /*
491
  * Update the subsiteregister method on wpcom so that it also sends back the
@@ -494,11 +511,7 @@ class Jetpack_Network {
494
  $is_master_user = ! Jetpack::is_active();
495
  Jetpack::update_user_token(
496
  get_current_user_id(),
497
- sprintf(
498
- '%s.%d',
499
- $json->token->secret,
500
- get_current_user_id()
501
- ),
502
  $is_master_user
503
  );
504
 
@@ -512,46 +525,47 @@ class Jetpack_Network {
512
  * dis/connected to Jetpack
513
  *
514
  * @since 2.9
515
- * @see Jetpack_Network::jetpack_sites_list()
516
  */
517
  function network_admin_page() {
518
  global $current_site;
519
  $this->network_admin_page_header();
520
 
521
- $jp = Jetpack::init();
522
 
523
- // We should be, but ensure we are on the main blog
524
- switch_to_blog( $current_site->blog_id );
525
- $main_active = $jp->is_active();
526
- restore_current_blog();
527
 
528
- // If we are in dev mode, just show the notice and bail
529
- if ( Jetpack::is_development_mode() ) {
530
- Jetpack::show_development_mode_notice();
531
- return;
532
- }
533
 
534
- /*
535
- * Ensure the main blog is connected as all other subsite blog
536
- * connections will feed off this one
537
- */
538
- if( !$main_active ) {
539
- $url = $this->get_url( array(
540
- 'name' => 'subsiteregister',
541
- 'site_id' => 1,
542
- ) );
543
- $data = array( 'url' => $jp->build_connect_url() );
544
- Jetpack::init()->load_view( 'admin/must-connect-main-blog.php', $data );
545
- return;
546
- }
547
 
548
- require_once( 'class.jetpack-network-sites-list-table.php' );
549
- $myListTable = new Jetpack_Network_Sites_List_Table();
550
- echo '<div class="wrap"><h2>' . __('Sites', 'jetpack') . '</h2>';
551
- echo '<form method="post">';
552
- $myListTable->prepare_items();
553
- $myListTable->display();
554
- echo '</form></div>';
 
 
 
555
 
556
  $this->network_admin_page_footer();
557
  }
@@ -564,7 +578,7 @@ class Jetpack_Network {
564
  function network_admin_page_header() {
565
  global $current_user;
566
 
567
- $is_connected = Jetpack::is_active();
568
 
569
  $data = array(
570
  'is_connected' => $is_connected
@@ -620,27 +634,32 @@ class Jetpack_Network {
620
  * sub-site-connection-override - Allow sub-site admins to (dis)reconnect with their own Jetpack account
621
  */
622
  $auto_connect = 0;
623
- if( isset( $_POST['auto-connect'] ) )
624
  $auto_connect = 1;
625
-
626
 
627
  $sub_site_connection_override = 0;
628
- if( isset( $_POST['sub-site-connection-override'] ) )
629
  $sub_site_connection_override = 1;
630
- /* Remove the toggles for 2.9, re-evaluate how they're done and added for a 3.0 release. They don't feel quite right yet.
 
 
631
  $manage_auto_activated_modules = 0;
632
- if( isset( $_POST['manage_auto_activated_modules'] ) )
633
  $manage_auto_activated_modules = 1;
 
634
 
635
  $modules = array();
636
- if( isset( $_POST['modules'] ) )
637
  $modules = $_POST['modules'];
638
- */
 
 
639
  $data = array(
640
- 'auto-connect' => $auto_connect,
641
- 'sub-site-connection-override' => $sub_site_connection_override,
642
- // 'manage_auto_activated_modules' => $manage_auto_activated_modules,
643
- // 'modules' => $modules,
644
  );
645
 
646
  update_site_option( $this->settings_name, $data );
@@ -660,14 +679,14 @@ class Jetpack_Network {
660
  $modules = array();
661
  $module_slugs = Jetpack::get_available_modules();
662
  foreach ( $module_slugs as $slug ) {
663
- $module = Jetpack::get_module( $slug );
664
  $module['module'] = $slug;
665
- $modules[] = $module;
666
  }
667
 
668
  usort( $modules, array( 'Jetpack', 'sort_modules' ) );
669
 
670
- if( !isset( $options['modules'] ) ) {
671
  $options['modules'] = $modules;
672
  }
673
 
@@ -685,13 +704,16 @@ class Jetpack_Network {
685
  * Updates a site wide option
686
  *
687
  * @since 2.9
 
688
  * @param string $key
689
- * @param mixed $value
 
690
  * @return boolean
691
  **/
692
  public function update_option( $key, $value ) {
693
- $options = get_site_option( $this->settings_name, $this->setting_defaults );
694
- $options[$key] = $value;
 
695
  return update_site_option( $this->settings_name, $options );
696
  }
697
 
@@ -699,71 +721,78 @@ class Jetpack_Network {
699
  * Retrieves a site wide option
700
  *
701
  * @since 2.9
 
702
  * @param string $name - Name of the option in the database
703
  **/
704
  public function get_option( $name ) {
705
  $options = get_site_option( $this->settings_name, $this->setting_defaults );
706
-
707
  $options = wp_parse_args( $options, $this->setting_defaults );
708
 
709
- if( !isset( $options[$name] ) )
710
- $options[$name] = null;
 
711
 
712
- return $options[$name];
713
  }
714
 
715
  /**
716
  * Return an array of sites on the specified network. If no network is specified,
717
  * return all sites, regardless of network.
718
  *
719
- *
720
  * @todo REMOVE THIS FUNCTION! This function is moving to core. Use that one in favor of this. WordPress::wp_get_sites(). http://codex.wordpress.org/Function_Reference/wp_get_sites NOTE, This returns an array instead of stdClass. Be sure to update class.network-sites-list-table.php
721
  * @since 2.9
722
  * @deprecated 2.4.5
 
723
  * @param array|string $args Optional. Specify the status of the sites to return.
 
724
  * @return array An array of site data
725
  */
726
- public function wp_get_sites($args = array()) {
727
  global $wpdb;
728
 
729
- if (wp_is_large_network())
730
  return;
 
731
 
732
- $defaults = array('network_id' => $wpdb->siteid);
733
-
734
- $args = wp_parse_args($args, $defaults);
735
-
736
- $query = "SELECT * FROM $wpdb->blogs WHERE 1=1 ";
737
 
738
- if (isset($args['network_id']) && ( is_array($args['network_id']) || is_numeric($args['network_id']) )) {
739
- $network_ids = array_map('intval', (array) $args['network_id']);
740
- $network_ids = implode(',', $network_ids);
741
  $query .= "AND site_id IN ($network_ids) ";
742
  }
743
 
744
- if (isset($args['public']))
745
- $query .= $wpdb->prepare("AND public = %s ", $args['public']);
 
746
 
747
- if (isset($args['archived']))
748
- $query .= $wpdb->prepare("AND archived = %s ", $args['archived']);
 
749
 
750
- if (isset($args['mature']))
751
- $query .= $wpdb->prepare("AND mature = %s ", $args['mature']);
 
752
 
753
- if (isset($args['spam']))
754
- $query .= $wpdb->prepare("AND spam = %s ", $args['spam']);
 
755
 
756
- if (isset($args['deleted']))
757
- $query .= $wpdb->prepare("AND deleted = %s ", $args['deleted']);
 
758
 
759
- if( isset( $args['exclude_blogs'] ) )
760
  $query .= "AND blog_id NOT IN (" . implode( ',', $args['exclude_blogs'] ) . ")";
 
761
 
762
- $key = 'wp_get_sites:' . md5($query);
763
 
764
- if (!$site_results = wp_cache_get($key, 'site-id-cache')) {
765
- $site_results = (array) $wpdb->get_results($query);
766
- wp_cache_set($key, $site_results, 'site-id-cache');
767
  }
768
 
769
  return $site_results;
34
  * @var array
35
  */
36
  private $setting_defaults = array(
37
+ 'auto-connect' => 0,
38
+ 'sub-site-connection-override' => 1,
39
+ //'manage_auto_activated_modules' => 0,
40
  );
41
 
42
  /**
51
  * Sanity check to ensure the install is Multisite and we
52
  * are in Network Admin
53
  */
54
+ if ( is_multisite() && is_network_admin() ) {
55
+ add_action( 'network_admin_menu', array( $this, 'add_network_admin_menu' ) );
56
+ add_action( 'network_admin_edit_jetpack-network-settings', array( $this, 'save_network_settings_page' ), 10, 0 );
57
  add_filter( 'admin_body_class', array( $this, 'body_class' ) );
58
 
59
+ if ( isset( $_GET['page'] ) && 'jetpack' == $_GET['page'] ) {
60
+ add_action( 'admin_init', array( $this, 'jetpack_sites_list' ) );
61
  }
62
  }
63
 
64
  /*
65
  * Things that should only run on multisite
66
  */
67
+ if ( is_multisite() && is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) {
68
  add_action( 'wp_before_admin_bar_render', array( $this, 'add_to_menubar' ) );
69
 
 
70
  /*
71
  * If admin wants to automagically register new sites set the hook here
72
  *
73
  * This is a hacky way because xmlrpc is not available on wpmu_new_blog
74
  */
75
+ if ( $this->get_option( 'auto-connect' ) == 1 ) {
76
  add_action( 'wpmu_new_blog', array( $this, 'do_automatically_add_new_site' ) );
77
  }
78
  }
86
  * Modules can be set in Network Admin > Jetpack > Settings
87
  *
88
  * @since 2.9
89
+ *
90
  * @param array $modules
91
+ *
92
  * @return array
93
  **/
94
  public function set_auto_activated_modules( $modules ) {
95
  return $modules;
96
 
97
+ /* Remove the toggles for 2.9, re-evaluate how they're done and added for a 3.0 release. They don't feel quite right yet.
98
  if( 1 == $this->get_option( 'manage_auto_activated_modules' ) ) {
99
  return (array) $this->get_option( 'modules' );
100
  } else {
101
  return $modules;
102
  }
103
+ */
104
  }
105
 
 
106
  /**
107
  * Registers new sites upon creation
108
  *
109
  * @since 2.9
110
+ * @uses wpmu_new_blog
111
+ *
112
  * @param int $blog_id
113
  **/
114
  public function do_automatically_add_new_site( $blog_id ) {
117
 
118
  /**
119
  * Adds .network-admin class to the body tag
120
+ * Helps distinguish network admin JP styles from regular site JP styles
121
  *
122
  * @since 2.9
123
  */
134
  * @return Jetpack_Network
135
  */
136
  public static function init() {
137
+ if ( ! self::$instance || ! is_a( self::$instance, 'Jetpack_Network' ) ) {
138
  self::$instance = new Jetpack_Network;
139
  }
140
 
162
  * @since 2.9
163
  **/
164
  public function deactivate() {
165
+ // Only fire if in network admin
166
+ if ( ! is_network_admin() ) {
167
+ return;
168
+ }
169
 
170
  $sites = $this->wp_get_sites();
171
 
172
+ foreach ( $sites as $s ) {
173
  switch_to_blog( $s->blog_id );
174
  $active_plugins = get_option( 'active_plugins' );
175
 
179
  * individually (before network activation) stay activated
180
  * when the network deactivation occurs
181
  */
182
+ if ( ! in_array( 'jetpack/jetpack.php', $active_plugins ) ) {
183
  Jetpack::disconnect();
184
  }
185
  }
187
  }
188
 
189
  /**
190
+ * Adds a link to the Jetpack Network Admin page in the network admin menu bar.
191
  *
192
  * @since 2.9
193
  **/
194
+ public function add_to_menubar() {
195
  global $wp_admin_bar;
196
  // Don't show for logged out users or single site mode.
197
+ if ( ! is_user_logged_in() || ! is_multisite() ) {
198
+ return;
199
+ }
200
+
201
+ $wp_admin_bar->add_node( array(
202
+ 'parent' => 'network-admin',
203
+ 'id' => 'network-admin-jetpack',
204
+ 'title' => __( 'Jetpack', 'jetpack' ),
205
+ 'href' => $this->get_url( 'network_admin_page' ),
206
  ) );
207
+ }
208
 
209
  /**
210
  * Returns various URL strings. Factory like
218
  * - subsitedisconnect: Pass array( 'name' => 'subsitedisconnect', 'site_id' => SITE_ID )
219
  *
220
  * @since 2.9
221
+ *
222
  * @param Mixed $args
223
+ *
224
  * @return String
225
  **/
226
  public function get_url( $args ) {
227
  $url = null; // Default url value
228
 
229
+ if ( is_string( $args ) ) {
230
+ $name = $args;
231
+ } else {
232
+ $name = $args['name'];
233
+ }
234
 
235
+ switch ( $name ) {
236
+ case 'subsiteregister':
237
+ if ( ! isset( $args['site_id'] ) ) {
238
+ break; // If there is not a site id present we cannot go further
239
+ }
240
+ $url = network_admin_url(
241
+ 'admin.php?page=jetpack&action=subsiteregister&site_id='
242
+ . $args['site_id']
243
+ );
244
+ break;
245
+
246
+ case 'network_admin_page':
247
+ $url = network_admin_url( 'admin.php?page=jetpack' );
248
+ break;
249
+
250
+ case 'subsitedisconnect':
251
+ if ( ! isset( $args['site_id'] ) ) {
252
+ break; // If there is not a site id present we cannot go further
253
+ }
254
+ $url = network_admin_url(
255
+ 'admin.php?page=jetpack&action=subsitedisconnect&site_id='
256
+ . $args['site_id']
257
+ );
258
+ break;
259
  }
260
+
261
  return $url;
262
  }
263
 
267
  * @since 2.9
268
  */
269
  public function add_network_admin_menu() {
270
+ add_menu_page( __( 'Jetpack', 'jetpack' ), __( 'Jetpack', 'jetpack' ), 'jetpack_network_admin_page', 'jetpack', array( $this, 'network_admin_page' ), 'div', 3 );
271
+ add_submenu_page( 'jetpack', __( 'Jetpack Sites', 'jetpack' ), __( 'Sites', 'jetpack' ), 'jetpack_network_sites_page', 'jetpack', array( $this, 'network_admin_page' ) );
272
+ add_submenu_page( 'jetpack', __( 'Settings', 'jetpack' ), __( 'Settings', 'jetpack' ), 'jetpack_network_settings_page', 'jetpack-settings', array( $this, 'render_network_admin_settings_page' ) );
273
 
274
  /**
275
  * As jetpack_register_genericons is by default fired off a hook,
279
  require_once( JETPACK__PLUGIN_DIR . '_inc/genericons.php' );
280
  jetpack_register_genericons();
281
 
282
+ if ( ! wp_style_is( 'jetpack-icons', 'registered' ) ) {
283
  wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION );
284
+ }
285
 
286
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_menu_css' ) );
287
  }
288
 
289
+ /**
290
  * Adds JP menu icon
291
  *
292
  * @since 2.9
293
  **/
294
+ function admin_menu_css() {
295
  wp_enqueue_style( 'jetpack-icons' );
296
  }
297
 
304
  public function jetpack_sites_list() {
305
  Jetpack::init();
306
 
307
+ if ( isset( $_GET['action'] ) ) {
308
+ switch ( $_GET['action'] ) {
309
  case 'subsiteregister':
310
  /*
311
  * @todo check_admin_referer( 'jetpack-subsite-register' );
313
  Jetpack::log( 'subsiteregister' );
314
 
315
  // If !$_GET['site_id'] stop registration and error
316
+ if ( ! isset( $_GET['site_id'] ) || empty( $_GET['site_id'] ) ) {
317
+ // Log error to state cookie for display later
318
+ /**
319
+ * @todo Make state messages show on Jetpack NA pages
320
+ **/
321
+ Jetpack::state( 'missing_site_id', 'Site ID must be provided to register a sub-site' );
322
  break;
323
  }
324
 
325
  // Send data to register endpoint and retrieve shadow blog details
326
  $result = $this->do_subsiteregister();
327
+ $url = $this->get_url( 'network_admin_page' );
328
+
329
+ if ( is_wp_error( $result ) ) {
330
  $url = add_query_arg( 'action', 'connection_failed', $url );
331
  } else {
332
  $url = add_query_arg( 'action', 'connected', $url );
334
 
335
  wp_safe_redirect( $url );
336
  break;
337
+
338
  case 'subsitedisconnect':
339
  Jetpack::log( 'subsitedisconnect' );
340
 
341
+ if ( ! isset( $_GET['site_id'] ) || empty( $_GET['site_id'] ) ) {
342
  Jetpack::state( 'missing_site_id', 'Site ID must be provided to disconnect a sub-site' );
343
  break;
344
  }
345
 
346
  $this->do_subsitedisconnect();
347
  break;
348
+
349
  case 'connected':
350
  case 'connection_failed':
351
  add_action( 'jetpack_notices', array( $this, 'show_jetpack_notice' ) );
355
  }
356
 
357
  public function show_jetpack_notice() {
358
+ if ( isset( $_GET['action'] ) && 'connected' == $_GET['action'] ) {
 
359
  $notice = 'Blog successfully connected';
360
+ } else if ( isset( $_GET['action'] ) && 'connection_failed' == $_GET['action'] ) {
361
  $notice = 'Blog connection <strong>failed</strong>';
362
  }
363
 
368
  * Disconnect functionality for an individual site
369
  *
370
  * @since 2.9
371
+ * @see Jetpack_Network::jetpack_sites_list()
372
  */
373
  public function do_subsitedisconnect( $site_id = null ) {
374
  if ( ! current_user_can( 'jetpack_disconnect' ) ) {
375
  return;
376
  }
377
+ $site_id = ( is_null( $site_id ) ) ? $_GET['site_id'] : $site_id;
378
  switch_to_blog( $site_id );
379
  Jetpack::disconnect();
380
  restore_current_blog();
384
  * Registers a subsite with the Jetpack servers
385
  *
386
  * @since 2.9
387
+ * @todo Break apart into easier to manage chunks that can be unit tested
388
+ * @see Jetpack_Network::jetpack_sites_list();
389
  */
390
  public function do_subsiteregister( $site_id = null ) {
391
  if ( ! current_user_can( 'jetpack_disconnect' ) ) {
395
  $jp = Jetpack::init();
396
 
397
  // Figure out what site we are working on
398
+ $site_id = ( is_null( $site_id ) ) ? $_GET['site_id'] : $site_id;
399
 
400
  // Build secrets to sent to wpcom for verification
401
  $secrets = $jp->generate_secrets();
409
  /*
410
  * Here we need to switch to the subsite
411
  * For the registration process we really only hijack how it
412
+ * works for an individual site and pass in some extra data here
413
  */
414
  switch_to_blog( $site_id );
415
 
416
  // Save the secrets in the subsite so when the wpcom server does a pingback it
417
  // will be able to validate the connection
418
  Jetpack_Options::update_option( 'register',
419
+ $secrets[0] . ':' . $secrets[1] . ':' . $secrets[2]
420
  );
421
 
422
  // Gra info for gmt offset
423
  $gmt_offset = get_option( 'gmt_offset' );
424
  if ( ! $gmt_offset ) {
425
+ $gmt_offset = 0;
426
  }
427
 
428
  /*
433
  * @todo Find out if sending the stats_id is necessary
434
  */
435
  $stat_options = get_option( 'stats_options' );
436
+ $stat_id = $stat_options = isset( $stats_options['blog_id'] ) ? $stats_options['blog_id'] : null;
437
+
438
  $args = array(
439
+ 'method' => 'POST',
440
+ 'body' => array(
441
+ 'network_url' => $this->get_url( 'network_admin_page' ),
442
+ 'network_wpcom_blog_id' => $network_wpcom_blog_id,
443
+ 'siteurl' => site_url(),
444
+ 'home' => home_url(),
445
+ 'gmt_offset' => $gmt_offset,
446
+ 'timezone_string' => (string) get_option( 'timezone_string' ),
447
+ 'site_name' => (string) get_option( 'blogname' ),
448
+ 'secret_1' => $secrets[0],
449
+ 'secret_2' => $secrets[1],
450
+ 'site_lang' => get_locale(),
451
+ 'timeout' => $timeout,
452
+ 'stats_id' => $stat_id, // Is this still required?
453
+ 'user_id' => get_current_user_id(),
454
+ ),
455
+ 'headers' => array(
456
+ 'Accept' => 'application/json',
457
+ ),
458
+ 'timeout' => $timeout,
459
  );
460
 
461
  // Attempt to retrieve shadow blog details
473
  */
474
  $valid_response = $jp->validate_remote_register_response( $response );
475
 
476
+ if ( is_wp_error( $valid_response ) || ! $valid_response ) {
477
+ restore_current_blog();
478
  return $valid_response;
479
  }
480
 
481
  // Grab the response values to work with
482
  $code = wp_remote_retrieve_response_code( $response );
483
  $entity = wp_remote_retrieve_body( $response );
484
+ if ( $entity ) {
485
  $json = json_decode( $entity );
486
+ } else {
487
  $json = false;
488
+ }
489
 
490
+ if ( empty( $json->jetpack_secret ) || ! is_string( $json->jetpack_secret ) ) {
491
+ restore_current_blog();
492
+ return new Jetpack_Error( 'jetpack_secret', '', $code );
493
+ }
494
 
495
  if ( isset( $json->jetpack_public ) ) {
496
  $jetpack_public = (int) $json->jetpack_public;
498
  $jetpack_public = false;
499
  }
500
 
501
+ Jetpack_Options::update_options( array(
502
+ 'id' => (int) $json->jetpack_id,
 
503
  'blog_token' => (string) $json->jetpack_secret,
504
  'public' => $jetpack_public,
505
+ ) );
 
506
 
507
  /*
508
  * Update the subsiteregister method on wpcom so that it also sends back the
511
  $is_master_user = ! Jetpack::is_active();
512
  Jetpack::update_user_token(
513
  get_current_user_id(),
514
+ sprintf( '%s.%d', $json->token->secret, get_current_user_id() ),
 
 
 
 
515
  $is_master_user
516
  );
517
 
525
  * dis/connected to Jetpack
526
  *
527
  * @since 2.9
528
+ * @see Jetpack_Network::jetpack_sites_list()
529
  */
530
  function network_admin_page() {
531
  global $current_site;
532
  $this->network_admin_page_header();
533
 
534
+ $jp = Jetpack::init();
535
 
536
+ // We should be, but ensure we are on the main blog
537
+ switch_to_blog( $current_site->blog_id );
538
+ $main_active = $jp->is_active();
539
+ restore_current_blog();
540
 
541
+ // If we are in dev mode, just show the notice and bail
542
+ if ( Jetpack::is_development_mode() ) {
543
+ Jetpack::show_development_mode_notice();
544
+ return;
545
+ }
546
 
547
+ /*
548
+ * Ensure the main blog is connected as all other subsite blog
549
+ * connections will feed off this one
550
+ */
551
+ if ( ! $main_active ) {
552
+ $url = $this->get_url( array(
553
+ 'name' => 'subsiteregister',
554
+ 'site_id' => 1,
555
+ ) );
556
+ $data = array( 'url' => $jp->build_connect_url() );
557
+ Jetpack::init()->load_view( 'admin/must-connect-main-blog.php', $data );
 
 
558
 
559
+ return;
560
+ }
561
+
562
+ require_once( 'class.jetpack-network-sites-list-table.php' );
563
+ $myListTable = new Jetpack_Network_Sites_List_Table();
564
+ echo '<div class="wrap"><h2>' . __( 'Sites', 'jetpack' ) . '</h2>';
565
+ echo '<form method="post">';
566
+ $myListTable->prepare_items();
567
+ $myListTable->display();
568
+ echo '</form></div>';
569
 
570
  $this->network_admin_page_footer();
571
  }
578
  function network_admin_page_header() {
579
  global $current_user;
580
 
581
+ $is_connected = Jetpack::is_active();
582
 
583
  $data = array(
584
  'is_connected' => $is_connected
634
  * sub-site-connection-override - Allow sub-site admins to (dis)reconnect with their own Jetpack account
635
  */
636
  $auto_connect = 0;
637
+ if ( isset( $_POST['auto-connect'] ) ) {
638
  $auto_connect = 1;
639
+ }
640
 
641
  $sub_site_connection_override = 0;
642
+ if ( isset( $_POST['sub-site-connection-override'] ) ) {
643
  $sub_site_connection_override = 1;
644
+ }
645
+
646
+ /* Remove the toggles for 2.9, re-evaluate how they're done and added for a 3.0 release. They don't feel quite right yet.
647
  $manage_auto_activated_modules = 0;
648
+ if ( isset( $_POST['manage_auto_activated_modules'] ) ) {
649
  $manage_auto_activated_modules = 1;
650
+ }
651
 
652
  $modules = array();
653
+ if ( isset( $_POST['modules'] ) ) {
654
  $modules = $_POST['modules'];
655
+ }
656
+ */
657
+
658
  $data = array(
659
+ 'auto-connect' => $auto_connect,
660
+ 'sub-site-connection-override' => $sub_site_connection_override,
661
+ //'manage_auto_activated_modules' => $manage_auto_activated_modules,
662
+ //'modules' => $modules,
663
  );
664
 
665
  update_site_option( $this->settings_name, $data );
679
  $modules = array();
680
  $module_slugs = Jetpack::get_available_modules();
681
  foreach ( $module_slugs as $slug ) {
682
+ $module = Jetpack::get_module( $slug );
683
  $module['module'] = $slug;
684
+ $modules[] = $module;
685
  }
686
 
687
  usort( $modules, array( 'Jetpack', 'sort_modules' ) );
688
 
689
+ if ( ! isset( $options['modules'] ) ) {
690
  $options['modules'] = $modules;
691
  }
692
 
704
  * Updates a site wide option
705
  *
706
  * @since 2.9
707
+ *
708
  * @param string $key
709
+ * @param mixed $value
710
+ *
711
  * @return boolean
712
  **/
713
  public function update_option( $key, $value ) {
714
+ $options = get_site_option( $this->settings_name, $this->setting_defaults );
715
+ $options[ $key ] = $value;
716
+
717
  return update_site_option( $this->settings_name, $options );
718
  }
719
 
721
  * Retrieves a site wide option
722
  *
723
  * @since 2.9
724
+ *
725
  * @param string $name - Name of the option in the database
726
  **/
727
  public function get_option( $name ) {
728
  $options = get_site_option( $this->settings_name, $this->setting_defaults );
 
729
  $options = wp_parse_args( $options, $this->setting_defaults );
730
 
731
+ if ( ! isset( $options[ $name ] ) ) {
732
+ $options[ $name ] = null;
733
+ }
734
 
735
+ return $options[ $name ];
736
  }
737
 
738
  /**
739
  * Return an array of sites on the specified network. If no network is specified,
740
  * return all sites, regardless of network.
741
  *
 
742
  * @todo REMOVE THIS FUNCTION! This function is moving to core. Use that one in favor of this. WordPress::wp_get_sites(). http://codex.wordpress.org/Function_Reference/wp_get_sites NOTE, This returns an array instead of stdClass. Be sure to update class.network-sites-list-table.php
743
  * @since 2.9
744
  * @deprecated 2.4.5
745
+ *
746
  * @param array|string $args Optional. Specify the status of the sites to return.
747
+ *
748
  * @return array An array of site data
749
  */
750
+ public function wp_get_sites( $args = array() ) {
751
  global $wpdb;
752
 
753
+ if ( wp_is_large_network() ) {
754
  return;
755
+ }
756
 
757
+ $defaults = array( 'network_id' => $wpdb->siteid );
758
+ $args = wp_parse_args( $args, $defaults );
759
+ $query = "SELECT * FROM $wpdb->blogs WHERE 1=1 ";
 
 
760
 
761
+ if ( isset( $args['network_id'] ) && ( is_array( $args['network_id'] ) || is_numeric( $args['network_id'] ) ) ) {
762
+ $network_ids = array_map( 'intval', (array) $args['network_id'] );
763
+ $network_ids = implode( ',', $network_ids );
764
  $query .= "AND site_id IN ($network_ids) ";
765
  }
766
 
767
+ if ( isset( $args['public'] ) ) {
768
+ $query .= $wpdb->prepare( "AND public = %s ", $args['public'] );
769
+ }
770
 
771
+ if ( isset( $args['archived'] ) ) {
772
+ $query .= $wpdb->prepare( "AND archived = %s ", $args['archived'] );
773
+ }
774
 
775
+ if ( isset( $args['mature'] ) ) {
776
+ $query .= $wpdb->prepare( "AND mature = %s ", $args['mature'] );
777
+ }
778
 
779
+ if ( isset( $args['spam'] ) ) {
780
+ $query .= $wpdb->prepare( "AND spam = %s ", $args['spam'] );
781
+ }
782
 
783
+ if ( isset( $args['deleted'] ) ) {
784
+ $query .= $wpdb->prepare( "AND deleted = %s ", $args['deleted'] );
785
+ }
786
 
787
+ if ( isset( $args['exclude_blogs'] ) ) {
788
  $query .= "AND blog_id NOT IN (" . implode( ',', $args['exclude_blogs'] ) . ")";
789
+ }
790
 
791
+ $key = 'wp_get_sites:' . md5( $query );
792
 
793
+ if ( ! $site_results = wp_cache_get( $key, 'site-id-cache' ) ) {
794
+ $site_results = (array) $wpdb->get_results( $query );
795
+ wp_cache_set( $key, $site_results, 'site-id-cache' );
796
  }
797
 
798
  return $site_results;
class.jetpack-options.php CHANGED
@@ -32,7 +32,6 @@ class Jetpack_Options {
32
  'site_icon_url', // (string) url to the full site icon
33
  'site_icon_id', // (int) Attachment id of the site icon file
34
  'dismissed_manage_banner', // (bool) Dismiss Jetpack manage banner allows the user to dismiss the banner permanently
35
- 'updates', // (array) information about available updates to plugins, theme, WordPress core, and if site is under version control
36
  'restapi_stats_cache', // (array) Stats Cache data.
37
  'unique_connection', // (array) A flag to determine a unique connection to wordpress.com two values "connected" and "disconnected" with values for how many times each has occured
38
  'protect_whitelist' // (array) IP Address for the Protect module to ignore
@@ -64,7 +63,8 @@ class Jetpack_Options {
64
  'last_heartbeat', // (int) The timestamp of the last heartbeat that fired.
65
  'last_security_report', // (int) The timestamp of the last security report that was run.
66
  'sync_bulk_reindexing', // (bool) If a bulk reindex is currently underway.
67
- 'jumpstart' // (string) A flag for whether or not to show the Jump Start. Accepts: new_connection, jumpstart_activated, jetpack_action_taken, jumpstart_dismissed.
 
68
  );
69
  }
70
 
@@ -137,6 +137,15 @@ class Jetpack_Options {
137
  * @param string $autoload If not compact option, allows specifying whether to autoload or not.
138
  */
139
  public static function update_option( $name, $value, $autoload = null ) {
 
 
 
 
 
 
 
 
 
140
  do_action( 'pre_update_jetpack_option_' . $name, $name, $value );
141
  if ( self::is_valid( $name, 'non_compact' ) ) {
142
  /**
32
  'site_icon_url', // (string) url to the full site icon
33
  'site_icon_id', // (int) Attachment id of the site icon file
34
  'dismissed_manage_banner', // (bool) Dismiss Jetpack manage banner allows the user to dismiss the banner permanently
 
35
  'restapi_stats_cache', // (array) Stats Cache data.
36
  'unique_connection', // (array) A flag to determine a unique connection to wordpress.com two values "connected" and "disconnected" with values for how many times each has occured
37
  'protect_whitelist' // (array) IP Address for the Protect module to ignore
63
  'last_heartbeat', // (int) The timestamp of the last heartbeat that fired.
64
  'last_security_report', // (int) The timestamp of the last security report that was run.
65
  'sync_bulk_reindexing', // (bool) If a bulk reindex is currently underway.
66
+ 'jumpstart', // (string) A flag for whether or not to show the Jump Start. Accepts: new_connection, jumpstart_activated, jetpack_action_taken, jumpstart_dismissed.
67
+ 'hide_jitm' // (array) A list of just in time messages that we should not show because they have been dismissed by the user
68
  );
69
  }
70
 
137
  * @param string $autoload If not compact option, allows specifying whether to autoload or not.
138
  */
139
  public static function update_option( $name, $value, $autoload = null ) {
140
+
141
+ /**
142
+ * Fires before Jetpack updates a specific option.
143
+ *
144
+ * @since 3.0.0
145
+ *
146
+ * @param str $name The name of the option being updated.
147
+ * @param mixed $value The new value of the option.
148
+ */
149
  do_action( 'pre_update_jetpack_option_' . $name, $name, $value );
150
  if ( self::is_valid( $name, 'non_compact' ) ) {
151
  /**
class.jetpack-post-images.php CHANGED
@@ -392,6 +392,14 @@ class Jetpack_PostImages {
392
  */
393
  static function get_image( $post_id, $args = array() ) {
394
  $image = '';
 
 
 
 
 
 
 
 
395
  do_action( 'jetpack_postimages_pre_get_image', $post_id );
396
  $media = self::get_images( $post_id, $args );
397
 
@@ -405,6 +413,13 @@ class Jetpack_PostImages {
405
  }
406
  }
407
 
 
 
 
 
 
 
 
408
  do_action( 'jetpack_postimages_post_get_image', $post_id );
409
 
410
  return $image;
@@ -421,6 +436,16 @@ class Jetpack_PostImages {
421
  // Figure out which image to attach to this post.
422
  $media = false;
423
 
 
 
 
 
 
 
 
 
 
 
424
  $media = apply_filters( 'jetpack_images_pre_get_images', $media, $post_id, $args );
425
  if ( $media )
426
  return $media;
@@ -433,7 +458,7 @@ class Jetpack_PostImages {
433
  'avatar_size' => 96, // Used for both Grav and Blav
434
  'gravatar_default' => false, // Default image to use if we end up with no Gravatar
435
 
436
- 'from_thumbnail' => true, // Use these flags to specifcy which methods to use to find an image
437
  'from_slideshow' => true,
438
  'from_gallery' => true,
439
  'from_attachment' => true,
@@ -465,6 +490,16 @@ class Jetpack_PostImages {
465
  $media = self::from_gravatar( $post_id, $args['avatar_size'], $args['gravatar_default'] );
466
  }
467
 
 
 
 
 
 
 
 
 
 
 
468
  return apply_filters( 'jetpack_images_get_images', $media, $post_id, $args );
469
  }
470
 
@@ -487,6 +522,15 @@ class Jetpack_PostImages {
487
 
488
  // See if we should bypass WordPress.com SaaS resizing
489
  if ( has_filter( 'jetpack_images_fit_image_url_override' ) ) {
 
 
 
 
 
 
 
 
 
490
  return apply_filters( 'jetpack_images_fit_image_url_override', $src, $width, $height );
491
  }
492
 
392
  */
393
  static function get_image( $post_id, $args = array() ) {
394
  $image = '';
395
+
396
+ /**
397
+ * Fires before we find a single good image for a specific post.
398
+ *
399
+ * @since 2.2.0
400
+ *
401
+ * @param int $post_id Post ID.
402
+ */
403
  do_action( 'jetpack_postimages_pre_get_image', $post_id );
404
  $media = self::get_images( $post_id, $args );
405
 
413
  }
414
  }
415
 
416
+ /**
417
+ * Fires after we find a single good image for a specific post.
418
+ *
419
+ * @since 2.2.0
420
+ *
421
+ * @param int $post_id Post ID.
422
+ */
423
  do_action( 'jetpack_postimages_post_get_image', $post_id );
424
 
425
  return $image;
436
  // Figure out which image to attach to this post.
437
  $media = false;
438
 
439
+ /**
440
+ * Filters the array of images that would be good for a specific post.
441
+ * This filter is applied before options ($args) filter the original array.
442
+ *
443
+ * @since 2.0.0
444
+ *
445
+ * @param array $media Array of images that would be good for a specific post.
446
+ * @param int $post_id Post ID.
447
+ * @param array $args Array of options to get images.
448
+ */
449
  $media = apply_filters( 'jetpack_images_pre_get_images', $media, $post_id, $args );
450
  if ( $media )
451
  return $media;
458
  'avatar_size' => 96, // Used for both Grav and Blav
459
  'gravatar_default' => false, // Default image to use if we end up with no Gravatar
460
 
461
+ 'from_thumbnail' => true, // Use these flags to specify which methods to use to find an image
462
  'from_slideshow' => true,
463
  'from_gallery' => true,
464
  'from_attachment' => true,
490
  $media = self::from_gravatar( $post_id, $args['avatar_size'], $args['gravatar_default'] );
491
  }
492
 
493
+ /**
494
+ * Filters the array of images that would be good for a specific post.
495
+ * This filter is applied after options ($args) filter the original array.
496
+ *
497
+ * @since 2.0.0
498
+ *
499
+ * @param array $media Array of images that would be good for a specific post.
500
+ * @param int $post_id Post ID.
501
+ * @param array $args Array of options to get images.
502
+ */
503
  return apply_filters( 'jetpack_images_get_images', $media, $post_id, $args );
504
  }
505
 
522
 
523
  // See if we should bypass WordPress.com SaaS resizing
524
  if ( has_filter( 'jetpack_images_fit_image_url_override' ) ) {
525
+ /**
526
+ * Filters the image URL used after dimensions are set by Photon.
527
+ *
528
+ * @since 3.3.0
529
+ *
530
+ * @param string $src Image URL.
531
+ * @param int $width Image width.
532
+ * @param int $width Image height.
533
+ */
534
  return apply_filters( 'jetpack_images_fit_image_url_override', $src, $width, $height );
535
  }
536
 
class.jetpack-signature.php CHANGED
@@ -4,8 +4,8 @@ defined( 'JETPACK_SIGNATURE__HTTP_PORT' ) or define( 'JETPACK_SIGNATURE__HTTP_P
4
  defined( 'JETPACK_SIGNATURE__HTTPS_PORT' ) or define( 'JETPACK_SIGNATURE__HTTPS_PORT', 443 );
5
 
6
  class Jetpack_Signature {
7
- var $token;
8
- var $secret;
9
 
10
  function __construct( $access_token, $time_diff = 0 ) {
11
  $secret = explode( '.', $access_token );
4
  defined( 'JETPACK_SIGNATURE__HTTPS_PORT' ) or define( 'JETPACK_SIGNATURE__HTTPS_PORT', 443 );
5
 
6
  class Jetpack_Signature {
7
+ public $token;
8
+ public $secret;
9
 
10
  function __construct( $access_token, $time_diff = 0 ) {
11
  $secret = explode( '.', $access_token );
class.jetpack-sync.php CHANGED
@@ -6,19 +6,19 @@
6
  */
7
  class Jetpack_Sync {
8
  // What modules want to sync what content
9
- var $sync_conditions = array( 'posts' => array(), 'comments' => array() );
10
 
11
  // We keep track of all the options registered for sync so that we can sync them all if needed
12
- var $sync_options = array();
13
 
14
- var $sync_constants = array();
15
 
16
  // Keep trac of status transitions, which we wouldn't always know about on the Jetpack Servers but are important when deciding what to do with the sync.
17
- var $post_transitions = array();
18
- var $comment_transitions = array();
19
 
20
  // Objects to sync
21
- var $sync = array();
22
 
23
  function __construct() {
24
  // WP Cron action. Only used on upgrade
@@ -168,8 +168,8 @@ class Jetpack_Sync {
168
  return false;
169
  }
170
 
171
- // Don't sync anything while in development mode
172
- if ( Jetpack::is_development_mode() ) {
173
  return false;
174
  }
175
 
@@ -241,7 +241,6 @@ class Jetpack_Sync {
241
  }
242
  break;
243
  }
244
-
245
  }
246
  Jetpack::xmlrpc_async_call( 'jetpack.syncContent', $sync_data );
247
  }
@@ -383,6 +382,7 @@ class Jetpack_Sync {
383
  $delete_on_behalf_of = array();
384
  $submit_on_behalf_of = array();
385
  $delete_stati = array( 'delete' );
 
386
 
387
  foreach ( $module_conditions as $module => $conditions ) {
388
  if ( !in_array( $post->post_type, $conditions['post_types'] ) ) {
@@ -394,7 +394,11 @@ class Jetpack_Sync {
394
  if ( $deleted_post ) {
395
  $delete_on_behalf_of[] = $module;
396
  } else {
397
- clean_post_cache( $post->ID );
 
 
 
 
398
  $new_status = get_post_status( $post->ID ); // Inherited status is resolved here
399
  }
400
 
@@ -494,6 +498,7 @@ class Jetpack_Sync {
494
  $post['extra'] = array(
495
  'author' => get_the_author_meta( 'display_name', $post_obj->post_author ),
496
  'author_email' => get_the_author_meta( 'email', $post_obj->post_author ),
 
497
  );
498
 
499
  if ( $fid = get_post_thumbnail_id( $id ) ) {
@@ -519,12 +524,35 @@ class Jetpack_Sync {
519
  $post['extra']['post_thumbnail'] = (int) $metadata['duration'];
520
  }
521
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
522
  $post['extra']['post_thumbnail'] = (object) apply_filters( 'get_attachment', $post['extra']['post_thumbnail'] );
523
  }
524
  }
525
 
526
  $post['permalink'] = get_permalink( $post_obj->ID );
527
  $post['shortlink'] = wp_get_shortlink( $post_obj->ID );
 
 
 
 
 
 
 
 
528
  $post['module_custom_data'] = apply_filters( 'jetpack_sync_post_module_custom_data', array(), $post_obj );
529
  return $post;
530
  }
@@ -788,7 +816,14 @@ class Jetpack_Sync {
788
  'UPDATER_DISABLED',
789
  'AUTOMATIC_UPDATER_DISABLED',
790
  'ABSPATH',
791
- 'WP_CONTENT_DIR'
 
 
 
 
 
 
 
792
  );
793
 
794
  // add the constant to sync.
6
  */
7
  class Jetpack_Sync {
8
  // What modules want to sync what content
9
+ public $sync_conditions = array( 'posts' => array(), 'comments' => array() );
10
 
11
  // We keep track of all the options registered for sync so that we can sync them all if needed
12
+ public $sync_options = array();
13
 
14
+ public $sync_constants = array();
15
 
16
  // Keep trac of status transitions, which we wouldn't always know about on the Jetpack Servers but are important when deciding what to do with the sync.
17
+ public $post_transitions = array();
18
+ public $comment_transitions = array();
19
 
20
  // Objects to sync
21
+ public $sync = array();
22
 
23
  function __construct() {
24
  // WP Cron action. Only used on upgrade
168
  return false;
169
  }
170
 
171
+ // Don't sync anything from a staging site.
172
+ if ( Jetpack::is_development_mode() || Jetpack::jetpack_is_staging_site() ) {
173
  return false;
174
  }
175
 
241
  }
242
  break;
243
  }
 
244
  }
245
  Jetpack::xmlrpc_async_call( 'jetpack.syncContent', $sync_data );
246
  }
382
  $delete_on_behalf_of = array();
383
  $submit_on_behalf_of = array();
384
  $delete_stati = array( 'delete' );
385
+ $cache_cleared = false;
386
 
387
  foreach ( $module_conditions as $module => $conditions ) {
388
  if ( !in_array( $post->post_type, $conditions['post_types'] ) ) {
394
  if ( $deleted_post ) {
395
  $delete_on_behalf_of[] = $module;
396
  } else {
397
+ if ( ! $cache_cleared ) {
398
+ // inefficient to clear cache more than once
399
+ clean_post_cache( $post->ID );
400
+ $cache_cleared = true;
401
+ }
402
  $new_status = get_post_status( $post->ID ); // Inherited status is resolved here
403
  }
404
 
498
  $post['extra'] = array(
499
  'author' => get_the_author_meta( 'display_name', $post_obj->post_author ),
500
  'author_email' => get_the_author_meta( 'email', $post_obj->post_author ),
501
+ 'dont_email_post_to_subs' => get_post_meta( $post_obj->ID, '_jetpack_dont_email_post_to_subs', true ),
502
  );
503
 
504
  if ( $fid = get_post_thumbnail_id( $id ) ) {
524
  $post['extra']['post_thumbnail'] = (int) $metadata['duration'];
525
  }
526
 
527
+ /**
528
+ * Filters the Post Thumbnail information returned for a specific post.
529
+ *
530
+ * @since 3.3.0
531
+ *
532
+ * @param array $post['extra']['post_thumbnail'] {
533
+ * Array of details about the Post Thumbnail.
534
+ * @param int ID Post Thumbnail ID.
535
+ * @param string URL Post thumbnail URL.
536
+ * @param string guid Post thumbnail guid.
537
+ * @param string mime_type Post thumbnail mime type.
538
+ * @param int width Post thumbnail width.
539
+ * @param int height Post thumbnail height.
540
+ * }
541
+ */
542
  $post['extra']['post_thumbnail'] = (object) apply_filters( 'get_attachment', $post['extra']['post_thumbnail'] );
543
  }
544
  }
545
 
546
  $post['permalink'] = get_permalink( $post_obj->ID );
547
  $post['shortlink'] = wp_get_shortlink( $post_obj->ID );
548
+ /**
549
+ * Allow modules to send extra info on the sync post process.
550
+ *
551
+ * @since 2.8.0
552
+ *
553
+ * @param array $args Array of custom data to attach to a post.
554
+ * @param Object $post_obj Object returned by get_post() for a given post ID.
555
+ */
556
  $post['module_custom_data'] = apply_filters( 'jetpack_sync_post_module_custom_data', array(), $post_obj );
557
  return $post;
558
  }
816
  'UPDATER_DISABLED',
817
  'AUTOMATIC_UPDATER_DISABLED',
818
  'ABSPATH',
819
+ 'WP_CONTENT_DIR',
820
+ 'FS_METHOD',
821
+ 'DISALLOW_FILE_EDIT',
822
+ 'DISALLOW_FILE_MODS',
823
+ 'WP_AUTO_UPDATE_CORE',
824
+ 'AUTOMATIC_UPDATER_DISABLED',
825
+ 'WP_HTTP_BLOCK_EXTERNAL',
826
+ 'WP_ACCESSIBLE_HOSTS',
827
  );
828
 
829
  // add the constant to sync.
class.jetpack-twitter-cards.php CHANGED
@@ -17,6 +17,7 @@ class Jetpack_Twitter_Cards {
17
  return $og_tags;
18
  }
19
 
 
20
  if ( apply_filters( 'jetpack_disable_twitter_cards', false ) ) {
21
  return $og_tags;
22
  }
@@ -26,7 +27,9 @@ class Jetpack_Twitter_Cards {
26
  */
27
 
28
  $site_tag = self::site_tag();
 
29
  $site_tag = apply_filters( 'jetpack_sharing_twitter_via', $site_tag, ( is_singular() ? $post->ID : null ) );
 
30
  $site_tag = apply_filters( 'jetpack_twitter_cards_site_tag', $site_tag, $og_tags );
31
  if ( ! empty( $site_tag ) ) {
32
  $og_tags['twitter:site'] = self::sanitize_twitter_user( $site_tag );
@@ -48,9 +51,9 @@ class Jetpack_Twitter_Cards {
48
  if ( !empty( $featured ) && count( $featured ) > 0 ) {
49
  if ( (int) $featured[0]['src_width'] >= 280 && (int) $featured[0]['src_height'] >= 150 ) {
50
  $card_type = 'summary_large_image';
51
- $og_tags['twitter:image'] = add_query_arg( 'w', 640, $featured[0]['src'] );
52
  } else {
53
- $og_tags['twitter:image'] = add_query_arg( 'w', 240, $featured[0]['src'] );
54
  }
55
  }
56
  }
@@ -71,7 +74,7 @@ class Jetpack_Twitter_Cards {
71
  } elseif ( 'video' == $extract['type'] ) {
72
  // Leave as summary, but with large pict of poster frame (we know those comply to Twitter's size requirements)
73
  $card_type = 'summary_large_image';
74
- $og_tags['twitter:image'] = add_query_arg( 'w', 640, $extract['image'] );
75
  } else {
76
  list( $og_tags, $card_type ) = self::twitter_cards_define_type_based_on_image_count( $og_tags, $extract );
77
  }
@@ -82,6 +85,7 @@ class Jetpack_Twitter_Cards {
82
 
83
  // If we have information on the author/creator, then include that as well
84
  if ( ! empty( $post ) && ! empty( $post->post_author ) ) {
 
85
  $handle = apply_filters( 'jetpack_sharing_twitter_via', '', $post->ID );
86
  if ( ! empty( $handle ) && 'wordpressdotcom' != $handle && 'jetpack' != $handle ) {
87
  $og_tags['twitter:creator'] = self::sanitize_twitter_user( $handle );
@@ -141,7 +145,7 @@ class Jetpack_Twitter_Cards {
141
  } elseif ( $img_count && ( 'image' == $extract['type'] || 'gallery' == $extract['type'] ) ) {
142
  // Test for $extract['type'] to limit to image and gallery, so we don't send a potential fallback image like a Gravatar as a photo post.
143
  $card_type = 'summary_large_image';
144
- $og_tags['twitter:image'] = add_query_arg( 'w', 1400, ( empty( $extract['images'] ) ) ? $extract['image'] : $extract['images'][0]['url'] );
145
  }
146
 
147
  return array( $og_tags, $card_type );
17
  return $og_tags;
18
  }
19
 
20
+ /** This action is documented in class.jetpack.php */
21
  if ( apply_filters( 'jetpack_disable_twitter_cards', false ) ) {
22
  return $og_tags;
23
  }
27
  */
28
 
29
  $site_tag = self::site_tag();
30
+ /** This action is documented in modules/sharedaddy/sharing-sources.php */
31
  $site_tag = apply_filters( 'jetpack_sharing_twitter_via', $site_tag, ( is_singular() ? $post->ID : null ) );
32
+ /** This action is documented in modules/sharedaddy/sharing-sources.php */
33
  $site_tag = apply_filters( 'jetpack_twitter_cards_site_tag', $site_tag, $og_tags );
34
  if ( ! empty( $site_tag ) ) {
35
  $og_tags['twitter:site'] = self::sanitize_twitter_user( $site_tag );
51
  if ( !empty( $featured ) && count( $featured ) > 0 ) {
52
  if ( (int) $featured[0]['src_width'] >= 280 && (int) $featured[0]['src_height'] >= 150 ) {
53
  $card_type = 'summary_large_image';
54
+ $og_tags['twitter:image'] = esc_url( add_query_arg( 'w', 640, $featured[0]['src'] ) );
55
  } else {
56
+ $og_tags['twitter:image'] = esc_url( add_query_arg( 'w', 240, $featured[0]['src'] ) );
57
  }
58
  }
59
  }
74
  } elseif ( 'video' == $extract['type'] ) {
75
  // Leave as summary, but with large pict of poster frame (we know those comply to Twitter's size requirements)
76
  $card_type = 'summary_large_image';
77
+ $og_tags['twitter:image'] = esc_url( add_query_arg( 'w', 640, $extract['image'] ) );
78
  } else {
79
  list( $og_tags, $card_type ) = self::twitter_cards_define_type_based_on_image_count( $og_tags, $extract );
80
  }
85
 
86
  // If we have information on the author/creator, then include that as well
87
  if ( ! empty( $post ) && ! empty( $post->post_author ) ) {
88
+ /** This action is documented in modules/sharedaddy/sharing-sources.php */
89
  $handle = apply_filters( 'jetpack_sharing_twitter_via', '', $post->ID );
90
  if ( ! empty( $handle ) && 'wordpressdotcom' != $handle && 'jetpack' != $handle ) {
91
  $og_tags['twitter:creator'] = self::sanitize_twitter_user( $handle );
145
  } elseif ( $img_count && ( 'image' == $extract['type'] || 'gallery' == $extract['type'] ) ) {
146
  // Test for $extract['type'] to limit to image and gallery, so we don't send a potential fallback image like a Gravatar as a photo post.
147
  $card_type = 'summary_large_image';
148
+ $og_tags['twitter:image'] = esc_url( add_query_arg( 'w', 1400, ( empty( $extract['images'] ) ) ? $extract['image'] : $extract['images'][0]['url'] ) );
149
  }
150
 
151
  return array( $og_tags, $card_type );
class.jetpack-user-agent.php CHANGED
@@ -64,11 +64,11 @@ function jetpack_is_mobile( $kind = 'any', $return_matched_agent = false ) {
64
 
65
  class Jetpack_User_Agent_Info {
66
 
67
- var $useragent;
68
- var $matched_agent;
69
- var $isTierIphone; //Stores whether is the iPhone tier of devices.
70
- var $isTierRichCss; //Stores whether the device can probably support Rich CSS, but JavaScript (jQuery) support is not assumed.
71
- var $isTierGenericMobile; //Stores whether it is another mobile device, which cannot be assumed to support CSS or JS (eg, older BlackBerry, RAZR)
72
 
73
  private $_platform = null; //Stores the device platform name
74
  const PLATFORM_WINDOWS = 'windows';
@@ -84,7 +84,7 @@ class Jetpack_User_Agent_Info {
84
  const PLATFORM_ANDROID_TABLET = 'android_tablet';
85
  const PLATFORM_FIREFOX_OS = 'firefoxOS';
86
 
87
- var $dumb_agents = array(
88
  'nokia', 'blackberry', 'philips', 'samsung', 'sanyo', 'sony', 'panasonic', 'webos',
89
  'ericsson', 'alcatel', 'palm',
90
  'windows ce', 'opera mini', 'series60', 'series40',
@@ -1390,9 +1390,10 @@ class Jetpack_User_Agent_Info {
1390
  'alexa', 'altavista', 'ask jeeves', 'attentio', 'baiduspider', 'bingbot', 'chtml generic', 'crawler', 'fastmobilecrawl',
1391
  'feedfetcher-google', 'firefly', 'froogle', 'gigabot', 'googlebot', 'googlebot-mobile', 'heritrix', 'ia_archiver', 'irlbot',
1392
  'infoseek', 'jumpbot', 'lycos', 'mediapartners', 'mediobot', 'motionbot', 'msnbot', 'mshots', 'openbot',
1393
- 'pss-webkit-request',
1394
- 'pythumbnail', 'scooter', 'slurp', 'snapbot', 'spider', 'taptubot', 'technoratisnoop',
1395
- 'teoma', 'twiceler', 'yahooseeker', 'yahooysmcm', 'yammybot',
 
1396
  );
1397
 
1398
  foreach ( $bot_agents as $bot_agent ) {
64
 
65
  class Jetpack_User_Agent_Info {
66
 
67
+ public $useragent;
68
+ public $matched_agent;
69
+ public $isTierIphone; //Stores whether is the iPhone tier of devices.
70
+ public $isTierRichCss; //Stores whether the device can probably support Rich CSS, but JavaScript (jQuery) support is not assumed.
71
+ public $isTierGenericMobile; //Stores whether it is another mobile device, which cannot be assumed to support CSS or JS (eg, older BlackBerry, RAZR)
72
 
73
  private $_platform = null; //Stores the device platform name
74
  const PLATFORM_WINDOWS = 'windows';
84
  const PLATFORM_ANDROID_TABLET = 'android_tablet';
85
  const PLATFORM_FIREFOX_OS = 'firefoxOS';
86
 
87
+ public $dumb_agents = array(
88
  'nokia', 'blackberry', 'philips', 'samsung', 'sanyo', 'sony', 'panasonic', 'webos',
89
  'ericsson', 'alcatel', 'palm',
90
  'windows ce', 'opera mini', 'series60', 'series40',
1390
  'alexa', 'altavista', 'ask jeeves', 'attentio', 'baiduspider', 'bingbot', 'chtml generic', 'crawler', 'fastmobilecrawl',
1391
  'feedfetcher-google', 'firefly', 'froogle', 'gigabot', 'googlebot', 'googlebot-mobile', 'heritrix', 'ia_archiver', 'irlbot',
1392
  'infoseek', 'jumpbot', 'lycos', 'mediapartners', 'mediobot', 'motionbot', 'msnbot', 'mshots', 'openbot',
1393
+ 'pss-webkit-request', 'pythumbnail', 'scooter', 'slurp', 'snapbot', 'spider', 'taptubot', 'technoratisnoop',
1394
+ 'teoma', 'twiceler', 'yahooseeker', 'yahooysmcm', 'yammybot', 'ahrefsbot', 'pingdom.com_bot', 'kraken', 'yandexbot',
1395
+ 'twitterbot', 'tweetmemebot', 'openhosebot', 'queryseekerspider', 'linkdexbot', 'grokkit-crawler',
1396
+ 'livelapbot', 'germcrawler', 'domaintunocrawler', 'grapeshotcrawler', 'cloudflare-alwaysonline',
1397
  );
1398
 
1399
  foreach ( $bot_agents as $bot_agent ) {
class.jetpack-xmlrpc-server.php CHANGED
@@ -7,7 +7,7 @@ class Jetpack_XMLRPC_Server {
7
  /**
8
  * The current error object
9
  */
10
- var $error = null;
11
 
12
  /**
13
  * Whitelist of the XML-RPC methods available to the Jetpack Server. If the
@@ -41,9 +41,26 @@ class Jetpack_XMLRPC_Server {
41
  $jetpack_methods['jetpack.updateAttachmentParent'] = array( $this, 'update_attachment_parent' );
42
  }
43
 
 
 
 
 
 
 
 
 
 
44
  $jetpack_methods = apply_filters( 'jetpack_xmlrpc_methods', $jetpack_methods, $core_methods, $user );
45
  }
46
 
 
 
 
 
 
 
 
 
47
  return apply_filters( 'jetpack_xmlrpc_unauthenticated_methods', $jetpack_methods, $core_methods );
48
  }
49
 
7
  /**
8
  * The current error object
9
  */
10
+ public $error = null;
11
 
12
  /**
13
  * Whitelist of the XML-RPC methods available to the Jetpack Server. If the
41
  $jetpack_methods['jetpack.updateAttachmentParent'] = array( $this, 'update_attachment_parent' );
42
  }
43
 
44
+ /**
45
+ * Filters the XML-RPC methods available to Jetpack for authenticated users.
46
+ *
47
+ * @since 1.1.0
48
+ *
49
+ * @param array $jetpack_methods XML-RPC methods available to the Jetpack Server.
50
+ * @param array $core_methods Available core XML-RPC methods.
51
+ * @param WP_User $user Information about a given WordPress user.
52
+ */
53
  $jetpack_methods = apply_filters( 'jetpack_xmlrpc_methods', $jetpack_methods, $core_methods, $user );
54
  }
55
 
56
+ /**
57
+ * Filters the XML-RPC methods available to Jetpack for unauthenticated users.
58
+ *
59
+ * @since 3.0.0
60
+ *
61
+ * @param array $jetpack_methods XML-RPC methods available to the Jetpack Server.
62
+ * @param array $core_methods Available core XML-RPC methods.
63
+ */
64
  return apply_filters( 'jetpack_xmlrpc_unauthenticated_methods', $jetpack_methods, $core_methods );
65
  }
66
 
class.jetpack.php CHANGED
@@ -23,16 +23,16 @@ jetpack_do_activate (bool)
23
  */
24
 
25
  class Jetpack {
26
- var $xmlrpc_server = null;
27
 
28
  private $xmlrpc_verification = null;
29
 
30
- var $HTTP_RAW_POST_DATA = null; // copy of $GLOBALS['HTTP_RAW_POST_DATA']
31
 
32
  /**
33
  * @var array The handles of styles that are concatenated into jetpack.css
34
  */
35
- var $concatenated_style_handles = array(
36
  'jetpack-carousel',
37
  'grunion.css',
38
  'the-neverending-homepage',
@@ -51,7 +51,7 @@ class Jetpack {
51
  'goodreads-widget',
52
  );
53
 
54
- var $plugins_to_deactivate = array(
55
  'stats' => array( 'stats/stats.php', 'WordPress.com Stats' ),
56
  'shortlinks' => array( 'stats/stats.php', 'WordPress.com Stats' ),
57
  'sharedaddy' => array( 'sharedaddy/sharedaddy.php', 'Sharedaddy' ),
@@ -70,7 +70,7 @@ class Jetpack {
70
  'latex' => array( 'wp-latex/wp-latex.php', 'WP LaTeX' )
71
  );
72
 
73
- var $capability_translations = array(
74
  'administrator' => 'manage_options',
75
  'editor' => 'edit_others_posts',
76
  'author' => 'publish_posts',
@@ -239,26 +239,26 @@ class Jetpack {
239
  * Message to display in admin_notice
240
  * @var string
241
  */
242
- var $message = '';
243
 
244
  /**
245
  * Error to display in admin_notice
246
  * @var string
247
  */
248
- var $error = '';
249
 
250
  /**
251
  * Modules that need more privacy description.
252
  * @var string
253
  */
254
- var $privacy_checks = '';
255
 
256
  /**
257
  * Stats to record once the page loads
258
  *
259
  * @var array
260
  */
261
- var $stats = array();
262
 
263
  /**
264
  * Allows us to build a temporary security report
@@ -270,12 +270,12 @@ class Jetpack {
270
  /**
271
  * Jetpack_Sync object
272
  */
273
- var $sync;
274
 
275
  /**
276
  * Verified data for JSON authorization request
277
  */
278
- var $json_api_authorization_request = array();
279
 
280
  /**
281
  * Holds the singleton instance of this class
@@ -331,6 +331,14 @@ class Jetpack {
331
  // Add missing version and old_version options
332
  if ( ! $version = Jetpack_Options::get_option( 'version' ) ) {
333
  $version = $old_version = '1.1:' . time();
 
 
 
 
 
 
 
 
334
  do_action( 'updating_jetpack_version', $version, false );
335
  Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
336
  }
@@ -374,9 +382,13 @@ class Jetpack {
374
  list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) );
375
  if ( JETPACK__VERSION != $version ) {
376
  add_action( 'init', array( __CLASS__, 'activate_new_modules' ) );
 
 
 
 
 
377
  do_action( 'jetpack_sync_all_registered_options' );
378
  }
379
-
380
  //if Jetpack is connected check if jetpack_unique_connection exists and if not then set it
381
  $jetpack_unique_connection = get_option( 'jetpack_unique_connection' );
382
  $is_unique_connection = $jetpack_unique_connection && array_key_exists( 'version', $jetpack_unique_connection );
@@ -422,6 +434,19 @@ class Jetpack {
422
  */
423
  add_filter( 'jetpack_require_lib_dir', array( $this, 'require_lib_dir' ) );
424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
425
  /*
426
  * Load things that should only be in Network Admin.
427
  *
@@ -432,14 +457,25 @@ class Jetpack {
432
  if( is_multisite() ) {
433
  Jetpack_Network::init();
434
 
435
- if( is_network_admin() )
436
- return; // End here to prevent single site actions from firing
 
 
 
 
 
 
 
 
 
 
 
 
437
  }
438
 
439
 
440
  $theme_slug = get_option( 'stylesheet' );
441
 
442
- $this->sync = new Jetpack_Sync;
443
 
444
  // Modules should do Jetpack_Sync::sync_options( __FILE__, $option, ... ); instead
445
  // We access the "internal" method here only because the Jetpack object isn't instantiated yet
@@ -471,6 +507,9 @@ class Jetpack {
471
  $this->sync->mock_option( 'main_network_site', array( $this, 'jetpack_main_network_site_option' ) );
472
  $this->sync->mock_option( 'single_user_site', array( 'Jetpack', 'is_single_user_site' ) );
473
 
 
 
 
474
  /**
475
  * Trigger an update to the main_network_site when we update the blogname of a site.
476
  *
@@ -543,16 +582,22 @@ class Jetpack {
543
  // Filter the dashboard meta box order to swap the new one in in place of the old one.
544
  add_filter( 'get_user_option_meta-box-order_dashboard', array( $this, 'get_user_option_meta_box_order_dashboard' ) );
545
 
546
- add_action( 'wp_ajax_jetpack-check-news-subscription', array( $this, 'check_news_subscription' ) );
547
- add_action( 'wp_ajax_jetpack-subscribe-to-news', array( $this, 'subscribe_to_news' ) );
548
-
549
  add_action( 'wp_ajax_jetpack-sync-reindex-trigger', array( $this, 'sync_reindex_trigger' ) );
550
  add_action( 'wp_ajax_jetpack-sync-reindex-status', array( $this, 'sync_reindex_status' ) );
551
 
552
  // Jump Start AJAX callback function
553
- add_action( 'wp_ajax_jetpack_admin_ajax', array( $this, 'jetpack_jumpstart_ajax_callback' ) );
554
  add_action( 'update_option', array( $this, 'jumpstart_has_updated_module_option' ) );
555
 
 
 
 
 
 
 
 
 
 
556
  add_action( 'wp_loaded', array( $this, 'register_assets' ) );
557
  add_action( 'wp_enqueue_scripts', array( $this, 'devicepx' ) );
558
  add_action( 'customize_controls_enqueue_scripts', array( $this, 'devicepx' ) );
@@ -580,6 +625,9 @@ class Jetpack {
580
  add_filter( 'jetpack_get_default_modules', array( $this, 'filter_default_modules' ) );
581
  add_filter( 'jetpack_get_default_modules', array( $this, 'handle_deprecated_modules' ), 99 );
582
 
 
 
 
583
  /**
584
  * This is the hack to concatinate all css files into one.
585
  * For description and reasoning see the implode_frontend_css method
@@ -591,7 +639,7 @@ class Jetpack {
591
  add_action( 'wp_print_footer_scripts', array( $this, 'implode_frontend_css' ), -1 ); // Run first to trigger before `print_late_styles`
592
  }
593
 
594
- // Sync Core Icon: Detect changes in Core's Site Icon and make it syncable.
595
  add_action( 'add_option_site_icon', array( $this, 'jetpack_sync_core_icon' ) );
596
  add_action( 'update_option_site_icon', array( $this, 'jetpack_sync_core_icon' ) );
597
  add_action( 'delete_option_site_icon', array( $this, 'jetpack_sync_core_icon' ) );
@@ -620,6 +668,54 @@ class Jetpack {
620
  }
621
  }
622
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
623
  /**
624
  * The callback for the Jump Start ajax requests.
625
  */
@@ -714,6 +810,49 @@ class Jetpack {
714
  wp_die();
715
  }
716
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
717
  /**
718
  * If there are any stats that need to be pushed, but haven't been, push them now.
719
  */
@@ -764,12 +903,31 @@ class Jetpack {
764
  case 'jetpack_configure_modules' :
765
  $caps = array( 'manage_options' );
766
  break;
 
 
 
 
 
 
 
767
  case 'jetpack_admin_page' :
768
  if ( Jetpack::is_development_mode() ) {
769
  $caps = array( 'manage_options' );
770
  break;
771
  }
772
 
 
 
 
 
 
 
 
 
 
 
 
 
773
  if ( ! self::is_active() && ! current_user_can( 'jetpack_connect' ) ) {
774
  $caps = array( 'do_not_allow' );
775
  break;
@@ -875,6 +1033,61 @@ class Jetpack {
875
  public function jetpack_main_network_site_option( $option ) {
876
  return network_site_url();
877
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
878
 
879
  /**
880
  * Return whether we are dealing with a multi network setup or not.
@@ -930,10 +1143,51 @@ class Jetpack {
930
  */
931
  function update_jetpack_main_network_site_option() {
932
  // do_action( 'add_option_$option', '$option', '$value-of-the-option' );
 
 
 
 
 
 
 
 
 
933
  do_action( 'add_option_jetpack_main_network_site', 'jetpack_main_network_site', network_site_url() );
 
 
 
 
 
 
 
 
 
934
  do_action( 'add_option_jetpack_is_main_network', 'jetpack_is_main_network', (string) (bool) Jetpack::is_multi_network() );
 
 
 
 
 
 
 
 
 
935
  do_action( 'add_option_jetpack_is_multi_site', 'jetpack_is_multi_site', (string) (bool) is_multisite() );
936
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
937
 
938
  /**
939
  * Get back if the current site is single user site.
@@ -950,17 +1204,172 @@ class Jetpack {
950
  return 1 === (int) $user_query->get_total();
951
  }
952
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
953
  /**
954
  * Invalides the transient as well as triggers the update of the mock option.
955
  *
956
  * @return null
957
  */
958
  function is_single_user_site_invalidate() {
 
 
 
 
 
 
 
 
 
959
  do_action( 'update_option_jetpack_single_user_site', 'jetpack_single_user_site', (bool) Jetpack::is_single_user_site() );
960
  }
961
 
962
-
963
-
964
  /**
965
  * Is Jetpack active?
966
  */
@@ -981,6 +1390,15 @@ class Jetpack {
981
  elseif ( site_url() && false === strpos( site_url(), '.' ) ) {
982
  $development_mode = true;
983
  }
 
 
 
 
 
 
 
 
 
984
  return apply_filters( 'jetpack_development_mode', $development_mode );
985
  }
986
 
@@ -993,11 +1411,23 @@ class Jetpack {
993
  public static function show_development_mode_notice() {
994
  if ( Jetpack::is_development_mode() ) {
995
  if ( defined( 'JETPACK_DEV_DEBUG' ) && JETPACK_DEV_DEBUG ) {
996
- $notice = __( 'In Development Mode, via the JETPACK_DEV_DEBUG constant being defined in wp-config.php or elsewhere.', 'jetpack' );
 
 
 
 
997
  } elseif ( site_url() && false === strpos( site_url(), '.' ) ) {
998
- $notice = __( 'In Development Mode, via site URL lacking a dot (e.g. http://localhost).', 'jetpack' );
 
 
 
 
999
  } else {
1000
- $notice = __( 'In Development Mode, via the jetpack_development_mode filter.', 'jetpack' );
 
 
 
 
1001
  }
1002
 
1003
  echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
@@ -1005,7 +1435,8 @@ class Jetpack {
1005
 
1006
  // Throw up a notice if using a development version and as for feedback.
1007
  if ( Jetpack::is_development_version() ) {
1008
- $notice = sprintf( _x( 'You are currently running a development version of Jetpack. %1s Submit your feedback. %2s', '%1s & %2s are HTML tags', 'jetpack' ), '<a href="https://jetpack.me/contact-support/beta-group/" target="_blank">', '</a>' );
 
1009
 
1010
  echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1011
  }
@@ -1087,6 +1518,7 @@ class Jetpack {
1087
  function extra_oembed_providers() {
1088
  // Cloudup: https://dev.cloudup.com/#oembed
1089
  wp_oembed_add_provider( 'https://cloudup.com/*' , 'https://cloudup.com/oembed' );
 
1090
  }
1091
 
1092
  /**
@@ -1149,6 +1581,7 @@ class Jetpack {
1149
  $version = Jetpack_Options::get_option( 'version' );
1150
  if ( ! $version ) {
1151
  $version = $old_version = JETPACK__VERSION . ':' . time();
 
1152
  do_action( 'updating_jetpack_version', $version, false );
1153
  Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
1154
  }
@@ -1197,9 +1630,20 @@ class Jetpack {
1197
  }
1198
 
1199
  require Jetpack::get_module_path( $module );
 
 
 
 
 
 
1200
  do_action( 'jetpack_module_loaded_' . $module );
1201
  }
1202
 
 
 
 
 
 
1203
  do_action( 'jetpack_modules_loaded' );
1204
 
1205
  // Load module-specific code that is needed even when a module isn't active. Loaded here because code contained therein may need actions such as setup_theme.
@@ -1213,6 +1657,13 @@ class Jetpack {
1213
  * @return null
1214
  */
1215
  public function check_rest_api_compat() {
 
 
 
 
 
 
 
1216
  $_jetpack_rest_api_compat_includes = apply_filters( 'jetpack_rest_api_compat', array() );
1217
 
1218
  if ( function_exists( 'bbpress' ) )
@@ -1279,6 +1730,13 @@ class Jetpack {
1279
  }
1280
  }
1281
 
 
 
 
 
 
 
 
1282
  if ( apply_filters( 'jetpack_enable_open_graph', false ) ) {
1283
  require_once JETPACK__PLUGIN_DIR . 'functions.opengraph.php';
1284
  }
@@ -1305,6 +1763,13 @@ class Jetpack {
1305
  }
1306
  }
1307
 
 
 
 
 
 
 
 
1308
  if ( apply_filters( 'jetpack_disable_twitter_cards', true ) ) {
1309
  require_once JETPACK__PLUGIN_DIR . 'class.jetpack-twitter-cards.php';
1310
  }
@@ -1346,6 +1811,11 @@ class Jetpack {
1346
  return;
1347
  }
1348
 
 
 
 
 
 
1349
  do_action( 'jetpack_security_report' );
1350
 
1351
  Jetpack_Options::update_option( 'security_report', self::$security_report );
@@ -1370,7 +1840,7 @@ class Jetpack {
1370
  }
1371
 
1372
  if( !function_exists( 'get_plugin_data' ) ) {
1373
- include( ABSPATH . 'wp-admin/includes/plugin.php' );
1374
  }
1375
 
1376
  //Get rid of any non-allowed args
@@ -1571,6 +2041,7 @@ class Jetpack {
1571
  $jetpack_old_version = Jetpack_Options::get_option( 'version' ); // [sic]
1572
  if ( ! $jetpack_old_version ) {
1573
  $jetpack_old_version = $version = $old_version = '1.1:' . time();
 
1574
  do_action( 'updating_jetpack_version', $version, false );
1575
  Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
1576
  }
@@ -1598,6 +2069,7 @@ class Jetpack {
1598
  }
1599
 
1600
  $new_version = JETPACK__VERSION . ':' . time();
 
1601
  do_action( 'updating_jetpack_version', $new_version, $jetpack_old_version );
1602
  Jetpack_Options::update_options(
1603
  array(
@@ -1651,6 +2123,15 @@ class Jetpack {
1651
  }
1652
  }
1653
 
 
 
 
 
 
 
 
 
 
1654
  $mods = apply_filters( 'jetpack_get_available_modules', $modules, $min_version, $max_version );
1655
 
1656
  if ( ! $min_version && ! $max_version ) {
@@ -1696,6 +2177,15 @@ class Jetpack {
1696
  break;
1697
  }
1698
  }
 
 
 
 
 
 
 
 
 
1699
  return apply_filters( 'jetpack_get_default_modules', $return, $min_version, $max_version );
1700
  }
1701
 
@@ -1853,19 +2343,19 @@ class Jetpack {
1853
  }
1854
 
1855
  /**
1856
- * Filter the feature array on a module
1857
  *
1858
  * This filter allows you to control where each module is filtered: Recommended,
1859
  * Jumpstart, and the default "Other" listing.
1860
  *
1861
- * @since 3.5
1862
  *
1863
  * @param array $mod['feature'] The areas to feature this module:
1864
- * 'Jumpstart' adds to the "Jumpstart" option to activate many modules at once
1865
- * 'Recommended' shows on the main Jetpack admin screen
1866
- * 'Other' should be the default if no other value is in the array
1867
- * @param string $module The slug of the module, e.g. sharedaddy
1868
- * @param array $mod All the currently assembled module data
1869
  */
1870
  $mod['feature'] = apply_filters( 'jetpack_module_feature', $mod['feature'], $module, $mod );
1871
 
@@ -1875,7 +2365,7 @@ class Jetpack {
1875
  * This filter allows overriding any info about Jetpack modules. It is dangerous,
1876
  * so please be careful.
1877
  *
1878
- * @since 3.6
1879
  *
1880
  * @param array $mod The details of the requested module.
1881
  * @param string $module The slug of the module, e.g. sharedaddy
@@ -1927,12 +2417,12 @@ class Jetpack {
1927
  } else {
1928
  $active = array_diff( $active, array( 'vaultpress' ) );
1929
  }
1930
-
1931
  //If protect is active on the main site of a multisite, it should be active on all sites.
1932
  if ( ! in_array( 'protect', $active ) && is_multisite() && get_site_option( 'jetpack_protect_active' ) ) {
1933
  $active[] = 'protect';
1934
  }
1935
-
1936
  return array_unique( $active );
1937
  }
1938
 
@@ -2017,6 +2507,15 @@ class Jetpack {
2017
  exit;
2018
  }
2019
 
 
 
 
 
 
 
 
 
 
2020
  do_action( 'jetpack_before_activate_default_modules', $min_version, $max_version, $other_modules );
2021
 
2022
  // Check each module for fatal errors, a la wp-admin/plugins.php::activate before activating
@@ -2058,6 +2557,13 @@ class Jetpack {
2058
  Jetpack::state( 'module', $module );
2059
  ob_start();
2060
  require $file;
 
 
 
 
 
 
 
2061
  do_action( 'jetpack_activate_module', $module );
2062
  $active[] = $module;
2063
  $state = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules';
@@ -2074,10 +2580,28 @@ class Jetpack {
2074
  Jetpack::state( 'error', false );
2075
  Jetpack::state( 'module', false );
2076
  Jetpack::catch_errors( false );
 
 
 
 
 
 
 
 
 
2077
  do_action( 'jetpack_activate_default_modules', $min_version, $max_version, $other_modules );
2078
  }
2079
 
2080
  public static function activate_module( $module, $exit = true, $redirect = true ) {
 
 
 
 
 
 
 
 
 
2081
  do_action( 'jetpack_pre_activate_module', $module, $exit, $redirect );
2082
 
2083
  $jetpack = Jetpack::init();
@@ -2125,6 +2649,7 @@ class Jetpack {
2125
  Jetpack::catch_errors( true );
2126
  ob_start();
2127
  require Jetpack::get_module_path( $module );
 
2128
  do_action( 'jetpack_activate_module', $module );
2129
  $active[] = $module;
2130
  Jetpack_Options::update_option( 'active_modules', array_unique( $active ) );
@@ -2153,12 +2678,27 @@ class Jetpack {
2153
  }
2154
 
2155
  function activate_module_actions( $module ) {
 
 
 
 
 
 
 
 
2156
  do_action( "jetpack_activate_module_$module", $module );
2157
 
2158
  $this->sync->sync_all_module_options( $module );
2159
  }
2160
 
2161
  public static function deactivate_module( $module ) {
 
 
 
 
 
 
 
2162
  do_action( 'jetpack_pre_deactivate_module', $module );
2163
 
2164
  $jetpack = Jetpack::init();
@@ -2166,6 +2706,14 @@ class Jetpack {
2166
  $active = Jetpack::get_active_modules();
2167
  $new = array_filter( array_diff( $active, (array) $module ) );
2168
 
 
 
 
 
 
 
 
 
2169
  do_action( "jetpack_deactivate_module_$module", $module );
2170
 
2171
  // A flag for Jump Start so it's not shown again.
@@ -2290,6 +2838,7 @@ p {
2290
 
2291
  if ( ! Jetpack_Options::get_option( 'version' ) ) {
2292
  $version = $old_version = JETPACK__VERSION . ':' . time();
 
2293
  do_action( 'updating_jetpack_version', $version, false );
2294
  Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
2295
  }
@@ -2447,18 +2996,71 @@ p {
2447
  Jetpack_Options::update_option( 'log', $log );
2448
  }
2449
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2450
  do_action( 'jetpack_log_entry', $log_entry );
2451
  }
2452
 
2453
  /**
2454
  * Get the internal event log.
 
 
 
 
 
2455
  */
2456
- public static function get_log() {
2457
- return Jetpack_Options::get_option( 'log', array() );
2458
- }
 
2459
 
2460
- /**
2461
- * Log modification of important settings.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2462
  */
2463
  public static function log_settings_change( $option, $old_value, $value ) {
2464
  switch( $option ) {
@@ -2501,6 +3103,10 @@ p {
2501
  // Show the notice on the Dashboard only for now
2502
 
2503
  add_action( 'load-index.php', array( $this, 'prepare_manage_jetpack_notice' ) );
 
 
 
 
2504
  }
2505
 
2506
  // If the plugin has just been disconnected from WP.com, show the survey notice
@@ -2508,8 +3114,6 @@ p {
2508
  add_action( 'jetpack_notices', array( $this, 'disconnect_survey_notice' ) );
2509
  }
2510
 
2511
- // add_action( 'admin_notices', array( $this, 'alert_identity_crisis' ) );
2512
-
2513
  if ( current_user_can( 'manage_options' ) && 'ALWAYS' == JETPACK_CLIENT__HTTPS && ! self::permit_ssl() ) {
2514
  add_action( 'admin_notices', array( $this, 'alert_required_ssl_fail' ) );
2515
  }
@@ -2805,6 +3409,7 @@ p {
2805
 
2806
  function admin_head() {
2807
  if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) )
 
2808
  do_action( 'jetpack_module_configuration_head_' . $_GET['configure'] );
2809
  }
2810
 
@@ -2966,6 +3571,13 @@ p {
2966
  if( ! Jetpack_Options::get_option( 'public' ) )
2967
  return false;
2968
 
 
 
 
 
 
 
 
2969
  return apply_filters( 'can_display_jetpack_manage_notice', ! self::is_module_active( 'manage' ) );
2970
  }
2971
 
@@ -3000,7 +3612,7 @@ p {
3000
  }
3001
 
3002
  return '<br /><br />' . sprintf(
3003
- __( 'Jetpack now includes Jetpack Comments, which enables your visitors to use their WordPress.com, Twitter, or Facebook accounts when commenting on your site. To activate Jetpack Comments, <a href="%s">%s</a>.', 'jetpack' ),
3004
  wp_nonce_url(
3005
  Jetpack::admin_url(
3006
  array(
@@ -3193,14 +3805,25 @@ p {
3193
  wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
3194
  exit;
3195
  case 'unlink' :
3196
- $redirect = isset( $_GET['redirect'] ) ? array( 'page' => $_GET['redirect'] ) : '';
3197
  check_admin_referer( 'jetpack-unlink' );
3198
  Jetpack::log( 'unlink' );
3199
  $this->unlink_user();
3200
  Jetpack::state( 'message', 'unlinked' );
3201
- wp_safe_redirect( Jetpack::admin_url( $redirect ) );
 
 
 
 
3202
  exit;
3203
  default:
 
 
 
 
 
 
 
3204
  do_action( 'jetpack_unrecognized_action', sanitize_key( $_GET['action'] ) );
3205
  }
3206
  }
@@ -3504,6 +4127,12 @@ p {
3504
  }
3505
 
3506
  if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) ) {
 
 
 
 
 
 
3507
  do_action( 'jetpack_module_configuration_load_' . $_GET['configure'] );
3508
  }
3509
 
@@ -3644,7 +4273,7 @@ p {
3644
  * @return bool If it worked.
3645
  */
3646
  static function do_server_side_stat( $args ) {
3647
- $response = wp_remote_get( self::build_stats_url( $args ) );
3648
  if ( is_wp_error( $response ) )
3649
  return false;
3650
 
@@ -3667,6 +4296,13 @@ p {
3667
  'rand' => md5( mt_rand( 0, 999 ) . time() ),
3668
  );
3669
  $args = wp_parse_args( $args, $defaults );
 
 
 
 
 
 
 
3670
  $base_url = apply_filters(
3671
  'jetpack_stats_base_url',
3672
  set_url_scheme( 'http://pixel.wp.com/g.gif' )
@@ -3707,7 +4343,7 @@ p {
3707
  }
3708
 
3709
  function build_connect_url( $raw = false, $redirect = false ) {
3710
- if ( ! Jetpack_Options::get_option( 'blog_token' ) ) {
3711
  $url = Jetpack::nonce_url_no_esc( Jetpack::admin_url( 'action=register' ), 'jetpack-register' );
3712
  if( is_network_admin() ) {
3713
  $url = add_query_arg( 'is_multisite', network_admin_url(
@@ -3843,185 +4479,6 @@ p {
3843
  }
3844
  }
3845
 
3846
- /**
3847
- * This is the old pre-3.0 admin page. It is replaced by the Jetpack_Admin class.
3848
- * Tentatively left here for comparison purposes.
3849
- */
3850
- function admin_page() {
3851
- global $current_user;
3852
-
3853
- $is_connected = Jetpack::is_active();
3854
- $user_token = Jetpack_Data::get_access_token( $current_user->ID );
3855
- $is_user_connected = $user_token && ! is_wp_error( $user_token );
3856
- $is_master_user = $current_user->ID == Jetpack_Options::get_option( 'master_user' );
3857
-
3858
- $can_reconnect_jpms = true;
3859
- if( is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) {
3860
- $jpms = Jetpack_Network::init();
3861
- $can_reconnect_jpms = ( $jpms->get_option( 'sub-site-connection-override' ) ) ? 1: 0;
3862
- }
3863
-
3864
-
3865
-
3866
- ?>
3867
- <div class="wrap" id="jetpack-settings">
3868
-
3869
- <div id="jp-header"<?php if ( $is_connected ) : ?> class="small"<?php endif; ?>>
3870
- <div id="jp-clouds">
3871
- <?php if ( $is_connected && $can_reconnect_jpms ) : ?>
3872
- <div id="jp-disconnectors">
3873
- <?php if ( current_user_can( 'jetpack_disconnect' ) ) : ?>
3874
- <div id="jp-disconnect" class="jp-disconnect">
3875
- <a href="<?php echo wp_nonce_url( Jetpack::admin_url( 'action=disconnect' ), 'jetpack-disconnect' ); ?>" onclick="return confirm('<?php echo htmlspecialchars( __('Are you sure you want to disconnect from WordPress.com?', 'jetpack'), ENT_QUOTES ); ?>');"><div class="deftext"><?php _e( 'Connected to WordPress.com', 'jetpack' ); ?></div><div class="hovertext"><?php _e( 'Disconnect from WordPress.com', 'jetpack' ) ?></div></a>
3876
- </div>
3877
- <?php endif; ?>
3878
- <?php if ( $is_user_connected && ! $is_master_user ) : ?>
3879
- <div id="jp-unlink" class="jp-disconnect">
3880
- <a href="<?php echo wp_nonce_url( Jetpack::admin_url( 'action=unlink' ), 'jetpack-unlink' ); ?>"><div class="deftext"><?php _e( 'User linked to WordPress.com', 'jetpack' ); ?></div><div class="hovertext"><?php _e( 'Unlink user from WordPress.com', 'jetpack' ) ?></div></a>
3881
- </div>
3882
- <?php endif; ?>
3883
- </div>
3884
- <?php endif; ?>
3885
- <h3><?php _e( 'Jetpack by WordPress.com', 'jetpack' ) ?></h3>
3886
- <?php if ( ! $is_connected ) : ?>
3887
- <div id="jp-notice">
3888
- <p><?php _e( 'Jetpack supercharges your self-hosted WordPress site with the awesome cloud power of WordPress.com.', 'jetpack' ); ?></p>
3889
- </div>
3890
- <?php endif; ?>
3891
- </div>
3892
- </div>
3893
-
3894
- <h2 style="display: none"></h2> <!-- For WP JS message relocation -->
3895
-
3896
- <?php Jetpack::init()->load_view( 'admin/network-activated-notice.php' ); ?>
3897
-
3898
- <?php do_action( 'jetpack_notices' ) ?>
3899
-
3900
- <?php
3901
- // If the connection has not been made then show the marketing text.
3902
- if( !$can_reconnect_jpms && !$is_connected ) {
3903
- ?>
3904
- <div id="message" class="updated jetpack-message jp-banner jp-multisite" style="display:block !important">
3905
- <div class="jp-banner__content">
3906
- <h4><?php _e( 'To use Jetpack please contact your WordPress administrator to connect it for you.', 'jetpack' ) ?></h4>
3907
- </div>
3908
- </div> <?php
3909
- }
3910
- if ( ! Jetpack::is_development_mode() && $can_reconnect_jpms ) :
3911
- ?>
3912
- <?php if ( ! $is_connected ) :
3913
- $dismiss_and_deactivate_url = wp_nonce_url( Jetpack::admin_url( '?page=jetpack&jetpack-notice=dismiss' ), 'jetpack-deactivate' );
3914
- ?>
3915
- <div id="message" class="updated jetpack-message jp-banner" style="display:block !important;">
3916
- <a class="jp-banner__dismiss" href="<?php echo esc_url( $dismiss_and_deactivate_url ); ?>"></a>
3917
- <div class="jp-banner__content">
3918
- <h4><?php _e( 'To enable all of the Jetpack features, you&#8217;ll need to connect your website to WordPress.com.', 'jetpack' ) ?></h4>
3919
- <p><?php _e( 'Once you&#8217;ve made the connection you&#8217;ll activate all the delightful features below.', 'jetpack' ) ?></p>
3920
- </div>
3921
- <div class="jp-banner__action-container">
3922
- <a href="<?php echo $this->build_connect_url() ?>" class="jp-banner__button" id="wpcom-connect"><?php _e( 'Connect', 'jetpack' ); ?></a>
3923
- </div>
3924
- </div>
3925
-
3926
- <?php else /* blog and user are connected */ : ?>
3927
- <?php /* TODO: if not master user, show user disconnect button? */ ?>
3928
- <?php endif; ?>
3929
- <?php endif; // ! Jetpack::is_development_mode() ?>
3930
-
3931
-
3932
-
3933
-
3934
-
3935
- <?php if ( Jetpack::is_active() && !Jetpack::is_development_mode() && ! $is_user_connected ) : ?>
3936
-
3937
- <div id="message" class="updated jetpack-message jp-banner" style="display:block !important;">
3938
- <div class="jp-banner__content">
3939
- <h4><?php _e( 'To enable all of the Jetpack features you&#8217;ll need to link your account here to your WordPress.com account.', 'jetpack' ) ?></h4>
3940
- </div>
3941
- <div class="jp-banner__action-container is-full-width">
3942
- <a href="<?php echo $this->build_connect_url() ?>" class="jp-banner__button" id="wpcom-connect"><?php _e( 'Link account with WordPress.com', 'jetpack' ); ?></a>
3943
- </div>
3944
- </div>
3945
-
3946
- <?php endif; ?>
3947
-
3948
-
3949
-
3950
-
3951
- <?php
3952
- if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) ) {
3953
- $this->admin_screen_configure_module( $_GET['configure'] );
3954
- } else {
3955
- $this->admin_screen_list_modules();
3956
- }
3957
- ?>
3958
-
3959
- <div id="survey" class="jp-survey">
3960
- <div class="jp-survey-container">
3961
- <div class="jp-survey-text">
3962
- <h4><?php _e( 'Have feedback on Jetpack?', 'jetpack' ); ?></h4>
3963
- <br />
3964
- <?php _e( 'Answer a short survey to let us know how we&#8217;re doing and what to add in the future.', 'jetpack' ); ?>
3965
- </div>
3966
- <div class="jp-survey-button-container">
3967
- <p class="submit"><?php printf( '<a id="jp-survey-button" class="button-primary" target="_blank" href="%1$s">%2$s</a>', 'http://jetpack.me/survey/?rel=' . JETPACK__VERSION, __( 'Take Survey', 'jetpack' ) ); ?></p>
3968
- </div>
3969
- </div>
3970
- </div>
3971
-
3972
- <?php if ( $is_connected && $this->current_user_is_connection_owner() ) : ?>
3973
- <p id="news-sub"><?php _e( 'Checking email updates status&hellip;', 'jetpack' ); ?></p>
3974
- <script type="text/javascript">
3975
- jQuery(document).ready(function($){
3976
- $.get( ajaxurl, { action: 'jetpack-check-news-subscription', rand: jQuery.now().toString() + Math.random().toString() }, function( data ) {
3977
- if ( 'subscribed' == data ) {
3978
- $( '#news-sub' ).html( '<?php printf(
3979
- esc_js( _x( 'You are currently subscribed to email updates. %s', '%s = Unsubscribe link', 'jetpack' ) ),
3980
- '<a href="#" class="jp-news-link button">' . esc_js( __( 'Unsubscribe', 'jetpack' ) ) . '</a>'
3981
- ); ?>' );
3982
- } else {
3983
- $( '#news-sub' ).html( '<?php printf(
3984
- esc_js( _x( 'Want to receive updates about Jetpack by email? %s', '%s = Subscribe link', 'jetpack' ) ),
3985
- '<a href="#" class="jp-news-link button-primary">' . esc_js( __( 'Subscribe', 'jetpack' ) ) . '</a>'
3986
- ); ?>' );
3987
- }
3988
- $( '.jp-news-link' ).click( function() {
3989
- $( '#news-sub' ).append( ' <img src="<?php echo esc_js( esc_url( admin_url( 'images/loading.gif' ) ) ); ?>" align="absmiddle" id="jp-news-loading" />' );
3990
- $.get( ajaxurl, { action: 'jetpack-subscribe-to-news', rand: jQuery.now().toString() + Math.random().toString() }, function( data ) {
3991
- if ( 'subscribed' == data ) {
3992
- $( '#news-sub' ).text( '<?php echo esc_js( __( 'You have been subscribed to receive email updates.', 'jetpack' ) ); ?>' );
3993
- } else {
3994
- $( '#news-sub' ).text( '<?php echo esc_js( __( 'You will no longer receive email updates about Jetpack.', 'jetpack' ) ); ?>' );
3995
- }
3996
- $( '#jp-news-loading' ).remove();
3997
- } );
3998
- return false;
3999
- } );
4000
- } );
4001
- } );
4002
- </script>
4003
- <?php endif; ?>
4004
-
4005
- <div id="jp-footer">
4006
- <p class="automattic"><?php _e( 'An <span>Automattic</span> Airline', 'jetpack' ) ?></p>
4007
- <p class="small">
4008
- <a href="http://jetpack.me/" target="_blank">Jetpack <?php echo esc_html( JETPACK__VERSION ); ?></a> |
4009
- <a href="http://automattic.com/privacy/" target="_blank"><?php _e( 'Privacy Policy', 'jetpack' ); ?></a> |
4010
- <a href="http://wordpress.com/tos/" target="_blank"><?php _e( 'Terms of Service', 'jetpack' ); ?></a> |
4011
- <?php if ( current_user_can( 'manage_options' ) ) : ?>
4012
- <a href="<?php echo Jetpack::admin_url( array( 'page' => 'jetpack-debugger' ) ); ?>"><?php _e( 'Debug', 'jetpack' ); ?></a> |
4013
- <?php endif; ?>
4014
- <a href="http://jetpack.me/support/" target="_blank"><?php _e( 'Support', 'jetpack' ); ?></a>
4015
- </p>
4016
- </div>
4017
-
4018
- <div id="jetpack-configuration" style="display:none;">
4019
- <p><img width="16" src="<?php echo esc_url( plugins_url( 'images/wpspin_light-2x.gif', JETPACK__PLUGIN_FILE) ); ?>" alt="Loading ..." /></p>
4020
- </div>
4021
- </div>
4022
- <?php
4023
- }
4024
-
4025
  function debugger_page() {
4026
  nocache_headers();
4027
  if ( ! current_user_can( 'manage_options' ) ) {
@@ -4047,8 +4504,23 @@ p {
4047
  printf( __( 'Configure %s', 'jetpack' ), $module['name'] );
4048
  ?>
4049
  </h3>
4050
- <?php do_action( 'jetpack_notices_update_settings', $module_id ); ?>
4051
- <?php do_action( 'jetpack_module_configuration_screen_' . $module_id ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4052
  </div><?php
4053
  }
4054
 
@@ -4117,208 +4589,6 @@ p {
4117
  return ( $a['sort'] < $b['sort'] ) ? -1 : 1;
4118
  }
4119
 
4120
- function admin_screen_list_modules() {
4121
- require_once JETPACK__PLUGIN_DIR . 'modules/module-info.php';
4122
- $jetpack_connected = true;
4123
- if ( ! Jetpack::is_active() )
4124
- $jetpack_connected = false;
4125
-
4126
- ?>
4127
- <div class="module-container">
4128
- <?php
4129
-
4130
- $avail_raw = Jetpack::get_available_modules();
4131
- $available = array();
4132
- $active = Jetpack::get_active_modules();
4133
- $counter = 0;
4134
-
4135
- foreach ( (array) $avail_raw as $module ) {
4136
- if ( $plugin = Jetpack::get_module( $module ) ) {
4137
- $plugin['module'] = $module;
4138
- $available[] = $plugin;
4139
- }
4140
- }
4141
- unset( $avail_raw );
4142
- usort( $available, array( 'Jetpack', 'sort_modules' ) );
4143
- $jetpack_version = Jetpack_Options::get_option( 'version' );
4144
- if ( $jetpack_version ) {
4145
- list( $jetpack_version, $jetpack_version_time ) = explode( ':', $jetpack_version );
4146
- } else {
4147
- $jetpack_version = 0;
4148
- $jetpack_version_time = 0;
4149
- }
4150
-
4151
- $jetpack_old_version = Jetpack_Options::get_option( 'old_version' );
4152
- if ( $jetpack_old_version ) {
4153
- list( $jetpack_old_version ) = explode( ':', $jetpack_old_version );
4154
- } else {
4155
- $jetpack_old_version = 0;
4156
- }
4157
- $now = time();
4158
-
4159
- foreach ( (array) $available as $module_data ) {
4160
- $module = $module_data['module'];
4161
- $activated = in_array( $module, $active );
4162
- if ( $activated ) {
4163
- $css = 'active';
4164
- $toggle = __( 'Deactivate', 'jetpack' );
4165
- $toggle_url = wp_nonce_url(
4166
- Jetpack::admin_url(
4167
- array(
4168
- 'page' => 'jetpack',
4169
- 'action' => 'deactivate',
4170
- 'module' => $module,
4171
- )
4172
- ),
4173
- "jetpack_deactivate-$module"
4174
- );
4175
- } else {
4176
- $css = 'inactive';
4177
- $toggle = __( 'Activate', 'jetpack' );
4178
- $toggle_url = wp_nonce_url(
4179
- Jetpack::admin_url(
4180
- array(
4181
- 'page' => 'jetpack',
4182
- 'action' => 'activate',
4183
- 'module' => $module,
4184
- )
4185
- ),
4186
- "jetpack_activate-$module"
4187
- );
4188
- }
4189
-
4190
- if ( $counter % 4 == 0 ) {
4191
- $classes = $css . ' jetpack-newline';
4192
- $counter = 0;
4193
- } else {
4194
- $classes = $css;
4195
- }
4196
-
4197
- $free_text = esc_html( $module_data['free'] ? __( 'Free', 'jetpack' ) : __( 'Purchase', 'jetpack' ) );
4198
- $free_text = apply_filters( 'jetpack_module_free_text_' . $module, $free_text );
4199
- $badge_text = $free_text;
4200
-
4201
- if ( ( ! $jetpack_connected && ! Jetpack::is_development_mode() ) ) {
4202
- $classes = 'x disabled';
4203
- } elseif ( $jetpack_version_time + 604800 > $now ) { // 1 week
4204
- if ( version_compare( $module_data['introduced'], $jetpack_old_version, '>' ) ) {
4205
- $badge_text = esc_html__( 'New', 'jetpack' );
4206
- $classes .= ' jetpack-new-module';
4207
- } elseif ( isset( $module_data['changed'] ) && version_compare( $module_data['changed'], $jetpack_old_version, '>' ) ) {
4208
- $badge_text = esc_html__( 'Updated', 'jetpack' );
4209
- $classes .= ' jetpack-updated-module';
4210
- } else {
4211
- $badge_text = $free_text;
4212
- }
4213
- }
4214
-
4215
- ?>
4216
- <div class="jetpack-module jetpack-<?php echo $classes; ?>" id="<?php echo $module ?>">
4217
- <h3><?php echo esc_html( $module_data['name'] ); ?></h3>
4218
- <div class="jetpack-module-description">
4219
- <div class="module-image">
4220
- <p><span class="module-image-badge"><?php echo $badge_text; ?></span><span class="module-image-free" style="display: none"><?php echo $free_text; ?></span></p>
4221
- </div>
4222
-
4223
- <p><?php echo apply_filters( 'jetpack_short_module_description', $module_data['description'], $module ); ?></p>
4224
- </div>
4225
-
4226
- <div class="jetpack-module-actions">
4227
- <?php if ( $jetpack_connected || ( Jetpack::is_development_mode() && ! $module_data['requires_connection'] ) ) : ?>
4228
- <?php if ( ! $activated && current_user_can( 'manage_options' ) && apply_filters( 'jetpack_can_activate_' . $module, true ) ) : ?>
4229
- <a href="<?php echo esc_url( $toggle_url ); ?>" class="<?php echo ( 'inactive' == $css ? ' button-primary' : ' button-secondary' ); ?>"><?php echo $toggle; ?></a>&nbsp;
4230
- <?php endif; ?>
4231
-
4232
- <?php do_action( 'jetpack_learn_more_button_' . $module ) ?>
4233
-
4234
- <?php
4235
- if ( current_user_can( 'manage_options' ) && apply_filters( 'jetpack_module_configurable_' . $module, false ) ) {
4236
- echo '<a href="' . esc_url( Jetpack::module_configuration_url( $module ) ) . '" class="jetpack-configure-button button-secondary">' . __( 'Configure', 'jetpack' ) . '</a>';
4237
- }
4238
- ?><?php if ( $activated && $module_data['deactivate'] && current_user_can( 'manage_options' ) ) : ?><a style="display: none;" href="<?php echo esc_url( $toggle_url ); ?>" class="jetpack-deactivate-button button-secondary"><?php echo $toggle; ?></a>&nbsp;<?php endif; ?>
4239
-
4240
- <?php else : ?>
4241
- <?php do_action( 'jetpack_learn_more_button_' . $module ) ?>
4242
- <?php endif; ?>
4243
- </div>
4244
- </div>
4245
- <?php if ( 'inactive' == $css && $jetpack_connected && current_user_can( 'manage_options' ) && apply_filters( 'jetpack_can_activate_' . $module, true ) ) : ?>
4246
- <script type="text/javascript">
4247
- jQuery( '#<?php echo esc_js( $module ); ?>' ).bind( 'click', function(e){
4248
- if ( ! jQuery(e.target).hasClass('more-info-link') )
4249
- document.location.href = '<?php echo str_replace( '&amp;', '&', esc_js( esc_url( $toggle_url ) ) ); ?>';
4250
- } );
4251
- </script>
4252
- <?php else : ?>
4253
- <style>
4254
- #<?php echo $module; ?> { cursor: default; }
4255
- </style>
4256
- <?php endif; ?>
4257
-
4258
- <div id="jp-more-info-<?php echo esc_attr( $module ); ?>" style="display:none;">
4259
- <?php
4260
- if ( $jetpack_connected && has_action( 'jetpack_module_more_info_connected_' . $module ) )
4261
- do_action( 'jetpack_module_more_info_connected_' . $module );
4262
- else
4263
- do_action( 'jetpack_module_more_info_' . $module );
4264
- ?>
4265
- </div>
4266
-
4267
- <?php
4268
- $counter++;
4269
- }
4270
-
4271
- // Add in some "Coming soon..." placeholders to fill up the current row and one more
4272
- for ( $i = 0; $i < 4; $i++ ) { ?>
4273
- <div class="jetpack-module placeholder"<?php if ( $i > 8 - $counter ) echo ' style="display: none;"'; ?>>
4274
- <h3><?php _e( 'Coming soon&#8230;', 'jetpack' ) ?></h3>
4275
- </div>
4276
- <?php
4277
- }
4278
-
4279
- echo '</div><!-- .module-container -->';
4280
- }
4281
-
4282
- function check_news_subscription() {
4283
- if ( ! $this->current_user_is_connection_owner() ) {
4284
- exit;
4285
- }
4286
-
4287
- Jetpack::load_xml_rpc_client();
4288
- $xml = new Jetpack_IXR_Client(
4289
- array(
4290
- 'user_id' => JETPACK_MASTER_USER,
4291
- )
4292
- );
4293
- $xml->query( 'jetpack.checkNewsSubscription' );
4294
- if ( $xml->isError() ) {
4295
- printf( '%s: %s', $xml->getErrorCode(), $xml->getErrorMessage() );
4296
- } else {
4297
- print_r( $xml->getResponse() );
4298
- }
4299
- exit;
4300
- }
4301
-
4302
- function subscribe_to_news() {
4303
- if ( ! $this->current_user_is_connection_owner() ) {
4304
- exit;
4305
- }
4306
-
4307
- Jetpack::load_xml_rpc_client();
4308
- $xml = new Jetpack_IXR_Client(
4309
- array(
4310
- 'user_id' => JETPACK_MASTER_USER,
4311
- )
4312
- );
4313
- $xml->query( 'jetpack.subscribeToNews' );
4314
- if ( $xml->isError() ) {
4315
- printf( '%s: %s', $xml->getErrorCode(), $xml->getErrorMessage() );
4316
- } else {
4317
- print_r( $xml->getResponse() );
4318
- }
4319
- exit;
4320
- }
4321
-
4322
  function sync_reindex_trigger() {
4323
  if ( $this->current_user_is_connection_owner() && current_user_can( 'manage_options' ) ) {
4324
  echo json_encode( $this->sync->reindex_trigger() );
@@ -4593,6 +4863,8 @@ p {
4593
  )
4594
  );
4595
 
 
 
4596
  // Initialize Jump Start for the first and only time.
4597
  if ( ! Jetpack_Options::get_option( 'jumpstart' ) ) {
4598
  Jetpack_Options::update_option( 'jumpstart', 'new_connection' );
@@ -5236,6 +5508,13 @@ p {
5236
  */
5237
  public static function get_content_width() {
5238
  $content_width = isset( $GLOBALS['content_width'] ) ? $GLOBALS['content_width'] : false;
 
 
 
 
 
 
 
5239
  return apply_filters( 'jetpack_content_width', $content_width );
5240
  }
5241
 
@@ -5292,7 +5571,10 @@ p {
5292
  $xml = new Jetpack_IXR_Client( array( 'user_id' => JETPACK_MASTER_USER, ) );
5293
  $xml->query( 'jetpack.fetchSiteOptions', $option_names );
5294
  if ( $xml->isError() ) {
5295
- return array_flip( $option_names );
 
 
 
5296
  }
5297
  $cloud_site_options = $xml->getResponse();
5298
 
@@ -5309,6 +5591,13 @@ p {
5309
  'siteurl',
5310
  'home',
5311
  );
 
 
 
 
 
 
 
5312
  return apply_filters( 'jetpack_identity_crisis_options_to_check', $options );
5313
  }
5314
 
@@ -5327,9 +5616,26 @@ p {
5327
  $options_to_check = self::identity_crisis_options_to_check();
5328
  $cloud_options = Jetpack::init()->get_cloud_site_options( $options_to_check );
5329
  $errors = array();
 
5330
  foreach ( $cloud_options as $cloud_key => $cloud_value ) {
 
5331
  // If it's not the same as the local value...
5332
  if ( $cloud_value !== get_option( $cloud_key ) ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5333
  // And it's not been added to the whitelist...
5334
  if ( ! self::is_identity_crisis_value_whitelisted( $cloud_key, $cloud_value ) ) {
5335
  /*
@@ -5343,7 +5649,7 @@ p {
5343
  *
5344
  * @see https://github.com/Automattic/jetpack/issues/1006
5345
  */
5346
- if( ( 'home' == $cloud_key || 'siteurl' == $cloud_key )
5347
  && ( substr( $cloud_value, 0, 8 ) == "https://" )
5348
  && Jetpack::init()->is_ssl_required_to_visit_site() ) {
5349
  // Ok, we found a mismatch of http and https because of wp-config, not an invalid url
@@ -5357,9 +5663,107 @@ p {
5357
  }
5358
  }
5359
  }
 
 
 
 
 
 
 
 
 
5360
  return apply_filters( 'jetpack_has_identity_crisis', $errors, $force_recheck );
5361
  }
5362
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5363
  /**
5364
  * Adds a value to the whitelist for the specified key.
5365
  *
@@ -5369,7 +5773,7 @@ p {
5369
  * @return bool Whether the value was added to the whitelist, or false if it was already there.
5370
  */
5371
  public static function whitelist_identity_crisis_value( $key, $value ) {
5372
- if ( self::is_identity_crisis_url_whitelisted( $key, $value ) ) {
5373
  return false;
5374
  }
5375
 
@@ -5399,26 +5803,219 @@ p {
5399
  return false;
5400
  }
5401
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5402
  /**
5403
  * Displays an admin_notice, alerting the user to an identity crisis.
5404
  */
5405
  public function alert_identity_crisis() {
5406
- if ( ! current_user_can( 'manage_options' ) )
 
 
 
 
 
 
5407
  return;
 
5408
 
5409
- if ( ! $errors = self::check_identity_crisis() )
 
 
 
 
 
 
5410
  return;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5411
  ?>
5412
 
5413
- <div id="message" class="updated jetpack-message jp-identity-crisis">
5414
- <div class="jp-banner__content">
5415
- <h4><?php _e( 'Something has gotten mixed up!', 'jetpack' ); ?></h4>
5416
- <?php foreach ( $errors as $key => $value ) : ?>
5417
- <p><?php printf( __( 'Your <code>%1$s</code> option is set up as <strong>%2$s</strong>, but your WordPress.com connection lists it as <strong>%3$s</strong>!', 'jetpack' ), $key, (string) get_option( $key ), $value ); ?></p>
5418
- <?php endforeach; ?>
5419
- <p><a href="<?php echo $this->build_reconnect_url() ?>"><?php _e( 'The data listed above is not for my current site. Please disconnect, and then form a new connection to WordPress.com for this site using my current settings.', 'jetpack' ); ?></a></p>
5420
- <p><a href="#"><?php _e( 'Ignore the difference. This is just a staging site for the real site referenced above.', 'jetpack' ); ?></a></p>
5421
- <p><a href="#"><?php _e( 'That used to be my URL for this site before I changed it. Update the WordPress.com Cloud\'s data to match my current settings.', 'jetpack' ); ?></a></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5422
  </div>
5423
  </div>
5424
 
@@ -5707,6 +6304,13 @@ p {
5707
  $do_implode = false;
5708
  }
5709
 
 
 
 
 
 
 
 
5710
  $do_implode = apply_filters( 'jetpack_implode_frontend_css', $do_implode );
5711
 
5712
  // Do not use the imploded file when default behaviour was altered through the filter
@@ -5834,11 +6438,12 @@ p {
5834
  *
5835
  * @return array of options to delete.
5836
  */
5837
- public static function get_jetapck_options_for_reset() {
5838
  $jetpack_options = Jetpack_Options::get_option_names();
5839
  $jetpack_options_non_compat = Jetpack_Options::get_option_names( 'non_compact' );
 
5840
 
5841
- $all_jp_options = array_merge( $jetpack_options, $jetpack_options_non_compat );
5842
 
5843
  // A manual build of the wp options
5844
  $wp_options = array(
@@ -5868,8 +6473,8 @@ p {
5868
  'site_logo',
5869
  );
5870
 
5871
- // Whitelist some Jetpack options
5872
- $whitelist_terms = array(
5873
  'id', // (int) The Client ID/WP.com Blog ID of this site.
5874
  'master_user', // (int) The local User ID of the user who connected this site to jetpack.wordpress.com.
5875
  'version', // (string) Used during upgrade procedure to auto-activate new modules. version:time
@@ -5877,11 +6482,17 @@ p {
5877
 
5878
  // non_compact
5879
  'activated',
 
 
 
 
 
 
5880
  );
5881
 
5882
- // Remove the whitelisted Jetpack options
5883
- foreach ( $whitelist_terms as $whitelist_term ) {
5884
- if ( false !== ( $key = array_search( $whitelist_term, $all_jp_options ) ) ) {
5885
  unset( $all_jp_options[ $key ] );
5886
  }
5887
  }
@@ -5910,7 +6521,7 @@ p {
5910
 
5911
 
5912
  // Manual build of module options
5913
- $option_names = self::get_jetapck_options_for_reset();
5914
 
5915
  if ( in_array( $option_name, $option_names['wp_options'] ) ) {
5916
  Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
@@ -5963,14 +6574,16 @@ p {
5963
  public function wp_dashboard_setup() {
5964
  if ( self::is_active() ) {
5965
  add_action( 'jetpack_dashboard_widget', array( __CLASS__, 'dashboard_widget_footer' ), 999 );
 
5966
  } elseif ( ! self::is_development_mode() && current_user_can( 'jetpack_connect' ) ) {
5967
  add_action( 'jetpack_dashboard_widget', array( $this, 'dashboard_widget_connect_to_wpcom' ) );
 
5968
  }
5969
 
5970
  if ( has_action( 'jetpack_dashboard_widget' ) ) {
5971
  wp_add_dashboard_widget(
5972
  'jetpack_summary_widget',
5973
- __( 'Jetpack', 'jetpack' ),
5974
  array( __CLASS__, 'dashboard_widget' )
5975
  );
5976
  wp_enqueue_style( 'jetpack-dashboard-widget', plugins_url( 'css/dashboard-widget.css', JETPACK__PLUGIN_FILE ), array(), JETPACK__VERSION );
@@ -6018,6 +6631,11 @@ p {
6018
  }
6019
 
6020
  public static function dashboard_widget() {
 
 
 
 
 
6021
  do_action( 'jetpack_dashboard_widget' );
6022
  }
6023
 
@@ -6030,11 +6648,11 @@ p {
6030
  <h3><?php echo number_format_i18n( get_site_option( 'jetpack_protect_blocked_attempts', 0 ) ); ?></h3>
6031
  <p><?php echo esc_html_x( 'Blocked malicious login attempts', '{#} Blocked malicious login attempts -- number is on a prior line, text is a caption.', 'jetpack' ); ?></p>
6032
  <?php elseif ( current_user_can( 'jetpack_activate_modules' ) && ! self::is_development_mode() ) : ?>
6033
- <a href="<?php echo esc_url( wp_nonce_url( Jetpack::admin_url( array( 'action' => 'activate', 'module' => 'protect' ) ), 'jetpack_activate-protect' ) ); ?>" class="button button-jetpack" title="<?php esc_attr_e( 'Jetpack Protect helps to keep you secure from brute-force login attacks.', 'jetpack' ); ?>">
6034
- <?php esc_html_e( 'Activate Jetpack Protect', 'jetpack' ); ?>
6035
  </a>
6036
  <?php else : ?>
6037
- <?php esc_html_e( 'Jetpack Protect is inactive.', 'jetpack' ); ?>
6038
  <?php endif; ?>
6039
  </div>
6040
 
@@ -6051,6 +6669,11 @@ p {
6051
  <?php endif; ?>
6052
  </div>
6053
 
 
 
 
 
 
6054
  </footer>
6055
  <?php
6056
  }
@@ -6063,21 +6686,16 @@ p {
6063
  <div class="wpcom-connect">
6064
  <div class="jp-emblem">
6065
  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0" y="0" viewBox="0 0 172.9 172.9" enable-background="new 0 0 172.9 172.9" xml:space="preserve">
6066
- <path d="M86.4 0C38.7 0 0 38.7 0 86.4c0 47.7 38.7 86.4 86.4 86.4s86.4-38.7 86.4-86.4C172.9 38.7 134.2 0 86.4 0zM83.1 106.6l-27.1-6.9C49 98 45.7 90.1 49.3 84l33.8-58.5V106.6zM124.9 88.9l-33.8 58.5V66.3l27.1 6.9C125.1 74.9 128.4 82.8 124.9 88.9z"/>
6067
  </svg>
6068
  </div>
6069
- <h3><?php esc_html_e( 'Boost traffic, enhance security, and improve performance.', 'jetpack' ); ?></h3>
6070
- <p><?php esc_html_e( 'Jetpack connects your site to WordPress.com to give you traffic and customization tools, enhanced security, speed boosts, and more.', 'jetpack' ); ?></p>
6071
 
6072
  <div class="actions">
6073
  <a href="<?php echo $this->build_connect_url() ?>" class="button button-primary">
6074
- <?php esc_html_e( 'Connect to WordPress.com', 'jetpack' ); ?>
6075
  </a>
6076
- <?php if ( current_user_can( 'activate_plugins' ) ) : ?>
6077
- <small><a href="<?php echo esc_url( wp_nonce_url( Jetpack::admin_url( 'jetpack-notice=dismiss' ), 'jetpack-deactivate' ) ); ?>" title="Deactivate Jetpack">
6078
- <?php esc_html_e( 'or, deactivate Jetpack', 'jetpack' ); ?>
6079
- </a></small>
6080
- <?php endif; ?>
6081
  </div>
6082
  </div>
6083
  <?php
23
  */
24
 
25
  class Jetpack {
26
+ public $xmlrpc_server = null;
27
 
28
  private $xmlrpc_verification = null;
29
 
30
+ public $HTTP_RAW_POST_DATA = null; // copy of $GLOBALS['HTTP_RAW_POST_DATA']
31
 
32
  /**
33
  * @var array The handles of styles that are concatenated into jetpack.css
34
  */
35
+ public $concatenated_style_handles = array(
36
  'jetpack-carousel',
37
  'grunion.css',
38
  'the-neverending-homepage',
51
  'goodreads-widget',
52
  );
53
 
54
+ public $plugins_to_deactivate = array(
55
  'stats' => array( 'stats/stats.php', 'WordPress.com Stats' ),
56
  'shortlinks' => array( 'stats/stats.php', 'WordPress.com Stats' ),
57
  'sharedaddy' => array( 'sharedaddy/sharedaddy.php', 'Sharedaddy' ),
70
  'latex' => array( 'wp-latex/wp-latex.php', 'WP LaTeX' )
71
  );
72
 
73
+ public $capability_translations = array(
74
  'administrator' => 'manage_options',
75
  'editor' => 'edit_others_posts',
76
  'author' => 'publish_posts',
239
  * Message to display in admin_notice
240
  * @var string
241
  */
242
+ public $message = '';
243
 
244
  /**
245
  * Error to display in admin_notice
246
  * @var string
247
  */
248
+ public $error = '';
249
 
250
  /**
251
  * Modules that need more privacy description.
252
  * @var string
253
  */
254
+ public $privacy_checks = '';
255
 
256
  /**
257
  * Stats to record once the page loads
258
  *
259
  * @var array
260
  */
261
+ public $stats = array();
262
 
263
  /**
264
  * Allows us to build a temporary security report
270
  /**
271
  * Jetpack_Sync object
272
  */
273
+ public $sync;
274
 
275
  /**
276
  * Verified data for JSON authorization request
277
  */
278
+ public $json_api_authorization_request = array();
279
 
280
  /**
281
  * Holds the singleton instance of this class
331
  // Add missing version and old_version options
332
  if ( ! $version = Jetpack_Options::get_option( 'version' ) ) {
333
  $version = $old_version = '1.1:' . time();
334
+ /**
335
+ * Fires on update, before bumping version numbers up to a new version.
336
+ *
337
+ * @since 3.4.0
338
+ *
339
+ * @param string $version Jetpack version number.
340
+ * @param bool false Does an old version exist. Default is false.
341
+ */
342
  do_action( 'updating_jetpack_version', $version, false );
343
  Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
344
  }
382
  list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) );
383
  if ( JETPACK__VERSION != $version ) {
384
  add_action( 'init', array( __CLASS__, 'activate_new_modules' ) );
385
+ /**
386
+ * Fires when synchronizing all registered options and constants.
387
+ *
388
+ * @since 3.3.0
389
+ */
390
  do_action( 'jetpack_sync_all_registered_options' );
391
  }
 
392
  //if Jetpack is connected check if jetpack_unique_connection exists and if not then set it
393
  $jetpack_unique_connection = get_option( 'jetpack_unique_connection' );
394
  $is_unique_connection = $jetpack_unique_connection && array_key_exists( 'version', $jetpack_unique_connection );
434
  */
435
  add_filter( 'jetpack_require_lib_dir', array( $this, 'require_lib_dir' ) );
436
 
437
+ /**
438
+ * We need sync object even in Multisite mode
439
+ */
440
+ $this->sync = new Jetpack_Sync;
441
+
442
+ /**
443
+ * Trigger a wp_version sync when updating WP versions
444
+ **/
445
+ add_action( 'upgrader_process_complete', array( 'Jetpack', 'update_get_wp_version' ), 10, 2 );
446
+ $this->sync->mock_option( 'wp_version', array( 'Jetpack', 'get_wp_version' ) );
447
+
448
+ add_action( 'init', array( $this, 'sync_update_data') );
449
+
450
  /*
451
  * Load things that should only be in Network Admin.
452
  *
457
  if( is_multisite() ) {
458
  Jetpack_Network::init();
459
 
460
+ // Only sync this info if we are on a multi site
461
+ // @since 3.7
462
+ $this->sync->mock_option( 'network_name', array( 'Jetpack', 'network_name' ) );
463
+ $this->sync->mock_option( 'network_allow_new_registrations', array( 'Jetpack', 'network_allow_new_registrations' ) );
464
+ $this->sync->mock_option( 'network_add_new_users', array( 'Jetpack', 'network_add_new_users' ) );
465
+ $this->sync->mock_option( 'network_site_upload_space', array( 'Jetpack', 'network_site_upload_space' ) );
466
+ $this->sync->mock_option( 'network_upload_file_types', array( 'Jetpack', 'network_upload_file_types' ) );
467
+ $this->sync->mock_option( 'network_enable_administration_menus', array( 'Jetpack', 'network_enable_administration_menus' ) );
468
+
469
+ if( is_network_admin() ) {
470
+ // Sync network site data if it is updated or not.
471
+ add_action( 'update_wpmu_options', array( $this, 'update_jetpack_network_settings' ) );
472
+ return; // End here to prevent single site actions from firing
473
+ }
474
  }
475
 
476
 
477
  $theme_slug = get_option( 'stylesheet' );
478
 
 
479
 
480
  // Modules should do Jetpack_Sync::sync_options( __FILE__, $option, ... ); instead
481
  // We access the "internal" method here only because the Jetpack object isn't instantiated yet
507
  $this->sync->mock_option( 'main_network_site', array( $this, 'jetpack_main_network_site_option' ) );
508
  $this->sync->mock_option( 'single_user_site', array( 'Jetpack', 'is_single_user_site' ) );
509
 
510
+ $this->sync->mock_option( 'has_file_system_write_access', array( 'Jetpack', 'file_system_write_access' ) );
511
+ $this->sync->mock_option( 'is_version_controlled', array( 'Jetpack', 'is_version_controlled' ) );
512
+
513
  /**
514
  * Trigger an update to the main_network_site when we update the blogname of a site.
515
  *
582
  // Filter the dashboard meta box order to swap the new one in in place of the old one.
583
  add_filter( 'get_user_option_meta-box-order_dashboard', array( $this, 'get_user_option_meta_box_order_dashboard' ) );
584
 
 
 
 
585
  add_action( 'wp_ajax_jetpack-sync-reindex-trigger', array( $this, 'sync_reindex_trigger' ) );
586
  add_action( 'wp_ajax_jetpack-sync-reindex-status', array( $this, 'sync_reindex_status' ) );
587
 
588
  // Jump Start AJAX callback function
589
+ add_action( 'wp_ajax_jetpack_jumpstart_ajax', array( $this, 'jetpack_jumpstart_ajax_callback' ) );
590
  add_action( 'update_option', array( $this, 'jumpstart_has_updated_module_option' ) );
591
 
592
+ // Identity Crisis AJAX callback function
593
+ add_action( 'wp_ajax_jetpack_resolve_identity_crisis', array( $this, 'resolve_identity_crisis_ajax_callback' ) );
594
+
595
+ // JITM AJAX callback function
596
+ add_action( 'wp_ajax_jitm_ajax', array( $this, 'jetpack_jitm_ajax_callback' ) );
597
+
598
+ add_action( 'wp_ajax_jetpack_admin_ajax', array( $this, 'jetpack_admin_ajax_callback' ) );
599
+ add_action( 'wp_ajax_jetpack_admin_ajax_refresh', array( $this, 'jetpack_admin_ajax_refresh_data' ) );
600
+
601
  add_action( 'wp_loaded', array( $this, 'register_assets' ) );
602
  add_action( 'wp_enqueue_scripts', array( $this, 'devicepx' ) );
603
  add_action( 'customize_controls_enqueue_scripts', array( $this, 'devicepx' ) );
625
  add_filter( 'jetpack_get_default_modules', array( $this, 'filter_default_modules' ) );
626
  add_filter( 'jetpack_get_default_modules', array( $this, 'handle_deprecated_modules' ), 99 );
627
 
628
+ // A filter to control all just in time messages
629
+ add_filter( 'jetpack_just_in_time_msgs', '__return_true' );
630
+
631
  /**
632
  * This is the hack to concatinate all css files into one.
633
  * For description and reasoning see the implode_frontend_css method
639
  add_action( 'wp_print_footer_scripts', array( $this, 'implode_frontend_css' ), -1 ); // Run first to trigger before `print_late_styles`
640
  }
641
 
642
+ // Sync Core Icon: Detect changes in Core's Site Icon and make it syncable.
643
  add_action( 'add_option_site_icon', array( $this, 'jetpack_sync_core_icon' ) );
644
  add_action( 'update_option_site_icon', array( $this, 'jetpack_sync_core_icon' ) );
645
  add_action( 'delete_option_site_icon', array( $this, 'jetpack_sync_core_icon' ) );
668
  }
669
  }
670
 
671
+ function jetpack_admin_ajax_callback() {
672
+ // Check for nonce
673
+ if ( ! isset( $_REQUEST['adminNonce'] ) || ! wp_verify_nonce( $_REQUEST['adminNonce'], 'jetpack-admin-nonce' ) || ! current_user_can( 'jetpack_manage_modules' ) ) {
674
+ wp_die( 'permissions check failed' );
675
+ }
676
+
677
+ if ( isset( $_REQUEST['toggleModule'] ) && 'nux-toggle-module' == $_REQUEST['toggleModule'] ) {
678
+ $slug = $_REQUEST['thisModuleSlug'];
679
+
680
+ if ( ! in_array( $slug, Jetpack::get_available_modules() ) ) {
681
+ wp_die( 'That is not a Jetpack module slug' );
682
+ }
683
+
684
+ if ( Jetpack::is_module_active( $slug ) ) {
685
+ Jetpack::deactivate_module( $slug );
686
+ } else {
687
+ Jetpack::activate_module( $slug, false, false );
688
+ }
689
+
690
+ $modules = Jetpack_Admin::init()->get_modules();
691
+ echo json_encode( $modules[ $slug ] );
692
+
693
+ exit;
694
+ }
695
+
696
+ wp_die();
697
+ }
698
+
699
+ /*
700
+ * Sometimes we need to refresh the data,
701
+ * especially if the page is visited via a 'history'
702
+ * event like back/forward
703
+ */
704
+ function jetpack_admin_ajax_refresh_data() {
705
+ // Check for nonce
706
+ if ( ! isset( $_REQUEST['adminNonce'] ) || ! wp_verify_nonce( $_REQUEST['adminNonce'], 'jetpack-admin-nonce' ) ) {
707
+ wp_die( 'permissions check failed' );
708
+ }
709
+
710
+ if ( isset( $_REQUEST['refreshData'] ) && 'refresh' == $_REQUEST['refreshData'] ) {
711
+ $modules = Jetpack_Admin::init()->get_modules();
712
+ echo json_encode( $modules );
713
+ exit;
714
+ }
715
+
716
+ wp_die();
717
+ }
718
+
719
  /**
720
  * The callback for the Jump Start ajax requests.
721
  */
810
  wp_die();
811
  }
812
 
813
+ /**
814
+ * The callback for the JITM ajax requests.
815
+ */
816
+ function jetpack_jitm_ajax_callback() {
817
+ // Check for nonce
818
+ if ( ! isset( $_REQUEST['jitmNonce'] ) || ! wp_verify_nonce( $_REQUEST['jitmNonce'], 'jetpack-jitm-nonce' ) ) {
819
+ wp_die( 'Module activation failed due to lack of appropriate permissions' );
820
+ }
821
+ if ( isset( $_REQUEST['jitmActionToTake'] ) && 'activate' == $_REQUEST['jitmActionToTake'] ) {
822
+ $module_slug = $_REQUEST['jitmModule'];
823
+ Jetpack::log( 'activate', $module_slug );
824
+ Jetpack::activate_module( $module_slug, false, false );
825
+ Jetpack::state( 'message', 'no_message' );
826
+
827
+ //A Jetpack module is being activated through a JITM, track it
828
+ $this->stat( 'jitm', $module_slug.'-activated' );
829
+ $this->do_stats( 'server_side' );
830
+
831
+ wp_send_json_success();
832
+ }
833
+ if ( isset( $_REQUEST['jitmActionToTake'] ) && 'dismiss' == $_REQUEST['jitmActionToTake'] ) {
834
+ // get the hide_jitm options array
835
+ $jetpack_hide_jitm = Jetpack_Options::get_option( 'hide_jitm' );
836
+ $module_slug = $_REQUEST['jitmModule'];
837
+
838
+ if( ! $jetpack_hide_jitm ) {
839
+ $jetpack_hide_jitm = array(
840
+ $module_slug => 'hide'
841
+ );
842
+ } else {
843
+ $jetpack_hide_jitm[$module_slug] = 'hide';
844
+ }
845
+
846
+ Jetpack_Options::update_option( 'hide_jitm', $jetpack_hide_jitm );
847
+
848
+ //jitm is being dismissed forever, track it
849
+ $this->stat( 'jitm', $module_slug.'-dismissed' );
850
+ $this->do_stats( 'server_side' );
851
+
852
+ wp_send_json_success();
853
+ }
854
+ }
855
+
856
  /**
857
  * If there are any stats that need to be pushed, but haven't been, push them now.
858
  */
903
  case 'jetpack_configure_modules' :
904
  $caps = array( 'manage_options' );
905
  break;
906
+ case 'jetpack_network_admin_page':
907
+ case 'jetpack_network_settings_page':
908
+ $caps = array( 'manage_network_plugins' );
909
+ break;
910
+ case 'jetpack_network_sites_page':
911
+ $caps = array( 'manage_sites' );
912
+ break;
913
  case 'jetpack_admin_page' :
914
  if ( Jetpack::is_development_mode() ) {
915
  $caps = array( 'manage_options' );
916
  break;
917
  }
918
 
919
+ // Don't ever show to subscribers, but allow access to the page if they're trying to unlink.
920
+ if ( ! current_user_can( 'edit_posts' ) ) {
921
+ if ( isset( $_GET['redirect'] ) && 'sub-unlink' == $_GET['redirect'] ) {
922
+ // We need this in order to unlink the user.
923
+ $this->admin_page_load();
924
+ }
925
+ if ( ! wp_verify_nonce( 'jetpack-unlink' ) ) {
926
+ $caps = array( 'do_not_allow' );
927
+ break;
928
+ }
929
+ }
930
+
931
  if ( ! self::is_active() && ! current_user_can( 'jetpack_connect' ) ) {
932
  $caps = array( 'do_not_allow' );
933
  break;
1033
  public function jetpack_main_network_site_option( $option ) {
1034
  return network_site_url();
1035
  }
1036
+ /**
1037
+ * Network Name.
1038
+ */
1039
+ static function network_name( $option = null ) {
1040
+ global $current_site;
1041
+ return $current_site->site_name;
1042
+ }
1043
+ /**
1044
+ * Does the network allow new user and site registrations.
1045
+ * @return string
1046
+ */
1047
+ static function network_allow_new_registrations( $option = null ) {
1048
+ return ( in_array( get_site_option( 'registration' ), array('none', 'user', 'blog', 'all' ) ) ? get_site_option( 'registration') : 'none' );
1049
+ }
1050
+ /**
1051
+ * Does the network allow admins to add new users.
1052
+ * @return boolian
1053
+ */
1054
+ static function network_add_new_users( $option = null ) {
1055
+ return (bool) get_site_option( 'add_new_users' );
1056
+ }
1057
+ /**
1058
+ * File upload psace left per site in MB.
1059
+ * -1 means NO LIMIT.
1060
+ * @return number
1061
+ */
1062
+ static function network_site_upload_space( $option = null ) {
1063
+ // value in MB
1064
+ return ( get_site_option( 'upload_space_check_disabled' ) ? -1 : get_space_allowed() );
1065
+ }
1066
+
1067
+ /**
1068
+ * Network allowed file types.
1069
+ * @return string
1070
+ */
1071
+ static function network_upload_file_types( $option = null ) {
1072
+ return get_site_option( 'upload_filetypes', 'jpg jpeg png gif' );
1073
+ }
1074
+
1075
+ /**
1076
+ * Maximum file upload size set by the network.
1077
+ * @return number
1078
+ */
1079
+ static function network_max_upload_file_size( $option = null ) {
1080
+ // value in KB
1081
+ return get_site_option( 'fileupload_maxk', 300 );
1082
+ }
1083
+
1084
+ /**
1085
+ * Lets us know if a site allows admins to manage the network.
1086
+ * @return array
1087
+ */
1088
+ static function network_enable_administration_menus( $option = null ) {
1089
+ return get_site_option( 'menu_items' );
1090
+ }
1091
 
1092
  /**
1093
  * Return whether we are dealing with a multi network setup or not.
1143
  */
1144
  function update_jetpack_main_network_site_option() {
1145
  // do_action( 'add_option_$option', '$option', '$value-of-the-option' );
1146
+ /**
1147
+ * Fires when the site URL is updated.
1148
+ * Determines if the site is the main site of a Mulitiste network.
1149
+ *
1150
+ * @since 3.3.0
1151
+ *
1152
+ * @param string jetpack_main_network_site.
1153
+ * @param string network_site_url() Site URL for the "main" site of the current Multisite network.
1154
+ */
1155
  do_action( 'add_option_jetpack_main_network_site', 'jetpack_main_network_site', network_site_url() );
1156
+ /**
1157
+ * Fires when the site URL is updated.
1158
+ * Determines if the is part of a multi network.
1159
+ *
1160
+ * @since 3.3.0
1161
+ *
1162
+ * @param string jetpack_is_main_network.
1163
+ * @param bool Jetpack::is_multi_network() Is the site part of a multi network.
1164
+ */
1165
  do_action( 'add_option_jetpack_is_main_network', 'jetpack_is_main_network', (string) (bool) Jetpack::is_multi_network() );
1166
+ /**
1167
+ * Fires when the site URL is updated.
1168
+ * Determines if the site is part of a multisite network.
1169
+ *
1170
+ * @since 3.4.0
1171
+ *
1172
+ * @param string jetpack_is_multi_site.
1173
+ * @param bool is_multisite() Is the site part of a mutlisite network.
1174
+ */
1175
  do_action( 'add_option_jetpack_is_multi_site', 'jetpack_is_multi_site', (string) (bool) is_multisite() );
1176
  }
1177
+ /**
1178
+ * Triggered after a user updates the network settings via Network Settings Admin Page
1179
+ *
1180
+ */
1181
+ function update_jetpack_network_settings() {
1182
+ // Only sync this info for the main network site.
1183
+ do_action( 'add_option_jetpack_network_name', 'jetpack_network_name', Jetpack::network_name() );
1184
+ do_action( 'add_option_jetpack_network_allow_new_registrations', 'jetpack_network_allow_new_registrations', Jetpack::network_allow_new_registrations() );
1185
+ do_action( 'add_option_jetpack_network_add_new_users', 'jetpack_network_add_new_users', Jetpack::network_add_new_users() );
1186
+ do_action( 'add_option_jetpack_network_site_upload_space', 'jetpack_network_site_upload_space', Jetpack::network_site_upload_space() );
1187
+ do_action( 'add_option_jetpack_network_upload_file_types', 'jetpack_network_upload_file_types', Jetpack::network_upload_file_types() );
1188
+ do_action( 'add_option_jetpack_network_enable_administration_menus', 'jetpack_network_enable_administration_menus', Jetpack::network_enable_administration_menus() );
1189
+
1190
+ }
1191
 
1192
  /**
1193
  * Get back if the current site is single user site.
1204
  return 1 === (int) $user_query->get_total();
1205
  }
1206
 
1207
+ /**
1208
+ * Returns true if the site has file write access false otherwise.
1209
+ * @return string ( '1' | '0' )
1210
+ **/
1211
+ public static function file_system_write_access() {
1212
+ if ( ! function_exists( 'get_filesystem_method' ) ) {
1213
+ require_once( ABSPATH . 'wp-admin/includes/file.php' );
1214
+ }
1215
+
1216
+ require_once( ABSPATH . 'wp-admin/includes/template.php' );
1217
+
1218
+ $filesystem_method = get_filesystem_method();
1219
+ if ( $filesystem_method === 'direct' ) {
1220
+ return 1;
1221
+ }
1222
+
1223
+ ob_start();
1224
+ $filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() );
1225
+ ob_end_clean();
1226
+ if ( $filesystem_credentials_are_stored ) {
1227
+ return 1;
1228
+ }
1229
+ return 0;
1230
+ }
1231
+
1232
+ /**
1233
+ * Finds out if a site is using a version control system.
1234
+ * @return string ( '1' | '0' )
1235
+ **/
1236
+ public static function is_version_controlled() {
1237
+
1238
+ if ( !class_exists( 'WP_Automatic_Updater' ) ) {
1239
+ require_once( ABSPATH . 'wp-admin/includes/class-wp-upgrader.php' );
1240
+ }
1241
+ $updater = new WP_Automatic_Updater();
1242
+ $is_version_controlled = strval( $updater->is_vcs_checkout( $context = ABSPATH ) );
1243
+ // transients should not be empty
1244
+ if ( empty( $is_version_controlled ) ) {
1245
+ $is_version_controlled = '0';
1246
+ }
1247
+ return $is_version_controlled;
1248
+ }
1249
+ /*
1250
+ * Sync back wp_version
1251
+ */
1252
+ public static function get_wp_version() {
1253
+ global $wp_version;
1254
+ return $wp_version;
1255
+ }
1256
+ /**
1257
+ * Keeps wp_version in sync with .com when WordPress core updates
1258
+ **/
1259
+ public static function update_get_wp_version( $update, $meta_data ) {
1260
+ if ( 'update' === $meta_data['action'] && 'core' === $meta_data['type'] ) {
1261
+ /** This action is documented in wp-includes/option.php */
1262
+ /**
1263
+ * This triggers the sync for the jetpack version
1264
+ * See Jetpack_Sync options method for more info.
1265
+ */
1266
+ do_action( 'add_option_jetpack_wp_version', 'jetpack_wp_version', (string) Jetpack::get_wp_version() );
1267
+ }
1268
+ }
1269
+
1270
+ /**
1271
+ * Triggers a sync of update counts and update details
1272
+ */
1273
+ function sync_update_data() {
1274
+ // Anytime WordPress saves update data, we'll want to sync update data
1275
+ add_action( 'set_site_transient_update_plugins', array( 'Jetpack', 'refresh_update_data' ) );
1276
+ add_action( 'set_site_transient_update_themes', array( 'Jetpack', 'refresh_update_data' ) );
1277
+ add_action( 'set_site_transient_update_core', array( 'Jetpack', 'refresh_update_data' ) );
1278
+ // Anytime a connection to jetpack is made, sync the update data
1279
+ add_action( 'jetpack_site_registered', array( 'Jetpack', 'refresh_update_data' ) );
1280
+ // Anytime the Jetpack Version changes, sync the the update data
1281
+ add_action( 'updating_jetpack_version', array( 'Jetpack', 'refresh_update_data' ) );
1282
+
1283
+ if ( current_user_can( 'update_core' ) && current_user_can( 'update_plugins' ) && current_user_can( 'update_themes' ) ) {
1284
+ $this->sync->mock_option( 'updates', array( 'Jetpack', 'get_updates' ) );
1285
+ }
1286
+
1287
+ $this->sync->mock_option( 'update_details', array( 'Jetpack', 'get_update_details' ) );
1288
+ }
1289
+
1290
+ /**
1291
+ * jetpack_updates is saved in the following schema:
1292
+ *
1293
+ * array (
1294
+ * 'plugins' => (int) Number of plugin updates available.
1295
+ * 'themes' => (int) Number of theme updates available.
1296
+ * 'wordpress' => (int) Number of WordPress core updates available.
1297
+ * 'translations' => (int) Number of translation updates available.
1298
+ * 'total' => (int) Total of all available updates.
1299
+ * 'wp_update_version' => (string) The latest available version of WordPress, only present if a WordPress update is needed.
1300
+ * )
1301
+ * @return array
1302
+ */
1303
+ public static function get_updates() {
1304
+ $update_data = wp_get_update_data();
1305
+
1306
+ // Stores the individual update counts as well as the total count.
1307
+ if ( isset( $update_data['counts'] ) ) {
1308
+ $updates = $update_data['counts'];
1309
+ }
1310
+
1311
+ // If we need to update WordPress core, let's find the latest version number.
1312
+ if ( ! empty( $updates['wordpress'] ) ) {
1313
+ $cur = get_preferred_from_update_core();
1314
+ if ( isset( $cur->response ) && 'upgrade' === $cur->response ) {
1315
+ $updates['wp_update_version'] = $cur->current;
1316
+ }
1317
+ }
1318
+ return isset( $updates ) ? $updates : array();
1319
+ }
1320
+
1321
+ public static function get_update_details() {
1322
+ $update_details = array(
1323
+ 'update_core' => get_site_transient( 'update_core' ),
1324
+ 'update_plugins' => get_site_transient( 'update_plugins' ),
1325
+ 'update_themes' => get_site_transient( 'update_themes' ),
1326
+ );
1327
+ return $update_details;
1328
+ }
1329
+
1330
+ public static function refresh_update_data() {
1331
+ if ( current_user_can( 'update_core' ) && current_user_can( 'update_plugins' ) && current_user_can( 'update_themes' ) ) {
1332
+ /**
1333
+ * Fires whenever the amount of updates needed for a site changes.
1334
+ * Syncs an array that includes the number of theme, plugin, and core updates available, as well as the latest core version available.
1335
+ *
1336
+ * @since 3.7.0
1337
+ *
1338
+ * @param string jetpack_updates
1339
+ * @param array Update counts calculated by Jetpack::get_updates
1340
+ */
1341
+ do_action( 'add_option_jetpack_updates', 'jetpack_updates', Jetpack::get_updates() );
1342
+ }
1343
+ /**
1344
+ * Fires whenever the amount of updates needed for a site changes.
1345
+ * Syncs an array of core, theme, and plugin data, and which of each is out of date
1346
+ *
1347
+ * @since 3.7.0
1348
+ *
1349
+ * @param string jetpack_update_details
1350
+ * @param array Update details calculated by Jetpack::get_update_details
1351
+ */
1352
+ do_action( 'add_option_jetpack_update_details', 'jetpack_update_details', Jetpack::get_update_details() );
1353
+ }
1354
+
1355
  /**
1356
  * Invalides the transient as well as triggers the update of the mock option.
1357
  *
1358
  * @return null
1359
  */
1360
  function is_single_user_site_invalidate() {
1361
+ /**
1362
+ * Fires when a user is added or removed from a site.
1363
+ * Determines if the site is a single user site.
1364
+ *
1365
+ * @since 3.4.0
1366
+ *
1367
+ * @param string jetpack_single_user_site.
1368
+ * @param bool Jetpack::is_single_user_site() Is the current site a single user site.
1369
+ */
1370
  do_action( 'update_option_jetpack_single_user_site', 'jetpack_single_user_site', (bool) Jetpack::is_single_user_site() );
1371
  }
1372
 
 
 
1373
  /**
1374
  * Is Jetpack active?
1375
  */
1390
  elseif ( site_url() && false === strpos( site_url(), '.' ) ) {
1391
  $development_mode = true;
1392
  }
1393
+ /**
1394
+ * Filters Jetpack's development mode.
1395
+ *
1396
+ * @see http://jetpack.me/support/development-mode/
1397
+ *
1398
+ * @since 2.2.1
1399
+ *
1400
+ * @param bool $development_mode Is Jetpack's development mode active.
1401
+ */
1402
  return apply_filters( 'jetpack_development_mode', $development_mode );
1403
  }
1404
 
1411
  public static function show_development_mode_notice() {
1412
  if ( Jetpack::is_development_mode() ) {
1413
  if ( defined( 'JETPACK_DEV_DEBUG' ) && JETPACK_DEV_DEBUG ) {
1414
+ $notice = sprintf(
1415
+ /* translators: %s is a URL */
1416
+ __( 'In <a href="%s" target="_blank">Development Mode</a>, via the JETPACK_DEV_DEBUG constant being defined in wp-config.php or elsewhere.', 'jetpack' ),
1417
+ 'http://jetpack.me/support/development-mode/'
1418
+ );
1419
  } elseif ( site_url() && false === strpos( site_url(), '.' ) ) {
1420
+ $notice = sprintf(
1421
+ /* translators: %s is a URL */
1422
+ __( 'In <a href="%s" target="_blank">Development Mode</a>, via site URL lacking a dot (e.g. http://localhost).', 'jetpack' ),
1423
+ 'http://jetpack.me/support/development-mode/'
1424
+ );
1425
  } else {
1426
+ $notice = sprintf(
1427
+ /* translators: %s is a URL */
1428
+ __( 'In <a href="%s" target="_blank">Development Mode</a>, via the jetpack_development_mode filter.', 'jetpack' ),
1429
+ 'http://jetpack.me/support/development-mode/'
1430
+ );
1431
  }
1432
 
1433
  echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1435
 
1436
  // Throw up a notice if using a development version and as for feedback.
1437
  if ( Jetpack::is_development_version() ) {
1438
+ /* translators: %s is a URL */
1439
+ $notice = sprintf( __( 'You are currently running a development version of Jetpack. <a href="%s" target="_blank">Submit your feedback</a>', 'jetpack' ), 'https://jetpack.me/contact-support/beta-group/' );
1440
 
1441
  echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1442
  }
1518
  function extra_oembed_providers() {
1519
  // Cloudup: https://dev.cloudup.com/#oembed
1520
  wp_oembed_add_provider( 'https://cloudup.com/*' , 'https://cloudup.com/oembed' );
1521
+ wp_oembed_add_provider( 'https://me.sh/*', 'https://me.sh/oembed?format=json' );
1522
  }
1523
 
1524
  /**
1581
  $version = Jetpack_Options::get_option( 'version' );
1582
  if ( ! $version ) {
1583
  $version = $old_version = JETPACK__VERSION . ':' . time();
1584
+ /** This action is documented in class.jetpack.php */
1585
  do_action( 'updating_jetpack_version', $version, false );
1586
  Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
1587
  }
1630
  }
1631
 
1632
  require Jetpack::get_module_path( $module );
1633
+ /**
1634
+ * Fires when a specific module is loaded.
1635
+ * The dynamic part of the hook, $module, is the module slug.
1636
+ *
1637
+ * @since 1.1.0
1638
+ */
1639
  do_action( 'jetpack_module_loaded_' . $module );
1640
  }
1641
 
1642
+ /**
1643
+ * Fires when all the modules are loaded.
1644
+ *
1645
+ * @since 1.1.0
1646
+ */
1647
  do_action( 'jetpack_modules_loaded' );
1648
 
1649
  // Load module-specific code that is needed even when a module isn't active. Loaded here because code contained therein may need actions such as setup_theme.
1657
  * @return null
1658
  */
1659
  public function check_rest_api_compat() {
1660
+ /**
1661
+ * Filters the list of REST API compat files to be included.
1662
+ *
1663
+ * @since 2.2.5
1664
+ *
1665
+ * @param array $args Array of REST API compat files to include.
1666
+ */
1667
  $_jetpack_rest_api_compat_includes = apply_filters( 'jetpack_rest_api_compat', array() );
1668
 
1669
  if ( function_exists( 'bbpress' ) )
1730
  }
1731
  }
1732
 
1733
+ /**
1734
+ * Allow the addition of Open Graph Meta Tags to all pages.
1735
+ *
1736
+ * @since 2.0.3
1737
+ *
1738
+ * @param bool false Should Open Graph Meta tags be added. Default to false.
1739
+ */
1740
  if ( apply_filters( 'jetpack_enable_open_graph', false ) ) {
1741
  require_once JETPACK__PLUGIN_DIR . 'functions.opengraph.php';
1742
  }
1763
  }
1764
  }
1765
 
1766
+ /**
1767
+ * Allow Twitter Card Meta tags to be disabled.
1768
+ *
1769
+ * @since 2.6.0
1770
+ *
1771
+ * @param bool true Should Twitter Card Meta tags be disabled. Default to true.
1772
+ */
1773
  if ( apply_filters( 'jetpack_disable_twitter_cards', true ) ) {
1774
  require_once JETPACK__PLUGIN_DIR . 'class.jetpack-twitter-cards.php';
1775
  }
1811
  return;
1812
  }
1813
 
1814
+ /**
1815
+ * Fires before a security report is created.
1816
+ *
1817
+ * @since 3.4.0
1818
+ */
1819
  do_action( 'jetpack_security_report' );
1820
 
1821
  Jetpack_Options::update_option( 'security_report', self::$security_report );
1840
  }
1841
 
1842
  if( !function_exists( 'get_plugin_data' ) ) {
1843
+ include( ABSPATH . 'wp-admin/includes/plugin.php' );
1844
  }
1845
 
1846
  //Get rid of any non-allowed args
2041
  $jetpack_old_version = Jetpack_Options::get_option( 'version' ); // [sic]
2042
  if ( ! $jetpack_old_version ) {
2043
  $jetpack_old_version = $version = $old_version = '1.1:' . time();
2044
+ /** This action is documented in class.jetpack.php */
2045
  do_action( 'updating_jetpack_version', $version, false );
2046
  Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
2047
  }
2069
  }
2070
 
2071
  $new_version = JETPACK__VERSION . ':' . time();
2072
+ /** This action is documented in class.jetpack.php */
2073
  do_action( 'updating_jetpack_version', $new_version, $jetpack_old_version );
2074
  Jetpack_Options::update_options(
2075
  array(
2123
  }
2124
  }
2125
 
2126
+ /**
2127
+ * Filters the array of modules available to be activated.
2128
+ *
2129
+ * @since 2.4.0
2130
+ *
2131
+ * @param array $modules Array of available modules.
2132
+ * @param string $min_version Minimum version number required to use modules.
2133
+ * @param string $max_version Maximum version number required to use modules.
2134
+ */
2135
  $mods = apply_filters( 'jetpack_get_available_modules', $modules, $min_version, $max_version );
2136
 
2137
  if ( ! $min_version && ! $max_version ) {
2177
  break;
2178
  }
2179
  }
2180
+ /**
2181
+ * Filters the array of default modules.
2182
+ *
2183
+ * @since 2.5.0
2184
+ *
2185
+ * @param array $return Array of default modules.
2186
+ * @param string $min_version Minimum version number required to use modules.
2187
+ * @param string $max_version Maximum version number required to use modules.
2188
+ */
2189
  return apply_filters( 'jetpack_get_default_modules', $return, $min_version, $max_version );
2190
  }
2191
 
2343
  }
2344
 
2345
  /**
2346
+ * Filters the feature array on a module.
2347
  *
2348
  * This filter allows you to control where each module is filtered: Recommended,
2349
  * Jumpstart, and the default "Other" listing.
2350
  *
2351
+ * @since 3.5.0
2352
  *
2353
  * @param array $mod['feature'] The areas to feature this module:
2354
+ * 'Jumpstart' adds to the "Jumpstart" option to activate many modules at once.
2355
+ * 'Recommended' shows on the main Jetpack admin screen.
2356
+ * 'Other' should be the default if no other value is in the array.
2357
+ * @param string $module The slug of the module, e.g. sharedaddy.
2358
+ * @param array $mod All the currently assembled module data.
2359
  */
2360
  $mod['feature'] = apply_filters( 'jetpack_module_feature', $mod['feature'], $module, $mod );
2361
 
2365
  * This filter allows overriding any info about Jetpack modules. It is dangerous,
2366
  * so please be careful.
2367
  *
2368
+ * @since 3.6.0
2369
  *
2370
  * @param array $mod The details of the requested module.
2371
  * @param string $module The slug of the module, e.g. sharedaddy
2417
  } else {
2418
  $active = array_diff( $active, array( 'vaultpress' ) );
2419
  }
2420
+
2421
  //If protect is active on the main site of a multisite, it should be active on all sites.
2422
  if ( ! in_array( 'protect', $active ) && is_multisite() && get_site_option( 'jetpack_protect_active' ) ) {
2423
  $active[] = 'protect';
2424
  }
2425
+
2426
  return array_unique( $active );
2427
  }
2428
 
2507
  exit;
2508
  }
2509
 
2510
+ /**
2511
+ * Fires before default modules are activated.
2512
+ *
2513
+ * @since 1.9.0
2514
+ *
2515
+ * @param string $min_version Minimum version number required to use modules.
2516
+ * @param string $max_version Maximum version number required to use modules.
2517
+ * @param array $other_modules Array of other modules to activate alongside the default modules.
2518
+ */
2519
  do_action( 'jetpack_before_activate_default_modules', $min_version, $max_version, $other_modules );
2520
 
2521
  // Check each module for fatal errors, a la wp-admin/plugins.php::activate before activating
2557
  Jetpack::state( 'module', $module );
2558
  ob_start();
2559
  require $file;
2560
+ /**
2561
+ * Fires when a specific module is activated.
2562
+ *
2563
+ * @since 1.9.0
2564
+ *
2565
+ * @param string $module Module slug.
2566
+ */
2567
  do_action( 'jetpack_activate_module', $module );
2568
  $active[] = $module;
2569
  $state = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules';
2580
  Jetpack::state( 'error', false );
2581
  Jetpack::state( 'module', false );
2582
  Jetpack::catch_errors( false );
2583
+ /**
2584
+ * Fires when default modules are activated.
2585
+ *
2586
+ * @since 1.9.0
2587
+ *
2588
+ * @param string $min_version Minimum version number required to use modules.
2589
+ * @param string $max_version Maximum version number required to use modules.
2590
+ * @param array $other_modules Array of other modules to activate alongside the default modules.
2591
+ */
2592
  do_action( 'jetpack_activate_default_modules', $min_version, $max_version, $other_modules );
2593
  }
2594
 
2595
  public static function activate_module( $module, $exit = true, $redirect = true ) {
2596
+ /**
2597
+ * Fires before a module is activated.
2598
+ *
2599
+ * @since 2.6.0
2600
+ *
2601
+ * @param string $module Module slug.
2602
+ * @param bool $exit Should we exit after the module has been activated. Default to true.
2603
+ * @param bool $redirect Should the user be redirected after module activation? Default to true.
2604
+ */
2605
  do_action( 'jetpack_pre_activate_module', $module, $exit, $redirect );
2606
 
2607
  $jetpack = Jetpack::init();
2649
  Jetpack::catch_errors( true );
2650
  ob_start();
2651
  require Jetpack::get_module_path( $module );
2652
+ /** This action is documented in class.jetpack.php */
2653
  do_action( 'jetpack_activate_module', $module );
2654
  $active[] = $module;
2655
  Jetpack_Options::update_option( 'active_modules', array_unique( $active ) );
2678
  }
2679
 
2680
  function activate_module_actions( $module ) {
2681
+ /**
2682
+ * Fires when a module is activated.
2683
+ * The dynamic part of the filter, $module, is the module slug.
2684
+ *
2685
+ * @since 1.9.0
2686
+ *
2687
+ * @param string $module Module slug.
2688
+ */
2689
  do_action( "jetpack_activate_module_$module", $module );
2690
 
2691
  $this->sync->sync_all_module_options( $module );
2692
  }
2693
 
2694
  public static function deactivate_module( $module ) {
2695
+ /**
2696
+ * Fires when a module is deactivated.
2697
+ *
2698
+ * @since 1.9.0
2699
+ *
2700
+ * @param string $module Module slug.
2701
+ */
2702
  do_action( 'jetpack_pre_deactivate_module', $module );
2703
 
2704
  $jetpack = Jetpack::init();
2706
  $active = Jetpack::get_active_modules();
2707
  $new = array_filter( array_diff( $active, (array) $module ) );
2708
 
2709
+ /**
2710
+ * Fires when a module is deactivated.
2711
+ * The dynamic part of the filter, $module, is the module slug.
2712
+ *
2713
+ * @since 1.9.0
2714
+ *
2715
+ * @param string $module Module slug.
2716
+ */
2717
  do_action( "jetpack_deactivate_module_$module", $module );
2718
 
2719
  // A flag for Jump Start so it's not shown again.
2838
 
2839
  if ( ! Jetpack_Options::get_option( 'version' ) ) {
2840
  $version = $old_version = JETPACK__VERSION . ':' . time();
2841
+ /** This action is documented in class.jetpack.php */
2842
  do_action( 'updating_jetpack_version', $version, false );
2843
  Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
2844
  }
2996
  Jetpack_Options::update_option( 'log', $log );
2997
  }
2998
 
2999
+ /**
3000
+ * Fires when Jetpack logs an internal event.
3001
+ *
3002
+ * @since 3.0.0
3003
+ *
3004
+ * @param array $log_entry {
3005
+ * Array of details about the log entry.
3006
+ *
3007
+ * @param string time Time of the event.
3008
+ * @param int user_id ID of the user who trigerred the event.
3009
+ * @param int blog_id Jetpack Blog ID.
3010
+ * @param string code Unique name for the event.
3011
+ * @param string data Data about the event.
3012
+ * }
3013
+ */
3014
  do_action( 'jetpack_log_entry', $log_entry );
3015
  }
3016
 
3017
  /**
3018
  * Get the internal event log.
3019
+ *
3020
+ * @param $event (string) - only return the specific log events
3021
+ * @param $num (int) - get specific number of latest results
3022
+ *
3023
+ * @return array of log events || WP_Error for invalid params
3024
  */
3025
+ public static function get_log( $event = false, $num = false ) {
3026
+ if ( $event && ! is_string( $event ) ) {
3027
+ return new WP_Error( __( 'First param must be string or empty', 'jetpack' ) );
3028
+ }
3029
 
3030
+ if ( $num && ! is_numeric( $num ) ) {
3031
+ return new WP_Error( __( 'Second param must be numeric or empty', 'jetpack' ) );
3032
+ }
3033
+
3034
+ $entire_log = Jetpack_Options::get_option( 'log', array() );
3035
+
3036
+ // If nothing set - act as it did before, otherwise let's start customizing the output
3037
+ if ( ! $num && ! $event ) {
3038
+ return $entire_log;
3039
+ } else {
3040
+ $entire_log = array_reverse( $entire_log );
3041
+ }
3042
+
3043
+ $custom_log_output = array();
3044
+
3045
+ if ( $event ) {
3046
+ foreach ( $entire_log as $log_event ) {
3047
+ if ( $event == $log_event[ 'code' ] ) {
3048
+ $custom_log_output[] = $log_event;
3049
+ }
3050
+ }
3051
+ } else {
3052
+ $custom_log_output = $entire_log;
3053
+ }
3054
+
3055
+ if ( $num ) {
3056
+ $custom_log_output = array_slice( $custom_log_output, 0, $num );
3057
+ }
3058
+
3059
+ return $custom_log_output;
3060
+ }
3061
+
3062
+ /**
3063
+ * Log modification of important settings.
3064
  */
3065
  public static function log_settings_change( $option, $old_value, $value ) {
3066
  switch( $option ) {
3103
  // Show the notice on the Dashboard only for now
3104
 
3105
  add_action( 'load-index.php', array( $this, 'prepare_manage_jetpack_notice' ) );
3106
+
3107
+ // Identity crisis notices
3108
+ add_action( 'jetpack_notices', array( $this, 'alert_identity_crisis' ) );
3109
+ add_action( 'admin_notices', array( $this, 'alert_identity_crisis' ) );
3110
  }
3111
 
3112
  // If the plugin has just been disconnected from WP.com, show the survey notice
3114
  add_action( 'jetpack_notices', array( $this, 'disconnect_survey_notice' ) );
3115
  }
3116
 
 
 
3117
  if ( current_user_can( 'manage_options' ) && 'ALWAYS' == JETPACK_CLIENT__HTTPS && ! self::permit_ssl() ) {
3118
  add_action( 'admin_notices', array( $this, 'alert_required_ssl_fail' ) );
3119
  }
3409
 
3410
  function admin_head() {
3411
  if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) )
3412
+ /** This action is documented in class.jetpack-admin-page.php */
3413
  do_action( 'jetpack_module_configuration_head_' . $_GET['configure'] );
3414
  }
3415
 
3571
  if( ! Jetpack_Options::get_option( 'public' ) )
3572
  return false;
3573
 
3574
+ /**
3575
+ * Should the Jetpack Remote Site Management notice be displayed.
3576
+ *
3577
+ * @since 3.3.0
3578
+ *
3579
+ * @param bool ! self::is_module_active( 'manage' ) Is the Manage module inactive.
3580
+ */
3581
  return apply_filters( 'can_display_jetpack_manage_notice', ! self::is_module_active( 'manage' ) );
3582
  }
3583
 
3612
  }
3613
 
3614
  return '<br /><br />' . sprintf(
3615
+ __( 'Jetpack now includes Comments, which enables your visitors to use their WordPress.com, Twitter, or Facebook accounts when commenting on your site. To activate Comments, <a href="%s">%s</a>.', 'jetpack' ),
3616
  wp_nonce_url(
3617
  Jetpack::admin_url(
3618
  array(
3805
  wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
3806
  exit;
3807
  case 'unlink' :
3808
+ $redirect = isset( $_GET['redirect'] ) ? $_GET['redirect'] : '';
3809
  check_admin_referer( 'jetpack-unlink' );
3810
  Jetpack::log( 'unlink' );
3811
  $this->unlink_user();
3812
  Jetpack::state( 'message', 'unlinked' );
3813
+ if ( 'sub-unlink' == $redirect ) {
3814
+ wp_safe_redirect( admin_url() );
3815
+ } else {
3816
+ wp_safe_redirect( Jetpack::admin_url( array( 'page' => $redirect ) ) );
3817
+ }
3818
  exit;
3819
  default:
3820
+ /**
3821
+ * Fires when a Jetpack admin page is loaded with an unrecognized parameter.
3822
+ *
3823
+ * @since 2.6.0
3824
+ *
3825
+ * @param string sanitize_key( $_GET['action'] ) Unrecognized URL parameter.
3826
+ */
3827
  do_action( 'jetpack_unrecognized_action', sanitize_key( $_GET['action'] ) );
3828
  }
3829
  }
4127
  }
4128
 
4129
  if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) ) {
4130
+ /**
4131
+ * Fires when a module configuration page is loaded.
4132
+ * The dynamic part of the hook is the configure parameter from the URL.
4133
+ *
4134
+ * @since 1.1.0
4135
+ */
4136
  do_action( 'jetpack_module_configuration_load_' . $_GET['configure'] );
4137
  }
4138
 
4273
  * @return bool If it worked.
4274
  */
4275
  static function do_server_side_stat( $args ) {
4276
+ $response = wp_remote_get( esc_url_raw( self::build_stats_url( $args ) ) );
4277
  if ( is_wp_error( $response ) )
4278
  return false;
4279
 
4296
  'rand' => md5( mt_rand( 0, 999 ) . time() ),
4297
  );
4298
  $args = wp_parse_args( $args, $defaults );
4299
+ /**
4300
+ * Filter the URL used as the Stats tracking pixel.
4301
+ *
4302
+ * @since 2.3.2
4303
+ *
4304
+ * @param string $url Base URL used as the Stats tracking pixel.
4305
+ */
4306
  $base_url = apply_filters(
4307
  'jetpack_stats_base_url',
4308
  set_url_scheme( 'http://pixel.wp.com/g.gif' )
4343
  }
4344
 
4345
  function build_connect_url( $raw = false, $redirect = false ) {
4346
+ if ( ! Jetpack_Options::get_option( 'blog_token' ) || ! Jetpack_Options::get_option( 'id' ) ) {
4347
  $url = Jetpack::nonce_url_no_esc( Jetpack::admin_url( 'action=register' ), 'jetpack-register' );
4348
  if( is_network_admin() ) {
4349
  $url = add_query_arg( 'is_multisite', network_admin_url(
4479
  }
4480
  }
4481
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4482
  function debugger_page() {
4483
  nocache_headers();
4484
  if ( ! current_user_can( 'manage_options' ) ) {
4504
  printf( __( 'Configure %s', 'jetpack' ), $module['name'] );
4505
  ?>
4506
  </h3>
4507
+ <?php
4508
+ /**
4509
+ * Fires within the displayed message when a feature configuation is updated.
4510
+ *
4511
+ * @since 3.4.0
4512
+ *
4513
+ * @param int $module_id Module ID.
4514
+ */
4515
+ do_action( 'jetpack_notices_update_settings', $module_id );
4516
+ /**
4517
+ * Fires when a feature configuation screen is loaded.
4518
+ * The dynamic part of the hook, $module_id, is the module ID.
4519
+ *
4520
+ * @since 1.1.0
4521
+ */
4522
+ do_action( 'jetpack_module_configuration_screen_' . $module_id );
4523
+ ?>
4524
  </div><?php
4525
  }
4526
 
4589
  return ( $a['sort'] < $b['sort'] ) ? -1 : 1;
4590
  }
4591
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4592
  function sync_reindex_trigger() {
4593
  if ( $this->current_user_is_connection_owner() && current_user_can( 'manage_options' ) ) {
4594
  echo json_encode( $this->sync->reindex_trigger() );
4863
  )
4864
  );
4865
 
4866
+ do_action( 'jetpack_site_registered', $json->jetpack_id, $json->jetpack_secret, $jetpack_public );
4867
+
4868
  // Initialize Jump Start for the first and only time.
4869
  if ( ! Jetpack_Options::get_option( 'jumpstart' ) ) {
4870
  Jetpack_Options::update_option( 'jumpstart', 'new_connection' );
5508
  */
5509
  public static function get_content_width() {
5510
  $content_width = isset( $GLOBALS['content_width'] ) ? $GLOBALS['content_width'] : false;
5511
+ /**
5512
+ * Filter the Content Width value.
5513
+ *
5514
+ * @since 2.2.3
5515
+ *
5516
+ * @param string $content_width Content Width value.
5517
+ */
5518
  return apply_filters( 'jetpack_content_width', $content_width );
5519
  }
5520
 
5571
  $xml = new Jetpack_IXR_Client( array( 'user_id' => JETPACK_MASTER_USER, ) );
5572
  $xml->query( 'jetpack.fetchSiteOptions', $option_names );
5573
  if ( $xml->isError() ) {
5574
+ return array(
5575
+ 'error_code' => $xml->getErrorCode(),
5576
+ 'error_msg' => $xml->getErrorMessage(),
5577
+ );
5578
  }
5579
  $cloud_site_options = $xml->getResponse();
5580
 
5591
  'siteurl',
5592
  'home',
5593
  );
5594
+ /**
5595
+ * Filter the options that we should compare to determine an identity crisis.
5596
+ *
5597
+ * @since 2.5.0
5598
+ *
5599
+ * @param array $options Array of options to compare to determine an identity crisis.
5600
+ */
5601
  return apply_filters( 'jetpack_identity_crisis_options_to_check', $options );
5602
  }
5603
 
5616
  $options_to_check = self::identity_crisis_options_to_check();
5617
  $cloud_options = Jetpack::init()->get_cloud_site_options( $options_to_check );
5618
  $errors = array();
5619
+
5620
  foreach ( $cloud_options as $cloud_key => $cloud_value ) {
5621
+
5622
  // If it's not the same as the local value...
5623
  if ( $cloud_value !== get_option( $cloud_key ) ) {
5624
+
5625
+ // Break out if we're getting errors. We are going to check the error keys later when we alert.
5626
+ if ( 'error_code' == $cloud_key ) {
5627
+ $errors[ $cloud_key ] = $cloud_value;
5628
+ break;
5629
+ }
5630
+
5631
+ $parsed_cloud_value = parse_url( $cloud_value );
5632
+ // If the current options is an IP address
5633
+ if ( filter_var( $parsed_cloud_value['host'], FILTER_VALIDATE_IP ) ) {
5634
+ // Give the new value a Jetpack to fly in to the clouds
5635
+ Jetpack::resolve_identity_crisis( $cloud_key );
5636
+ continue;
5637
+ }
5638
+
5639
  // And it's not been added to the whitelist...
5640
  if ( ! self::is_identity_crisis_value_whitelisted( $cloud_key, $cloud_value ) ) {
5641
  /*
5649
  *
5650
  * @see https://github.com/Automattic/jetpack/issues/1006
5651
  */
5652
+ if ( ( 'home' == $cloud_key || 'siteurl' == $cloud_key )
5653
  && ( substr( $cloud_value, 0, 8 ) == "https://" )
5654
  && Jetpack::init()->is_ssl_required_to_visit_site() ) {
5655
  // Ok, we found a mismatch of http and https because of wp-config, not an invalid url
5663
  }
5664
  }
5665
  }
5666
+
5667
+ /**
5668
+ * Filters the errors returned when checking for an Identity Crisis.
5669
+ *
5670
+ * @since 2.3.2
5671
+ *
5672
+ * @param array $errors Array of Identity Crisis errors.
5673
+ * @param bool $force_recheck Ignore any cached transient and manually re-check. Default to false.
5674
+ */
5675
  return apply_filters( 'jetpack_has_identity_crisis', $errors, $force_recheck );
5676
  }
5677
 
5678
+ /*
5679
+ * Resolve ID crisis
5680
+ *
5681
+ * If the URL has changed, but the rest of the options are the same (i.e. blog/user tokens)
5682
+ * The user has the option to update the shadow site with the new URL before a new
5683
+ * token is created.
5684
+ *
5685
+ * @param $key : Which option to sync. null defautlts to home and siteurl
5686
+ */
5687
+ public static function resolve_identity_crisis( $key = null ) {
5688
+ if ( $key ) {
5689
+ $identity_options = array( $key );
5690
+ } else {
5691
+ $identity_options = self::identity_crisis_options_to_check();
5692
+ }
5693
+
5694
+ if ( is_array( $identity_options ) ) {
5695
+ foreach( $identity_options as $identity_option ) {
5696
+ Jetpack_Sync::sync_options( __FILE__, $identity_option );
5697
+
5698
+ // Fire off the sync manually
5699
+ do_action( "update_option_{$identity_option}" );
5700
+ }
5701
+ }
5702
+ }
5703
+
5704
+ /*
5705
+ * Whitelist URL
5706
+ *
5707
+ * Ignore the URL differences between the blog and the shadow site.
5708
+ */
5709
+ public static function whitelist_current_url() {
5710
+ $options_to_check = Jetpack::identity_crisis_options_to_check();
5711
+ $cloud_options = Jetpack::init()->get_cloud_site_options( $options_to_check );
5712
+
5713
+ foreach ( $cloud_options as $cloud_key => $cloud_value ) {
5714
+ Jetpack::whitelist_identity_crisis_value( $cloud_key, $cloud_value );
5715
+ }
5716
+ }
5717
+
5718
+ /*
5719
+ * Ajax callbacks for ID crisis resolutions
5720
+ *
5721
+ * Things that could happen here:
5722
+ * - site_migrated : Update the URL on the shadow blog to match new domain
5723
+ * - whitelist : Ignore the URL difference
5724
+ * - default : Error message
5725
+ */
5726
+ public static function resolve_identity_crisis_ajax_callback() {
5727
+ check_ajax_referer( 'resolve-identity-crisis', 'ajax-nonce' );
5728
+
5729
+ switch ( $_POST[ 'crisis_resolution_action' ] ) {
5730
+ case 'site_migrated':
5731
+ Jetpack::resolve_identity_crisis();
5732
+ echo 'resolved';
5733
+ break;
5734
+
5735
+ case 'whitelist':
5736
+ Jetpack::whitelist_current_url();
5737
+ echo 'whitelisted';
5738
+ break;
5739
+
5740
+ case 'reset_connection':
5741
+ // Delete the options first so it doesn't get confused which site to disconnect dotcom-side
5742
+ Jetpack_Options::delete_option(
5743
+ array(
5744
+ 'register',
5745
+ 'blog_token',
5746
+ 'user_token',
5747
+ 'user_tokens',
5748
+ 'master_user',
5749
+ 'time_diff',
5750
+ 'fallback_no_verify_ssl_certs',
5751
+ 'id',
5752
+ )
5753
+ );
5754
+ delete_transient( 'jetpack_has_identity_crisis' );
5755
+
5756
+ echo 'reset-connection-success';
5757
+ break;
5758
+
5759
+ default:
5760
+ echo 'missing action';
5761
+ break;
5762
+ }
5763
+
5764
+ wp_die();
5765
+ }
5766
+
5767
  /**
5768
  * Adds a value to the whitelist for the specified key.
5769
  *
5773
  * @return bool Whether the value was added to the whitelist, or false if it was already there.
5774
  */
5775
  public static function whitelist_identity_crisis_value( $key, $value ) {
5776
+ if ( Jetpack::is_identity_crisis_value_whitelisted( $key, $value ) ) {
5777
  return false;
5778
  }
5779
 
5803
  return false;
5804
  }
5805
 
5806
+ /**
5807
+ * Checks whether the home and siteurl specifically are whitelisted
5808
+ * Written so that we don't have re-check $key and $value params every time
5809
+ * we want to check if this site is whitelisted, for example in footer.php
5810
+ *
5811
+ * @return bool True = already whitelsisted False = not whitelisted
5812
+ */
5813
+ public static function jetpack_is_staging_site() {
5814
+ $current_whitelist = Jetpack_Options::get_option( 'identity_crisis_whitelist' );
5815
+ if ( ! $current_whitelist ) {
5816
+ return false;
5817
+ }
5818
+
5819
+ $options_to_check = Jetpack::identity_crisis_options_to_check();
5820
+ $cloud_options = Jetpack::init()->get_cloud_site_options( $options_to_check );
5821
+
5822
+ foreach ( $cloud_options as $cloud_key => $cloud_value ) {
5823
+ if ( ! self::is_identity_crisis_value_whitelisted( $cloud_key, $cloud_value ) ) {
5824
+ return false;
5825
+ }
5826
+ }
5827
+ return true;
5828
+ }
5829
+
5830
+ public function identity_crisis_js( $nonce ) {
5831
+ ?>
5832
+ <script>
5833
+ (function( $ ) {
5834
+ var SECOND_IN_MS = 1000;
5835
+
5836
+ function contactSupport( e ) {
5837
+ e.preventDefault();
5838
+ $( '.jp-id-crisis-question' ).hide();
5839
+ $( '#jp-id-crisis-contact-support' ).show();
5840
+ }
5841
+
5842
+ function autodismissSuccessBanner() {
5843
+ $( '.jp-identity-crisis' ).fadeOut(600); //.addClass( 'dismiss' );
5844
+ }
5845
+
5846
+ var data = { action: 'jetpack_resolve_identity_crisis', 'ajax-nonce': '<?php echo $nonce; ?>' };
5847
+
5848
+ $( document ).ready(function() {
5849
+
5850
+ // Site moved: Update the URL on the shadow blog
5851
+ $( '.site-moved' ).click(function( e ) {
5852
+ e.preventDefault();
5853
+ data.crisis_resolution_action = 'site_migrated';
5854
+ $( '#jp-id-crisis-question-1 .spinner' ).show();
5855
+ $.post( ajaxurl, data, function() {
5856
+ $( '.jp-id-crisis-question' ).hide();
5857
+ $( '.banner-title' ).hide();
5858
+ $( '#jp-id-crisis-success' ).show();
5859
+ setTimeout( autodismissSuccessBanner, 6 * SECOND_IN_MS );
5860
+ });
5861
+
5862
+ });
5863
+
5864
+ // URL hasn't changed, next question please.
5865
+ $( '.site-not-moved' ).click(function( e ) {
5866
+ e.preventDefault();
5867
+ $( '.jp-id-crisis-question' ).hide();
5868
+ $( '#jp-id-crisis-question-2' ).show();
5869
+ });
5870
+
5871
+ // Reset connection: two separate sites.
5872
+ $( '.reset-connection' ).click(function( e ) {
5873
+ data.crisis_resolution_action = 'reset_connection';
5874
+ $.post( ajaxurl, data, function( response ) {
5875
+ if ( 'reset-connection-success' === response ) {
5876
+ window.location.replace( '<?php echo Jetpack::admin_url(); ?>' );
5877
+ }
5878
+ });
5879
+ });
5880
+
5881
+ // It's a dev environment. Ignore.
5882
+ $( '.is-dev-env' ).click(function( e ) {
5883
+ data.crisis_resolution_action = 'whitelist';
5884
+ $( '#jp-id-crisis-question-2 .spinner' ).show();
5885
+ $.post( ajaxurl, data, function() {
5886
+ $( '.jp-id-crisis-question' ).hide();
5887
+ $( '.banner-title' ).hide();
5888
+ $( '#jp-id-crisis-success' ).show();
5889
+ setTimeout( autodismissSuccessBanner, 4 * SECOND_IN_MS );
5890
+ });
5891
+ });
5892
+
5893
+ $( '.not-reconnecting' ).click(contactSupport);
5894
+ $( '.not-staging-or-dev' ).click(contactSupport);
5895
+ });
5896
+ })( jQuery );
5897
+ </script>
5898
+ <?php
5899
+ }
5900
+
5901
  /**
5902
  * Displays an admin_notice, alerting the user to an identity crisis.
5903
  */
5904
  public function alert_identity_crisis() {
5905
+ // @todo temporary copout for dealing with domain mapping
5906
+ // @see https://github.com/Automattic/jetpack/issues/2702
5907
+ if ( is_multisite() && defined( 'SUNRISE' ) && ! Jetpack::is_development_version() ) {
5908
+ return;
5909
+ }
5910
+
5911
+ if ( ! current_user_can( 'jetpack_disconnect' ) ) {
5912
  return;
5913
+ }
5914
 
5915
+ if ( ! $errors = self::check_identity_crisis() ) {
5916
+ return;
5917
+ }
5918
+
5919
+ // Only show on dashboard and jetpack pages
5920
+ $screen = get_current_screen();
5921
+ if ( 'dashboard' !== $screen->base && ! did_action( 'jetpack_notices' ) ) {
5922
  return;
5923
+ }
5924
+
5925
+ // Include the js!
5926
+ $ajax_nonce = wp_create_nonce( 'resolve-identity-crisis' );
5927
+ $this->identity_crisis_js( $ajax_nonce );
5928
+
5929
+ // Include the CSS!
5930
+ if ( ! wp_script_is( 'jetpack', 'done' ) ) {
5931
+ $this->admin_banner_styles();
5932
+ }
5933
+
5934
+ if ( ! array_key_exists( 'error_code', $errors ) ) {
5935
+ $key = 'siteurl';
5936
+ if ( ! $errors[ $key ] ) {
5937
+ $key = 'home';
5938
+ }
5939
+ } else {
5940
+ $key = 'error_code';
5941
+ // 401 is the only error we care about. Any other errors should not trigger the alert.
5942
+ if ( 401 !== $errors[ $key ] ) {
5943
+ return;
5944
+ }
5945
+ }
5946
+
5947
  ?>
5948
 
5949
+ <style>
5950
+ .jp-identity-crisis .jp-btn-group {
5951
+ margin: 15px 0;
5952
+ }
5953
+ .jp-identity-crisis strong {
5954
+ color: #518d2a;
5955
+ }
5956
+ .jp-identity-crisis.dismiss {
5957
+ display: none;
5958
+ }
5959
+ .jp-identity-crisis .button {
5960
+ margin-right: 4px;
5961
+ }
5962
+ </style>
5963
+
5964
+ <div id="message" class="error jetpack-message jp-identity-crisis stay-visible">
5965
+ <div class="service-mark"></div>
5966
+ <div class="jp-id-banner__content">
5967
+ <!-- <h3 class="banner-title"><?php _e( 'Something\'s not quite right with your Jetpack connection! Let\'s fix that.', 'jetpack' ); ?></h3> -->
5968
+
5969
+ <div class="jp-id-crisis-question" id="jp-id-crisis-question-1">
5970
+ <?php
5971
+ // 401 means that this site has been disconnected from wpcom, but the remote site still thinks it's connected.
5972
+ if ( 'error_code' == $key && '401' == $errors[ $key ] ) : ?>
5973
+ <div class="banner-content">
5974
+ <p><?php
5975
+ /* translators: %s is a URL */
5976
+ printf( __( 'Our records show that this site does not have a valid connection to WordPress.com. Please reset your connection to fix this. <a href="%s" target="_blank">What caused this?</a>', 'jetpack' ), 'https://jetpack.me/support/no-valid-wordpress-com-connection/' );
5977
+ ?></p>
5978
+ </div>
5979
+ <div class="jp-btn-group">
5980
+ <a href="#" class="reset-connection"><?php _e( 'Reset the connection', 'jetpack' ); ?></a>
5981
+ <span class="idc-separator">|</span>
5982
+ <a href="<?php echo esc_url( wp_nonce_url( Jetpack::admin_url( 'jetpack-notice=dismiss' ), 'jetpack-deactivate' ) ); ?>"><?php _e( 'Deactivate Jetpack', 'jetpack' ); ?></a>
5983
+ </div>
5984
+ <?php else : ?>
5985
+ <div class="banner-content">
5986
+ <p><?php printf( __( 'It looks like you may have changed your domain. Is <strong>%1$s</strong> still your site\'s domain, or have you updated it to <strong> %2$s </strong>?', 'jetpack' ), $errors[ $key ], (string) get_option( $key ) ); ?></p>
5987
+ </div>
5988
+ <div class="jp-btn-group">
5989
+ <a href="#" class="regular site-moved"><?php _e( 'I\'ve updated it.', 'jetpack' ); ?></a> <span class="idc-separator">|</span> <a href="#" class="site-not-moved" ><?php _e( 'That\'s still my domain.', 'jetpack' ); ?></a>
5990
+ <span class="spinner"></span>
5991
+ </div>
5992
+ <?php endif ; ?>
5993
+ </div>
5994
+
5995
+ <div class="jp-id-crisis-question" id="jp-id-crisis-question-2" style="display: none;">
5996
+ <div class="banner-content">
5997
+ <p><?php printf(
5998
+ /* translators: %1$s, %2$s and %3$s are URLs */
5999
+ __(
6000
+ 'Are <strong> %2$s </strong> and <strong> %1$s </strong> two completely separate websites? If so we should create a new connection, which will reset your followers and linked services. <a href="%3$s"><em>What does this mean?</em></a>',
6001
+ 'jetpack'
6002
+ ),
6003
+ $errors[ $key ],
6004
+ (string) get_option( $key ),
6005
+ 'https://jetpack.me/support/what-does-resetting-the-connection-mean/'
6006
+ ); ?></p>
6007
+ </div>
6008
+ <div class="jp-btn-group">
6009
+ <a href="#" class="reset-connection"><?php _e( 'Reset the connection', 'jetpack' ); ?></a> <span class="idc-separator">|</span>
6010
+ <a href="#" class="is-dev-env"><?php _e( 'This is a development environment', 'jetpack' ); ?></a> <span class="idc-separator">|</span>
6011
+ <a href="https://jetpack.me/contact-support/" class="contact-support"><?php _e( 'Submit a support ticket', 'jetpack' ); ?></a>
6012
+ <span class="spinner"></span>
6013
+ </div>
6014
+ </div>
6015
+
6016
+ <div class="jp-id-crisis-success" id="jp-id-crisis-success" style="display: none;">
6017
+ <h3 class="success-notice"><?php printf( __( 'Thanks for taking the time to sort things out. We&#039;ve updated our records accordingly!', 'jetpack' ) ); ?></h3>
6018
+ </div>
6019
  </div>
6020
  </div>
6021
 
6304
  $do_implode = false;
6305
  }
6306
 
6307
+ /**
6308
+ * Allow CSS to be concatenated into a single jetpack.css file.
6309
+ *
6310
+ * @since 3.2.0
6311
+ *
6312
+ * @param bool $do_implode Should CSS be concatenated? Default to true.
6313
+ */
6314
  $do_implode = apply_filters( 'jetpack_implode_frontend_css', $do_implode );
6315
 
6316
  // Do not use the imploded file when default behaviour was altered through the filter
6438
  *
6439
  * @return array of options to delete.
6440
  */
6441
+ public static function get_jetpack_options_for_reset() {
6442
  $jetpack_options = Jetpack_Options::get_option_names();
6443
  $jetpack_options_non_compat = Jetpack_Options::get_option_names( 'non_compact' );
6444
+ $jetpack_options_private = Jetpack_Options::get_option_names( 'private' );
6445
 
6446
+ $all_jp_options = array_merge( $jetpack_options, $jetpack_options_non_compat, $jetpack_options_private );
6447
 
6448
  // A manual build of the wp options
6449
  $wp_options = array(
6473
  'site_logo',
6474
  );
6475
 
6476
+ // Flag some Jetpack options as unsafe
6477
+ $unsafe_options = array(
6478
  'id', // (int) The Client ID/WP.com Blog ID of this site.
6479
  'master_user', // (int) The local User ID of the user who connected this site to jetpack.wordpress.com.
6480
  'version', // (string) Used during upgrade procedure to auto-activate new modules. version:time
6482
 
6483
  // non_compact
6484
  'activated',
6485
+
6486
+ // private
6487
+ 'register',
6488
+ 'blog_token', // (string) The Client Secret/Blog Token of this site.
6489
+ 'user_token', // (string) The User Token of this site. (deprecated)
6490
+ 'user_tokens'
6491
  );
6492
 
6493
+ // Remove the unsafe Jetpack options
6494
+ foreach ( $unsafe_options as $unsafe_option ) {
6495
+ if ( false !== ( $key = array_search( $unsafe_option, $all_jp_options ) ) ) {
6496
  unset( $all_jp_options[ $key ] );
6497
  }
6498
  }
6521
 
6522
 
6523
  // Manual build of module options
6524
+ $option_names = self::get_jetpack_options_for_reset();
6525
 
6526
  if ( in_array( $option_name, $option_names['wp_options'] ) ) {
6527
  Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
6574
  public function wp_dashboard_setup() {
6575
  if ( self::is_active() ) {
6576
  add_action( 'jetpack_dashboard_widget', array( __CLASS__, 'dashboard_widget_footer' ), 999 );
6577
+ $widget_title = __( 'Jetpack', 'jetpack' );
6578
  } elseif ( ! self::is_development_mode() && current_user_can( 'jetpack_connect' ) ) {
6579
  add_action( 'jetpack_dashboard_widget', array( $this, 'dashboard_widget_connect_to_wpcom' ) );
6580
+ $widget_title = __( 'Please Connect Jetpack', 'jetpack' );
6581
  }
6582
 
6583
  if ( has_action( 'jetpack_dashboard_widget' ) ) {
6584
  wp_add_dashboard_widget(
6585
  'jetpack_summary_widget',
6586
+ $widget_title,
6587
  array( __CLASS__, 'dashboard_widget' )
6588
  );
6589
  wp_enqueue_style( 'jetpack-dashboard-widget', plugins_url( 'css/dashboard-widget.css', JETPACK__PLUGIN_FILE ), array(), JETPACK__VERSION );
6631
  }
6632
 
6633
  public static function dashboard_widget() {
6634
+ /**
6635
+ * Fires when the dashboard is loaded.
6636
+ *
6637
+ * @since 3.4.0
6638
+ */
6639
  do_action( 'jetpack_dashboard_widget' );
6640
  }
6641
 
6648
  <h3><?php echo number_format_i18n( get_site_option( 'jetpack_protect_blocked_attempts', 0 ) ); ?></h3>
6649
  <p><?php echo esc_html_x( 'Blocked malicious login attempts', '{#} Blocked malicious login attempts -- number is on a prior line, text is a caption.', 'jetpack' ); ?></p>
6650
  <?php elseif ( current_user_can( 'jetpack_activate_modules' ) && ! self::is_development_mode() ) : ?>
6651
+ <a href="<?php echo esc_url( wp_nonce_url( Jetpack::admin_url( array( 'action' => 'activate', 'module' => 'protect' ) ), 'jetpack_activate-protect' ) ); ?>" class="button button-jetpack" title="<?php esc_attr_e( 'Protect helps to keep you secure from brute-force login attacks.', 'jetpack' ); ?>">
6652
+ <?php esc_html_e( 'Activate Protect', 'jetpack' ); ?>
6653
  </a>
6654
  <?php else : ?>
6655
+ <?php esc_html_e( 'Protect is inactive.', 'jetpack' ); ?>
6656
  <?php endif; ?>
6657
  </div>
6658
 
6669
  <?php endif; ?>
6670
  </div>
6671
 
6672
+
6673
+ <?php if ( ! current_user_can( 'edit_posts' ) && self::is_user_connected() ) : ?>
6674
+ <div style="width: 100%; text-align: center; padding-top: 20px; clear: both;"><a class="button" title="<?php esc_attr_e( 'Unlink your account from WordPress.com', 'jetpack' ); ?>" href="<?php echo esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'unlink', 'redirect' => 'sub-unlink' ), admin_url( 'index.php' ) ), 'jetpack-unlink' ) ); ?>"><?php esc_html_e( 'Unlink your account from WordPress.com', 'jetpack' ); ?></a></div>
6675
+ <?php endif; ?>
6676
+
6677
  </footer>
6678
  <?php
6679
  }
6686
  <div class="wpcom-connect">
6687
  <div class="jp-emblem">
6688
  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0" y="0" viewBox="0 0 172.9 172.9" enable-background="new 0 0 172.9 172.9" xml:space="preserve">
6689
+ <path d="M86.4 0C38.7 0 0 38.7 0 86.4c0 47.7 38.7 86.4 86.4 86.4s86.4-38.7 86.4-86.4C172.9 38.7 134.2 0 86.4 0zM83.1 106.6l-27.1-6.9C49 98 45.7 90.1 49.3 84l33.8-58.5V106.6zM124.9 88.9l-33.8 58.5V66.3l27.1 6.9C125.1 74.9 128.4 82.8 124.9 88.9z"/>
6690
  </svg>
6691
  </div>
6692
+ <h3><?php esc_html_e( 'Please Connect Jetpack', 'jetpack' ); ?></h3>
6693
+ <p><?php echo wp_kses( __( 'Connecting Jetpack will show you <strong>stats</strong> about your traffic, <strong>protect</strong> you from brute force attacks, <strong>speed up</strong> your images and photos, and enable other <strong>traffic and security</strong> features.', 'jetpack' ), 'jetpack' ) ?></p>
6694
 
6695
  <div class="actions">
6696
  <a href="<?php echo $this->build_connect_url() ?>" class="button button-primary">
6697
+ <?php esc_html_e( 'Connect Jetpack', 'jetpack' ); ?>
6698
  </a>
 
 
 
 
 
6699
  </div>
6700
  </div>
6701
  <?php
class.json-api-endpoints.php CHANGED
@@ -5,37 +5,37 @@ require_once( dirname( __FILE__ ) . '/json-api-config.php' );
5
  // Endpoint
6
  abstract class WPCOM_JSON_API_Endpoint {
7
  // The API Object
8
- var $api;
9
 
10
- var $pass_wpcom_user_details = false;
11
- var $can_use_user_details_instead_of_blog_membership = false;
12
 
13
  // One liner.
14
- var $description;
15
 
16
  // Object Grouping For Documentation (Users, Posts, Comments)
17
- var $group;
18
 
19
  // Stats extra value to bump
20
- var $stat;
21
 
22
  // HTTP Method
23
- var $method = 'GET';
24
 
25
  // Minimum version of the api for which to serve this endpoint
26
- var $min_version = '0';
27
 
28
  // Maximum version of the api for which to serve this endpoint
29
- var $max_version = WPCOM_JSON_API__CURRENT_VERSION;
30
 
31
  // Path at which to serve this endpoint: sprintf() format.
32
- var $path = '';
33
 
34
  // Identifiers to fill sprintf() formatted $path
35
- var $path_labels = array();
36
 
37
  // Accepted query parameters
38
- var $query = array(
39
  // Parameter name
40
  'context' => array(
41
  // Default value => description
@@ -58,56 +58,56 @@ abstract class WPCOM_JSON_API_Endpoint {
58
  );
59
 
60
  // Response format
61
- var $response_format = array();
62
 
63
  // Request format
64
- var $request_format = array();
65
 
66
  // Is this endpoint still in testing phase? If so, not available to the public.
67
- var $in_testing = false;
68
 
69
  // Is this endpoint still allowed if the site in question is flagged?
70
- var $allowed_if_flagged = false;
71
 
72
  /**
73
  * @var string Version of the API
74
  */
75
- var $version = '';
76
 
77
  /**
78
  * @var string Example request to make
79
  */
80
- var $example_request = '';
81
 
82
  /**
83
  * @var string Example request data (for POST methods)
84
  */
85
- var $example_request_data = '';
86
 
87
  /**
88
  * @var string Example response from $example_request
89
  */
90
- var $example_response = '';
91
 
92
  /**
93
  * @var bool Set to true if the endpoint implements its own filtering instead of the standard `fields` query method
94
  */
95
- var $custom_fields_filtering = false;
96
 
97
  /**
98
  * @var bool Set to true if the endpoint accepts all cross origin requests. You probably should not set this flag.
99
  */
100
- var $allow_cross_origin_request = false;
101
 
102
  /**
103
  * @var bool Set to true if the endpoint can recieve unauthorized POST requests.
104
  */
105
- var $allow_unauthorized_request = false;
106
 
107
  /**
108
  * @var bool Set to true if the endpoint should accept site based (not user based) authentication.
109
  */
110
- var $allow_jetpack_site_auth = false;
111
 
112
  function __construct( $args ) {
113
  $defaults = array(
@@ -468,7 +468,7 @@ abstract class WPCOM_JSON_API_Endpoint {
468
  case 'tag' :
469
  case 'category' :
470
  $docs = array(
471
- 'ID' => '(int)',
472
  'name' => '(string)',
473
  'slug' => '(string)',
474
  'description' => '(HTML)',
@@ -483,10 +483,10 @@ abstract class WPCOM_JSON_API_Endpoint {
483
  case 'post_reference' :
484
  case 'comment_reference' :
485
  $docs = array(
486
- 'ID' => '(int)',
487
- 'type' => '(string)',
488
  'title' => '(string)',
489
- 'link' => '(URL)',
490
  );
491
  $return[$key] = (object) $this->cast_and_filter( $value, $docs, false, $for_output );
492
  break;
@@ -500,13 +500,27 @@ abstract class WPCOM_JSON_API_Endpoint {
500
  break;
501
  case 'author' :
502
  $docs = array(
503
- 'ID' => '(int)',
504
- 'user_login' => '(string)',
505
- 'email' => '(string|false)',
506
- 'name' => '(string)',
507
- 'URL' => '(URL)',
508
- 'avatar_URL' => '(URL)',
509
- 'profile_URL' => '(URL)',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
510
  );
511
  $return[$key] = (object) $this->cast_and_filter( $value, $docs, false, $for_output );
512
  break;
@@ -520,7 +534,19 @@ abstract class WPCOM_JSON_API_Endpoint {
520
  'height' => '(int)',
521
  'duration' => '(int)',
522
  );
523
- $return[$key] = (object) $this->cast_and_filter( $value, apply_filters( 'wpcom_json_api_attachment_cast_and_filter', $docs ), false, $for_output );
 
 
 
 
 
 
 
 
 
 
 
 
524
  break;
525
  case 'metadata' :
526
  $docs = array(
@@ -530,7 +556,13 @@ abstract class WPCOM_JSON_API_Endpoint {
530
  'previous_value' => '(string)',
531
  'operation' => '(string)',
532
  );
533
- $return[$key] = (object) $this->cast_and_filter( $value, apply_filters( 'wpcom_json_api_attachment_cast_and_filter', $docs ), false, $for_output );
 
 
 
 
 
 
534
  break;
535
  case 'plugin' :
536
  $docs = array(
@@ -548,7 +580,19 @@ abstract class WPCOM_JSON_API_Endpoint {
548
  'autoupdate' => '(boolean) Whether the plugin is auto updated',
549
  'log' => '(array:safehtml) An array of update log strings.',
550
  );
551
- $return[$key] = (object) $this->cast_and_filter( $value, apply_filters( 'wpcom_json_api_plugin_cast_and_filter', $docs ), false, $for_output );
 
 
 
 
 
 
 
 
 
 
 
 
552
  break;
553
  case 'jetpackmodule' :
554
  $docs = array(
@@ -562,7 +606,13 @@ abstract class WPCOM_JSON_API_Endpoint {
562
  'free' => '(boolean) The module\'s Free or Paid status.',
563
  'module_tags' => '(array) The module\'s tags.'
564
  );
565
- $return[$key] = (object) $this->cast_and_filter( $value, apply_filters( 'wpcom_json_api_plugin_cast_and_filter', $docs ), false, $for_output );
 
 
 
 
 
 
566
  break;
567
  case 'sharing_button' :
568
  $docs = array(
@@ -594,7 +644,13 @@ abstract class WPCOM_JSON_API_Endpoint {
594
  }
595
 
596
  if ( ! empty( $docs ) ) {
597
- $return[$key] = (object) $this->cast_and_filter( $value, apply_filters( 'wpcom_json_api_plugin_cast_and_filter', $docs ), false, $for_output );
 
 
 
 
 
 
598
  } else {
599
  trigger_error( "Unknown API casting type {$type['type']}", E_USER_WARNING );
600
  }
@@ -904,7 +960,22 @@ abstract class WPCOM_JSON_API_Endpoint {
904
  }
905
  }
906
 
907
- if ( -1 == get_option( 'blog_public' ) && ! apply_filters( 'wpcom_json_api_user_can_view_post', current_user_can( 'read_post', $post->ID ), $post ) ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
908
  return new WP_Error( 'unauthorized', 'User cannot view post', array( 'status_code' => 403, 'error' => 'private_blog' ) );
909
  }
910
 
@@ -929,6 +1000,8 @@ abstract class WPCOM_JSON_API_Endpoint {
929
  $login = '';
930
  $email = $author->comment_author_email;
931
  $name = $author->comment_author;
 
 
932
  $URL = $author->comment_author_url;
933
  $profile_URL = 'http://en.gravatar.com/' . md5( strtolower( trim( $email ) ) );
934
  $nice = '';
@@ -944,15 +1017,25 @@ abstract class WPCOM_JSON_API_Endpoint {
944
  // then $author is a Post Object.
945
  if ( 0 == $author->post_author )
946
  return null;
 
 
 
 
 
 
 
 
947
  $is_jetpack = true === apply_filters( 'is_jetpack_site', false, get_current_blog_id() );
948
  $post_id = $author->ID;
949
  if ( $is_jetpack && ( defined( 'IS_WPCOM' ) && IS_WPCOM ) ) {
950
- $ID = get_post_meta( $post_id, '_jetpack_post_author_external_id', true );
951
- $email = get_post_meta( $post_id, '_jetpack_author_email', true );
952
- $login = '';
953
- $name = get_post_meta( $post_id, '_jetpack_author', true );
954
- $URL = '';
955
- $nice = '';
 
 
956
  } else {
957
  $author = $author->post_author;
958
  }
@@ -969,12 +1052,14 @@ abstract class WPCOM_JSON_API_Endpoint {
969
 
970
  return null;
971
  }
972
- $ID = $user->ID;
973
- $email = $user->user_email;
974
- $login = $user->user_login;
975
- $name = $user->display_name;
976
- $URL = $user->user_url;
977
- $nice = $user->user_nicename;
 
 
978
  }
979
  if ( defined( 'IS_WPCOM' ) && IS_WPCOM && ! $is_jetpack ) {
980
  $active_blog = get_active_blog_for_user( $ID );
@@ -995,6 +1080,8 @@ abstract class WPCOM_JSON_API_Endpoint {
995
  'login' => (string) $login,
996
  'email' => $email, // (string|bool)
997
  'name' => (string) $name,
 
 
998
  'nice_name' => (string) $nice,
999
  'URL' => (string) esc_url_raw( $URL ),
1000
  'avatar_URL' => (string) esc_url_raw( $avatar_URL ),
@@ -1070,8 +1157,10 @@ abstract class WPCOM_JSON_API_Endpoint {
1070
 
1071
  if ( in_array( $ext, array( 'jpg', 'jpeg', 'png', 'gif' ) ) ) {
1072
  $metadata = wp_get_attachment_metadata( $media_item->ID );
1073
- $response['height'] = $metadata['height'];
1074
- $response['width'] = $metadata['width'];
 
 
1075
  if ( is_array( $metadata['sizes'] ) ) {
1076
  foreach ( $metadata['sizes'] as $size => $size_details ) {
1077
  $response['thumbnails'][ $size ] = dirname( $response['URL'] ) . '/' . $size_details['file'];
@@ -1082,6 +1171,7 @@ abstract class WPCOM_JSON_API_Endpoint {
1082
 
1083
  if ( in_array( $ext, array( 'mp3', 'm4a', 'wav', 'ogg' ) ) ) {
1084
  $metadata = wp_get_attachment_metadata( $media_item->ID );
 
1085
  $response['exif'] = $metadata;
1086
  }
1087
 
@@ -1092,6 +1182,10 @@ abstract class WPCOM_JSON_API_Endpoint {
1092
  $response['width'] = $metadata['width'];
1093
  }
1094
 
 
 
 
 
1095
  // add VideoPress info
1096
  if ( function_exists( 'video_get_info_by_blogpostid' ) ) {
1097
  $info = video_get_info_by_blogpostid( $this->api->get_blog_id_for_output(), $media_id );
@@ -1299,9 +1393,20 @@ abstract class WPCOM_JSON_API_Endpoint {
1299
 
1300
  // Load the functions.php file for the current theme to get its post formats, CPTs, etc.
1301
  function load_theme_functions() {
 
 
 
 
 
 
1302
  // the theme info we care about is found either within functions.php or one of the jetpack files.
1303
  $function_files = array( '/functions.php', '/inc/jetpack.compat.php', '/inc/jetpack.php', '/includes/jetpack.compat.php' );
1304
 
 
 
 
 
 
1305
  // Is this a child theme? Load the child theme's functions file.
1306
  if ( get_stylesheet_directory() !== get_template_directory() && wpcom_is_child_theme() ) {
1307
  foreach ( $function_files as $function_file ) {
@@ -1309,6 +1414,7 @@ abstract class WPCOM_JSON_API_Endpoint {
1309
  require_once( get_stylesheet_directory() . $function_file );
1310
  }
1311
  }
 
1312
  }
1313
 
1314
  foreach ( $function_files as $function_file ) {
@@ -1321,13 +1427,35 @@ abstract class WPCOM_JSON_API_Endpoint {
1321
  wpcom_load_theme_compat_file();
1322
 
1323
  // since the stuff we care about (CPTS, post formats, are usually on setup or init hooks, we want to load those)
1324
- $this->copy_hooks( 'after_setup_theme', 'restapi_theme_after_setup_theme', WP_CONTENT_DIR . '/themes' );
 
 
 
 
 
 
 
 
 
 
 
1325
  do_action( 'restapi_theme_after_setup_theme' );
1326
- $this->copy_hooks( 'init', 'restapi_theme_init', WP_CONTENT_DIR . '/themes' );
 
 
 
 
 
 
 
 
 
 
 
1327
  do_action( 'restapi_theme_init' );
1328
  }
1329
 
1330
- function copy_hooks( $from_hook, $to_hook, $base_path = '' ) {
1331
  global $wp_filter;
1332
  foreach ( $wp_filter as $hook => $actions ) {
1333
  if ( $from_hook <> $hook )
@@ -1338,8 +1466,10 @@ abstract class WPCOM_JSON_API_Endpoint {
1338
  $reflection = $this->get_reflection( $callback ); // use reflection api to determine filename where function is defined
1339
  if ( false !== $reflection ) {
1340
  $file_name = $reflection->getFileName();
1341
- if ( 0 === strpos( $file_name, $base_path ) ) { // only copy hooks with functions which are part of VIP (the theme, parent theme, or VIP plugins)
1342
- $wp_filter[$to_hook][$priority][ 'cph' . $callback_key ] = $callback_data;
 
 
1343
  }
1344
  }
1345
  }
@@ -1634,6 +1764,13 @@ abstract class WPCOM_JSON_API_Endpoint {
1634
  protected function _get_whitelisted_post_types() {
1635
  $allowed_types = array( 'post', 'page', 'revision' );
1636
 
 
 
 
 
 
 
 
1637
  $allowed_types = apply_filters( 'rest_api_allowed_post_types', $allowed_types );
1638
 
1639
  return array_unique( $allowed_types );
@@ -1793,6 +1930,13 @@ abstract class WPCOM_JSON_API_Endpoint {
1793
 
1794
  // lets whitelist to only specific clients right now
1795
  $clients_allowed_video_uploads = array();
 
 
 
 
 
 
 
1796
  $clients_allowed_video_uploads = apply_filters( 'rest_api_clients_allowed_video_uploads', $clients_allowed_video_uploads );
1797
  if ( !in_array( $this->api->token_details['client_id'], $clients_allowed_video_uploads ) ) {
1798
  return $mimes;
@@ -1801,6 +1945,13 @@ abstract class WPCOM_JSON_API_Endpoint {
1801
  $mime_list = wp_get_mime_types();
1802
 
1803
  $video_exts = explode( ' ', get_site_option( 'video_upload_filetypes', false, false ) );
 
 
 
 
 
 
 
1804
  $video_exts = apply_filters( 'video_upload_filetypes', $video_exts );
1805
  $video_mimes = array();
1806
 
5
  // Endpoint
6
  abstract class WPCOM_JSON_API_Endpoint {
7
  // The API Object
8
+ public $api;
9
 
10
+ public $pass_wpcom_user_details = false;
11
+ public $can_use_user_details_instead_of_blog_membership = false;
12
 
13
  // One liner.
14
+ public $description;
15
 
16
  // Object Grouping For Documentation (Users, Posts, Comments)
17
+ public $group;
18
 
19
  // Stats extra value to bump
20
+ public $stat;
21
 
22
  // HTTP Method
23
+ public $method = 'GET';
24
 
25
  // Minimum version of the api for which to serve this endpoint
26
+ public $min_version = '0';
27
 
28
  // Maximum version of the api for which to serve this endpoint
29
+ public $max_version = WPCOM_JSON_API__CURRENT_VERSION;
30
 
31
  // Path at which to serve this endpoint: sprintf() format.
32
+ public $path = '';
33
 
34
  // Identifiers to fill sprintf() formatted $path
35
+ public $path_labels = array();
36
 
37
  // Accepted query parameters
38
+ public $query = array(
39
  // Parameter name
40
  'context' => array(
41
  // Default value => description
58
  );
59
 
60
  // Response format
61
+ public $response_format = array();
62
 
63
  // Request format
64
+ public $request_format = array();
65
 
66
  // Is this endpoint still in testing phase? If so, not available to the public.
67
+ public $in_testing = false;
68
 
69
  // Is this endpoint still allowed if the site in question is flagged?
70
+ public $allowed_if_flagged = false;
71
 
72
  /**
73
  * @var string Version of the API
74
  */
75
+ public $version = '';
76
 
77
  /**
78
  * @var string Example request to make
79
  */
80
+ public $example_request = '';
81
 
82
  /**
83
  * @var string Example request data (for POST methods)
84
  */
85
+ public $example_request_data = '';
86
 
87
  /**
88
  * @var string Example response from $example_request
89
  */
90
+ public $example_response = '';
91
 
92
  /**
93
  * @var bool Set to true if the endpoint implements its own filtering instead of the standard `fields` query method
94
  */
95
+ public $custom_fields_filtering = false;
96
 
97
  /**
98
  * @var bool Set to true if the endpoint accepts all cross origin requests. You probably should not set this flag.
99
  */
100
+ public $allow_cross_origin_request = false;
101
 
102
  /**
103
  * @var bool Set to true if the endpoint can recieve unauthorized POST requests.
104
  */
105
+ public $allow_unauthorized_request = false;
106
 
107
  /**
108
  * @var bool Set to true if the endpoint should accept site based (not user based) authentication.
109
  */
110
+ public $allow_jetpack_site_auth = false;
111
 
112
  function __construct( $args ) {
113
  $defaults = array(
468
  case 'tag' :
469
  case 'category' :
470
  $docs = array(
471
+ 'ID' => '(int)',
472
  'name' => '(string)',
473
  'slug' => '(string)',
474
  'description' => '(HTML)',
483
  case 'post_reference' :
484
  case 'comment_reference' :
485
  $docs = array(
486
+ 'ID' => '(int)',
487
+ 'type' => '(string)',
488
  'title' => '(string)',
489
+ 'link' => '(URL)',
490
  );
491
  $return[$key] = (object) $this->cast_and_filter( $value, $docs, false, $for_output );
492
  break;
500
  break;
501
  case 'author' :
502
  $docs = array(
503
+ 'ID' => '(int)',
504
+ 'user_login' => '(string)',
505
+ 'login' => '(string)',
506
+ 'email' => '(string|false)',
507
+ 'name' => '(string)',
508
+ 'first_name' => '(string)',
509
+ 'last_name' => '(string)',
510
+ 'nice_name' => '(string)',
511
+ 'URL' => '(URL)',
512
+ 'avatar_URL' => '(URL)',
513
+ 'profile_URL' => '(URL)',
514
+ 'is_super_admin' => '(bool)',
515
+ 'roles' => '(array:string)'
516
+ );
517
+ $return[$key] = (object) $this->cast_and_filter( $value, $docs, false, $for_output );
518
+ break;
519
+ case 'role' :
520
+ $docs = array(
521
+ 'name' => '(string)',
522
+ 'display_name' => '(string)',
523
+ 'capabilities' => '(object:boolean)',
524
  );
525
  $return[$key] = (object) $this->cast_and_filter( $value, $docs, false, $for_output );
526
  break;
534
  'height' => '(int)',
535
  'duration' => '(int)',
536
  );
537
+ $return[$key] = (object) $this->cast_and_filter(
538
+ $value,
539
+ /**
540
+ * Filter the documentation returned for a post attachment.
541
+ *
542
+ * @since 1.9.0
543
+ *
544
+ * @param array $docs Array of documentation about a post attachment.
545
+ */
546
+ apply_filters( 'wpcom_json_api_attachment_cast_and_filter', $docs ),
547
+ false,
548
+ $for_output
549
+ );
550
  break;
551
  case 'metadata' :
552
  $docs = array(
556
  'previous_value' => '(string)',
557
  'operation' => '(string)',
558
  );
559
+ $return[$key] = (object) $this->cast_and_filter(
560
+ $value,
561
+ /** This filter is documented in class.json-api-endpoints.php */
562
+ apply_filters( 'wpcom_json_api_attachment_cast_and_filter', $docs ),
563
+ false,
564
+ $for_output
565
+ );
566
  break;
567
  case 'plugin' :
568
  $docs = array(
580
  'autoupdate' => '(boolean) Whether the plugin is auto updated',
581
  'log' => '(array:safehtml) An array of update log strings.',
582
  );
583
+ $return[$key] = (object) $this->cast_and_filter(
584
+ $value,
585
+ /**
586
+ * Filter the documentation returned for a plugin.
587
+ *
588
+ * @since 3.1.0
589
+ *
590
+ * @param array $docs Array of documentation about a plugin.
591
+ */
592
+ apply_filters( 'wpcom_json_api_plugin_cast_and_filter', $docs ),
593
+ false,
594
+ $for_output
595
+ );
596
  break;
597
  case 'jetpackmodule' :
598
  $docs = array(
606
  'free' => '(boolean) The module\'s Free or Paid status.',
607
  'module_tags' => '(array) The module\'s tags.'
608
  );
609
+ $return[$key] = (object) $this->cast_and_filter(
610
+ $value,
611
+ /** This filter is documented in class.json-api-endpoints.php */
612
+ apply_filters( 'wpcom_json_api_plugin_cast_and_filter', $docs ),
613
+ false,
614
+ $for_output
615
+ );
616
  break;
617
  case 'sharing_button' :
618
  $docs = array(
644
  }
645
 
646
  if ( ! empty( $docs ) ) {
647
+ $return[$key] = (object) $this->cast_and_filter(
648
+ $value,
649
+ /** This filter is documented in class.json-api-endpoints.php */
650
+ apply_filters( 'wpcom_json_api_plugin_cast_and_filter', $docs ),
651
+ false,
652
+ $for_output
653
+ );
654
  } else {
655
  trigger_error( "Unknown API casting type {$type['type']}", E_USER_WARNING );
656
  }
960
  }
961
  }
962
 
963
+ if (
964
+ -1 == get_option( 'blog_public' ) &&
965
+ /**
966
+ * Filter access to a specific post.
967
+ *
968
+ * @since 3.4.0
969
+ *
970
+ * @param bool current_user_can( 'read_post', $post->ID ) Can the current user access the post.
971
+ * @param WP_Post $post Post data.
972
+ */
973
+ ! apply_filters(
974
+ 'wpcom_json_api_user_can_view_post',
975
+ current_user_can( 'read_post', $post->ID ),
976
+ $post
977
+ )
978
+ ) {
979
  return new WP_Error( 'unauthorized', 'User cannot view post', array( 'status_code' => 403, 'error' => 'private_blog' ) );
980
  }
981
 
1000
  $login = '';
1001
  $email = $author->comment_author_email;
1002
  $name = $author->comment_author;
1003
+ $first_name = '';
1004
+ $last_name = '';
1005
  $URL = $author->comment_author_url;
1006
  $profile_URL = 'http://en.gravatar.com/' . md5( strtolower( trim( $email ) ) );
1007
  $nice = '';
1017
  // then $author is a Post Object.
1018
  if ( 0 == $author->post_author )
1019
  return null;
1020
+ /**
1021
+ * Filter whether the current site is a Jetpack site.
1022
+ *
1023
+ * @since 3.3.0
1024
+ *
1025
+ * @param bool false Is the current site a Jetpack site. Default to false.
1026
+ * @param int get_current_blog_id() Blog ID.
1027
+ */
1028
  $is_jetpack = true === apply_filters( 'is_jetpack_site', false, get_current_blog_id() );
1029
  $post_id = $author->ID;
1030
  if ( $is_jetpack && ( defined( 'IS_WPCOM' ) && IS_WPCOM ) ) {
1031
+ $ID = get_post_meta( $post_id, '_jetpack_post_author_external_id', true );
1032
+ $email = get_post_meta( $post_id, '_jetpack_author_email', true );
1033
+ $login = '';
1034
+ $name = get_post_meta( $post_id, '_jetpack_author', true );
1035
+ $first_name = '';
1036
+ $last_name = '';
1037
+ $URL = '';
1038
+ $nice = '';
1039
  } else {
1040
  $author = $author->post_author;
1041
  }
1052
 
1053
  return null;
1054
  }
1055
+ $ID = $user->ID;
1056
+ $email = $user->user_email;
1057
+ $login = $user->user_login;
1058
+ $name = $user->display_name;
1059
+ $first_name = $user->first_name;
1060
+ $last_name = $user->last_name;
1061
+ $URL = $user->user_url;
1062
+ $nice = $user->user_nicename;
1063
  }
1064
  if ( defined( 'IS_WPCOM' ) && IS_WPCOM && ! $is_jetpack ) {
1065
  $active_blog = get_active_blog_for_user( $ID );
1080
  'login' => (string) $login,
1081
  'email' => $email, // (string|bool)
1082
  'name' => (string) $name,
1083
+ 'first_name' => (string) $first_name,
1084
+ 'last_name' => (string) $last_name,
1085
  'nice_name' => (string) $nice,
1086
  'URL' => (string) esc_url_raw( $URL ),
1087
  'avatar_URL' => (string) esc_url_raw( $avatar_URL ),
1157
 
1158
  if ( in_array( $ext, array( 'jpg', 'jpeg', 'png', 'gif' ) ) ) {
1159
  $metadata = wp_get_attachment_metadata( $media_item->ID );
1160
+ if ( isset( $metadata['height'], $metadata['width'] ) ) {
1161
+ $response['height'] = $metadata['height'];
1162
+ $response['width'] = $metadata['width'];
1163
+ }
1164
  if ( is_array( $metadata['sizes'] ) ) {
1165
  foreach ( $metadata['sizes'] as $size => $size_details ) {
1166
  $response['thumbnails'][ $size ] = dirname( $response['URL'] ) . '/' . $size_details['file'];
1171
 
1172
  if ( in_array( $ext, array( 'mp3', 'm4a', 'wav', 'ogg' ) ) ) {
1173
  $metadata = wp_get_attachment_metadata( $media_item->ID );
1174
+ $response['length'] = $metadata['length'];
1175
  $response['exif'] = $metadata;
1176
  }
1177
 
1182
  $response['width'] = $metadata['width'];
1183
  }
1184
 
1185
+ if ( isset( $metadata['length'] ) ) {
1186
+ $response['length'] = $metadata['length'];
1187
+ }
1188
+
1189
  // add VideoPress info
1190
  if ( function_exists( 'video_get_info_by_blogpostid' ) ) {
1191
  $info = video_get_info_by_blogpostid( $this->api->get_blog_id_for_output(), $media_id );
1393
 
1394
  // Load the functions.php file for the current theme to get its post formats, CPTs, etc.
1395
  function load_theme_functions() {
1396
+ // bail if we've done this already (can happen when calling /batch endpoint)
1397
+ if ( defined( 'REST_API_THEME_FUNCTIONS_LOADED' ) )
1398
+ return;
1399
+
1400
+ define( 'REST_API_THEME_FUNCTIONS_LOADED', true );
1401
+
1402
  // the theme info we care about is found either within functions.php or one of the jetpack files.
1403
  $function_files = array( '/functions.php', '/inc/jetpack.compat.php', '/inc/jetpack.php', '/includes/jetpack.compat.php' );
1404
 
1405
+ $copy_dirs = array( get_template_directory() );
1406
+ if ( wpcom_is_vip() ) {
1407
+ $copy_dirs[] = WP_CONTENT_DIR . '/themes/vip/plugins/';
1408
+ }
1409
+
1410
  // Is this a child theme? Load the child theme's functions file.
1411
  if ( get_stylesheet_directory() !== get_template_directory() && wpcom_is_child_theme() ) {
1412
  foreach ( $function_files as $function_file ) {
1414
  require_once( get_stylesheet_directory() . $function_file );
1415
  }
1416
  }
1417
+ $copy_dirs[] = get_stylesheet_directory();
1418
  }
1419
 
1420
  foreach ( $function_files as $function_file ) {
1427
  wpcom_load_theme_compat_file();
1428
 
1429
  // since the stuff we care about (CPTS, post formats, are usually on setup or init hooks, we want to load those)
1430
+ $this->copy_hooks( 'after_setup_theme', 'restapi_theme_after_setup_theme', $copy_dirs );
1431
+
1432
+ /**
1433
+ * Fires functions hooked onto `after_setup_theme` by the theme for the purpose of the REST API.
1434
+ *
1435
+ * The REST API does not load the theme when processing requests.
1436
+ * To enable theme-based functionality, the API will load the '/functions.php',
1437
+ * '/inc/jetpack.compat.php', '/inc/jetpack.php', '/includes/jetpack.compat.php files
1438
+ * of the theme (parent and child) and copy functions hooked onto 'after_setup_theme' within those files.
1439
+ *
1440
+ * @since 3.2.0
1441
+ */
1442
  do_action( 'restapi_theme_after_setup_theme' );
1443
+ $this->copy_hooks( 'init', 'restapi_theme_init', $copy_dirs );
1444
+
1445
+ /**
1446
+ * Fires functions hooked onto `init` by the theme for the purpose of the REST API.
1447
+ *
1448
+ * The REST API does not load the theme when processing requests.
1449
+ * To enable theme-based functionality, the API will load the '/functions.php',
1450
+ * '/inc/jetpack.compat.php', '/inc/jetpack.php', '/includes/jetpack.compat.php files
1451
+ * of the theme (parent and child) and copy functions hooked onto 'init' within those files.
1452
+ *
1453
+ * @since 3.2.0
1454
+ */
1455
  do_action( 'restapi_theme_init' );
1456
  }
1457
 
1458
+ function copy_hooks( $from_hook, $to_hook, $base_paths ) {
1459
  global $wp_filter;
1460
  foreach ( $wp_filter as $hook => $actions ) {
1461
  if ( $from_hook <> $hook )
1466
  $reflection = $this->get_reflection( $callback ); // use reflection api to determine filename where function is defined
1467
  if ( false !== $reflection ) {
1468
  $file_name = $reflection->getFileName();
1469
+ foreach( $base_paths as $base_path ) {
1470
+ if ( 0 === strpos( $file_name, $base_path ) ) { // only copy hooks with functions which are part of the specified files
1471
+ $wp_filter[ $to_hook ][ $priority ][ 'cph' . $callback_key ] = $callback_data;
1472
+ }
1473
  }
1474
  }
1475
  }
1764
  protected function _get_whitelisted_post_types() {
1765
  $allowed_types = array( 'post', 'page', 'revision' );
1766
 
1767
+ /**
1768
+ * Filter the post types Jetpack has access to, and can synchronize with WordPress.com.
1769
+ *
1770
+ * @since 2.2.3
1771
+ *
1772
+ * @param array $allowed_types Array of whitelisted post types. Default to `array( 'post', 'page', 'revision' )`.
1773
+ */
1774
  $allowed_types = apply_filters( 'rest_api_allowed_post_types', $allowed_types );
1775
 
1776
  return array_unique( $allowed_types );
1930
 
1931
  // lets whitelist to only specific clients right now
1932
  $clients_allowed_video_uploads = array();
1933
+ /**
1934
+ * Filter the list of whitelisted video clients.
1935
+ *
1936
+ * @since 3.2.0
1937
+ *
1938
+ * @param array $clients_allowed_video_uploads Array of whitelisted Video clients.
1939
+ */
1940
  $clients_allowed_video_uploads = apply_filters( 'rest_api_clients_allowed_video_uploads', $clients_allowed_video_uploads );
1941
  if ( !in_array( $this->api->token_details['client_id'], $clients_allowed_video_uploads ) ) {
1942
  return $mimes;
1945
  $mime_list = wp_get_mime_types();
1946
 
1947
  $video_exts = explode( ' ', get_site_option( 'video_upload_filetypes', false, false ) );
1948
+ /**
1949
+ * Filter the video filetypes allowed on the site.
1950
+ *
1951
+ * @since 3.2.0
1952
+ *
1953
+ * @param array $video_exts Array of video filetypes allowed on the site.
1954
+ */
1955
  $video_exts = apply_filters( 'video_upload_filetypes', $video_exts );
1956
  $video_mimes = array();
1957
 
class.json-api.php CHANGED
@@ -5,28 +5,28 @@ defined( 'WPCOM_JSON_API__DEBUG' ) or define( 'WPCOM_JSON_API__DEBUG', false );
5
  class WPCOM_JSON_API {
6
  static $self = null;
7
 
8
- var $endpoints = array();
9
 
10
- var $token_details = array();
11
 
12
- var $method = '';
13
- var $url = '';
14
- var $path = '';
15
- var $version = null;
16
- var $query = array();
17
- var $post_body = null;
18
- var $files = null;
19
- var $content_type = null;
20
- var $accept = '';
21
 
22
- var $_server_https;
23
- var $exit = true;
24
- var $public_api_scheme = 'https';
25
 
26
- var $output_status_code = 200;
27
 
28
- var $trapped_error = null;
29
- var $did_output = false;
30
 
31
  /**
32
  * @return WPCOM_JSON_API instance
@@ -141,14 +141,18 @@ class WPCOM_JSON_API {
141
 
142
  $this->exit = (bool) $exit;
143
 
144
- add_filter( 'home_url', array( $this, 'ensure_http_scheme_of_home_url' ), 10, 3 );
145
-
146
  add_filter( 'user_can_richedit', '__return_true' );
147
 
148
  add_filter( 'comment_edit_pre', array( $this, 'comment_edit_pre' ) );
149
 
150
  $initialization = $this->initialize();
151
  if ( 'OPTIONS' == $this->method ) {
 
 
 
 
 
 
152
  do_action( 'wpcom_json_api_options' );
153
  return $this->output( 200, '', 'plain/text' );
154
  }
@@ -176,7 +180,7 @@ class WPCOM_JSON_API {
176
  if ( !empty( $origin ) && 'GET' == $this->method ) {
177
  header( 'Access-Control-Allow-Origin: ' . esc_url_raw( $origin ) );
178
  }
179
-
180
  $this->path = substr( rtrim( $this->path, '/' ), 0, -5 );
181
  // Show help for all matching endpoints regardless of method
182
  $methods = $allowed_methods;
@@ -266,6 +270,13 @@ class WPCOM_JSON_API {
266
  }
267
 
268
  if ( $is_help ) {
 
 
 
 
 
 
 
269
  do_action( 'wpcom_json_api_output', 'help' );
270
  if ( 'json' === $help_content_type ) {
271
  $docs = array();
@@ -288,6 +299,7 @@ class WPCOM_JSON_API {
288
  return $this->output( 404, '', 'text/plain' );
289
  }
290
 
 
291
  do_action( 'wpcom_json_api_output', $endpoint->stat );
292
 
293
  $response = $this->process_request( $endpoint, $path_pieces );
@@ -485,14 +497,6 @@ class WPCOM_JSON_API {
485
  return $response;
486
  }
487
 
488
- function ensure_http_scheme_of_home_url( $url, $path, $original_scheme ) {
489
- if ( $original_scheme ) {
490
- return $url;
491
- }
492
-
493
- return preg_replace( '#^https:#', 'http:', $url );
494
- }
495
-
496
  function comment_edit_pre( $comment_content ) {
497
  return htmlspecialchars_decode( $comment_content, ENT_QUOTES );
498
  }
@@ -529,6 +533,13 @@ class WPCOM_JSON_API {
529
 
530
  // Returns true if the specified blog ID is a restricted blog
531
  function is_restricted_blog( $blog_id ) {
 
 
 
 
 
 
 
532
  $restricted_blog_ids = apply_filters( 'wpcom_json_api_restricted_blog_ids', array() );
533
  return true === in_array( $blog_id, $restricted_blog_ids );
534
  }
5
  class WPCOM_JSON_API {
6
  static $self = null;
7
 
8
+ public $endpoints = array();
9
 
10
+ public $token_details = array();
11
 
12
+ public $method = '';
13
+ public $url = '';
14
+ public $path = '';
15
+ public $version = null;
16
+ public $query = array();
17
+ public $post_body = null;
18
+ public $files = null;
19
+ public $content_type = null;
20
+ public $accept = '';
21
 
22
+ public $_server_https;
23
+ public $exit = true;
24
+ public $public_api_scheme = 'https';
25
 
26
+ public $output_status_code = 200;
27
 
28
+ public $trapped_error = null;
29
+ public $did_output = false;
30
 
31
  /**
32
  * @return WPCOM_JSON_API instance
141
 
142
  $this->exit = (bool) $exit;
143
 
 
 
144
  add_filter( 'user_can_richedit', '__return_true' );
145
 
146
  add_filter( 'comment_edit_pre', array( $this, 'comment_edit_pre' ) );
147
 
148
  $initialization = $this->initialize();
149
  if ( 'OPTIONS' == $this->method ) {
150
+ /**
151
+ * Fires before the page output.
152
+ * Can be used to specify custom header options.
153
+ *
154
+ * @since 3.1.0
155
+ */
156
  do_action( 'wpcom_json_api_options' );
157
  return $this->output( 200, '', 'plain/text' );
158
  }
180
  if ( !empty( $origin ) && 'GET' == $this->method ) {
181
  header( 'Access-Control-Allow-Origin: ' . esc_url_raw( $origin ) );
182
  }
183
+
184
  $this->path = substr( rtrim( $this->path, '/' ), 0, -5 );
185
  // Show help for all matching endpoints regardless of method
186
  $methods = $allowed_methods;
270
  }
271
 
272
  if ( $is_help ) {
273
+ /**
274
+ * Fires before the API output.
275
+ *
276
+ * @since 1.9.0
277
+ *
278
+ * @param string help.
279
+ */
280
  do_action( 'wpcom_json_api_output', 'help' );
281
  if ( 'json' === $help_content_type ) {
282
  $docs = array();
299
  return $this->output( 404, '', 'text/plain' );
300
  }
301
 
302
+ /** This action is documented in class.json-api.php */
303
  do_action( 'wpcom_json_api_output', $endpoint->stat );
304
 
305
  $response = $this->process_request( $endpoint, $path_pieces );
497
  return $response;
498
  }
499
 
 
 
 
 
 
 
 
 
500
  function comment_edit_pre( $comment_content ) {
501
  return htmlspecialchars_decode( $comment_content, ENT_QUOTES );
502
  }
533
 
534
  // Returns true if the specified blog ID is a restricted blog
535
  function is_restricted_blog( $blog_id ) {
536
+ /**
537
+ * Filters all REST API access and return a 403 unauthorized response for all Restricted blog IDs.
538
+ *
539
+ * @since 3.4.0
540
+ *
541
+ * @param array $array Array of Blog IDs.
542
+ */
543
  $restricted_blog_ids = apply_filters( 'wpcom_json_api_restricted_blog_ids', array() );
544
  return true === in_array( $blog_id, $restricted_blog_ids );
545
  }
class.media-extractor.php CHANGED
@@ -377,7 +377,7 @@ class Jetpack_Media_Meta_Extractor {
377
  public static function build_image_struct( $image_list ) {
378
  if ( ! empty( $image_list ) ) {
379
  $retval = array( 'image' => array() );
380
- $unique_imgs = array_unique( $image_list );
381
  foreach ( $image_list as $img ) {
382
  $retval['image'][] = array( 'url' => $img );
383
  }
377
  public static function build_image_struct( $image_list ) {
378
  if ( ! empty( $image_list ) ) {
379
  $retval = array( 'image' => array() );
380
+ $image_list = array_unique( $image_list );
381
  foreach ( $image_list as $img ) {
382
  $retval['image'][] = array( 'url' => $img );
383
  }
class.media-summary.php CHANGED
@@ -99,7 +99,7 @@ class Jetpack_Media_Summary {
99
 
100
  if ( !empty( $extract['has']['embed'] ) ) {
101
  foreach( $extract['embed']['url'] as $embed ) {
102
- if ( preg_match( '/((youtube|vimeo)\.com|youtu.be)/', $embed ) ) {
103
  if ( 0 == $return['count']['video'] ) {
104
  $return['type'] = 'video';
105
  $return['video'] = 'http://' . $embed;
@@ -120,6 +120,10 @@ class Jetpack_Media_Summary {
120
  $poster_url_parts = parse_url( $poster_image );
121
  $return['secure']['image'] = 'https://secure-a.vimeocdn.com' . $poster_url_parts['path'];
122
  }
 
 
 
 
123
  }
124
 
125
  }
@@ -252,6 +256,8 @@ class Jetpack_Media_Summary {
252
  'read_more_threshold' => 25,
253
  ) ) );
254
  } else {
 
 
255
  $post_excerpt = apply_filters( 'get_the_excerpt', $post_excerpt );
256
  return self::clean_text( $post_excerpt );
257
  }
99
 
100
  if ( !empty( $extract['has']['embed'] ) ) {
101
  foreach( $extract['embed']['url'] as $embed ) {
102
+ if ( preg_match( '/((youtube|vimeo|dailymotion)\.com|youtu.be)/', $embed ) ) {
103
  if ( 0 == $return['count']['video'] ) {
104
  $return['type'] = 'video';
105
  $return['video'] = 'http://' . $embed;
120
  $poster_url_parts = parse_url( $poster_image );
121
  $return['secure']['image'] = 'https://secure-a.vimeocdn.com' . $poster_url_parts['path'];
122
  }
123
+ } else if ( false !== strpos( $embed, 'dailymotion' ) ) {
124
+ $return['image'] = str_replace( 'dailymotion.com/video/','dailymotion.com/thumbnail/video/', $embed );
125
+ $return['image'] = parse_url( $return['image'], PHP_URL_SCHEME ) === null ? 'http://' . $return['image'] : $return['image'];
126
+ $return['secure']['image'] = self::https( $return['image'] );
127
  }
128
 
129
  }
256
  'read_more_threshold' => 25,
257
  ) ) );
258
  } else {
259
+
260
+ /** This filter is documented in core/src/wp-includes/post-template.php */
261
  $post_excerpt = apply_filters( 'get_the_excerpt', $post_excerpt );
262
  return self::clean_text( $post_excerpt );
263
  }
class.photon.php CHANGED
@@ -151,7 +151,15 @@ class Jetpack_Photon {
151
  // Identify image source
152
  $src = $src_orig = $images['img_url'][ $index ];
153
 
154
- // Allow specific images to be skipped
 
 
 
 
 
 
 
 
155
  if ( apply_filters( 'jetpack_photon_skip_image', false, $src, $tag ) )
156
  continue;
157
 
@@ -195,7 +203,28 @@ class Jetpack_Photon {
195
  }
196
 
197
  // WP Attachment ID, if uploaded to this site
198
- if ( preg_match( '#class=["|\']?[^"\']*wp-image-([\d]+)[^"\']*["|\']?#i', $images['img_tag'][ $index ], $attachment_id ) && ( 0 === strpos( $src, $upload_dir['baseurl'] ) || apply_filters( 'jetpack_photon_image_is_local', false, compact( 'src', 'tag', 'images', 'index' ) ) ) ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
199
  $attachment_id = intval( array_pop( $attachment_id ) );
200
 
201
  if ( $attachment_id ) {
@@ -275,6 +304,24 @@ class Jetpack_Photon {
275
  elseif ( false !== $height )
276
  $args['h'] = $height;
277
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
278
  $args = apply_filters( 'jetpack_photon_post_image_args', $args, compact( 'tag', 'src', 'src_orig', 'width', 'height' ) );
279
 
280
  $photon_url = jetpack_photon_url( $src, $args );
@@ -361,7 +408,24 @@ class Jetpack_Photon {
361
  */
362
  public function filter_image_downsize( $image, $attachment_id, $size ) {
363
  // Don't foul up the admin side of things, and provide plugins a way of preventing Photon from being applied to images.
364
- if ( is_admin() || apply_filters( 'jetpack_photon_override_image_downsize', false, compact( 'image', 'attachment_id', 'size' ) ) )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
365
  return $image;
366
 
367
  // Get the image URL and proceed with Photon-ification if successful
@@ -416,6 +480,24 @@ class Jetpack_Photon {
416
 
417
  }
418
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
419
  $photon_args = apply_filters( 'jetpack_photon_image_downsize_string', $photon_args, compact( 'image_args', 'image_url', 'attachment_id', 'size', 'transform' ) );
420
 
421
  // Generate Photon URL
@@ -438,6 +520,22 @@ class Jetpack_Photon {
438
  'fit' => $width . ',' . $height
439
  );
440
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
441
  $photon_args = apply_filters( 'jetpack_photon_image_downsize_array', $photon_args, compact( 'width', 'height', 'image_url', 'attachment_id' ) );
442
 
443
  // Generate Photon URL
@@ -479,8 +577,19 @@ class Jetpack_Photon {
479
  ) );
480
 
481
  // Bail if scheme isn't http or port is set that isn't port 80
482
- if ( ( 'http' != $url_info['scheme'] || ! in_array( $url_info['port'], array( 80, null ) ) ) && apply_filters( 'jetpack_photon_reject_https', true ) )
 
 
 
 
 
 
 
 
 
 
483
  return false;
 
484
 
485
  // Bail if no host is found
486
  if ( is_null( $url_info['host'] ) )
@@ -500,6 +609,15 @@ class Jetpack_Photon {
500
 
501
  // If we got this far, we should have an acceptable image URL
502
  // But let folks filter to decline if they prefer.
 
 
 
 
 
 
 
 
 
503
  return apply_filters( 'photon_validate_image_url', true, $url, $parsed_url );
504
  }
505
 
151
  // Identify image source
152
  $src = $src_orig = $images['img_url'][ $index ];
153
 
154
+ /**
155
+ * Allow specific images to be skipped by Photon.
156
+ *
157
+ * @since 2.0.3
158
+ *
159
+ * @param bool false Should Photon ignore this image. Default to false.
160
+ * @param string $src Image URL.
161
+ * @param string $tag Image Tag (Image HTML output).
162
+ */
163
  if ( apply_filters( 'jetpack_photon_skip_image', false, $src, $tag ) )
164
  continue;
165
 
203
  }
204
 
205
  // WP Attachment ID, if uploaded to this site
206
+ if (
207
+ preg_match( '#class=["|\']?[^"\']*wp-image-([\d]+)[^"\']*["|\']?#i', $images['img_tag'][ $index ], $attachment_id ) &&
208
+ (
209
+ 0 === strpos( $src, $upload_dir['baseurl'] ) ||
210
+ /**
211
+ * Filter whether an image using an attachment ID in its class has to be uploaded to the local site to go through Photon.
212
+ *
213
+ * @since 2.0.3
214
+ *
215
+ * @param bool false Was the image uploaded to the local site. Default to false.
216
+ * @param array $args {
217
+ * Array of image details.
218
+ *
219
+ * @type $src Image URL.
220
+ * @type tag Image tag (Image HTML output).
221
+ * @type $images Array of information about the image.
222
+ * @type $index Image index.
223
+ * }
224
+ */
225
+ apply_filters( 'jetpack_photon_image_is_local', false, compact( 'src', 'tag', 'images', 'index' ) )
226
+ )
227
+ ) {
228
  $attachment_id = intval( array_pop( $attachment_id ) );
229
 
230
  if ( $attachment_id ) {
304
  elseif ( false !== $height )
305
  $args['h'] = $height;
306
 
307
+ /**
308
+ * Filter the array of Photon arguments added to an image when it goes through Photon.
309
+ * By default, only includes width and height values.
310
+ * @see https://developer.wordpress.com/docs/photon/api/
311
+ *
312
+ * @since 2.0.0
313
+ *
314
+ * @param array $args Array of Photon Arguments.
315
+ * @param array $args {
316
+ * Array of image details.
317
+ *
318
+ * @type $tag Image tag (Image HTML output).
319
+ * @type $src Image URL.
320
+ * @type $src_orig Original Image URL.
321
+ * @type $width Image width.
322
+ * @type $height Image height.
323
+ * }
324
+ */
325
  $args = apply_filters( 'jetpack_photon_post_image_args', $args, compact( 'tag', 'src', 'src_orig', 'width', 'height' ) );
326
 
327
  $photon_url = jetpack_photon_url( $src, $args );
408
  */
409
  public function filter_image_downsize( $image, $attachment_id, $size ) {
410
  // Don't foul up the admin side of things, and provide plugins a way of preventing Photon from being applied to images.
411
+ if (
412
+ is_admin() ||
413
+ /**
414
+ * Provide plugins a way of preventing Photon from being applied to images retrieved from WordPress Core.
415
+ *
416
+ * @since 2.0.0
417
+ *
418
+ * @param bool false Stop Photon from being applied to the image. Default to false.
419
+ * @param array $args {
420
+ * Array of image details.
421
+ *
422
+ * @type $image Image URL.
423
+ * @type $attachment_id Attachment ID of the image.
424
+ * @type $size Image size. Can be a string (name of the image size, e.g. full) or an integer.
425
+ * }
426
+ */
427
+ apply_filters( 'jetpack_photon_override_image_downsize', false, compact( 'image', 'attachment_id', 'size' ) )
428
+ )
429
  return $image;
430
 
431
  // Get the image URL and proceed with Photon-ification if successful
480
 
481
  }
482
 
483
+ /**
484
+ * Filter the Photon Arguments added to an image when going through Photon, when that image size is a string.
485
+ * Image size will be a string (e.g. "full", "medium") when it is known to WordPress.
486
+ *
487
+ * @since 2.0.0
488
+ *
489
+ * @param array $photon_args Array of Photon arguments.
490
+ * @param array $args {
491
+ * Array of image details.
492
+ *
493
+ * @type $image_args Array of Image arguments (width, height, crop).
494
+ * @type $image_url Image URL.
495
+ * @type $attachment_id Attachment ID of the image.
496
+ * @type $size Image size. Can be a string (name of the image size, e.g. full) or an integer.
497
+ * @type $transform Value can be resize or fit.
498
+ * @see https://developer.wordpress.com/docs/photon/api
499
+ * }
500
+ */
501
  $photon_args = apply_filters( 'jetpack_photon_image_downsize_string', $photon_args, compact( 'image_args', 'image_url', 'attachment_id', 'size', 'transform' ) );
502
 
503
  // Generate Photon URL
520
  'fit' => $width . ',' . $height
521
  );
522
 
523
+ /**
524
+ * Filter the Photon Arguments added to an image when going through Photon,
525
+ * when the image size is an array of height and width values.
526
+ *
527
+ * @since 2.0.0
528
+ *
529
+ * @param array $photon_args Array of Photon arguments.
530
+ * @param array $args {
531
+ * Array of image details.
532
+ *
533
+ * @type $width Image width.
534
+ * @type height Image height.
535
+ * @type $image_url Image URL.
536
+ * @type $attachment_id Attachment ID of the image.
537
+ * }
538
+ */
539
  $photon_args = apply_filters( 'jetpack_photon_image_downsize_array', $photon_args, compact( 'width', 'height', 'image_url', 'attachment_id' ) );
540
 
541
  // Generate Photon URL
577
  ) );
578
 
579
  // Bail if scheme isn't http or port is set that isn't port 80
580
+ if (
581
+ ( 'http' != $url_info['scheme'] || ! in_array( $url_info['port'], array( 80, null ) ) ) &&
582
+ /**
583
+ * Allow Photon to fetch images that are served via HTTPS.
584
+ *
585
+ * @since 2.4.0
586
+ *
587
+ * @param bool true Should Photon ignore images using the HTTPS scheme. Default to true.
588
+ */
589
+ apply_filters( 'jetpack_photon_reject_https', true )
590
+ ) {
591
  return false;
592
+ }
593
 
594
  // Bail if no host is found
595
  if ( is_null( $url_info['host'] ) )
609
 
610
  // If we got this far, we should have an acceptable image URL
611
  // But let folks filter to decline if they prefer.
612
+ /**
613
+ * Overwrite the results of the validation steps an image goes through before to be considered valid to be used by Photon.
614
+ *
615
+ * @since 3.0.0
616
+ *
617
+ * @param bool true Is the image URL valid and can it be used by Photon. Default to true.
618
+ * @param string $url Image URL.
619
+ * @param array $parsed_url Array of information about the image.
620
+ */
621
  return apply_filters( 'photon_validate_image_url', true, $url, $parsed_url );
622
  }
623
 
css/dashboard-widget-rtl.css CHANGED
@@ -113,6 +113,7 @@
113
  text-align: center;
114
  }
115
 
 
116
  #jetpack_summary_widget *{-moz-box-sizing:border-box;box-sizing:border-box}#jetpack_summary_widget .inside{margin:0;padding:0;font-family:"proxima-nova", "Open Sans", Helvetica, Arial, sans-serif}#jetpack_summary_widget .stats,#jetpack_summary_widget .widgets,#jetpack_summary_widget .wpcom-connect{padding:.75em}#jetpack_summary_widget .wpcom-connect{background:#fafafa;text-align:center}#jetpack_summary_widget .wpcom-connect .jp-emblem{padding:5px 0 0 0}#jetpack_summary_widget .wpcom-connect svg{width:40px;height:40px}#jetpack_summary_widget .wpcom-connect svg path{fill:#81a844}#jetpack_summary_widget .wpcom-connect .jp-emblem,#jetpack_summary_widget .wpcom-connect h3,#jetpack_summary_widget .wpcom-connect p{width:100%}#jetpack_summary_widget .wpcom-connect h3{font-size:1.25em;font-weight:400}#jetpack_summary_widget .wpcom-connect p{color:#777;margin-top:0;padding:0 15px}#jetpack_summary_widget .wpcom-connect .actions{text-align:center;padding:15px 0 10px 0}#jetpack_summary_widget .wpcom-connect .actions small{display:block}#jetpack_summary_widget .wpcom-connect .actions small a{color:#999}#jetpack_summary_widget .button-jetpack{background:#81a844;border-color:#658435;color:#fff;box-shadow:inset 0 1px 0 #a5c672,0 1px 0 rgba(0,0,0,0.15)}#jetpack_summary_widget .button-jetpack:hover,#jetpack_summary_widget .button-jetpack:focus{background:#73963d;border-color:#57722e;color:#fff;box-shadow:inset 0 1px 0 #9abf60}#jetpack_summary_widget .button-jetpack:focus{box-shadow:inset 0 1px 0 #9abf60,0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,0.8)}#jetpack_summary_widget .button-jetpack:active{background:#658435;border-color:#57722e;color:#fff;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,0.5),0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,0.8)}#jetpack_summary_widget .button-jetpack[disabled],#jetpack_summary_widget .button-jetpack:disabled,#jetpack_summary_widget .button-jetpack.button-primary-disabled,#jetpack_summary_widget .button-jetpack.disabled{color:#cdd1c7 !important;background:#6b8b38 !important;border-color:#57722e !important;text-shadow:none !important}#jetpack_summary_widget footer{background:#fafafa;padding:.75em;overflow:hidden;border-top:1px solid #ccc}#jetpack_summary_widget footer .protect,#jetpack_summary_widget footer .akismet{width:50%;float:right;text-align:right}#jetpack_summary_widget footer h3{font-size:1.5em;font-weight:normal;margin:0;padding:0}#jetpack_summary_widget footer p{margin:0;padding:0}#jetpack_summary_widget footer section{margin:0;padding:0;text-align:center}
117
 
118
  /*# sourceMappingURL=dashboard-widget.min.css.map */
113
  text-align: center;
114
  }
115
 
116
+ /*# sourceMappingURL=dashboard-widget.css.map */
117
  #jetpack_summary_widget *{-moz-box-sizing:border-box;box-sizing:border-box}#jetpack_summary_widget .inside{margin:0;padding:0;font-family:"proxima-nova", "Open Sans", Helvetica, Arial, sans-serif}#jetpack_summary_widget .stats,#jetpack_summary_widget .widgets,#jetpack_summary_widget .wpcom-connect{padding:.75em}#jetpack_summary_widget .wpcom-connect{background:#fafafa;text-align:center}#jetpack_summary_widget .wpcom-connect .jp-emblem{padding:5px 0 0 0}#jetpack_summary_widget .wpcom-connect svg{width:40px;height:40px}#jetpack_summary_widget .wpcom-connect svg path{fill:#81a844}#jetpack_summary_widget .wpcom-connect .jp-emblem,#jetpack_summary_widget .wpcom-connect h3,#jetpack_summary_widget .wpcom-connect p{width:100%}#jetpack_summary_widget .wpcom-connect h3{font-size:1.25em;font-weight:400}#jetpack_summary_widget .wpcom-connect p{color:#777;margin-top:0;padding:0 15px}#jetpack_summary_widget .wpcom-connect .actions{text-align:center;padding:15px 0 10px 0}#jetpack_summary_widget .wpcom-connect .actions small{display:block}#jetpack_summary_widget .wpcom-connect .actions small a{color:#999}#jetpack_summary_widget .button-jetpack{background:#81a844;border-color:#658435;color:#fff;box-shadow:inset 0 1px 0 #a5c672,0 1px 0 rgba(0,0,0,0.15)}#jetpack_summary_widget .button-jetpack:hover,#jetpack_summary_widget .button-jetpack:focus{background:#73963d;border-color:#57722e;color:#fff;box-shadow:inset 0 1px 0 #9abf60}#jetpack_summary_widget .button-jetpack:focus{box-shadow:inset 0 1px 0 #9abf60,0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,0.8)}#jetpack_summary_widget .button-jetpack:active{background:#658435;border-color:#57722e;color:#fff;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,0.5),0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,0.8)}#jetpack_summary_widget .button-jetpack[disabled],#jetpack_summary_widget .button-jetpack:disabled,#jetpack_summary_widget .button-jetpack.button-primary-disabled,#jetpack_summary_widget .button-jetpack.disabled{color:#cdd1c7 !important;background:#6b8b38 !important;border-color:#57722e !important;text-shadow:none !important}#jetpack_summary_widget footer{background:#fafafa;padding:.75em;overflow:hidden;border-top:1px solid #ccc}#jetpack_summary_widget footer .protect,#jetpack_summary_widget footer .akismet{width:50%;float:right;text-align:right}#jetpack_summary_widget footer h3{font-size:1.5em;font-weight:normal;margin:0;padding:0}#jetpack_summary_widget footer p{margin:0;padding:0}#jetpack_summary_widget footer section{margin:0;padding:0;text-align:center}
118
 
119
  /*# sourceMappingURL=dashboard-widget.min.css.map */
css/dashboard-widget.css CHANGED
@@ -112,3 +112,5 @@
112
  padding: 0;
113
  text-align: center;
114
  }
 
 
112
  padding: 0;
113
  text-align: center;
114
  }
115
+
116
+ /*# sourceMappingURL=dashboard-widget.css.map */
css/dashboard-widget.css.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["dashboard-widget.css","../scss/templates/_dashboard-widget.scss"],"names":[],"mappings":"AAAA;;;GAGE;ACDD;;;IDKE;AACH;ECAE,6BAAA;EAAA,wBAAA;EDED;AACD;EAAA,WAAA;EAAA,YAAA;EAAA,wEAAA;EAIC;AACD;;;EAGE,gBAAe;EAChB;AACD;EAAA,qBAAA;EAAA,oBAAA;EAGC;AACD;EAAA,oBAAA;EAEC;AACD;EAAA,aAAA;EAAA,cAAA;EAGC;AACD;EAAA,eAAA;EAEC;AACD;;;EAGE,aAAY;EACb;AACD;EAAA,mBAAA;EAAA,kBAAA;EAGC;AACD;EAAA,aAAA;EAAA,eAAA;EAAA,iBAAA;EAIC;AACD;EAAA,oBAAA;EAAA,wBAAA;EAGC;AACD;EAAA,gBAAA;EAEC;AACD;EAAA,aAAA;EAEC;AACD;EAAA,qBAAA;EAAA,uBAAA;EAAA,cAAA;EAAA,gEAAA;EAKC;AACD;EAAA,qBAAA;EAAA,uBAAA;EAAA,cAAA;EAAA,mCAAA;EAKC;AACD;EAAA,2FAAA;EAEC;AACD;EAAA,qBAAA;EAAA,uBAAA;EAAA,cAAA;EAAA,6GAAA;EAKC;AACD;EAAA,2BAAA;EAAA,gCAAA;EAAA,kCAAA;EAAA,8BAAA;EAKC;AACD;EAAA,qBAAA;EAAA,gBAAA;EAAA,kBAAA;EAAA,4BAAA;EAKC;AACD;;EAEE,YAAW;EAAX,aAAW;EAAX,kBAAW;EAGZ;AACD;EAAA,kBAAA;EAAA,qBAAA;EAAA,WAAA;EAAA,YAAA;EAKC;AACD;EAAA,WAAA;EAAA,YAAA;EAGC;AACD;EAAA,WAAA;EAAA,YAAA;EAAA,oBAAA;EAIC","file":"dashboard-widget.css"}
1
+ {"version":3,"sources":["dashboard-widget.css","../scss/templates/_dashboard-widget.scss","../scss/atoms/colors/_colors.scss","../scss/_utilities/mixins/_button.scss"],"names":[],"mappings":"AAAA;;;GAGE;ACDD;;;IAIA;ADED;ECAE,6BAAU;EAAV,wBAAU;EDEX;AACD;ECCC,WAAA;EDCC,YAAW;EACX,wECAc;EDCf;AACD;;;ECIE,gBAAY;EDAb;ACEC;EACC,qBAAkB;EDAnB,oBAAmB;ECGnB;ADDF;ECGG,oBAAY;EDDd;ACEE;EACC,aC1BI;EF0BN,cAAa;ECIb;ADFF;EACE,eAAc;EACf;AACD;;;ECOG,aAAW;EDHb;ACMC;EACC,mBAAW;EACX,kBAAa;EDJf;AACD;ECOE,aAAA;EACC,eAAY;EACZ,iBAAS;EDLX;ACME;EACC,oBAAc;EDJhB,wBAAuB;ECKrB;ADHJ;EACE,gBAAe;ECShB;ADPD;EGhDC,aAAY;EHkDZ;AACD;EACE,qBAAoB;EGhDrB,uBAAA;EAEC,cAAY;EACZ,gEAA0C;EHiD3C;AACD;EACE,qBAAoB;EG9CrB,uBAAA;EACC,cAAY;EHgDZ,mCAAkC;EG3CnC;AH6CD;EG3CE,2FAA0C;EH6C3C;AACD;EACE,qBAAoB;EGxCrB,uBAAA;EAIC,cAAO;EACP,6GAAkD;EHuCnD;AACD;EACE,2BAA0B;ECd3B,gCAAO;EACN,kCAAmB;EACnB,8BAAc;EDgBf;AACD;EACE,qBAAoB;ECdpB,gBAAA;EDgBA,kBAAiB;ECdhB,4BAAU;EDgBZ;AACD;;ECZE,YAAA;EACC,aAAW;EACX,kBAAa;EDef;AACD;EACE,kBAAiB;ECZjB,qBAAA;EACC,WAAS;EACT,YAAU;EDcZ;ACXC;EACC,WAAS;EACT,YAAU;EDaZ;AACD;EACE,WAAU;EACV,YAAW;EACX,oBAAmB;EACpB","file":"dashboard-widget.css"}
css/jetpack-admin-jitm-rtl.css ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * Do not modify this file directly. It is compiled Sass code.
3
+ * @see: jetpack/_inc/jetpack.scss
4
+ */
5
+ .jp-jitm {
6
+ border-radius: 2px;
7
+ max-width: 95%;
8
+ margin: 2em auto 0 auto;
9
+ padding: .85em;
10
+ background: #fcfcfc;
11
+ border: 1px solid #dedede;
12
+ text-align: center;
13
+ }
14
+ @media (min-width: 1100px) {
15
+ .jp-jitm {
16
+ max-width: 650px;
17
+ }
18
+ }
19
+ .jp-jitm:before, .jp-jitm:after {
20
+ content: "";
21
+ display: table;
22
+ }
23
+ .jp-jitm:after {
24
+ clear: both;
25
+ }
26
+ .jp-jitm .activate {
27
+ margin-top: .8em;
28
+ }
29
+ .jp-jitm .jp-emblem {
30
+ width: 25px;
31
+ height: 25px;
32
+ margin: .45em auto .65em auto;
33
+ }
34
+ .jp-jitm svg {
35
+ width: 100%;
36
+ height: 100%;
37
+ }
38
+ .jp-jitm path {
39
+ fill: #8cc258;
40
+ }
41
+ .jp-jitm .dismiss {
42
+ margin: 0;
43
+ text-decoration: none;
44
+ float: left;
45
+ }
46
+ .jp-jitm .dismiss:before {
47
+ color: #666;
48
+ font: 400 15px/1 dashicons;
49
+ content: '\f158';
50
+ }
51
+ .jp-jitm p {
52
+ font-size: 1em;
53
+ line-height: 165%;
54
+ }
55
+
56
+ .media-upload-form .jp-jitm {
57
+ max-width: 100%;
58
+ }
59
+ @media (min-width: 1100px) {
60
+ .media-upload-form .jp-jitm .jp-emblem, .media-upload-form .jp-jitm p {
61
+ float: right;
62
+ margin: 0 0 0 1em;
63
+ padding-top: 4px;
64
+ }
65
+ .media-upload-form .jp-jitm .jp-emblem {
66
+ width: 20px;
67
+ height: 20px;
68
+ }
69
+ .media-upload-form .jp-jitm p + p {
70
+ margin: 0;
71
+ padding: 0;
72
+ }
73
+ .media-upload-form .jp-jitm .activate {
74
+ margin-top: 0;
75
+ }
76
+ }
77
+
78
+ @media (max-width: 1100px) {
79
+ .media-modal-content .jp-jitm {
80
+ max-width: 90%;
81
+ }
82
+ }
83
+
84
+ .jetpack-connected .media-modal-content .uploader-inline-content {
85
+ top: 20%;
86
+ }
87
+
88
+ /*# sourceMappingURL=jetpack-admin-jitm.css.map */
89
+ .jp-jitm{border-radius:2px;max-width:95%;margin:2em auto 0 auto;padding:.85em;background:#fcfcfc;border:1px solid #dedede;text-align:center}@media (min-width: 1100px){.jp-jitm{max-width:650px}}.jp-jitm:before,.jp-jitm:after{content:"";display:table}.jp-jitm:after{clear:both}.jp-jitm .activate{margin-top:.8em}.jp-jitm .jp-emblem{width:25px;height:25px;margin:.45em auto .65em auto}.jp-jitm svg{width:100%;height:100%}.jp-jitm path{fill:#8cc258}.jp-jitm .dismiss{margin:0;text-decoration:none;float:left}.jp-jitm .dismiss:before{color:#666;font:400 15px/1 dashicons;content:'\f158'}.jp-jitm p{font-size:1em;line-height:165%}.media-upload-form .jp-jitm{max-width:100%}@media (min-width: 1100px){.media-upload-form .jp-jitm .jp-emblem,.media-upload-form .jp-jitm p{float:right;margin:0 0 0 1em;padding-top:4px}.media-upload-form .jp-jitm .jp-emblem{width:20px;height:20px}.media-upload-form .jp-jitm p+p{margin:0;padding:0}.media-upload-form .jp-jitm .activate{margin-top:0}}@media (max-width: 1100px){.media-modal-content .jp-jitm{max-width:90%}}.jetpack-connected .media-modal-content .uploader-inline-content{top:20%}
90
+
91
+ /*# sourceMappingURL=jetpack-admin-jitm.min.css.map */
css/jetpack-admin-jitm-rtl.min.css ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ .jp-jitm{border-radius:2px;max-width:95%;margin:2em auto 0 auto;padding:.85em;background:#fcfcfc;border:1px solid #dedede;text-align:center}@media (min-width: 1100px){.jp-jitm{max-width:650px}}.jp-jitm:before,.jp-jitm:after{content:"";display:table}.jp-jitm:after{clear:both}.jp-jitm .activate{margin-top:.8em}.jp-jitm .jp-emblem{width:25px;height:25px;margin:.45em auto .65em auto}.jp-jitm svg{width:100%;height:100%}.jp-jitm path{fill:#8cc258}.jp-jitm .dismiss{margin:0;text-decoration:none;float:left}.jp-jitm .dismiss:before{color:#666;font:400 15px/1 dashicons;content:'\f158'}.jp-jitm p{font-size:1em;line-height:165%}.media-upload-form .jp-jitm{max-width:100%}@media (min-width: 1100px){.media-upload-form .jp-jitm .jp-emblem,.media-upload-form .jp-jitm p{float:right;margin:0 0 0 1em;padding-top:4px}.media-upload-form .jp-jitm .jp-emblem{width:20px;height:20px}.media-upload-form .jp-jitm p+p{margin:0;padding:0}.media-upload-form .jp-jitm .activate{margin-top:0}}@media (max-width: 1100px){.media-modal-content .jp-jitm{max-width:90%}}.jetpack-connected .media-modal-content .uploader-inline-content{top:20%}
2
+
3
+ /*# sourceMappingURL=jetpack-admin-jitm.min.css.map */
css/jetpack-admin-jitm.css ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * Do not modify this file directly. It is compiled Sass code.
3
+ * @see: jetpack/_inc/jetpack.scss
4
+ */
5
+ .jp-jitm {
6
+ border-radius: 2px;
7
+ max-width: 95%;
8
+ margin: 2em auto 0 auto;
9
+ padding: .85em;
10
+ background: #fcfcfc;
11
+ border: 1px solid #dedede;
12
+ text-align: center;
13
+ }
14
+ @media (min-width: 1100px) {
15
+ .jp-jitm {
16
+ max-width: 650px;
17
+ }
18
+ }
19
+ .jp-jitm:before, .jp-jitm:after {
20
+ content: "";
21
+ display: table;
22
+ }
23
+ .jp-jitm:after {
24
+ clear: both;
25
+ }
26
+ .jp-jitm .activate {
27
+ margin-top: .8em;
28
+ }
29
+ .jp-jitm .jp-emblem {
30
+ width: 25px;
31
+ height: 25px;
32
+ margin: .45em auto .65em auto;
33
+ }
34
+ .jp-jitm svg {
35
+ width: 100%;
36
+ height: 100%;
37
+ }
38
+ .jp-jitm path {
39
+ fill: #8cc258;
40
+ }
41
+ .jp-jitm .dismiss {
42
+ margin: 0;
43
+ text-decoration: none;
44
+ float: right;
45
+ }
46
+ .jp-jitm .dismiss:before {
47
+ color: #666;
48
+ font: 400 15px/1 dashicons;
49
+ content: '\f158';
50
+ }
51
+ .jp-jitm p {
52
+ font-size: 1em;
53
+ line-height: 165%;
54
+ }
55
+
56
+ .media-upload-form .jp-jitm {
57
+ max-width: 100%;
58
+ }
59
+ @media (min-width: 1100px) {
60
+ .media-upload-form .jp-jitm .jp-emblem, .media-upload-form .jp-jitm p {
61
+ float: left;
62
+ margin: 0 1em 0 0;
63
+ padding-top: 4px;
64
+ }
65
+ .media-upload-form .jp-jitm .jp-emblem {
66
+ width: 20px;
67
+ height: 20px;
68
+ }
69
+ .media-upload-form .jp-jitm p + p {
70
+ margin: 0;
71
+ padding: 0;
72
+ }
73
+ .media-upload-form .jp-jitm .activate {
74
+ margin-top: 0;
75
+ }
76
+ }
77
+
78
+ @media (max-width: 1100px) {
79
+ .media-modal-content .jp-jitm {
80
+ max-width: 90%;
81
+ }
82
+ }
83
+
84
+ .jetpack-connected .media-modal-content .uploader-inline-content {
85
+ top: 20%;
86
+ }
87
+
88
+ /*# sourceMappingURL=jetpack-admin-jitm.css.map */
css/jetpack-admin-jitm.css.map ADDED
@@ -0,0 +1 @@
 
1
+ {"version":3,"sources":["../scss/jetpack-admin-jitm.scss","jetpack-admin-jitm.css"],"names":[],"mappings":"AAGA;;;GAGC;ACFD;EDIC,oBAAmB;EACnB,gBAAQ;EACR,yBAAkB;ECFjB,gBAAe;EDIhB,qBAAA;EATD,2BAAS;ECQP,oBDC4C;ECA7C;AACD;EDEC;IACC,kBAAW;IACX;ECAD;ADEA;EACC,aAAW;ECAX,gBAAe;EDGhB;ACDD;EACE,aAAY;EDGb;ACDD;EDGE,kBAAY;ECDb;AACD;EDGC,aAAI;EACH,cAAW;EACX,+BAAY;ECDb;ADGA;EACC,aAAM;ECDN,cAAa;EDGd;ACDD;EDGE,eAAA;ECDD;AACD;EDEE,WAAA;EACC,uBAAW;EACX,cAAM;ECAR;AACD;EDGC,aAAE;EACD,4BAAc;EACd,kBAAiB;ECDlB;AACD;EDKA,gBAAA;EACC,mBAAe;ECHf;;AAED;EACE,iBDIY;ECHb;AACD;EACE;IDKA,aAAA;IACC,mBAAW;IACX,kBAAY;ICHZ;EDKD;IACC,aAAS;IACT,cAAU;ICHV;EDKD;IACC,WAAU;ICHT,YAAW;IACZ;EACD;IDSD,eAAA;IAFD;ECJC;;AAED;EACE;IDUF,gBAAA;IACC;ECRA;;AAED;EACE,UAAS;EACV","file":"jetpack-admin-jitm.css"}
css/jetpack-admin-jitm.min.css ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ .jp-jitm{border-radius:2px;max-width:95%;margin:2em auto 0 auto;padding:.85em;background:#fcfcfc;border:1px solid #dedede;text-align:center}@media (min-width: 1100px){.jp-jitm{max-width:650px}}.jp-jitm:before,.jp-jitm:after{content:"";display:table}.jp-jitm:after{clear:both}.jp-jitm .activate{margin-top:.8em}.jp-jitm .jp-emblem{width:25px;height:25px;margin:.45em auto .65em auto}.jp-jitm svg{width:100%;height:100%}.jp-jitm path{fill:#8cc258}.jp-jitm .dismiss{margin:0;text-decoration:none;float:right}.jp-jitm .dismiss:before{color:#666;font:400 15px/1 dashicons;content:'\f158'}.jp-jitm p{font-size:1em;line-height:165%}.media-upload-form .jp-jitm{max-width:100%}@media (min-width: 1100px){.media-upload-form .jp-jitm .jp-emblem,.media-upload-form .jp-jitm p{float:left;margin:0 1em 0 0;padding-top:4px}.media-upload-form .jp-jitm .jp-emblem{width:20px;height:20px}.media-upload-form .jp-jitm p+p{margin:0;padding:0}.media-upload-form .jp-jitm .activate{margin-top:0}}@media (max-width: 1100px){.media-modal-content .jp-jitm{max-width:90%}}.jetpack-connected .media-modal-content .uploader-inline-content{top:20%}
2
+
3
+ /*# sourceMappingURL=jetpack-admin-jitm.min.css.map */
css/jetpack-admin-jitm.min.css.map ADDED
@@ -0,0 +1 @@
 
1
+ {"version":3,"sources":["../scss/jetpack-admin-jitm.scss"],"names":[],"mappings":"AAGA,SACC,kBACA,CAAA,aACA,CAAA,sBACA,CAAA,aACA,CAAA,kBACA,CAAA,wBACA,CAAA,iBAEA,CAAA,0BATD,SAS8B,gBAAgB,CAAA,AAG7C,CAAA,8BACC,WACA,CAAA,aAED,CAAA,cACC,WAGD,CAAA,kBACC,gBAED,CAAA,mBACC,WACA,CAAA,WACA,CAAA,4BAED,CAAA,YACC,WACA,CAAA,WAED,CAAA,aACC,aAED,CAAA,iBACC,SACA,CAAA,oBACA,CAAA,WACA,CAAA,wBACC,WACA,CAAA,yBACA,CAAA,eAGF,CAAA,UACC,cACA,CAAA,gBAKF,CAAA,2BACC,eAEA,CAAA,0BACC,qEACC,WACA,CAAA,gBACA,CAAA,eAED,CAAA,sCACC,WACA,CAAA,WAED,CAAA,+BACC,SACA,CAAA,SAED,CAAA,qCACC,aAAa,CAAA,AAQf,CAAA,0BAFD,8BAGE,cAAc,CAAA,AAMhB,CAAA,gEACC,QAAQ,CAAA","file":"jetpack-admin-jitm.min.css"}
css/jetpack-admin-rtl.css CHANGED
@@ -173,7 +173,7 @@ button,
173
  input,
174
  select,
175
  textarea {
176
- color: #222222;
177
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
178
  font-size: 14px;
179
  line-height: 1.4;
@@ -192,6 +192,7 @@ h6 {
192
 
193
  a {
194
  color: #0d72b2;
 
195
  transition: color .2s;
196
  text-decoration: none;
197
  }
@@ -251,12 +252,10 @@ img {
251
  -webkit-transform: scale(0.3);
252
  transform: scale(0.3);
253
  }
254
-
255
  60% {
256
  -webkit-transform: scale(1.15);
257
  transform: scale(1.15);
258
  }
259
-
260
  100% {
261
  -webkit-transform: scale(1);
262
  transform: scale(1);
@@ -268,12 +267,10 @@ img {
268
  -webkit-transform: scale(0.3);
269
  transform: scale(0.3);
270
  }
271
-
272
  60% {
273
  -webkit-transform: scale(1.15);
274
  transform: scale(1.15);
275
  }
276
-
277
  100% {
278
  -webkit-transform: scale(1);
279
  transform: scale(1);
@@ -284,17 +281,14 @@ img {
284
  -webkit-transform: scale(1);
285
  transform: scale(1);
286
  }
287
-
288
  20% {
289
  -webkit-transform: scale(1.15);
290
  transform: scale(1.15);
291
  }
292
-
293
  60% {
294
  -webkit-transform: scale(0.95);
295
  transform: scale(0.95);
296
  }
297
-
298
  100% {
299
  -webkit-transform: scale(1);
300
  transform: scale(1);
@@ -305,17 +299,14 @@ img {
305
  -webkit-transform: scale(1);
306
  transform: scale(1);
307
  }
308
-
309
  20% {
310
  -webkit-transform: scale(1.15);
311
  transform: scale(1.15);
312
  }
313
-
314
  60% {
315
  -webkit-transform: scale(0.95);
316
  transform: scale(0.95);
317
  }
318
-
319
  100% {
320
  -webkit-transform: scale(1);
321
  transform: scale(1);
@@ -326,7 +317,6 @@ img {
326
  -webkit-transform: translate3d(0px, 0px, 0px);
327
  transform: translate3d(0px, 0px, 0px);
328
  }
329
-
330
  100% {
331
  -webkit-transform: translate3d(680px, -680px, 0px);
332
  transform: translate3d(680px, -680px, 0px);
@@ -337,7 +327,6 @@ img {
337
  -webkit-transform: translate3d(0px, 0px, 0px);
338
  transform: translate3d(0px, 0px, 0px);
339
  }
340
-
341
  100% {
342
  -webkit-transform: translate3d(680px, -680px, 0px);
343
  transform: translate3d(680px, -680px, 0px);
@@ -345,6 +334,7 @@ img {
345
  }
346
  .button,
347
  .download-jetpack {
 
348
  transition: all .1s ease-in-out;
349
  }
350
 
@@ -551,10 +541,6 @@ ul#adminmenu a.toplevel_page_jetpack:after {
551
  margin-right: 36px;
552
  }
553
 
554
- #wpfooter {
555
- display: none;
556
- }
557
-
558
  .jp-content {
559
  background: #f9f9f9;
560
  margin: 0;
@@ -732,6 +718,7 @@ ul#adminmenu a.toplevel_page_jetpack:after {
732
  text-align: center;
733
  z-index: 1;
734
  background-color: #81a844;
 
735
  background-image: linear-gradient(top, #81a844, #8eb74e);
736
  }
737
  .masthead.hasbutton .flyer {
@@ -890,6 +877,8 @@ ul#adminmenu a.toplevel_page_jetpack:after {
890
  text-align: center;
891
  z-index: 1;
892
  background-color: #81a844;
 
 
893
  background-image: linear-gradient(top, #81a844, #89b348);
894
  }
895
  .clouds-sm:after {
@@ -967,6 +956,7 @@ ul#adminmenu a.toplevel_page_jetpack:after {
967
  float: right;
968
  margin: 0 5px 10px;
969
  width: 310px;
 
970
  transition: all .2s ease-in-out;
971
  }
972
  @media (max-width: 1147px) {
@@ -974,6 +964,7 @@ ul#adminmenu a.toplevel_page_jetpack:after {
974
  .module {
975
  margin: .75% 1.5% .75% 0;
976
  width: 32.333333%;
 
977
  transition: none;
978
  }
979
  .feature:nth-child(3n + 1),
@@ -1013,6 +1004,7 @@ ul#adminmenu a.toplevel_page_jetpack:after {
1013
  z-index: -1;
1014
  -webkit-transform: translateZ(0);
1015
  transform: translateZ(0);
 
1016
  transition: all .2s ease-in-out;
1017
  }
1018
  .feature:hover {
@@ -1184,6 +1176,7 @@ ul#adminmenu a.toplevel_page_jetpack:after {
1184
  text-indent: -9999px;
1185
  pointer-events: none;
1186
  border-radius: 3px;
 
1187
  transition: all .2s ease-in-out;
1188
  }
1189
  #jetpack-search + label:after {
@@ -1230,6 +1223,7 @@ ul#adminmenu a.toplevel_page_jetpack:after {
1230
  border: 1px solid #dae0e2;
1231
  background: #fff;
1232
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.03);
 
1233
  transition: opacity 2s ease-in;
1234
  }
1235
  .module:hover {
@@ -1633,27 +1627,27 @@ ul#adminmenu a.toplevel_page_jetpack:after {
1633
  height: 195px;
1634
  }
1635
  .footer:after {
1636
- bottom: 0;
1637
- width: 100%;
1638
- height: 50px;
1639
- background: url("../images/the-footcloud.svg") center bottom no-repeat;
1640
- background-size: auto 45px;
1641
- z-index: 1;
1642
  }
1643
  .footer .download-jetpack {
1644
  margin-bottom: 33px;
1645
  }
 
 
 
 
 
1646
  @media (max-width: 1147px) {
1647
  .footer {
1648
  padding-top: 165px;
1649
  padding-bottom: 0;
 
 
 
1650
  }
1651
  .footer:before {
1652
  background-size: 160% auto;
1653
  }
1654
- .footer:after {
1655
- display: none;
1656
- }
1657
  .footer ul {
1658
  float: none;
1659
  overflow: hidden;
@@ -1695,14 +1689,10 @@ ul#adminmenu a.toplevel_page_jetpack:after {
1695
  color: #81A844;
1696
  }
1697
  @media (max-width: 1147px) {
1698
- .footer nav {
1699
- border: none;
1700
- padding: 0;
1701
- }
1702
  .footer nav a:hover, .footer nav a:focus,
1703
  .footer nav a:visited:hover,
1704
  .footer nav a:visited:focus {
1705
- color: #fff;
1706
  }
1707
  }
1708
  @media (max-width: 530px) {
@@ -1730,10 +1720,22 @@ ul#adminmenu a.toplevel_page_jetpack:after {
1730
  .secondary-footer li {
1731
  margin-left: 5px;
1732
  }
1733
- @media (max-width: 1147px) {
1734
  .secondary-footer {
1735
- margin: 0 30px;
1736
- padding: 8px 15px 30px;
 
 
 
 
 
 
 
 
 
 
 
 
1737
  }
1738
  }
1739
  @media (max-width: 530px) {
@@ -1755,9 +1757,6 @@ ul#adminmenu a.toplevel_page_jetpack:after {
1755
  font-size: 0.78571em;
1756
  font-family: "Gill Sans", "Gill Sans MT", "Open Sans", Helvetica, Arial, sans-serif;
1757
  text-transform: uppercase;
1758
- /*@include breakpoint(large-desktop){
1759
- display: none;
1760
- };*/
1761
  }
1762
  .footer .a8c-attribution a {
1763
  display: inline-block;
@@ -1782,8 +1781,17 @@ ul#adminmenu a.toplevel_page_jetpack:after {
1782
  animation: candy .4s ease-in-out;
1783
  }
1784
 
1785
- .secondary {
1786
- padding: 10px 15px 0 15px;
 
 
 
 
 
 
 
 
 
1787
  }
1788
 
1789
  .jetpack-message {
@@ -1844,7 +1852,7 @@ ul#adminmenu a.toplevel_page_jetpack:after {
1844
  opacity: 0.6;
1845
  position: absolute;
1846
  top: 23px;
1847
- top: calc(50% - 22px );
1848
  }
1849
  @media (max-width: 530px) {
1850
  .jetpack-message .squeezer {
@@ -2532,7 +2540,7 @@ ul#adminmenu a.toplevel_page_jetpack:after {
2532
  font-size: 14px;
2533
  }
2534
  .configure-module p.success, .configure-module p.error {
2535
- color: white;
2536
  padding: 10px;
2537
  }
2538
  .configure-module p.success {
@@ -2945,6 +2953,10 @@ a.what-is-primary {
2945
  background: #fefefe;
2946
  border: 1px #dae0e2 solid;
2947
  padding-bottom: 20px;
 
 
 
 
2948
  }
2949
  #jump-start-area #jumpstart-cta,
2950
  #jump-start-area .jumpstart-desc {
@@ -2977,6 +2989,8 @@ a.what-is-primary {
2977
 
2978
  #jumpstart-cta {
2979
  text-align: center;
 
 
2980
  }
2981
 
2982
  .dismiss-jumpstart {
@@ -3073,7 +3087,6 @@ a.what-is-primary {
3073
  -webkit-transform: translate3d(0px, 0px, 0px);
3074
  transform: translate3d(0px, 0px, 0px);
3075
  }
3076
-
3077
  100% {
3078
  -webkit-transform: translate3d(900px, -900px, 0px);
3079
  transform: translate3d(900px, -900px, 0px);
@@ -3084,12 +3097,336 @@ a.what-is-primary {
3084
  -webkit-transform: translate3d(0px, 0px, 0px);
3085
  transform: translate3d(0px, 0px, 0px);
3086
  }
3087
-
3088
  100% {
3089
  -webkit-transform: translate3d(900px, -900px, 0px);
3090
  transform: translate3d(900px, -900px, 0px);
3091
  }
3092
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3093
  @media (max-width: 1147px) {
3094
  .jp-content .landing {
3095
  padding: 0 2em;
@@ -3097,6 +3434,58 @@ a.what-is-primary {
3097
  .jp-content .footer {
3098
  padding-top: 1.5em;
3099
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3100
  }
3101
  @media (max-width: 782px) {
3102
  #jumpstart-cta .button-primary {
@@ -3107,6 +3496,14 @@ a.what-is-primary {
3107
  background-position: 50% 35%;
3108
  }
3109
  }
 
 
 
 
 
 
 
 
3110
  @media (max-width: 530px) {
3111
  .jp-content .landing {
3112
  padding: 0 .5em;
@@ -3137,37 +3534,7 @@ a.what-is-primary {
3137
  clear: both;
3138
  }
3139
 
3140
- .j-row{width:100%;margin:0 auto}.j-row:before,.j-row:after{content:" ";display:table}.j-row:after{clear:both}.j-col{padding:0.85em;width:100%;float:right;position:relative}@media only screen{.j-sm-1{width:8.33333%}.j-sm-2{width:16.66667%}.j-sm-3{width:25%}.j-sm-4{width:33.33333%}.j-sm-5{width:41.66667%}.j-sm-6{width:50%}.j-sm-7{width:58.33333%}.j-sm-8{width:66.66667%}.j-sm-9{width:75%}.j-sm-10{width:83.33333%}.j-sm-11{width:91.66667%}.j-sm-12{width:100%}}@media (min-width: 530px){.j-md-1{width:8.33333%}.j-md-2{width:16.66667%}.j-md-3{width:25%}.j-md-4{width:33.33333%}.j-md-5{width:41.66667%}.j-md-6{width:50%}.j-md-7{width:58.33333%}.j-md-8{width:66.66667%}.j-md-9{width:75%}.j-md-10{width:83.33333%}.j-md-11{width:91.66667%}.j-md-12{width:100%}}@media (min-width: 782px){.j-lrg-1{width:8.33333%}.j-lrg-2{width:16.66667%}.j-lrg-3{width:25%}.j-lrg-4{width:33.33333%}.j-lrg-5{width:41.66667%}.j-lrg-6{width:50%}.j-lrg-7{width:58.33333%}.j-lrg-8{width:66.66667%}.j-lrg-9{width:75%}.j-lrg-10{width:83.33333%}.j-lrg-11{width:91.66667%}.j-lrg-12{width:100%}}body,button,input,select,textarea{color:#222;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.4;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{color:#222;clear:both}a{color:#0d72b2;transition:color .2s;text-decoration:none}a:visited{color:#0d72b2}a:hover{color:#0f92e5}a:focus{outline:thin dotted}address{margin:0 0 1.5em}abbr[title],acronym{cursor:help}ins{background:#eee;text-decoration:none}dt{font-weight:700}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}img{vertical-align:middle}@-webkit-keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}@keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}.button,.download-jetpack{transition:all .1s ease-in-out}.jp-button,.jp-button--settings{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#efefef;font:800 0.9285714286em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 -1px 1px rgba(0,0,0,0.2);background:#6f7476;border-radius:3px}.jp-button:visited,.jp-button--settings:visited{color:#efefef}.jp-button:hover,.jp-button--settings:hover,.jp-button:focus,.jp-button--settings:focus{color:#fff;background:#57972d}.jp-button:active,.jp-button--settings:active{background:#57972d;opacity:0.8}.jp-button--settings{background:#93b45f;color:#e8eedf}.jp-button--settings:visited{color:#e8eedf}.jp-button--settings:hover,.jp-button--settings:focus{background:#9fbd72;color:#fff}.jp-button--settings.current{background:#3c6621;color:#fff;box-shadow:inset 0 2px 0 #365A1F, inset 0 1px 3px #3c6621}.download-jetpack{display:inline-block;position:relative;padding:0.64286em 0.85714em 0.53571em;color:#fff;font:400 20px/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif;background:#518d2a;z-index:3;border-radius:6px;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:visited{color:#fff}.download-jetpack:hover,.download-jetpack:focus{color:#fff;background:#57972d;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:active{top:6px;box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.4)}.download-jetpack:active:after{top:-6px}.download-jetpack:before{content:'';display:inline-block;position:relative;top:-2px;margin-left:13px;width:30px;height:30px;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%}.download-jetpack:after{content:'';position:absolute;top:0;right:0;width:100%;height:100%}@media (max-width: 1147px){.download-jetpack{font-size:1.28571em}.download-jetpack:before{top:-1px;width:23px;height:23px}}@media (max-width: 900px){.download-jetpack:active{top:0}}@media (max-width: 530px){.download-jetpack{font-size:1.21429em;font-weight:600}.download-jetpack:before{width:19px;height:19px;margin-left:9px}}
3141
- #searchsubmit{display:inline-block;border:none;position:relative;padding:0.71429em 1.5em;color:#efefef;font:800 0.8em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 -1px 1px rgba(0,0,0,0.2);background:#6f7476;outline:none;border-radius:3px}#searchsubmit:visited{color:#efefef}#searchsubmit:hover,#searchsubmit:focus{color:#fff;background:#2aa0d5}#searchsubmit:active{opacity:0.7}@font-face{font-family:'automatticons';src:url("../_inc/fonts/automatticons/automatticons.eot");src:url("../_inc/fonts/automatticons/automatticons.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/automatticons/automatticons.woff") format("woff"),url("../_inc/fonts/automatticons/automatticons.ttf") format("truetype"),url("../_inc/fonts/automatticons/automatticons.svg#automatticonsregular") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.eot");src:url("../_inc/fonts/jetpack/jetpack.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/jetpack/jetpack.woff") format("woff"),url("../_inc/fonts/jetpack/jetpack.ttf") format("truetype"),url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg");font-weight:normal;font-style:normal}@media screen and (-webkit-min-device-pixel-ratio: 0){@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg")}}.nav-horizontal a{display:inline-block}.nav-horizontal li{position:relative;float:right}.nav-horizontal ul{margin:0;padding:0}*,*:before,*:after{-moz-box-sizing:border-box;box-sizing:border-box}::-moz-selection{background:#91bd51;color:#fff;text-shadow:none}::selection{background:#91bd51;color:#fff;text-shadow:none}#wpbody-content{padding-bottom:0}#wpcontent{margin-right:160px;padding:0}ul#adminmenu a.toplevel_page_jetpack:after{border-left-color:#81a844}.folded #wpcontent{margin-right:36px}#wpfooter{display:none}.jp-content{background:#f9f9f9;margin:0;height:auto;min-height:100%;width:100%;width:100%;-webkit-font-smoothing:antialiased}.jp-content .wrapper{background:#f9f9f9}@media (max-width: 900px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-right:36px;padding-right:0}}@media (max-width: 782px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-right:0}}
3142
- @media (max-width: 782px){.configure .frame.top.fixed{padding-right:0}}
3143
- .wrap.inner,.page-content{max-width:950px;margin:0 auto}.wrap.inner li,.page-content li{line-height:23px}@media (max-width: 530px){.page-content{margin-top:0}}
3144
- @media (max-width: 1147px){.wrap.inner{background:#f9f9f9;padding:15px}}@media (max-width: 530px){.wrap.inner{margin-top:1.71429em}}
3145
- .jetpack_page_jetpack_modules .header-nav{margin:0}.jetpack_page_jetpack_modules .page-content{max-width:1200px;min-height:500px;margin:0}.page-content.about{position:relative;z-index:10}@media (max-width: 1147px){.page-content.about{background:#f9f9f9;padding:15px}}
3146
- @media (max-width: 1147px){.page-content.configure{background:#f9f9f9}}
3147
- .footer nav{max-width:550px;margin:0 auto}.header{right:0;left:0;background:#81a844}.header-nav li{line-height:60px}.header-nav a{padding:0 0.71429em;line-height:24px}.header-nav .jetpack-logo a{display:inline-block;position:relative;width:214px;margin-left:6px;background:url(../images/jetpack-logo.png) center center no-repeat;background:url(../images/jetpack-logo.svg) center center no-repeat,none;background-size:183px auto;color:#fff;line-height:60px;font-weight:normal}.header-nav .jetpack-logo a span{text-indent:-9999px;visibility:hidden}.header-nav .jetpack-logo a:before{content:'';position:absolute;top:0;right:0;width:100%;height:100%;background-size:183px 32px}.header-nav .jetpack-modules+.jetpack-modules{margin-right:15px}.main-nav{float:right}.main-nav li{margin:0}@media (max-width: 900px){.main-nav{font-size:13px}}
3148
- .user-nav{float:left}.user-nav li{margin:0}.jetpack-pagestyles #screen-meta{margin:0}.jetpack-pagestyles #screen-meta-links .screen-meta-toggle{z-index:2}.jetpack-pagestyles #screen-options-link-wrap,.jetpack-pagestyles #contextual-help-link-wrap{border:none}.jetpack-pagestyles .update-nag{display:none}.masthead{position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:linear-gradient(top, #81a844, #8eb74e)}.masthead.hasbutton .flyer{bottom:-270px}.masthead.hasbutton .subhead{margin-top:175px}@media (max-width: 530px){.masthead.hasbutton .subhead{margin-top:105px;padding:0}}.masthead h1,.masthead h2{margin:0 auto}.masthead h1{padding:2.5em 0 1.11111em;max-width:21.94444em;color:#fff;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;position:relative;text-shadow:0 -1px 1px rgba(0,0,0,0.12);z-index:3}.masthead h1+.flyby{margin-top:180px}@media (max-width: 1147px){.masthead h1{padding-top:1.83333em;font-size:2.14286em}}@media (max-width: 782px){.masthead h1{max-width:600px;font-size:28px}}@media (max-width: 530px){.masthead h1{margin:0 15px;padding:31px 0 15px 0;font-size:21px;font-weight:400}}
3149
- .jetpack-connected .masthead h1{margin-bottom:33px;max-width:600px}.flyby{position:relative;max-width:1200px;margin:0 auto}@media (max-width: 900px){.flyby{display:none}}
3150
- .flyer{position:absolute;bottom:-200px;right:4%;z-index:1;-webkit-animation:flyer 3.4s 2s ease-in-out;animation:flyer 3.4s 2s ease-in-out}.flyer:nth-child(2){right:49%;width:120px;height:131px;-webkit-animation-delay:4.6s;animation-delay:4.6s;-webkit-animation-duration:2.4s;animation-duration:2.4s}.flyer:nth-child(3){right:23%;width:60px;height:66px;-webkit-animation-delay:5.8s;animation-delay:5.8s;-webkit-animation-duration:4.5s;animation-duration:4.5s}.subhead{position:relative;margin-top:105px;padding:4em 0;background:#f9f9f9;z-index:2}.subhead h2{max-width:460px;color:#5d6d74;font:400 1.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 900px){.subhead h2{max-width:428px;font-size:20px}}@media (max-width: 530px){.subhead h2{display:none}}.subhead:after{content:'';position:absolute;bottom:100%;right:0;margin-bottom:-1px;width:100%;height:228px;background:url("../images/the-cloud.svg") center bottom repeat-x;pointer-events:none;z-index:-1}@media (max-width: 1147px){.subhead{margin-top:122px;padding:70px 0 49px}.subhead:after{background-size:160% auto}}@media (max-width: 900px){.subhead{margin-top:122px;padding:70px 0 49px}}@media (max-width: 530px){.subhead{margin-top:83px;padding:47px 15px 39px}}
3151
- .clouds-sm{height:100px;position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:linear-gradient(top, #81a844, #89b348)}.clouds-sm:after{content:'';position:absolute;bottom:0;right:0;margin-bottom:-1px;width:100%;height:137px;background:url("../images/the-cloud-sm.svg") center bottom repeat-x;pointer-events:none;z-index:2}@media (max-width: 530px){.clouds-sm{height:90px}}
3152
- .featured{border-top:1px solid #d6d6d6;border-bottom:1px solid #d6d6d6;background:#fff;position:relative;padding:2.0em 1em 4.6em 1em;text-align:center;z-index:1}.featured:before{content:"";display:block;position:absolute;top:0;height:100%;z-index:-1}.featured .features,.featured .modules{margin:0 auto;display:inline-block}@media (max-width: 530px){.featured{display:none}}
3153
- .featured h2,.module-grid h2{margin-top:1em;color:#5d6d74;font:300 2em/1em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-align:center}@media (max-width: 900px){.featured h2,.module-grid h2{font-size:30px}}@media (max-width: 782px){.featured h2,.module-grid h2{font-size:28px}}
3154
- .features,.modules{margin:0 -5px}.feature,.module{position:relative;float:right;margin:0 5px 10px;width:310px;transition:all .2s ease-in-out}@media (max-width: 1147px){.feature,.module{margin:.75% 1.5% .75% 0;width:32.333333%;transition:none}.feature:nth-child(3n+1),.module:nth-child(3n+1){margin-right:0}.feature:hover,.module:hover{top:0;box-shadow:none}}
3155
- .feature{-webkit-transform:translateZ(0);transform:translateZ(0)}.feature h3{margin:0 0 0.58824em;color:#697b84;font-size:1.21429em;line-height:1em;font-weight:800}.feature p{margin:0;color:#6e818a}.feature:before{content:'';position:absolute;bottom:0;right:0;width:100%;height:10px;background:rgba(0,0,0,0.02);z-index:-1;-webkit-transform:translateZ(0);transform:translateZ(0);transition:all .2s ease-in-out}.feature:hover{-webkit-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px)}.feature:hover h3{color:#1a8dba}.feature:hover .feature-img{border:1px solid #ccc;border-bottom:none}.feature:hover .no-border{border:none}.feature:hover:before{-webkit-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px)}@media (max-width: 1147px){.feature:hover h3{color:#6e818a}.feature:hover .feature-img{border:1px solid #ddd;border-bottom:none}.feature:hover .no-border{border:none}}.feature .feature-img{padding-top:52%;width:100%;height:auto;border:1px solid #ddd;border-bottom:none}.feature .feature-img.custom-css{background:url("../images/custom-css.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.custom-css{background-image:url("../images/custom-css@2x.jpg")}}.feature .feature-img.wordpress-connect{background:url("../images/wordpress-connect.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-connect{background-image:url("../images/wordpress-connect@2x.jpg")}}.feature .feature-img.wordpress-stats{background:url("../images/wordpress-stats.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-stats{background-image:url("../images/wordpress-stats@2x.jpg")}}.feature .feature-img.no-border{border:none;padding-bottom:1px}.feature-description{display:block;padding:1em 1.07143em 1.07143em;border:1px solid #ddd;background:#f5f5f5}.feature:hover .feature-description{background:#fff;border-color:#ccc}@media (max-width: 1147px){.feature:hover .feature-description{border:1px solid #ddd;background:#f5f5f5}}@media (max-width: 900px){.feature-description{min-height:115px}}
3156
- .cat{clear:both;margin-bottom:23px}.cat h3{font-size:24px;font-weight:300;margin:0 6px 13px 0;text-align:right}.cat .clear{clear:both}.module-grid{text-align:center}.module-grid h2{margin:1em 0}@media (max-width: 530px){.module-grid h2{padding-top:16px;margin-top:0;font-size:25px}}
3157
- #module-search{position:relative;width:100%;max-width:40.71429em;margin:0 auto 1.07143em;overflow:hidden}#jetpack-search{margin:0;padding:11px 16px 11px 16px;width:100%;border:1px solid #c9ced0;border-radius:3px;background:#fff;color:#5c6671;line-height:1.3}#jetpack-search:focus{color:#5c6671;outline:none}#jetpack-search:focus+label{background:transparent;opacity:0}#jetpack-search::-webkit-input-placeholder{color:#a8acae}#jetpack-search :-moz-placeholder{color:#a8acae}#jetpack-search::-moz-placeholder{color:#a8acae}#jetpack-search:-ms-input-placeholder{color:#a8acae}#jetpack-search+label{position:absolute;top:1px;left:1px;bottom:1px;width:48px;color:#abafb1;text-indent:-9999px;pointer-events:none;border-radius:3px;transition:all .2s ease-in-out}#jetpack-search+label:after{content:'\f400';position:absolute;left:11px;text-align:left;top:4px;font-size:1.71429em;font-weight:normal;font-family:"genericons"}.jp-filter{margin-bottom:2.85714em;color:#6f7476}.jp-filter a{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#aaa;font:600 0.92857em/1 "Open Sans", Helvetica, Arial, sans-serif;text-shadow:0 -1px 1px rgba(255,255,255,0.2);background:#eee;border-radius:3px;background-clip:padding-box}.jp-filter a.selected,.jp-filter a:hover,.jp-filter a:focus{color:#efefef;text-shadow:0 -1px 1px rgba(0,0,0,0.2);background:#6f7476}@media (max-width: 530px){.jp-filter a{padding:0.76em 1em}}
3158
- .module{display:block;padding:0.71429em 1.07143em 1em;text-align:right;border:1px solid #dae0e2;background:#fff;box-shadow:0 0 0 rgba(0,0,0,0.03);transition:opacity 2s ease-in}.module:hover{border-color:#8ac9e8;background:#f8fcfe}.module h3{cursor:pointer;margin:0 0 0.5em;color:#1a8dba;font-size:1.14286em;line-height:1.4em;font-weight:700}.module p{margin:0;color:#686f72;font-size:0.85714em}.module:hover,.module:focus{border-color:#8ac9e8;background:#f8fcfe}.module.active{border-color:#2ea2cc;box-shadow:inset -4px 0 0 #2ea2cc}.module.active:hover{border-color:#69bedd;box-shadow:inset -4px 0 0 #69bedd}.module .button,.module .button-primary{margin-top:15px}@media (max-width: 530px){.module .configure,.module .activate{display:block;width:100%;text-align:center}.module .button,.module .button-primary{width:50%}.module .button-primary{line-height:normal;padding:6px 14px;height:auto;font-size:14px}}@media screen and (max-width: 450px){.module .button,.module .button-primary{margin:20px auto 0 auto}.module .button.alignright,.module .button-primary.alignright{float:none}}@media (max-width: 1147px){.cat .module:nth-child(3n+1){margin:.75% 1.5% .75% 0}.cat .module:nth-child(3n - 1){margin-right:0}}@media (max-width: 900px){.cat .module{margin:1% 2% 1% 0}.cat .module:nth-child(2n+1){margin:1% 2% 1% 0}.cat .module:nth-child(2n+0){margin-right:0}}@media (max-width: 530px){.cat .module{margin:5px 0}.cat .module:nth-child(2n+1){margin-right:0}.cat .module:nth-child(2n+0){margin-right:0}}@media (max-width: 900px){.module{margin:1% 2% 1% 0;width:49%}.module:nth-child(3n+1){margin-right:2%}.module:nth-child(2n+1){margin-right:0}}@media (max-width: 530px){.module{margin:5px 0;width:100%}.module:nth-child(3n+1){margin-right:0}.module:nth-child(2n+1){margin-right:0}}
3159
- .new{position:relative}.new:after{content:'NEW';position:absolute;top:-8px;left:-8px;padding-top:10px;width:32px;height:32px;color:#fff;font-size:8px;font-weight:800;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,0.2);background:url("../images/new-badge.svg") center center no-repeat;background-size:100%;border-radius:50%}.paid{display:inline-block;position:relative;top:5px;margin-right:10px;padding:1px 4px 0 6px;height:13px;color:#fff;font:700 10px/1 "Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 0 rgba(0,0,0,0.05);background:#d0d0d0;vertical-align:top}.paid:before,.paid:after{position:absolute;top:0;left:100%;font:normal 14px/14px "genericons"}.paid:before{content:'\f503';color:#d0d0d0;text-shadow:none}.paid:after{content:'\f428';margin-left:-5px;font-size:11px}.rtl .paid:before{content:'\f501'}.load-more{margin:2.71429em 0 6.15385em}.set{display:none}.show.set{display:block}.loading{bottom:50%;position:absolute;top:50%;width:100%}.loading span{color:#999}.modal{background:#fff;position:fixed;top:52px;bottom:20px;left:20px;right:20px;margin-right:160px;display:none;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1);z-index:500}.modal .close{position:absolute;top:0;left:0;font:300 1.71429em "genericons" !important;color:#777;content:'\f405';display:inline-block;padding:0.28571em 0.71429em 0.42857em;z-index:5}.modal .close:hover{background:#eee;opacity:0.8}.modal .close:active{background:#eee;opacity:0.4}.modal #jp-post-flair{display:none}.modal .content-container{position:absolute;top:0;left:0;bottom:0;right:0;overflow:auto;padding:2.14286em}.modal .content{margin:0 auto;max-width:900px;text-align:right}.modal h2{text-align:right;margin-top:0;color:#5d6d74;font:300 32px "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 530px){.modal h2{font-size:26px}}.modal h5{clear:right}.modal p{font-size:1.23077em}.modal footer{position:absolute;right:0;bottom:0;width:100%;padding:12px 20px;border-top:1px solid #ddd;background:#fff;text-align:left}.modal footer ul{margin:0}.modal footer li{display:inline-block;margin:0}.modal .button-secondary,.modal .button-primary:active{vertical-align:baseline}@media (max-width: 900px){.modal{bottom:5%;margin-right:36px;font-size:80%}.modal .content{top:38px}}@media (max-width: 782px){.modal{top:66px;margin-right:0}}@media (max-width: 600px){.modal{top:10px;left:10px;bottom:10px;right:10px}}
3160
- .jp-info-img{float:left;margin:0 30px 30px 0}.jp-info-img img{border:1px solid #ddd;max-width:100%;height:auto}.jp-info-img img:first-child{margin-top:0}@media (max-width: 782px){.jp-info-img{float:none;margin:0 0 15px}}
3161
- .content-container.modal-footer{bottom:53px}.shade{background:#000;bottom:0;cursor:pointer;display:none;right:0;opacity:0.2;position:fixed;left:0;top:0;z-index:11}.entry-title,.page-template-default h1{margin-top:0.61111em;color:#5d6d74;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 530px){.entry-title,.page-template-default h1{font-size:2em}}
3162
- .blog h3,.single h3,.page-template-default h2{margin-top:0.61111em;color:#5d6d74;font:300 1.9em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 530px){.blog h3,.single h3,.page-template-default h2{font-size:1.4em}}
3163
- .page-template-default p{line-height:1.71429em}.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{float:right;width:70%}.footer{margin-top:1.42857em;position:relative;padding:10em 0 4.28571em;text-align:center}.footer:before,.footer:after{content:'';position:absolute;right:0;pointer-events:none}.footer:before{top:0;margin-top:-1px;width:100%;height:195px}.footer:after{bottom:0;width:100%;height:50px;background:url("../images/the-footcloud.svg") center bottom no-repeat;background-size:auto 45px;z-index:1}.footer .download-jetpack{margin-bottom:33px}@media (max-width: 1147px){.footer{padding-top:165px;padding-bottom:0}.footer:before{background-size:160% auto}.footer:after{display:none}.footer ul{float:none;overflow:hidden}}@media (max-width: 900px){.footer{padding-top:146px}}@media (max-width: 782px){.footer{margin-top:0}}@media (max-width: 530px){.footer{margin-top:0;padding-top:135px}}@media (max-width: 320px){.footer{padding-top:76px}}
3164
- .footer nav{max-width:100%}.footer nav a,.footer nav a:visited{padding:4px 6px;color:#999}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#81A844}@media (max-width: 1147px){.footer nav{border:none;padding:0}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#fff}}@media (max-width: 530px){.footer nav li{display:block;float:none;margin:0;text-align:right}.footer nav a{display:block;padding:0 16px;line-height:44px}}
3165
- .primary{padding:25px 15px 10px 15px;border-bottom:1px solid #eee}.secondary-footer{margin:0 auto}.secondary-footer li{margin-left:5px}@media (max-width: 1147px){.secondary-footer{margin:0 30px;padding:8px 15px 30px}}@media (max-width: 530px){.secondary-footer{margin:0;padding:0;border:none;font-weight:400}.secondary-footer a{border-top:1px solid #eee}}
3166
- .footer .a8c-attribution{margin:0;padding:0 6px;color:#bbb;font-size:0.78571em;font-family:"Gill Sans","Gill Sans MT","Open Sans",Helvetica,Arial,sans-serif;text-transform:uppercase}.footer .a8c-attribution a{display:inline-block;position:relative;padding:4px 16px;left:9999px;outline:0}.footer .a8c-attribution a:after{content:'A';position:absolute;top:2px;left:-9999px;height:100%;color:#999;font-size:1.54545em;font-family:"automatticons";text-align:center}.footer .a8c-attribution a:hover:after{-webkit-animation:candy .4s ease-in-out;animation:candy .4s ease-in-out}.secondary{padding:10px 15px 0 15px}.jetpack-message{background:#8eb74e;border:1px solid #73963d;margin:33px auto 0;max-width:90%;position:relative;z-index:2}.jetpack-message.is-opt-in{margin:50px 0 0;max-width:100%;padding:10px 15px;background:#fff;border:0;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);font-size:13px;text-align:center}.subhead .jetpack-message.is-opt-in{margin:0;padding-bottom:0;background:transparent;box-shadow:none}.subhead .jetpack-message.is-opt-in .jp-button,.subhead .jetpack-message.is-opt-in .jp-button--settings{display:inline-block}.jetpack-message.is-opt-in p{color:#3c4549}.jetpack-message.is-opt-in .jp-button,.jetpack-message.is-opt-in .jp-button--settings{margin-top:15px;display:none}.jetpack-message h4{color:#fff;margin:0}.jetpack-message p{color:#fff;margin:0;opacity:0.7}.jetpack-message .squeezer{padding:23px 80px 23px 23px;position:relative;text-align:right}.jetpack-message .squeezer:before{color:#fff;content:'\f418';font-family:'Genericons';font-size:33px;height:33px;right:25px;opacity:0.6;position:absolute;top:23px;top:calc(50% - 22px )}@media (max-width: 530px){.jetpack-message .squeezer{padding:23px}.jetpack-message .squeezer:before{display:none}}.jetpack-message .squeezer a{color:#FFF;border-bottom:1px solid #D5E4BD}.jetpack-message .squeezer a:hover{border-bottom:1px solid #F1F6E9}.jetpack-message.error .squeezer:before,.jetpack-message.jetpack-err .squeezer:before{content:'\f414'}.configure-module .jetpack-message{max-width:100%}.jetpack-modules #site-icon-deprecated .info,.modules h3.icon,.jetpack-modules .info a{width:auto}.jetpack-modules #site-icon-deprecated .info:before,.modules h3.icon:before,.jetpack-modules .info a:before{display:inline-block;position:relative;top:1px;right:-3px;margin-left:2px;opacity:0.8;font:normal 20px "genericons";vertical-align:top}.jetpack-modules .info a:before{margin-top:1px}.latex:before,.jetpack-modules #latex .info a:before{content:'\f408'}.carousel:before,.jetpack-modules #carousel .info a:before{content:'\f102'}.modules h3.contact-form:before,.jetpack-modules #contact-form .info a:before{content:'\f175';font:normal 20px "dashicons"}.modules h3.custom-css:before,.jetpack-modules #custom-css .info a:before{content:'\f100';font:normal 20px "dashicons"}.modules h3.enhanced-distribution:before,.jetpack-modules #enhanced-distribution .info a:before{content:'\f237';font:normal 20px "dashicons"}.modules h3.widgets:before,.jetpack-modules #widgets .info a:before{content:'\f116';font:normal 20px "dashicons"}.modules h3.gravatar-hovercards:before,.jetpack-modules #gravatar-hovercards .info a:before{content:'G';font-family:"automatticons"}.infinite-scroll:before,.jetpack-modules #infinite-scroll .info a:before{content:'\f408'}.comments:before,.jetpack-modules #comments .info a:before{content:'\f108'}.sso:before,.jetpack-modules #sso .info a:before{content:'\f205'}.json-api:before,.jetpack-modules #json-api .info a:before{content:'\f415'}.likes:before,.jetpack-modules #likes .info a:before{content:'\f408'}.markdown:before,.jetpack-modules #markdown .info a:before{content:'\f462'}.minileven:before,.jetpack-modules #minileven .info a:before{content:'\f453'}.manage:before,.jetpack-modules #manage .info a:before{content:'\f205'}.monitor:before,.jetpack-modules #monitor .info a:before{content:'\f468'}.notes:before,.jetpack-modules #notes .info a:before{content:'\f300'}.omnisearch:before,.jetpack-modules #omnisearch .info a:before{content:'\f400'}.photon:before,.jetpack-modules #photon .info a:before{content:'\f403'}.post-by-email:before,.jetpack-modules #post-by-email .info a:before{content:'\f410'}.protect:before,.jetpack-modules #protect .info a:before{content:'\f470';position:relative;top:-1px}.modules h3.publicize:before,.jetpack-modules #publicize .info a:before{content:'\f237';font:normal 20px "dashicons"}.related-posts:before,.jetpack-modules #related-posts .info a:before{content:'\f420'}.sharedaddy:before,.jetpack-modules #sharedaddy .info a:before{content:'\f415'}.shortcodes:before,.jetpack-modules #shortcodes .info a:before{content:'\f100'}.verification-tools:before,.jetpack-modules #verification-tools .info a:before{content:'\f425'}.after-the-deadline:before,.jetpack-modules #after-the-deadline .info a:before{content:'\f411'}.subscriptions:before,.jetpack-modules #subscriptions .info a:before{content:'\f410'}.tiled-gallery:before,.jetpack-modules #tiled-gallery .info a:before{content:'\f103'}.modules h3.vaultpress:before,.jetpack-modules #vaultpress .info a:before{content:'V';font-family:"automatticons"}.videopress:before,.jetpack-modules #videopress .info a:before{content:'\f104'}.modules h3.widget-visibility:before,.jetpack-modules #widget-visibility .info a:before{content:'\f116';font:normal 20px "dashicons"}.stats:before,.jetpack-modules #stats .info a:before{content:'\f205'}.shortlinks:before,.jetpack-modules #shortlinks .info a:before{content:'\f107'}.modules h3.custom-content-types:before,.jetpack-modules #custom-content-types .info a:before{content:'\f498';font:normal 20px "dashicons"}.modules h3.site-icon:before,.jetpack-modules #site-icon .info a:before{content:'\f475'}.jetpack-modules #site-icon-deprecated .info:before{content:'\f475'}@media (max-width: 782px){.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{width:100%}}@media (max-width: 600px){.clouds-sm{display:none}}@media (max-width: 530px){.wrap.inner.jp-support .jp-support-column-left{width:100%}.wrap.inner.jp-support .jp-support-column-left .widget-text{margin-left:0;width:100%}.wrap.inner.jp-support .jp-support-column-right{width:100%}}@media screen and (max-width: 515px){.jp-frame .header-nav{padding-bottom:10px}.jp-frame .header-nav li{line-height:30px}.jp-frame .header-nav .jetpack-logo{width:100%;text-align:center}.jp-frame .header-nav .jetpack-modules{margin:0;width:50%;text-align:left;padding:0 5px}.jp-frame .header-nav .jetpack-modules+.jetpack-modules{text-align:right}.jp-frame .header-nav .jetpack-modules:nth-child(4){text-align:center;margin:0 auto;width:100%}.jp-frame .header-nav .jetpack-modules:nth-child(4) a{padding:0 10px}}@media (max-width: 320px){.jetpack_page_jetpack_modules .wrap{padding:0 0 1em}}
3167
- .page-content.configure{margin-top:0}.configure .frame.top{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}.configure .frame.top.fixed{background:#f9f9f9;border-bottom:1px solid #e9e9e9;padding-right:160px;margin-top:-6px;position:fixed;left:0;top:32px;width:100%;z-index:4;box-shadow:0 2px 2px -2px #eee}@media (max-width: 782px){.configure .frame.top.fixed{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}}@media (max-width: 600px){.configure .frame.top.fixed{top:0}}.configure .frame.top .tablenav.top{float:right}@media (max-width: 900px){.configure .frame.top .tablenav.top .actions{display:block}}@media (max-width: 782px){.configure .frame.top .tablenav.top .actions{margin-top:6px}}
3168
- .jp-frame-top-fixed .configure{padding-top:94px}.filter-search{display:none;float:left;margin-top:10px}@media (max-width: 782px){.filter-search{display:block}}@media (max-width: 530px){.filter-search{display:none}}
3169
- .module-actions.landing-page{float:left;margin-left:15px}.module-actions.landing-page a{font-size:0.6em}.table-bordered.jetpack-modules{border:none;margin-bottom:0}.table-bordered.jetpack-modules tr.jetpack-module th{border-right:0;padding:14px 4px 0}.table-bordered.jetpack-modules tr.jetpack-module th input{display:block}.table-bordered.jetpack-modules tr.jetpack-module:hover .genericon{display:inline-block}.table-bordered.jetpack-modules tr.jetpack-module:hover td .row-actions span a{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module.active th,.table-bordered.jetpack-modules tr.jetpack-module.active td{background:#f7fcfe}.table-bordered.jetpack-modules tr.jetpack-module.active th{border-right:4px solid #2ea2cc;padding-right:0px}.table-bordered.jetpack-modules tr.jetpack-module.active td:first-child{border-right:4px solid #2ea2cc}.table-bordered.jetpack-modules tr.jetpack-module.unavailable{opacity:0.3}.table-bordered.jetpack-modules tr.jetpack-module.unavailable input{display:none}.table-bordered.jetpack-modules tr.jetpack-module#vaultpress{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module.deprecated span{color:#888}.table-bordered.jetpack-modules tr.jetpack-module.deprecated .dep-msg{margin-left:10px;color:#555}.table-bordered.jetpack-modules tr.jetpack-module th,.table-bordered.jetpack-modules tr.jetpack-module td{background:#fff;margin:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.1)}.table-bordered.jetpack-modules tr.jetpack-module td{padding:10px 14px 8px 10px;line-height:25px}.table-bordered.jetpack-modules tr.jetpack-module td:first-child{border-right:4px solid #fff}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{float:left;padding:0 0 1px;visibility:visible}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span{margin-right:5px}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a{opacity:0}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a:focus{opacity:1}@media (max-width: 530px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:none}}@media (max-width: 782px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:block;padding-right:10px;visibility:visible}}.table-bordered.jetpack-modules>thead>tr>th{border:0;vertical-align:middle}.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-left:0}@media (max-width: 782px){.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-right:0}}.table-bordered.jetpack-modules td{background:#fff}.table-bordered.jetpack-modules #doaction{margin-top:0}@media (max-width: 782px){.table-bordered.jetpack-modules #doaction{padding:10px 7px}}.table-bordered.jetpack-modules .checkall{margin-top:1px}.table-bordered.jetpack-modules .filter-search{margin-top:8px}.table-bordered.jetpack-modules .genericon{color:#999;display:none;margin:7px 3px 0}@media (max-width: 900px){.table-bordered.jetpack-modules .genericon{display:inline-block}}.table-bordered.jetpack-modules .med{width:70px}.table-bordered.jetpack-modules .sm{width:30px}@media (max-width: 782px){.table-bordered.jetpack-modules .check-column{width:50px}}
3170
- .fixed-top .check-column{padding:8px 10px 0 10px;width:2.2em}.wrap{margin:0;padding:0 1.5em 1em;overflow:hidden}.wrap h2{font-size:24px;font-weight:400}.wrap .manage-left{float:right;margin:0;padding:0;width:63%}.wrap .manage-left table{width:100%}.wrap .manage-left th{font-weight:400}@media (max-width: 782px){.wrap .manage-left{width:100%}}.wrap .manage-right{margin:0;padding:0;float:left;width:35%;z-index:1}.wrap .manage-right p{font-size:12px;font-weight:bold;color:#bbb;padding-top:2px;text-transform:uppercase;letter-spacing:1px;clear:right}.wrap .manage-right .bumper{margin-right:33px}.wrap .manage-right.show{display:block;overflow-y:auto;overflow-x:hidden;position:absolute;z-index:100000}.wrap .manage-right .search-bar{margin-bottom:18px;max-width:300px}.wrap .manage-right p.search-box{float:none;height:auto;margin-bottom:0;position:relative}.wrap .manage-right p.search-box input[type='search']{padding:0 8px;width:90%;line-height:initial}@media (max-width: 782px){.wrap .manage-right p.search-box input[type='search']{float:right;padding:9px 8px}}.wrap .manage-left p.search-box input[type="submit"]{display:none}.wrap .manage-right .button-group .button{outline:none}.wrap .manage-right .subsubsub{margin:0;padding:0}.wrap .manage-right .subsubsub a{padding:0;line-height:inherit}.wrap .manage-right .subsubsub .current{padding:1px 5px;border-radius:2px;margin-right:-5px;background:#0D72B2;color:#fff}.wrap .manage-right .subsubsub .current .count{color:#BCD7E7;font-weight:200}.wrap .manage-right .subsubsub li{display:block;text-align:right}@media (max-width: 782px){.wrap .manage-right{background:#fff;bottom:0;display:none;min-width:300px;position:fixed;left:0;top:0;z-index:13;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1)}.wrap .manage-right .bumper{margin:13px}.wrap .manage-right .navbar-form{margin:0;padding:0}}
3171
- @media (max-width: 782px){.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):not(.check-column){padding:11px 10px;display:block}.jetpack_page_jetpack_modules #doaction{padding:7px 14px}.jetpack_page_jetpack_modules .fixed-top thead .check-column{padding:28px 10px 0 10px}.jetpack_page_jetpack_modules .filter-search{margin-top:28px}.jetpack_page_jetpack_modules .filter-search .button{padding:7px 14px}.manage-right.show .subsubsub li{padding:5px}}@media (max-width: 650px){.table-bordered.jetpack-modules tr.jetpack-module.deprecated td .row-actions{float:none;padding-right:18px}}@media (max-width: 430px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:none}.table-bordered.jetpack-modules tr.jetpack-module.deprecated td .row-actions{display:block}}.configure-module p{font-size:14px}.configure-module p.success,.configure-module p.error{color:#fff;padding:10px}.configure-module p.success{background-color:#81a844}.configure-module p.error{background-color:#d94f4f}.protect-status p{font-size:16px}.protect-status strong{display:inline-block;margin-top:10px;background:#fff;padding:10px;border:1px #ddd solid;font-size:16px;color:#000;max-width:100%}.protect-status.attn{color:#d94f4f}.protect-status.working{color:#81a844}#non-editable-whitelist{margin-top:15px}.protect-whitelist textarea{width:100%;min-height:150px}#editable-whitelist .whitelist-table{width:100%}.configure-module input[disabled]{opacity:.5}.configure-module input.button-primary{font-weight:bold}.whitelist-table{border-top:1px solid;border-left:1px solid;border-color:#ddd;background-color:#fff}.whitelist-table td,.whitelist-table th{padding:10px;margin:0;border-bottom:1px solid;border-right:1px solid;border-color:#ddd;font-size:14px}.whitelist-table th.heading{font-weight:bold;color:#5d6d74;text-align:right;background-color:#eee}.whitelist-table td.item-actions{border-right:none;text-align:left}.whitelist-table .toolbar{padding:0}.whitelist-table .add-btn{text-align:center;width:10%;border-right:1px #ddd solid}.ip-address,.enter-ip{width:90%;text-align:right;vertical-align:middle}.delete-ip-address{text-align:center;border:0;background:transparent;color:#6f7476;box-shadow:none;font-size:20px;margin:0;padding:0;cursor:pointer;border-radius:2px}.delete-ip-address:hover{background:#eee}.toolbar div{float:right;padding:10px}@media only screen and (min-width: 1100px){#non-editable-whitelist{width:28%;float:left;margin-top:0}.protect-whitelist{width:65%;float:right}}@media only screen and (max-width: 1130px){.enter-ip input[type="text"]{max-width:175px}}@media only screen and (max-width: 1250px) and (min-width: 1065px), (max-width: 730px) and (min-width: 600px){.enter-ip{width:85%}.add-btn{width:15%}}@media only screen and (max-width: 782px){.add-btn{text-align:left}.add-btn .ip-add{margin-top:4px;margin-bottom:3px}}@media only screen and (max-width: 730px){.add-btn{text-align:center}}@media only screen and (max-width: 665px) and (min-width: 600px){.enter-ip input[type="text"]{max-width:165px}}@media only screen and (max-width: 600px){.toolbar div{width:100%}.add-btn{border-top:1px #ddd solid}.enter-ip{text-align:center}.enter-ip strong{display:block;margin-bottom:5px}.enter-ip input[type="text"]{width:100%;max-width:100%}.add-btn input,.enter-ip .button{width:50%;margin:0 auto}.enter-ip .button{margin-top:10px}}@media only screen and (max-width: 400px){.protect-status strong{font-size:12px;overflow:auto}.add-btn input,.enter-ip .button{width:100%}}.my-jetpack-actions{margin:0 0 40px 0}.my-jetpack-actions .j-col{padding:0;text-align:center}.my-jetpack-actions #user-list{height:30px;margin-top:-1px;margin-right:-3px}#jetpack-disconnect-content{display:none;text-align:center}#jetpack-disconnect-content .cancel-disconnect{display:block;margin-top:10px}.connection-details{border:1px #ddd solid}.connection-details.local-user{margin-bottom:10px}.connection-details .user-01,.connection-details .wpuser-02,.connection-details .action-btns{padding:10px}.connection-details .user-01 .button,.connection-details .user-01 select,.connection-details .wpuser-02 .button,.connection-details .wpuser-02 select,.connection-details .action-btns .button,.connection-details .action-btns select{margin-top:5px}.connection-details .wpuser-02{margin-top:10px}.connection-details h3{padding:10px;margin:0;background:#eee;border-bottom:1px #ddd solid;font-size:14px}.jp-user img{margin-left:10px;border-radius:50%}.jp-user div,.wp-user div,.wp-action div{display:inline-block;width:100%}.j-col.jp-user,.j-col.wp-user,.j-col.wp-action{padding:0}.my-jetpack-actions select{max-width:150px}.j-actions .button:nth-child(3){margin-left:5px}.j-row.disconnect{text-align:center}.j-row.disconnect .button{margin:0 auto}a.what-is-primary{color:#b4b9be;margin-right:4px}@media (max-width: 782px){.wp-action{border-top:1px #ddd solid}.wp-action h3{display:none}}@media screen and (max-width: 500px){.connection-details{font-size:11px}.connection-details h3{font-size:12px;padding:5px}.connection-details .user-01,.connection-details .wpuser-02{padding:6px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:200px}.connection-details .action-btns{text-align:center}}@media (max-width: 530px){.connection-details .wpuser-02{margin-top:0;padding:12px}}@media screen and (max-width: 450px){.j-actions .button{width:100%;margin-bottom:5px;text-align:center}.j-actions .button.alignright{float:none}}@media screen and (max-width: 350px){.user-01,.wpuser-02{max-width:100px}}.jp-content .hide{display:none}.jp-content .pointer{cursor:pointer}.jp-content .landing{margin:0 auto;z-index:2;position:relative}.jp-content h1{font:300 2.57143em/1em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;position:relative;z-index:3;width:100%;text-align:center}.jp-content h1.success{color:#81a844}.jp-content .footer{padding-top:0;margin-top:0;background-image:none}.jp-content .footer:before{height:inherit}.jp-content .more-info:before{content:none}.landing .wpcom-connect{min-height:400px}.wpcom-connect .j-col{padding:0}.wpcom-connect .connect-desc{padding-left:25px}.wpcom-connect .connect-btn{text-align:center}.module-grid h2{color:#000;font:300 2.57143em/1em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif}.download-jetpack{margin-top:1em !important}#jump-start-area{margin-top:35px;padding-right:60px;padding-left:60px;background:#fefefe;border:1px #dae0e2 solid;padding-bottom:20px}#jump-start-area #jumpstart-cta,#jump-start-area .jumpstart-desc{padding:0}#jump-start-area p{font-size:14px;line-height:185%}#jump-start-area .spinner{float:none;margin:0 auto;position:absolute;bottom:0;height:100%;width:100%;background-position:50% 56%;background-color:rgba(254,254,254,0.99);display:block;opacity:.9}.jumpstart-message p{padding-left:25px}.jumpstart-desc{text-align:right}#jumpstart-cta{text-align:center}.dismiss-jumpstart{color:#999;font-size:14px}#jumpstart-cta .button,#jumpstart-cta .button-primary{margin:1em;font-size:18px;height:45px !important;padding:8px 15px 1px}#jumpstart-cta .button-primary{display:block;margin:35px 20px 5px 20px}#jp-config-list{position:relative;padding-top:15px;padding-bottom:15px;margin-right:-15px;margin-left:-15px}#jp-config-list .j-col{padding:15px}#jp-config-list strong{display:inline-block}#jp-config-list small{display:block;margin-top:5px;line-height:150%}#jp-config-list .close{position:absolute;top:10px;left:0;text-transform:uppercase;font-weight:bold;display:block;z-index:5}.jp-config-status{text-transform:uppercase;font-size:10px;font-weight:bold;line-height:100%;color:#fff;background:#9fbd72;border-radius:2px;padding:2px 4px;display:inline-block}.miguel{display:none;position:fixed;opacity:.35;bottom:-200px;right:0;z-index:1;-webkit-animation:miguel 3.4s 0s ease-in-out;animation:miguel 3.4s 0s ease-in-out}.miguel:nth-child(2){right:49%;width:120px;height:131px;-webkit-animation-duration:2.4s;animation-duration:2.4s;-webkit-animation-delay:0s;animation-delay:0s}.miguel:nth-child(3){right:23%;width:60px;height:66px;-webkit-animation-duration:4.5s;animation-duration:4.5s;-webkit-animation-delay:0s;animation-delay:0s}@-webkit-keyframes "miguel"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(900px, -900px, 0px);transform:translate3d(900px, -900px, 0px)}}@keyframes "miguel"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(900px, -900px, 0px);transform:translate3d(900px, -900px, 0px)}}@media (max-width: 1147px){.jp-content .landing{padding:0 2em}.jp-content .footer{padding-top:1.5em}}@media (max-width: 782px){#jumpstart-cta .button-primary{margin:10px 0 5px 0}#jump-start-area .spinner{background-position:50% 35%}}@media (max-width: 530px){.jp-content .landing{padding:0 .5em}#jump-start-area{padding:0 1em}.jumpstart-message p{padding-left:0}#jumpstart-cta .button-primary{margin:0 0 5px 0;padding-bottom:10px}.footer .a8c-attribution a:after{top:6px}}.nav-horizontal:before,.features:before,.modules:before,.load-more:before,.nav-horizontal:after,.features:after,.modules:after,.load-more:after{content:"";display:table}.nav-horizontal:after,.features:after,.modules:after,.load-more:after{clear:both}
3172
 
3173
  /*# sourceMappingURL=jetpack-admin.min.css.map */
173
  input,
174
  select,
175
  textarea {
176
+ color: #222;
177
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
178
  font-size: 14px;
179
  line-height: 1.4;
192
 
193
  a {
194
  color: #0d72b2;
195
+ -webkit-transition: color .2s;
196
  transition: color .2s;
197
  text-decoration: none;
198
  }
252
  -webkit-transform: scale(0.3);
253
  transform: scale(0.3);
254
  }
 
255
  60% {
256
  -webkit-transform: scale(1.15);
257
  transform: scale(1.15);
258
  }
 
259
  100% {
260
  -webkit-transform: scale(1);
261
  transform: scale(1);
267
  -webkit-transform: scale(0.3);
268
  transform: scale(0.3);
269
  }
 
270
  60% {
271
  -webkit-transform: scale(1.15);
272
  transform: scale(1.15);
273
  }
 
274
  100% {
275
  -webkit-transform: scale(1);
276
  transform: scale(1);
281
  -webkit-transform: scale(1);
282
  transform: scale(1);
283
  }
 
284
  20% {
285
  -webkit-transform: scale(1.15);
286
  transform: scale(1.15);
287
  }
 
288
  60% {
289
  -webkit-transform: scale(0.95);
290
  transform: scale(0.95);
291
  }
 
292
  100% {
293
  -webkit-transform: scale(1);
294
  transform: scale(1);
299
  -webkit-transform: scale(1);
300
  transform: scale(1);
301
  }
 
302
  20% {
303
  -webkit-transform: scale(1.15);
304
  transform: scale(1.15);
305
  }
 
306
  60% {
307
  -webkit-transform: scale(0.95);
308
  transform: scale(0.95);
309
  }
 
310
  100% {
311
  -webkit-transform: scale(1);
312
  transform: scale(1);
317
  -webkit-transform: translate3d(0px, 0px, 0px);
318
  transform: translate3d(0px, 0px, 0px);
319
  }
 
320
  100% {
321
  -webkit-transform: translate3d(680px, -680px, 0px);
322
  transform: translate3d(680px, -680px, 0px);
327
  -webkit-transform: translate3d(0px, 0px, 0px);
328
  transform: translate3d(0px, 0px, 0px);
329
  }
 
330
  100% {
331
  -webkit-transform: translate3d(680px, -680px, 0px);
332
  transform: translate3d(680px, -680px, 0px);
334
  }
335
  .button,
336
  .download-jetpack {
337
+ -webkit-transition: all .1s ease-in-out;
338
  transition: all .1s ease-in-out;
339
  }
340
 
541
  margin-right: 36px;
542
  }
543
 
 
 
 
 
544
  .jp-content {
545
  background: #f9f9f9;
546
  margin: 0;
718
  text-align: center;
719
  z-index: 1;
720
  background-color: #81a844;
721
+ background-image: -webkit-linear-gradient(top, #81a844, #8eb74e);
722
  background-image: linear-gradient(top, #81a844, #8eb74e);
723
  }
724
  .masthead.hasbutton .flyer {
877
  text-align: center;
878
  z-index: 1;
879
  background-color: #81a844;
880
+ background-image: -webkit-gradient(linear, right top, right bottom, from(#81a844), to(#89b348));
881
+ background-image: -webkit-linear-gradient(top, #81a844, #89b348);
882
  background-image: linear-gradient(top, #81a844, #89b348);
883
  }
884
  .clouds-sm:after {
956
  float: right;
957
  margin: 0 5px 10px;
958
  width: 310px;
959
+ -webkit-transition: all .2s ease-in-out;
960
  transition: all .2s ease-in-out;
961
  }
962
  @media (max-width: 1147px) {
964
  .module {
965
  margin: .75% 1.5% .75% 0;
966
  width: 32.333333%;
967
+ -webkit-transition: none;
968
  transition: none;
969
  }
970
  .feature:nth-child(3n + 1),
1004
  z-index: -1;
1005
  -webkit-transform: translateZ(0);
1006
  transform: translateZ(0);
1007
+ -webkit-transition: all .2s ease-in-out;
1008
  transition: all .2s ease-in-out;
1009
  }
1010
  .feature:hover {
1176
  text-indent: -9999px;
1177
  pointer-events: none;
1178
  border-radius: 3px;
1179
+ -webkit-transition: all .2s ease-in-out;
1180
  transition: all .2s ease-in-out;
1181
  }
1182
  #jetpack-search + label:after {
1223
  border: 1px solid #dae0e2;
1224
  background: #fff;
1225
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.03);
1226
+ -webkit-transition: opacity 2s ease-in;
1227
  transition: opacity 2s ease-in;
1228
  }
1229
  .module:hover {
1627
  height: 195px;
1628
  }
1629
  .footer:after {
1630
+ display: none;
 
 
 
 
 
1631
  }
1632
  .footer .download-jetpack {
1633
  margin-bottom: 33px;
1634
  }
1635
+ @media (min-width: 1147px) {
1636
+ .footer {
1637
+ padding-bottom: 35px;
1638
+ }
1639
+ }
1640
  @media (max-width: 1147px) {
1641
  .footer {
1642
  padding-top: 165px;
1643
  padding-bottom: 0;
1644
+ /*&:after {
1645
+ display: none;
1646
+ }*/
1647
  }
1648
  .footer:before {
1649
  background-size: 160% auto;
1650
  }
 
 
 
1651
  .footer ul {
1652
  float: none;
1653
  overflow: hidden;
1689
  color: #81A844;
1690
  }
1691
  @media (max-width: 1147px) {
 
 
 
 
1692
  .footer nav a:hover, .footer nav a:focus,
1693
  .footer nav a:visited:hover,
1694
  .footer nav a:visited:focus {
1695
+ color: #81a844;
1696
  }
1697
  }
1698
  @media (max-width: 530px) {
1720
  .secondary-footer li {
1721
  margin-left: 5px;
1722
  }
1723
+ @media (min-width: 782px) {
1724
  .secondary-footer {
1725
+ padding: 8px 15px 10px;
1726
+ margin-bottom: 30px;
1727
+ border-bottom: 1px solid #eee;
1728
+ }
1729
+ }
1730
+ @media (min-width: 1147px) {
1731
+ .secondary-footer {
1732
+ margin-bottom: 0;
1733
+ }
1734
+ }
1735
+ @media (max-width: 782px) {
1736
+ .secondary-footer {
1737
+ padding: 8px 15px 8px;
1738
+ border-bottom: none;
1739
  }
1740
  }
1741
  @media (max-width: 530px) {
1757
  font-size: 0.78571em;
1758
  font-family: "Gill Sans", "Gill Sans MT", "Open Sans", Helvetica, Arial, sans-serif;
1759
  text-transform: uppercase;
 
 
 
1760
  }
1761
  .footer .a8c-attribution a {
1762
  display: inline-block;
1781
  animation: candy .4s ease-in-out;
1782
  }
1783
 
1784
+ @media (min-width: 782px) {
1785
+ .secondary {
1786
+ padding: 0 15px 10px 15px;
1787
+ border-bottom: 1px solid #eee;
1788
+ }
1789
+ }
1790
+ @media (min-width: 1147px) {
1791
+ .secondary {
1792
+ padding: 0 15px 10px 15px;
1793
+ border-bottom: none;
1794
+ }
1795
  }
1796
 
1797
  .jetpack-message {
1852
  opacity: 0.6;
1853
  position: absolute;
1854
  top: 23px;
1855
+ top: calc( 50% - 22px );
1856
  }
1857
  @media (max-width: 530px) {
1858
  .jetpack-message .squeezer {
2540
  font-size: 14px;
2541
  }
2542
  .configure-module p.success, .configure-module p.error {
2543
+ color: #fff;
2544
  padding: 10px;
2545
  }
2546
  .configure-module p.success {
2953
  background: #fefefe;
2954
  border: 1px #dae0e2 solid;
2955
  padding-bottom: 20px;
2956
+ text-align: center;
2957
+ }
2958
+ #jump-start-area .connect-btn {
2959
+ text-align: center;
2960
  }
2961
  #jump-start-area #jumpstart-cta,
2962
  #jump-start-area .jumpstart-desc {
2989
 
2990
  #jumpstart-cta {
2991
  text-align: center;
2992
+ display: inline-block;
2993
+ float: none;
2994
  }
2995
 
2996
  .dismiss-jumpstart {
3087
  -webkit-transform: translate3d(0px, 0px, 0px);
3088
  transform: translate3d(0px, 0px, 0px);
3089
  }
 
3090
  100% {
3091
  -webkit-transform: translate3d(900px, -900px, 0px);
3092
  transform: translate3d(900px, -900px, 0px);
3097
  -webkit-transform: translate3d(0px, 0px, 0px);
3098
  transform: translate3d(0px, 0px, 0px);
3099
  }
 
3100
  100% {
3101
  -webkit-transform: translate3d(900px, -900px, 0px);
3102
  transform: translate3d(900px, -900px, 0px);
3103
  }
3104
  }
3105
+ .nux-intro h3 {
3106
+ background: #81a844;
3107
+ color: #fff;
3108
+ font-weight: 600;
3109
+ padding: .75em;
3110
+ margin: 0;
3111
+ }
3112
+ .nux-intro h4 {
3113
+ margin: 0 0 2px 0;
3114
+ }
3115
+ .nux-intro p {
3116
+ text-align: center;
3117
+ font-size: 1.24em;
3118
+ line-height: 175%;
3119
+ }
3120
+ .nux-intro a {
3121
+ -webkit-transition: all .4s ease;
3122
+ transition: all .4s ease;
3123
+ }
3124
+ .nux-intro .j-col {
3125
+ padding: 0 0.5em;
3126
+ }
3127
+ .nux-intro .j-col:first-of-type {
3128
+ padding-right: 0;
3129
+ }
3130
+ .nux-intro .j-col:last-of-type {
3131
+ padding-left: 0;
3132
+ }
3133
+ .nux-intro .nux-in {
3134
+ background: #ececec;
3135
+ -webkit-border-bottom-left-radius: 6px;
3136
+ -webkit-border-bottom-right-radius: 6px;
3137
+ -moz-border-radius-bottomright: 6px;
3138
+ -moz-border-radius-bottomleft: 6px;
3139
+ border-bottom-left-radius: 6px;
3140
+ border-bottom-right-radius: 6px;
3141
+ }
3142
+ .nux-intro .nux-in h3 {
3143
+ font-size: 1.10em;
3144
+ -webkit-border-top-right-radius: 6px;
3145
+ -webkit-border-top-left-radius: 6px;
3146
+ -moz-border-radius-topleft: 6px;
3147
+ -moz-border-radius-topright: 6px;
3148
+ border-top-right-radius: 6px;
3149
+ border-top-left-radius: 6px;
3150
+ }
3151
+ .nux-intro .nux-in h3 .dashicons {
3152
+ float: left;
3153
+ color: #658435;
3154
+ font-size: 1.25em;
3155
+ padding-right: 0;
3156
+ }
3157
+ .nux-intro .nux-in h3 .dashicons:hover {
3158
+ color: #57722e;
3159
+ }
3160
+ .nux-intro .nux-in p {
3161
+ font-size: .9em;
3162
+ line-height: 150%;
3163
+ margin: 0;
3164
+ text-align: right;
3165
+ color: #686f72;
3166
+ }
3167
+ .nux-intro .nux-in .j-row {
3168
+ border-bottom: 1px #f9f9f9 solid;
3169
+ padding: 5px 0;
3170
+ position: relative;
3171
+ min-height: 70px;
3172
+ }
3173
+ .nux-intro .nux-in .j-row:hover {
3174
+ background: #e0e0e0;
3175
+ }
3176
+ .nux-intro .nux-in .unavailable {
3177
+ opacity: 0.5;
3178
+ }
3179
+ .nux-intro .nux-in .unavailable .act {
3180
+ display: none;
3181
+ }
3182
+ .nux-intro .nux-in .paid {
3183
+ top: 4px;
3184
+ margin-right: 12px;
3185
+ }
3186
+ .nux-intro .nux-in .dashicons {
3187
+ color: #81a844;
3188
+ font-size: 1em;
3189
+ position: relative;
3190
+ top: 3px;
3191
+ padding-right: 6px;
3192
+ }
3193
+ .nux-intro .nux-in .dashicons:hover {
3194
+ color: #57722e;
3195
+ }
3196
+ .nux-intro .nux-in .dashicons-external {
3197
+ font-size: 1.5em;
3198
+ top: 2px;
3199
+ padding-right: 3px;
3200
+ }
3201
+ .nux-intro .nux-in .lmore {
3202
+ font-size: 11px;
3203
+ color: #81a844;
3204
+ }
3205
+ .nux-intro .nux-in .lmore:hover {
3206
+ color: #57722e;
3207
+ }
3208
+ .nux-intro .feat.j-col {
3209
+ padding: 10px 10px 10px 2px;
3210
+ }
3211
+ .nux-intro .feat .dashicons {
3212
+ display: none;
3213
+ }
3214
+ .nux-intro .activated .feat .dashicons {
3215
+ display: inline-block;
3216
+ }
3217
+ .nux-intro .act {
3218
+ position: absolute;
3219
+ top: 50%;
3220
+ -ms-transform: translate(0, -50%);
3221
+ -webkit-transform: translate(0, -50%);
3222
+ transform: translate(0, -50%);
3223
+ left: 8px;
3224
+ float: left;
3225
+ }
3226
+ .nux-intro .act.j-col {
3227
+ padding: 5px;
3228
+ text-align: left;
3229
+ }
3230
+ .nux-intro .module-action {
3231
+ text-transform: uppercase;
3232
+ font-size: .85em;
3233
+ font-weight: 600;
3234
+ }
3235
+ .nux-intro .wpcom h3 {
3236
+ background: #0087be;
3237
+ }
3238
+ .nux-intro .wpcom h3 .dashicons {
3239
+ color: #00638b;
3240
+ }
3241
+ .nux-intro .wpcom h3 .dashicons:hover {
3242
+ color: #005172;
3243
+ }
3244
+ .nux-intro .wpcom .j-col {
3245
+ padding: 10px;
3246
+ }
3247
+ .nux-intro .wpcom .goto {
3248
+ text-align: center;
3249
+ padding: 1em;
3250
+ }
3251
+ .nux-intro .wpcom .goto:hover {
3252
+ background: #ececec;
3253
+ }
3254
+ .nux-intro .wpcom .goto .j-col {
3255
+ padding: 0 5px;
3256
+ }
3257
+ .nux-intro .wpcom .goto a {
3258
+ width: 100%;
3259
+ padding: .25em;
3260
+ height: auto;
3261
+ }
3262
+ .nux-intro .wpcom .goto .button {
3263
+ height: auto;
3264
+ min-height: 28px;
3265
+ line-height: 18px;
3266
+ white-space: normal;
3267
+ max-width: 200px;
3268
+ margin-bottom: 0;
3269
+ padding-top: 2px;
3270
+ }
3271
+ .nux-intro .wpcom .goto .feat {
3272
+ position: absolute;
3273
+ top: 50%;
3274
+ -ms-transform: translate(0, -50%);
3275
+ -webkit-transform: translate(0, -50%);
3276
+ transform: translate(0, -50%);
3277
+ }
3278
+ .nux-intro .nux-foot .j-col {
3279
+ padding: 1em;
3280
+ }
3281
+
3282
+ .nux-foot {
3283
+ margin-top: 2em;
3284
+ background: #ececec;
3285
+ border-radius: 6px;
3286
+ }
3287
+ .nux-foot .j-col {
3288
+ min-height: 75px;
3289
+ padding: 1em;
3290
+ }
3291
+ @media (max-width: 650px) {
3292
+ .nux-foot .j-col {
3293
+ width: 100%;
3294
+ }
3295
+ }
3296
+ .nux-foot .j-col + .j-col {
3297
+ border-right: 1px #f9f9f9 solid;
3298
+ }
3299
+ @media (max-width: 650px) {
3300
+ .nux-foot .j-col + .j-col {
3301
+ border-right: none;
3302
+ border-top: 1px #f9f9f9 solid;
3303
+ }
3304
+ }
3305
+ .nux-foot img {
3306
+ float: right;
3307
+ margin-left: 1em;
3308
+ width: 75px;
3309
+ border-radius: 4px;
3310
+ }
3311
+ .nux-foot p {
3312
+ font-size: .9em;
3313
+ text-align: right;
3314
+ font-weight: 600;
3315
+ margin-top: 0;
3316
+ }
3317
+ .nux-foot p + p {
3318
+ font-weight: 400;
3319
+ margin-bottom: 0;
3320
+ }
3321
+ .nux-foot ul {
3322
+ font-size: .9em;
3323
+ margin-bottom: 0;
3324
+ }
3325
+ .nux-foot ul li {
3326
+ margin-bottom: 0;
3327
+ line-height: 175%;
3328
+ }
3329
+
3330
+ .form-toggle[type="checkbox"] {
3331
+ opacity: 0;
3332
+ position: absolute;
3333
+ }
3334
+
3335
+ .form-toggle__switch {
3336
+ position: relative;
3337
+ display: inline-block;
3338
+ border-radius: 12px;
3339
+ -moz-box-sizing: border-box;
3340
+ box-sizing: border-box;
3341
+ padding: 2px;
3342
+ width: 40px;
3343
+ height: 24px;
3344
+ background: #b9b9b9;
3345
+ vertical-align: middle;
3346
+ outline: 0;
3347
+ cursor: pointer;
3348
+ -webkit-transition: all .4s ease;
3349
+ transition: all .4s ease;
3350
+ }
3351
+ .form-toggle__switch:before, .form-toggle__switch:after {
3352
+ position: relative;
3353
+ display: block;
3354
+ content: "";
3355
+ width: 20px;
3356
+ height: 20px;
3357
+ }
3358
+ .form-toggle__switch:after {
3359
+ right: 0;
3360
+ border-radius: 50%;
3361
+ background: #fff;
3362
+ -webkit-transition: all .2s ease;
3363
+ transition: all .2s ease;
3364
+ }
3365
+ .form-toggle__switch:before {
3366
+ display: none;
3367
+ }
3368
+ .form-toggle__switch:hover {
3369
+ background: #bdd597;
3370
+ }
3371
+
3372
+ .form-toggle__label {
3373
+ cursor: pointer;
3374
+ }
3375
+
3376
+ .plugin-action__label {
3377
+ padding-left: 5px;
3378
+ top: -1px;
3379
+ position: relative;
3380
+ color: #8e9598;
3381
+ }
3382
+
3383
+ .activated .plugin-action__label {
3384
+ color: #81a844;
3385
+ }
3386
+
3387
+ .form-toggle:focus + .form-toggle__label .form-toggle__switch,
3388
+ .form-toggle:focus:checked + .form-toggle__label .form-toggle__switch {
3389
+ box-shadow: 0 0 0 2px #0087be;
3390
+ }
3391
+
3392
+ .form-toggle:checked + .form-toggle__label .form-toggle__switch {
3393
+ background: #81a844;
3394
+ }
3395
+ .form-toggle:checked + .form-toggle__label .form-toggle__switch:after {
3396
+ right: 16px;
3397
+ }
3398
+
3399
+ .form-toggle:checked:hover + .form-toggle__label .form-toggle__switch {
3400
+ background: #bdd597;
3401
+ }
3402
+
3403
+ .form-toggle:disabled + .form-toggle__label .form-toggle__switch,
3404
+ .form-toggle:disabled:hover + .form-toggle__label .form-toggle__switch {
3405
+ background: #e9eff3;
3406
+ }
3407
+
3408
+ .form-toggle.is-toggling + .form-toggle__label .form-toggle__switch {
3409
+ background: #81a844;
3410
+ }
3411
+
3412
+ .form-toggle.is-toggling:checked + .form-toggle__label .form-toggle__switch {
3413
+ background: #bdd597;
3414
+ }
3415
+
3416
+ .form-toggle.is-compact + .form-toggle__label .form-toggle__switch {
3417
+ border-radius: 8px;
3418
+ width: 24px;
3419
+ height: 16px;
3420
+ }
3421
+ .form-toggle.is-compact + .form-toggle__label .form-toggle__switch:before, .form-toggle.is-compact + .form-toggle__label .form-toggle__switch:after {
3422
+ width: 12px;
3423
+ height: 12px;
3424
+ }
3425
+
3426
+ .form-toggle.is-compact:checked + .form-toggle__label .form-toggle__switch:after {
3427
+ right: 8px;
3428
+ }
3429
+
3430
  @media (max-width: 1147px) {
3431
  .jp-content .landing {
3432
  padding: 0 2em;
3434
  .jp-content .footer {
3435
  padding-top: 1.5em;
3436
  }
3437
+
3438
+ .nux-intro .main-col {
3439
+ width: 50%;
3440
+ margin-bottom: 2em;
3441
+ }
3442
+ .nux-intro .main-col.wpcom {
3443
+ width: 100%;
3444
+ }
3445
+ .nux-intro .main-col + .main-col {
3446
+ padding-left: 0;
3447
+ }
3448
+ .nux-intro .wpcom {
3449
+ padding: 0;
3450
+ }
3451
+ .nux-intro .wpcom .j-row {
3452
+ width: 50%;
3453
+ float: right;
3454
+ border-bottom: 1px #f9f9f9 solid;
3455
+ border-left: 1px #f9f9f9 solid;
3456
+ }
3457
+ .nux-intro .wpcom .j-row:last-of-type {
3458
+ width: 100%;
3459
+ float: none;
3460
+ clear: both;
3461
+ border: none;
3462
+ border-top: 1px #f9f9f9 solid;
3463
+ position: relative;
3464
+ top: -1px;
3465
+ }
3466
+ .nux-intro .wpcom .goto .feat a {
3467
+ float: right;
3468
+ }
3469
+
3470
+ .nux-foot .j-col {
3471
+ border: none;
3472
+ }
3473
+ .nux-foot img {
3474
+ float: left;
3475
+ margin-left: 0;
3476
+ margin-right: 1em;
3477
+ }
3478
+ }
3479
+ @media (max-width: 900px) {
3480
+ .nux-intro .main-col {
3481
+ width: 100%;
3482
+ padding: 0;
3483
+ margin-bottom: 2em;
3484
+ }
3485
+ .nux-intro .wpcom .j-row {
3486
+ width: 100%;
3487
+ float: none;
3488
+ }
3489
  }
3490
  @media (max-width: 782px) {
3491
  #jumpstart-cta .button-primary {
3496
  background-position: 50% 35%;
3497
  }
3498
  }
3499
+ @media (max-width: 600px) {
3500
+ .nux-intro h1 {
3501
+ font-size: 1.75em;
3502
+ }
3503
+ .nux-intro p {
3504
+ font-size: 1em;
3505
+ }
3506
+ }
3507
  @media (max-width: 530px) {
3508
  .jp-content .landing {
3509
  padding: 0 .5em;
3534
  clear: both;
3535
  }
3536
 
3537
+ /*# sourceMappingURL=jetpack-admin.css.map */
3538
+ .j-row{width:100%;margin:0 auto}.j-row:before,.j-row:after{content:" ";display:table}.j-row:after{clear:both}.j-col{padding:0.85em;width:100%;float:right;position:relative}@media only screen{.j-sm-1{width:8.33333%}.j-sm-2{width:16.66667%}.j-sm-3{width:25%}.j-sm-4{width:33.33333%}.j-sm-5{width:41.66667%}.j-sm-6{width:50%}.j-sm-7{width:58.33333%}.j-sm-8{width:66.66667%}.j-sm-9{width:75%}.j-sm-10{width:83.33333%}.j-sm-11{width:91.66667%}.j-sm-12{width:100%}}@media (min-width: 530px){.j-md-1{width:8.33333%}.j-md-2{width:16.66667%}.j-md-3{width:25%}.j-md-4{width:33.33333%}.j-md-5{width:41.66667%}.j-md-6{width:50%}.j-md-7{width:58.33333%}.j-md-8{width:66.66667%}.j-md-9{width:75%}.j-md-10{width:83.33333%}.j-md-11{width:91.66667%}.j-md-12{width:100%}}@media (min-width: 782px){.j-lrg-1{width:8.33333%}.j-lrg-2{width:16.66667%}.j-lrg-3{width:25%}.j-lrg-4{width:33.33333%}.j-lrg-5{width:41.66667%}.j-lrg-6{width:50%}.j-lrg-7{width:58.33333%}.j-lrg-8{width:66.66667%}.j-lrg-9{width:75%}.j-lrg-10{width:83.33333%}.j-lrg-11{width:91.66667%}.j-lrg-12{width:100%}}body,button,input,select,textarea{color:#222;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.4;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{color:#222;clear:both}a{color:#0d72b2;-webkit-transition:color .2s;transition:color .2s;text-decoration:none}a:visited{color:#0d72b2}a:hover{color:#0f92e5}a:focus{outline:thin dotted}address{margin:0 0 1.5em}abbr[title],acronym{cursor:help}ins{background:#eee;text-decoration:none}dt{font-weight:700}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}img{vertical-align:middle}@-webkit-keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}@keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}.button,.download-jetpack{-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.jp-button,.jp-button--settings{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#efefef;font:800 0.9285714286em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 -1px 1px rgba(0,0,0,0.2);background:#6f7476;border-radius:3px}.jp-button:visited,.jp-button--settings:visited{color:#efefef}.jp-button:hover,.jp-button--settings:hover,.jp-button:focus,.jp-button--settings:focus{color:#fff;background:#57972d}.jp-button:active,.jp-button--settings:active{background:#57972d;opacity:0.8}.jp-button--settings{background:#93b45f;color:#e8eedf}.jp-button--settings:visited{color:#e8eedf}.jp-button--settings:hover,.jp-button--settings:focus{background:#9fbd72;color:#fff}.jp-button--settings.current{background:#3c6621;color:#fff;box-shadow:inset 0 2px 0 #365A1F, inset 0 1px 3px #3c6621}.download-jetpack{display:inline-block;position:relative;padding:0.64286em 0.85714em 0.53571em;color:#fff;font:400 20px/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif;background:#518d2a;z-index:3;border-radius:6px;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:visited{color:#fff}.download-jetpack:hover,.download-jetpack:focus{color:#fff;background:#57972d;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:active{top:6px;box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.4)}.download-jetpack:active:after{top:-6px}.download-jetpack:before{content:'';display:inline-block;position:relative;top:-2px;margin-left:13px;width:30px;height:30px;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%}.download-jetpack:after{content:'';position:absolute;top:0;right:0;width:100%;height:100%}@media (max-width: 1147px){.download-jetpack{font-size:1.28571em}.download-jetpack:before{top:-1px;width:23px;height:23px}}@media (max-width: 900px){.download-jetpack:active{top:0}}@media (max-width: 530px){.download-jetpack{font-size:1.21429em;font-weight:600}.download-jetpack:before{width:19px;height:19px;margin-left:9px}}#searchsubmit{display:inline-block;border:none;position:relative;padding:0.71429em 1.5em;color:#efefef;font:800 0.8em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 -1px 1px rgba(0,0,0,0.2);background:#6f7476;outline:none;border-radius:3px}#searchsubmit:visited{color:#efefef}#searchsubmit:hover,#searchsubmit:focus{color:#fff;background:#2aa0d5}#searchsubmit:active{opacity:0.7}@font-face{font-family:'automatticons';src:url("../_inc/fonts/automatticons/automatticons.eot");src:url("../_inc/fonts/automatticons/automatticons.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/automatticons/automatticons.woff") format("woff"),url("../_inc/fonts/automatticons/automatticons.ttf") format("truetype"),url("../_inc/fonts/automatticons/automatticons.svg#automatticonsregular") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.eot");src:url("../_inc/fonts/jetpack/jetpack.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/jetpack/jetpack.woff") format("woff"),url("../_inc/fonts/jetpack/jetpack.ttf") format("truetype"),url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg");font-weight:normal;font-style:normal}@media screen and (-webkit-min-device-pixel-ratio: 0){@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg")}}.nav-horizontal a{display:inline-block}.nav-horizontal li{position:relative;float:right}.nav-horizontal ul{margin:0;padding:0}*,*:before,*:after{-moz-box-sizing:border-box;box-sizing:border-box}::-moz-selection{background:#91bd51;color:#fff;text-shadow:none}::selection{background:#91bd51;color:#fff;text-shadow:none}#wpbody-content{padding-bottom:0}#wpcontent{margin-right:160px;padding:0}ul#adminmenu a.toplevel_page_jetpack:after{border-left-color:#81a844}.folded #wpcontent{margin-right:36px}.jp-content{background:#f9f9f9;margin:0;height:auto;min-height:100%;width:100%;width:100%;-webkit-font-smoothing:antialiased}.jp-content .wrapper{background:#f9f9f9}@media (max-width: 900px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-right:36px;padding-right:0}}@media (max-width: 782px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-right:0}}@media (max-width: 782px){.configure .frame.top.fixed{padding-right:0}}.wrap.inner,.page-content{max-width:950px;margin:0 auto}.wrap.inner li,.page-content li{line-height:23px}@media (max-width: 530px){.page-content{margin-top:0}}@media (max-width: 1147px){.wrap.inner{background:#f9f9f9;padding:15px}}@media (max-width: 530px){.wrap.inner{margin-top:1.71429em}}.jetpack_page_jetpack_modules .header-nav{margin:0}.jetpack_page_jetpack_modules .page-content{max-width:1200px;min-height:500px;margin:0}.page-content.about{position:relative;z-index:10}@media (max-width: 1147px){.page-content.about{background:#f9f9f9;padding:15px}}@media (max-width: 1147px){.page-content.configure{background:#f9f9f9}}.footer nav{max-width:550px;margin:0 auto}.header{right:0;left:0;background:#81a844}.header-nav li{line-height:60px}.header-nav a{padding:0 0.71429em;line-height:24px}.header-nav .jetpack-logo a{display:inline-block;position:relative;width:214px;margin-left:6px;background:url(../images/jetpack-logo.png) center center no-repeat;background:url(../images/jetpack-logo.svg) center center no-repeat,none;background-size:183px auto;color:#fff;line-height:60px;font-weight:normal}.header-nav .jetpack-logo a span{text-indent:-9999px;visibility:hidden}.header-nav .jetpack-logo a:before{content:'';position:absolute;top:0;right:0;width:100%;height:100%;background-size:183px 32px}.header-nav .jetpack-modules+.jetpack-modules{margin-right:15px}.main-nav{float:right}.main-nav li{margin:0}@media (max-width: 900px){.main-nav{font-size:13px}}.user-nav{float:left}.user-nav li{margin:0}.jetpack-pagestyles #screen-meta{margin:0}.jetpack-pagestyles #screen-meta-links .screen-meta-toggle{z-index:2}.jetpack-pagestyles #screen-options-link-wrap,.jetpack-pagestyles #contextual-help-link-wrap{border:none}.jetpack-pagestyles .update-nag{display:none}.masthead{position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:-webkit-linear-gradient(top, #81a844, #8eb74e);background-image:linear-gradient(top, #81a844, #8eb74e)}.masthead.hasbutton .flyer{bottom:-270px}.masthead.hasbutton .subhead{margin-top:175px}@media (max-width: 530px){.masthead.hasbutton .subhead{margin-top:105px;padding:0}}.masthead h1,.masthead h2{margin:0 auto}.masthead h1{padding:2.5em 0 1.11111em;max-width:21.94444em;color:#fff;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;position:relative;text-shadow:0 -1px 1px rgba(0,0,0,0.12);z-index:3}.masthead h1+.flyby{margin-top:180px}@media (max-width: 1147px){.masthead h1{padding-top:1.83333em;font-size:2.14286em}}@media (max-width: 782px){.masthead h1{max-width:600px;font-size:28px}}@media (max-width: 530px){.masthead h1{margin:0 15px;padding:31px 0 15px 0;font-size:21px;font-weight:400}}.jetpack-connected .masthead h1{margin-bottom:33px;max-width:600px}.flyby{position:relative;max-width:1200px;margin:0 auto}@media (max-width: 900px){.flyby{display:none}}.flyer{position:absolute;bottom:-200px;right:4%;z-index:1;-webkit-animation:flyer 3.4s 2s ease-in-out;animation:flyer 3.4s 2s ease-in-out}.flyer:nth-child(2){right:49%;width:120px;height:131px;-webkit-animation-delay:4.6s;animation-delay:4.6s;-webkit-animation-duration:2.4s;animation-duration:2.4s}.flyer:nth-child(3){right:23%;width:60px;height:66px;-webkit-animation-delay:5.8s;animation-delay:5.8s;-webkit-animation-duration:4.5s;animation-duration:4.5s}.subhead{position:relative;margin-top:105px;padding:4em 0;background:#f9f9f9;z-index:2}.subhead h2{max-width:460px;color:#5d6d74;font:400 1.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 900px){.subhead h2{max-width:428px;font-size:20px}}@media (max-width: 530px){.subhead h2{display:none}}.subhead:after{content:'';position:absolute;bottom:100%;right:0;margin-bottom:-1px;width:100%;height:228px;background:url("../images/the-cloud.svg") center bottom repeat-x;pointer-events:none;z-index:-1}@media (max-width: 1147px){.subhead{margin-top:122px;padding:70px 0 49px}.subhead:after{background-size:160% auto}}@media (max-width: 900px){.subhead{margin-top:122px;padding:70px 0 49px}}@media (max-width: 530px){.subhead{margin-top:83px;padding:47px 15px 39px}}.clouds-sm{height:100px;position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:-webkit-gradient(linear, right top, right bottom, from(#81a844), to(#89b348));background-image:-webkit-linear-gradient(top, #81a844, #89b348);background-image:linear-gradient(top, #81a844, #89b348)}.clouds-sm:after{content:'';position:absolute;bottom:0;right:0;margin-bottom:-1px;width:100%;height:137px;background:url("../images/the-cloud-sm.svg") center bottom repeat-x;pointer-events:none;z-index:2}@media (max-width: 530px){.clouds-sm{height:90px}}.featured{border-top:1px solid #d6d6d6;border-bottom:1px solid #d6d6d6;background:#fff;position:relative;padding:2.0em 1em 4.6em 1em;text-align:center;z-index:1}.featured:before{content:"";display:block;position:absolute;top:0;height:100%;z-index:-1}.featured .features,.featured .modules{margin:0 auto;display:inline-block}@media (max-width: 530px){.featured{display:none}}.featured h2,.module-grid h2{margin-top:1em;color:#5d6d74;font:300 2em/1em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-align:center}@media (max-width: 900px){.featured h2,.module-grid h2{font-size:30px}}@media (max-width: 782px){.featured h2,.module-grid h2{font-size:28px}}.features,.modules{margin:0 -5px}.feature,.module{position:relative;float:right;margin:0 5px 10px;width:310px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}@media (max-width: 1147px){.feature,.module{margin:.75% 1.5% .75% 0;width:32.333333%;-webkit-transition:none;transition:none}.feature:nth-child(3n+1),.module:nth-child(3n+1){margin-right:0}.feature:hover,.module:hover{top:0;box-shadow:none}}.feature{-webkit-transform:translateZ(0);transform:translateZ(0)}.feature h3{margin:0 0 0.58824em;color:#697b84;font-size:1.21429em;line-height:1em;font-weight:800}.feature p{margin:0;color:#6e818a}.feature:before{content:'';position:absolute;bottom:0;right:0;width:100%;height:10px;background:rgba(0,0,0,0.02);z-index:-1;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.feature:hover{-webkit-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px)}.feature:hover h3{color:#1a8dba}.feature:hover .feature-img{border:1px solid #ccc;border-bottom:none}.feature:hover .no-border{border:none}.feature:hover:before{-webkit-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px)}@media (max-width: 1147px){.feature:hover h3{color:#6e818a}.feature:hover .feature-img{border:1px solid #ddd;border-bottom:none}.feature:hover .no-border{border:none}}.feature .feature-img{padding-top:52%;width:100%;height:auto;border:1px solid #ddd;border-bottom:none}.feature .feature-img.custom-css{background:url("../images/custom-css.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.custom-css{background-image:url("../images/custom-css@2x.jpg")}}.feature .feature-img.wordpress-connect{background:url("../images/wordpress-connect.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-connect{background-image:url("../images/wordpress-connect@2x.jpg")}}.feature .feature-img.wordpress-stats{background:url("../images/wordpress-stats.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-stats{background-image:url("../images/wordpress-stats@2x.jpg")}}.feature .feature-img.no-border{border:none;padding-bottom:1px}.feature-description{display:block;padding:1em 1.07143em 1.07143em;border:1px solid #ddd;background:#f5f5f5}.feature:hover .feature-description{background:#fff;border-color:#ccc}@media (max-width: 1147px){.feature:hover .feature-description{border:1px solid #ddd;background:#f5f5f5}}@media (max-width: 900px){.feature-description{min-height:115px}}.cat{clear:both;margin-bottom:23px}.cat h3{font-size:24px;font-weight:300;margin:0 6px 13px 0;text-align:right}.cat .clear{clear:both}.module-grid{text-align:center}.module-grid h2{margin:1em 0}@media (max-width: 530px){.module-grid h2{padding-top:16px;margin-top:0;font-size:25px}}#module-search{position:relative;width:100%;max-width:40.71429em;margin:0 auto 1.07143em;overflow:hidden}#jetpack-search{margin:0;padding:11px 16px 11px 16px;width:100%;border:1px solid #c9ced0;border-radius:3px;background:#fff;color:#5c6671;line-height:1.3}#jetpack-search:focus{color:#5c6671;outline:none}#jetpack-search:focus+label{background:transparent;opacity:0}#jetpack-search::-webkit-input-placeholder{color:#a8acae}#jetpack-search :-moz-placeholder{color:#a8acae}#jetpack-search::-moz-placeholder{color:#a8acae}#jetpack-search:-ms-input-placeholder{color:#a8acae}#jetpack-search+label{position:absolute;top:1px;left:1px;bottom:1px;width:48px;color:#abafb1;text-indent:-9999px;pointer-events:none;border-radius:3px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}#jetpack-search+label:after{content:'\f400';position:absolute;left:11px;text-align:left;top:4px;font-size:1.71429em;font-weight:normal;font-family:"genericons"}.jp-filter{margin-bottom:2.85714em;color:#6f7476}.jp-filter a{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#aaa;font:600 0.92857em/1 "Open Sans", Helvetica, Arial, sans-serif;text-shadow:0 -1px 1px rgba(255,255,255,0.2);background:#eee;border-radius:3px;background-clip:padding-box}.jp-filter a.selected,.jp-filter a:hover,.jp-filter a:focus{color:#efefef;text-shadow:0 -1px 1px rgba(0,0,0,0.2);background:#6f7476}@media (max-width: 530px){.jp-filter a{padding:0.76em 1em}}.module{display:block;padding:0.71429em 1.07143em 1em;text-align:right;border:1px solid #dae0e2;background:#fff;box-shadow:0 0 0 rgba(0,0,0,0.03);-webkit-transition:opacity 2s ease-in;transition:opacity 2s ease-in}.module:hover{border-color:#8ac9e8;background:#f8fcfe}.module h3{cursor:pointer;margin:0 0 0.5em;color:#1a8dba;font-size:1.14286em;line-height:1.4em;font-weight:700}.module p{margin:0;color:#686f72;font-size:0.85714em}.module:hover,.module:focus{border-color:#8ac9e8;background:#f8fcfe}.module.active{border-color:#2ea2cc;box-shadow:inset -4px 0 0 #2ea2cc}.module.active:hover{border-color:#69bedd;box-shadow:inset -4px 0 0 #69bedd}.module .button,.module .button-primary{margin-top:15px}@media (max-width: 530px){.module .configure,.module .activate{display:block;width:100%;text-align:center}.module .button,.module .button-primary{width:50%}.module .button-primary{line-height:normal;padding:6px 14px;height:auto;font-size:14px}}@media screen and (max-width: 450px){.module .button,.module .button-primary{margin:20px auto 0 auto}.module .button.alignright,.module .button-primary.alignright{float:none}}@media (max-width: 1147px){.cat .module:nth-child(3n+1){margin:.75% 1.5% .75% 0}.cat .module:nth-child(3n - 1){margin-right:0}}@media (max-width: 900px){.cat .module{margin:1% 2% 1% 0}.cat .module:nth-child(2n+1){margin:1% 2% 1% 0}.cat .module:nth-child(2n+0){margin-right:0}}@media (max-width: 530px){.cat .module{margin:5px 0}.cat .module:nth-child(2n+1){margin-right:0}.cat .module:nth-child(2n+0){margin-right:0}}@media (max-width: 900px){.module{margin:1% 2% 1% 0;width:49%}.module:nth-child(3n+1){margin-right:2%}.module:nth-child(2n+1){margin-right:0}}@media (max-width: 530px){.module{margin:5px 0;width:100%}.module:nth-child(3n+1){margin-right:0}.module:nth-child(2n+1){margin-right:0}}.new{position:relative}.new:after{content:'NEW';position:absolute;top:-8px;left:-8px;padding-top:10px;width:32px;height:32px;color:#fff;font-size:8px;font-weight:800;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,0.2);background:url("../images/new-badge.svg") center center no-repeat;background-size:100%;border-radius:50%}.paid{display:inline-block;position:relative;top:5px;margin-right:10px;padding:1px 4px 0 6px;height:13px;color:#fff;font:700 10px/1 "Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 0 rgba(0,0,0,0.05);background:#d0d0d0;vertical-align:top}.paid:before,.paid:after{position:absolute;top:0;left:100%;font:normal 14px/14px "genericons"}.paid:before{content:'\f503';color:#d0d0d0;text-shadow:none}.paid:after{content:'\f428';margin-left:-5px;font-size:11px}.rtl .paid:before{content:'\f501'}.load-more{margin:2.71429em 0 6.15385em}.set{display:none}.show.set{display:block}.loading{bottom:50%;position:absolute;top:50%;width:100%}.loading span{color:#999}.modal{background:#fff;position:fixed;top:52px;bottom:20px;left:20px;right:20px;margin-right:160px;display:none;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1);z-index:500}.modal .close{position:absolute;top:0;left:0;font:300 1.71429em "genericons" !important;color:#777;content:'\f405';display:inline-block;padding:0.28571em 0.71429em 0.42857em;z-index:5}.modal .close:hover{background:#eee;opacity:0.8}.modal .close:active{background:#eee;opacity:0.4}.modal #jp-post-flair{display:none}.modal .content-container{position:absolute;top:0;left:0;bottom:0;right:0;overflow:auto;padding:2.14286em}.modal .content{margin:0 auto;max-width:900px;text-align:right}.modal h2{text-align:right;margin-top:0;color:#5d6d74;font:300 32px "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 530px){.modal h2{font-size:26px}}.modal h5{clear:right}.modal p{font-size:1.23077em}.modal footer{position:absolute;right:0;bottom:0;width:100%;padding:12px 20px;border-top:1px solid #ddd;background:#fff;text-align:left}.modal footer ul{margin:0}.modal footer li{display:inline-block;margin:0}.modal .button-secondary,.modal .button-primary:active{vertical-align:baseline}@media (max-width: 900px){.modal{bottom:5%;margin-right:36px;font-size:80%}.modal .content{top:38px}}@media (max-width: 782px){.modal{top:66px;margin-right:0}}@media (max-width: 600px){.modal{top:10px;left:10px;bottom:10px;right:10px}}.jp-info-img{float:left;margin:0 30px 30px 0}.jp-info-img img{border:1px solid #ddd;max-width:100%;height:auto}.jp-info-img img:first-child{margin-top:0}@media (max-width: 782px){.jp-info-img{float:none;margin:0 0 15px}}.content-container.modal-footer{bottom:53px}.shade{background:#000;bottom:0;cursor:pointer;display:none;right:0;opacity:0.2;position:fixed;left:0;top:0;z-index:11}.entry-title,.page-template-default h1{margin-top:0.61111em;color:#5d6d74;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 530px){.entry-title,.page-template-default h1{font-size:2em}}.blog h3,.single h3,.page-template-default h2{margin-top:0.61111em;color:#5d6d74;font:300 1.9em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 530px){.blog h3,.single h3,.page-template-default h2{font-size:1.4em}}.page-template-default p{line-height:1.71429em}.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{float:right;width:70%}.footer{margin-top:1.42857em;position:relative;padding:10em 0 4.28571em;text-align:center}.footer:before,.footer:after{content:'';position:absolute;right:0;pointer-events:none}.footer:before{top:0;margin-top:-1px;width:100%;height:195px}.footer:after{display:none}.footer .download-jetpack{margin-bottom:33px}@media (min-width: 1147px){.footer{padding-bottom:35px}}@media (max-width: 1147px){.footer{padding-top:165px;padding-bottom:0}.footer:before{background-size:160% auto}.footer ul{float:none;overflow:hidden}}@media (max-width: 900px){.footer{padding-top:146px}}@media (max-width: 782px){.footer{margin-top:0}}@media (max-width: 530px){.footer{margin-top:0;padding-top:135px}}@media (max-width: 320px){.footer{padding-top:76px}}.footer nav{max-width:100%}.footer nav a,.footer nav a:visited{padding:4px 6px;color:#999}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#81A844}@media (max-width: 1147px){.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#81a844}}@media (max-width: 530px){.footer nav li{display:block;float:none;margin:0;text-align:right}.footer nav a{display:block;padding:0 16px;line-height:44px}}.primary{padding:25px 15px 10px 15px;border-bottom:1px solid #eee}.secondary-footer{margin:0 auto}.secondary-footer li{margin-left:5px}@media (min-width: 782px){.secondary-footer{padding:8px 15px 10px;margin-bottom:30px;border-bottom:1px solid #eee}}@media (min-width: 1147px){.secondary-footer{margin-bottom:0}}@media (max-width: 782px){.secondary-footer{padding:8px 15px 8px;border-bottom:none}}@media (max-width: 530px){.secondary-footer{margin:0;padding:0;border:none;font-weight:400}.secondary-footer a{border-top:1px solid #eee}}.footer .a8c-attribution{margin:0;padding:0 6px;color:#bbb;font-size:0.78571em;font-family:"Gill Sans","Gill Sans MT","Open Sans",Helvetica,Arial,sans-serif;text-transform:uppercase}.footer .a8c-attribution a{display:inline-block;position:relative;padding:4px 16px;left:9999px;outline:0}.footer .a8c-attribution a:after{content:'A';position:absolute;top:2px;left:-9999px;height:100%;color:#999;font-size:1.54545em;font-family:"automatticons";text-align:center}.footer .a8c-attribution a:hover:after{-webkit-animation:candy .4s ease-in-out;animation:candy .4s ease-in-out}@media (min-width: 782px){.secondary{padding:0 15px 10px 15px;border-bottom:1px solid #eee}}@media (min-width: 1147px){.secondary{padding:0 15px 10px 15px;border-bottom:none}}.jetpack-message{background:#8eb74e;border:1px solid #73963d;margin:33px auto 0;max-width:90%;position:relative;z-index:2}.jetpack-message.is-opt-in{margin:50px 0 0;max-width:100%;padding:10px 15px;background:#fff;border:0;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);font-size:13px;text-align:center}.subhead .jetpack-message.is-opt-in{margin:0;padding-bottom:0;background:transparent;box-shadow:none}.subhead .jetpack-message.is-opt-in .jp-button,.subhead .jetpack-message.is-opt-in .jp-button--settings{display:inline-block}.jetpack-message.is-opt-in p{color:#3c4549}.jetpack-message.is-opt-in .jp-button,.jetpack-message.is-opt-in .jp-button--settings{margin-top:15px;display:none}.jetpack-message h4{color:#fff;margin:0}.jetpack-message p{color:#fff;margin:0;opacity:0.7}.jetpack-message .squeezer{padding:23px 80px 23px 23px;position:relative;text-align:right}.jetpack-message .squeezer:before{color:#fff;content:'\f418';font-family:'Genericons';font-size:33px;height:33px;right:25px;opacity:0.6;position:absolute;top:23px;top:calc( 50% - 22px )}@media (max-width: 530px){.jetpack-message .squeezer{padding:23px}.jetpack-message .squeezer:before{display:none}}.jetpack-message .squeezer a{color:#FFF;border-bottom:1px solid #D5E4BD}.jetpack-message .squeezer a:hover{border-bottom:1px solid #F1F6E9}.jetpack-message.error .squeezer:before,.jetpack-message.jetpack-err .squeezer:before{content:'\f414'}.configure-module .jetpack-message{max-width:100%}.jetpack-modules #site-icon-deprecated .info,.modules h3.icon,.jetpack-modules .info a{width:auto}.jetpack-modules #site-icon-deprecated .info:before,.modules h3.icon:before,.jetpack-modules .info a:before{display:inline-block;position:relative;top:1px;right:-3px;margin-left:2px;opacity:0.8;font:normal 20px "genericons";vertical-align:top}.jetpack-modules .info a:before{margin-top:1px}.latex:before,.jetpack-modules #latex .info a:before{content:'\f408'}.carousel:before,.jetpack-modules #carousel .info a:before{content:'\f102'}.modules h3.contact-form:before,.jetpack-modules #contact-form .info a:before{content:'\f175';font:normal 20px "dashicons"}.modules h3.custom-css:before,.jetpack-modules #custom-css .info a:before{content:'\f100';font:normal 20px "dashicons"}.modules h3.enhanced-distribution:before,.jetpack-modules #enhanced-distribution .info a:before{content:'\f237';font:normal 20px "dashicons"}.modules h3.widgets:before,.jetpack-modules #widgets .info a:before{content:'\f116';font:normal 20px "dashicons"}.modules h3.gravatar-hovercards:before,.jetpack-modules #gravatar-hovercards .info a:before{content:'G';font-family:"automatticons"}.infinite-scroll:before,.jetpack-modules #infinite-scroll .info a:before{content:'\f408'}.comments:before,.jetpack-modules #comments .info a:before{content:'\f108'}.sso:before,.jetpack-modules #sso .info a:before{content:'\f205'}.json-api:before,.jetpack-modules #json-api .info a:before{content:'\f415'}.likes:before,.jetpack-modules #likes .info a:before{content:'\f408'}.markdown:before,.jetpack-modules #markdown .info a:before{content:'\f462'}.minileven:before,.jetpack-modules #minileven .info a:before{content:'\f453'}.manage:before,.jetpack-modules #manage .info a:before{content:'\f205'}.monitor:before,.jetpack-modules #monitor .info a:before{content:'\f468'}.notes:before,.jetpack-modules #notes .info a:before{content:'\f300'}.omnisearch:before,.jetpack-modules #omnisearch .info a:before{content:'\f400'}.photon:before,.jetpack-modules #photon .info a:before{content:'\f403'}.post-by-email:before,.jetpack-modules #post-by-email .info a:before{content:'\f410'}.protect:before,.jetpack-modules #protect .info a:before{content:'\f470';position:relative;top:-1px}.modules h3.publicize:before,.jetpack-modules #publicize .info a:before{content:'\f237';font:normal 20px "dashicons"}.related-posts:before,.jetpack-modules #related-posts .info a:before{content:'\f420'}.sharedaddy:before,.jetpack-modules #sharedaddy .info a:before{content:'\f415'}.shortcodes:before,.jetpack-modules #shortcodes .info a:before{content:'\f100'}.verification-tools:before,.jetpack-modules #verification-tools .info a:before{content:'\f425'}.after-the-deadline:before,.jetpack-modules #after-the-deadline .info a:before{content:'\f411'}.subscriptions:before,.jetpack-modules #subscriptions .info a:before{content:'\f410'}.tiled-gallery:before,.jetpack-modules #tiled-gallery .info a:before{content:'\f103'}.modules h3.vaultpress:before,.jetpack-modules #vaultpress .info a:before{content:'V';font-family:"automatticons"}.videopress:before,.jetpack-modules #videopress .info a:before{content:'\f104'}.modules h3.widget-visibility:before,.jetpack-modules #widget-visibility .info a:before{content:'\f116';font:normal 20px "dashicons"}.stats:before,.jetpack-modules #stats .info a:before{content:'\f205'}.shortlinks:before,.jetpack-modules #shortlinks .info a:before{content:'\f107'}.modules h3.custom-content-types:before,.jetpack-modules #custom-content-types .info a:before{content:'\f498';font:normal 20px "dashicons"}.modules h3.site-icon:before,.jetpack-modules #site-icon .info a:before{content:'\f475'}.jetpack-modules #site-icon-deprecated .info:before{content:'\f475'}@media (max-width: 782px){.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{width:100%}}@media (max-width: 600px){.clouds-sm{display:none}}@media (max-width: 530px){.wrap.inner.jp-support .jp-support-column-left{width:100%}.wrap.inner.jp-support .jp-support-column-left .widget-text{margin-left:0;width:100%}.wrap.inner.jp-support .jp-support-column-right{width:100%}}@media screen and (max-width: 515px){.jp-frame .header-nav{padding-bottom:10px}.jp-frame .header-nav li{line-height:30px}.jp-frame .header-nav .jetpack-logo{width:100%;text-align:center}.jp-frame .header-nav .jetpack-modules{margin:0;width:50%;text-align:left;padding:0 5px}.jp-frame .header-nav .jetpack-modules+.jetpack-modules{text-align:right}.jp-frame .header-nav .jetpack-modules:nth-child(4){text-align:center;margin:0 auto;width:100%}.jp-frame .header-nav .jetpack-modules:nth-child(4) a{padding:0 10px}}@media (max-width: 320px){.jetpack_page_jetpack_modules .wrap{padding:0 0 1em}}.page-content.configure{margin-top:0}.configure .frame.top{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}.configure .frame.top.fixed{background:#f9f9f9;border-bottom:1px solid #e9e9e9;padding-right:160px;margin-top:-6px;position:fixed;left:0;top:32px;width:100%;z-index:4;box-shadow:0 2px 2px -2px #eee}@media (max-width: 782px){.configure .frame.top.fixed{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}}@media (max-width: 600px){.configure .frame.top.fixed{top:0}}.configure .frame.top .tablenav.top{float:right}@media (max-width: 900px){.configure .frame.top .tablenav.top .actions{display:block}}@media (max-width: 782px){.configure .frame.top .tablenav.top .actions{margin-top:6px}}.jp-frame-top-fixed .configure{padding-top:94px}.filter-search{display:none;float:left;margin-top:10px}@media (max-width: 782px){.filter-search{display:block}}@media (max-width: 530px){.filter-search{display:none}}.module-actions.landing-page{float:left;margin-left:15px}.module-actions.landing-page a{font-size:0.6em}.table-bordered.jetpack-modules{border:none;margin-bottom:0}.table-bordered.jetpack-modules tr.jetpack-module th{border-right:0;padding:14px 4px 0}.table-bordered.jetpack-modules tr.jetpack-module th input{display:block}.table-bordered.jetpack-modules tr.jetpack-module:hover .genericon{display:inline-block}.table-bordered.jetpack-modules tr.jetpack-module:hover td .row-actions span a{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module.active th,.table-bordered.jetpack-modules tr.jetpack-module.active td{background:#f7fcfe}.table-bordered.jetpack-modules tr.jetpack-module.active th{border-right:4px solid #2ea2cc;padding-right:0px}.table-bordered.jetpack-modules tr.jetpack-module.active td:first-child{border-right:4px solid #2ea2cc}.table-bordered.jetpack-modules tr.jetpack-module.unavailable{opacity:0.3}.table-bordered.jetpack-modules tr.jetpack-module.unavailable input{display:none}.table-bordered.jetpack-modules tr.jetpack-module#vaultpress{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module.deprecated span{color:#888}.table-bordered.jetpack-modules tr.jetpack-module.deprecated .dep-msg{margin-left:10px;color:#555}.table-bordered.jetpack-modules tr.jetpack-module th,.table-bordered.jetpack-modules tr.jetpack-module td{background:#fff;margin:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.1)}.table-bordered.jetpack-modules tr.jetpack-module td{padding:10px 14px 8px 10px;line-height:25px}.table-bordered.jetpack-modules tr.jetpack-module td:first-child{border-right:4px solid #fff}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{float:left;padding:0 0 1px;visibility:visible}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span{margin-right:5px}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a{opacity:0}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a:focus{opacity:1}@media (max-width: 530px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:none}}@media (max-width: 782px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:block;padding-right:10px;visibility:visible}}.table-bordered.jetpack-modules>thead>tr>th{border:0;vertical-align:middle}.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-left:0}@media (max-width: 782px){.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-right:0}}.table-bordered.jetpack-modules td{background:#fff}.table-bordered.jetpack-modules #doaction{margin-top:0}@media (max-width: 782px){.table-bordered.jetpack-modules #doaction{padding:10px 7px}}.table-bordered.jetpack-modules .checkall{margin-top:1px}.table-bordered.jetpack-modules .filter-search{margin-top:8px}.table-bordered.jetpack-modules .genericon{color:#999;display:none;margin:7px 3px 0}@media (max-width: 900px){.table-bordered.jetpack-modules .genericon{display:inline-block}}.table-bordered.jetpack-modules .med{width:70px}.table-bordered.jetpack-modules .sm{width:30px}@media (max-width: 782px){.table-bordered.jetpack-modules .check-column{width:50px}}.fixed-top .check-column{padding:8px 10px 0 10px;width:2.2em}.wrap{margin:0;padding:0 1.5em 1em;overflow:hidden}.wrap h2{font-size:24px;font-weight:400}.wrap .manage-left{float:right;margin:0;padding:0;width:63%}.wrap .manage-left table{width:100%}.wrap .manage-left th{font-weight:400}@media (max-width: 782px){.wrap .manage-left{width:100%}}.wrap .manage-right{margin:0;padding:0;float:left;width:35%;z-index:1}.wrap .manage-right p{font-size:12px;font-weight:bold;color:#bbb;padding-top:2px;text-transform:uppercase;letter-spacing:1px;clear:right}.wrap .manage-right .bumper{margin-right:33px}.wrap .manage-right.show{display:block;overflow-y:auto;overflow-x:hidden;position:absolute;z-index:100000}.wrap .manage-right .search-bar{margin-bottom:18px;max-width:300px}.wrap .manage-right p.search-box{float:none;height:auto;margin-bottom:0;position:relative}.wrap .manage-right p.search-box input[type='search']{padding:0 8px;width:90%;line-height:initial}@media (max-width: 782px){.wrap .manage-right p.search-box input[type='search']{float:right;padding:9px 8px}}.wrap .manage-left p.search-box input[type="submit"]{display:none}.wrap .manage-right .button-group .button{outline:none}.wrap .manage-right .subsubsub{margin:0;padding:0}.wrap .manage-right .subsubsub a{padding:0;line-height:inherit}.wrap .manage-right .subsubsub .current{padding:1px 5px;border-radius:2px;margin-right:-5px;background:#0D72B2;color:#fff}.wrap .manage-right .subsubsub .current .count{color:#BCD7E7;font-weight:200}.wrap .manage-right .subsubsub li{display:block;text-align:right}@media (max-width: 782px){.wrap .manage-right{background:#fff;bottom:0;display:none;min-width:300px;position:fixed;left:0;top:0;z-index:13;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1)}.wrap .manage-right .bumper{margin:13px}.wrap .manage-right .navbar-form{margin:0;padding:0}}@media (max-width: 782px){.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):not(.check-column){padding:11px 10px;display:block}.jetpack_page_jetpack_modules #doaction{padding:7px 14px}.jetpack_page_jetpack_modules .fixed-top thead .check-column{padding:28px 10px 0 10px}.jetpack_page_jetpack_modules .filter-search{margin-top:28px}.jetpack_page_jetpack_modules .filter-search .button{padding:7px 14px}.manage-right.show .subsubsub li{padding:5px}}@media (max-width: 650px){.table-bordered.jetpack-modules tr.jetpack-module.deprecated td .row-actions{float:none;padding-right:18px}}@media (max-width: 430px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:none}.table-bordered.jetpack-modules tr.jetpack-module.deprecated td .row-actions{display:block}}.configure-module p{font-size:14px}.configure-module p.success,.configure-module p.error{color:#fff;padding:10px}.configure-module p.success{background-color:#81a844}.configure-module p.error{background-color:#d94f4f}.protect-status p{font-size:16px}.protect-status strong{display:inline-block;margin-top:10px;background:#fff;padding:10px;border:1px #ddd solid;font-size:16px;color:#000;max-width:100%}.protect-status.attn{color:#d94f4f}.protect-status.working{color:#81a844}#non-editable-whitelist{margin-top:15px}.protect-whitelist textarea{width:100%;min-height:150px}#editable-whitelist .whitelist-table{width:100%}.configure-module input[disabled]{opacity:.5}.configure-module input.button-primary{font-weight:bold}.whitelist-table{border-top:1px solid;border-left:1px solid;border-color:#ddd;background-color:#fff}.whitelist-table td,.whitelist-table th{padding:10px;margin:0;border-bottom:1px solid;border-right:1px solid;border-color:#ddd;font-size:14px}.whitelist-table th.heading{font-weight:bold;color:#5d6d74;text-align:right;background-color:#eee}.whitelist-table td.item-actions{border-right:none;text-align:left}.whitelist-table .toolbar{padding:0}.whitelist-table .add-btn{text-align:center;width:10%;border-right:1px #ddd solid}.ip-address,.enter-ip{width:90%;text-align:right;vertical-align:middle}.delete-ip-address{text-align:center;border:0;background:transparent;color:#6f7476;box-shadow:none;font-size:20px;margin:0;padding:0;cursor:pointer;border-radius:2px}.delete-ip-address:hover{background:#eee}.toolbar div{float:right;padding:10px}@media only screen and (min-width: 1100px){#non-editable-whitelist{width:28%;float:left;margin-top:0}.protect-whitelist{width:65%;float:right}}@media only screen and (max-width: 1130px){.enter-ip input[type="text"]{max-width:175px}}@media only screen and (max-width: 1250px) and (min-width: 1065px), (max-width: 730px) and (min-width: 600px){.enter-ip{width:85%}.add-btn{width:15%}}@media only screen and (max-width: 782px){.add-btn{text-align:left}.add-btn .ip-add{margin-top:4px;margin-bottom:3px}}@media only screen and (max-width: 730px){.add-btn{text-align:center}}@media only screen and (max-width: 665px) and (min-width: 600px){.enter-ip input[type="text"]{max-width:165px}}@media only screen and (max-width: 600px){.toolbar div{width:100%}.add-btn{border-top:1px #ddd solid}.enter-ip{text-align:center}.enter-ip strong{display:block;margin-bottom:5px}.enter-ip input[type="text"]{width:100%;max-width:100%}.add-btn input,.enter-ip .button{width:50%;margin:0 auto}.enter-ip .button{margin-top:10px}}@media only screen and (max-width: 400px){.protect-status strong{font-size:12px;overflow:auto}.add-btn input,.enter-ip .button{width:100%}}.my-jetpack-actions{margin:0 0 40px 0}.my-jetpack-actions .j-col{padding:0;text-align:center}.my-jetpack-actions #user-list{height:30px;margin-top:-1px;margin-right:-3px}#jetpack-disconnect-content{display:none;text-align:center}#jetpack-disconnect-content .cancel-disconnect{display:block;margin-top:10px}.connection-details{border:1px #ddd solid}.connection-details.local-user{margin-bottom:10px}.connection-details .user-01,.connection-details .wpuser-02,.connection-details .action-btns{padding:10px}.connection-details .user-01 .button,.connection-details .user-01 select,.connection-details .wpuser-02 .button,.connection-details .wpuser-02 select,.connection-details .action-btns .button,.connection-details .action-btns select{margin-top:5px}.connection-details .wpuser-02{margin-top:10px}.connection-details h3{padding:10px;margin:0;background:#eee;border-bottom:1px #ddd solid;font-size:14px}.jp-user img{margin-left:10px;border-radius:50%}.jp-user div,.wp-user div,.wp-action div{display:inline-block;width:100%}.j-col.jp-user,.j-col.wp-user,.j-col.wp-action{padding:0}.my-jetpack-actions select{max-width:150px}.j-actions .button:nth-child(3){margin-left:5px}.j-row.disconnect{text-align:center}.j-row.disconnect .button{margin:0 auto}a.what-is-primary{color:#b4b9be;margin-right:4px}@media (max-width: 782px){.wp-action{border-top:1px #ddd solid}.wp-action h3{display:none}}@media screen and (max-width: 500px){.connection-details{font-size:11px}.connection-details h3{font-size:12px;padding:5px}.connection-details .user-01,.connection-details .wpuser-02{padding:6px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:200px}.connection-details .action-btns{text-align:center}}@media (max-width: 530px){.connection-details .wpuser-02{margin-top:0;padding:12px}}@media screen and (max-width: 450px){.j-actions .button{width:100%;margin-bottom:5px;text-align:center}.j-actions .button.alignright{float:none}}@media screen and (max-width: 350px){.user-01,.wpuser-02{max-width:100px}}.jp-content .hide{display:none}.jp-content .pointer{cursor:pointer}.jp-content .landing{margin:0 auto;z-index:2;position:relative}.jp-content h1{font:300 2.57143em/1em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;position:relative;z-index:3;width:100%;text-align:center}.jp-content h1.success{color:#81a844}.jp-content .footer{padding-top:0;margin-top:0;background-image:none}.jp-content .footer:before{height:inherit}.jp-content .more-info:before{content:none}.landing .wpcom-connect{min-height:400px}.wpcom-connect .j-col{padding:0}.wpcom-connect .connect-desc{padding-left:25px}.wpcom-connect .connect-btn{text-align:center}.module-grid h2{color:#000;font:300 2.57143em/1em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif}.download-jetpack{margin-top:1em !important}#jump-start-area{margin-top:35px;padding-right:60px;padding-left:60px;background:#fefefe;border:1px #dae0e2 solid;padding-bottom:20px;text-align:center}#jump-start-area .connect-btn{text-align:center}#jump-start-area #jumpstart-cta,#jump-start-area .jumpstart-desc{padding:0}#jump-start-area p{font-size:14px;line-height:185%}#jump-start-area .spinner{float:none;margin:0 auto;position:absolute;bottom:0;height:100%;width:100%;background-position:50% 56%;background-color:rgba(254,254,254,0.99);display:block;opacity:.9}.jumpstart-message p{padding-left:25px}.jumpstart-desc{text-align:right}#jumpstart-cta{text-align:center;display:inline-block;float:none}.dismiss-jumpstart{color:#999;font-size:14px}#jumpstart-cta .button,#jumpstart-cta .button-primary{margin:1em;font-size:18px;height:45px !important;padding:8px 15px 1px}#jumpstart-cta .button-primary{display:block;margin:35px 20px 5px 20px}#jp-config-list{position:relative;padding-top:15px;padding-bottom:15px;margin-right:-15px;margin-left:-15px}#jp-config-list .j-col{padding:15px}#jp-config-list strong{display:inline-block}#jp-config-list small{display:block;margin-top:5px;line-height:150%}#jp-config-list .close{position:absolute;top:10px;left:0;text-transform:uppercase;font-weight:bold;display:block;z-index:5}.jp-config-status{text-transform:uppercase;font-size:10px;font-weight:bold;line-height:100%;color:#fff;background:#9fbd72;border-radius:2px;padding:2px 4px;display:inline-block}.miguel{display:none;position:fixed;opacity:.35;bottom:-200px;right:0;z-index:1;-webkit-animation:miguel 3.4s 0s ease-in-out;animation:miguel 3.4s 0s ease-in-out}.miguel:nth-child(2){right:49%;width:120px;height:131px;-webkit-animation-duration:2.4s;animation-duration:2.4s;-webkit-animation-delay:0s;animation-delay:0s}.miguel:nth-child(3){right:23%;width:60px;height:66px;-webkit-animation-duration:4.5s;animation-duration:4.5s;-webkit-animation-delay:0s;animation-delay:0s}@-webkit-keyframes "miguel"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(900px, -900px, 0px);transform:translate3d(900px, -900px, 0px)}}@keyframes "miguel"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(900px, -900px, 0px);transform:translate3d(900px, -900px, 0px)}}.nux-intro h3{background:#81a844;color:#fff;font-weight:600;padding:.75em;margin:0}.nux-intro h4{margin:0 0 2px 0}.nux-intro p{text-align:center;font-size:1.24em;line-height:175%}.nux-intro a{-webkit-transition:all .4s ease;transition:all .4s ease}.nux-intro .j-col{padding:0 0.5em}.nux-intro .j-col:first-of-type{padding-right:0}.nux-intro .j-col:last-of-type{padding-left:0}.nux-intro .nux-in{background:#ececec;-webkit-border-bottom-left-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;border-bottom-right-radius:6px}.nux-intro .nux-in h3{font-size:1.10em;-webkit-border-top-right-radius:6px;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;border-top-left-radius:6px}.nux-intro .nux-in h3 .dashicons{float:left;color:#658435;font-size:1.25em;padding-right:0}.nux-intro .nux-in h3 .dashicons:hover{color:#57722e}.nux-intro .nux-in p{font-size:.9em;line-height:150%;margin:0;text-align:right;color:#686f72}.nux-intro .nux-in .j-row{border-bottom:1px #f9f9f9 solid;padding:5px 0;position:relative;min-height:70px}.nux-intro .nux-in .j-row:hover{background:#e0e0e0}.nux-intro .nux-in .unavailable{opacity:0.5}.nux-intro .nux-in .unavailable .act{display:none}.nux-intro .nux-in .paid{top:4px;margin-right:12px}.nux-intro .nux-in .dashicons{color:#81a844;font-size:1em;position:relative;top:3px;padding-right:6px}.nux-intro .nux-in .dashicons:hover{color:#57722e}.nux-intro .nux-in .dashicons-external{font-size:1.5em;top:2px;padding-right:3px}.nux-intro .nux-in .lmore{font-size:11px;color:#81a844}.nux-intro .nux-in .lmore:hover{color:#57722e}.nux-intro .feat.j-col{padding:10px 10px 10px 2px}.nux-intro .feat .dashicons{display:none}.nux-intro .activated .feat .dashicons{display:inline-block}.nux-intro .act{position:absolute;top:50%;-ms-transform:translate(0, -50%);-webkit-transform:translate(0, -50%);transform:translate(0, -50%);left:8px;float:left}.nux-intro .act.j-col{padding:5px;text-align:left}.nux-intro .module-action{text-transform:uppercase;font-size:.85em;font-weight:600}.nux-intro .wpcom h3{background:#0087be}.nux-intro .wpcom h3 .dashicons{color:#00638b}.nux-intro .wpcom h3 .dashicons:hover{color:#005172}.nux-intro .wpcom .j-col{padding:10px}.nux-intro .wpcom .goto{text-align:center;padding:1em}.nux-intro .wpcom .goto:hover{background:#ececec}.nux-intro .wpcom .goto .j-col{padding:0 5px}.nux-intro .wpcom .goto a{width:100%;padding:.25em;height:auto}.nux-intro .wpcom .goto .button{height:auto;min-height:28px;line-height:18px;white-space:normal;max-width:200px;margin-bottom:0;padding-top:2px}.nux-intro .wpcom .goto .feat{position:absolute;top:50%;-ms-transform:translate(0, -50%);-webkit-transform:translate(0, -50%);transform:translate(0, -50%)}.nux-intro .nux-foot .j-col{padding:1em}.nux-foot{margin-top:2em;background:#ececec;border-radius:6px}.nux-foot .j-col{min-height:75px;padding:1em}@media (max-width: 650px){.nux-foot .j-col{width:100%}}.nux-foot .j-col+.j-col{border-right:1px #f9f9f9 solid}@media (max-width: 650px){.nux-foot .j-col+.j-col{border-right:none;border-top:1px #f9f9f9 solid}}.nux-foot img{float:right;margin-left:1em;width:75px;border-radius:4px}.nux-foot p{font-size:.9em;text-align:right;font-weight:600;margin-top:0}.nux-foot p+p{font-weight:400;margin-bottom:0}.nux-foot ul{font-size:.9em;margin-bottom:0}.nux-foot ul li{margin-bottom:0;line-height:175%}.form-toggle[type="checkbox"]{opacity:0;position:absolute}.form-toggle__switch{position:relative;display:inline-block;border-radius:12px;-moz-box-sizing:border-box;box-sizing:border-box;padding:2px;width:40px;height:24px;background:#b9b9b9;vertical-align:middle;outline:0;cursor:pointer;-webkit-transition:all .4s ease;transition:all .4s ease}.form-toggle__switch:before,.form-toggle__switch:after{position:relative;display:block;content:"";width:20px;height:20px}.form-toggle__switch:after{right:0;border-radius:50%;background:#fff;-webkit-transition:all .2s ease;transition:all .2s ease}.form-toggle__switch:before{display:none}.form-toggle__switch:hover{background:#bdd597}.form-toggle__label{cursor:pointer}.plugin-action__label{padding-left:5px;top:-1px;position:relative;color:#8e9598}.activated .plugin-action__label{color:#81a844}.form-toggle:focus+.form-toggle__label .form-toggle__switch,.form-toggle:focus:checked+.form-toggle__label .form-toggle__switch{box-shadow:0 0 0 2px #0087be}.form-toggle:checked+.form-toggle__label .form-toggle__switch{background:#81a844}.form-toggle:checked+.form-toggle__label .form-toggle__switch:after{right:16px}.form-toggle:checked:hover+.form-toggle__label .form-toggle__switch{background:#bdd597}.form-toggle:disabled+.form-toggle__label .form-toggle__switch,.form-toggle:disabled:hover+.form-toggle__label .form-toggle__switch{background:#e9eff3}.form-toggle.is-toggling+.form-toggle__label .form-toggle__switch{background:#81a844}.form-toggle.is-toggling:checked+.form-toggle__label .form-toggle__switch{background:#bdd597}.form-toggle.is-compact+.form-toggle__label .form-toggle__switch{border-radius:8px;width:24px;height:16px}.form-toggle.is-compact+.form-toggle__label .form-toggle__switch:before,.form-toggle.is-compact+.form-toggle__label .form-toggle__switch:after{width:12px;height:12px}.form-toggle.is-compact:checked+.form-toggle__label .form-toggle__switch:after{right:8px}@media (max-width: 1147px){.jp-content .landing{padding:0 2em}.jp-content .footer{padding-top:1.5em}.nux-intro .main-col{width:50%;margin-bottom:2em}.nux-intro .main-col.wpcom{width:100%}.nux-intro .main-col+.main-col{padding-left:0}.nux-intro .wpcom{padding:0}.nux-intro .wpcom .j-row{width:50%;float:right;border-bottom:1px #f9f9f9 solid;border-left:1px #f9f9f9 solid}.nux-intro .wpcom .j-row:last-of-type{width:100%;float:none;clear:both;border:none;border-top:1px #f9f9f9 solid;position:relative;top:-1px}.nux-intro .wpcom .goto .feat a{float:right}.nux-foot .j-col{border:none}.nux-foot img{float:left;margin-left:0;margin-right:1em}}@media (max-width: 900px){.nux-intro .main-col{width:100%;padding:0;margin-bottom:2em}.nux-intro .wpcom .j-row{width:100%;float:none}}@media (max-width: 782px){#jumpstart-cta .button-primary{margin:10px 0 5px 0}#jump-start-area .spinner{background-position:50% 35%}}@media (max-width: 600px){.nux-intro h1{font-size:1.75em}.nux-intro p{font-size:1em}}@media (max-width: 530px){.jp-content .landing{padding:0 .5em}#jump-start-area{padding:0 1em}.jumpstart-message p{padding-left:0}#jumpstart-cta .button-primary{margin:0 0 5px 0;padding-bottom:10px}.footer .a8c-attribution a:after{top:6px}}.nav-horizontal:before,.features:before,.modules:before,.load-more:before,.nav-horizontal:after,.features:after,.modules:after,.load-more:after{content:"";display:table}.nav-horizontal:after,.features:after,.modules:after,.load-more:after{clear:both}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3539
 
3540
  /*# sourceMappingURL=jetpack-admin.min.css.map */
css/jetpack-admin-rtl.min.css CHANGED
@@ -1,34 +1,3 @@
1
- .j-row{width:100%;margin:0 auto}.j-row:before,.j-row:after{content:" ";display:table}.j-row:after{clear:both}.j-col{padding:0.85em;width:100%;float:right;position:relative}@media only screen{.j-sm-1{width:8.33333%}.j-sm-2{width:16.66667%}.j-sm-3{width:25%}.j-sm-4{width:33.33333%}.j-sm-5{width:41.66667%}.j-sm-6{width:50%}.j-sm-7{width:58.33333%}.j-sm-8{width:66.66667%}.j-sm-9{width:75%}.j-sm-10{width:83.33333%}.j-sm-11{width:91.66667%}.j-sm-12{width:100%}}@media (min-width: 530px){.j-md-1{width:8.33333%}.j-md-2{width:16.66667%}.j-md-3{width:25%}.j-md-4{width:33.33333%}.j-md-5{width:41.66667%}.j-md-6{width:50%}.j-md-7{width:58.33333%}.j-md-8{width:66.66667%}.j-md-9{width:75%}.j-md-10{width:83.33333%}.j-md-11{width:91.66667%}.j-md-12{width:100%}}@media (min-width: 782px){.j-lrg-1{width:8.33333%}.j-lrg-2{width:16.66667%}.j-lrg-3{width:25%}.j-lrg-4{width:33.33333%}.j-lrg-5{width:41.66667%}.j-lrg-6{width:50%}.j-lrg-7{width:58.33333%}.j-lrg-8{width:66.66667%}.j-lrg-9{width:75%}.j-lrg-10{width:83.33333%}.j-lrg-11{width:91.66667%}.j-lrg-12{width:100%}}body,button,input,select,textarea{color:#222;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.4;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{color:#222;clear:both}a{color:#0d72b2;transition:color .2s;text-decoration:none}a:visited{color:#0d72b2}a:hover{color:#0f92e5}a:focus{outline:thin dotted}address{margin:0 0 1.5em}abbr[title],acronym{cursor:help}ins{background:#eee;text-decoration:none}dt{font-weight:700}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}img{vertical-align:middle}@-webkit-keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}@keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}.button,.download-jetpack{transition:all .1s ease-in-out}.jp-button,.jp-button--settings{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#efefef;font:800 0.9285714286em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 -1px 1px rgba(0,0,0,0.2);background:#6f7476;border-radius:3px}.jp-button:visited,.jp-button--settings:visited{color:#efefef}.jp-button:hover,.jp-button--settings:hover,.jp-button:focus,.jp-button--settings:focus{color:#fff;background:#57972d}.jp-button:active,.jp-button--settings:active{background:#57972d;opacity:0.8}.jp-button--settings{background:#93b45f;color:#e8eedf}.jp-button--settings:visited{color:#e8eedf}.jp-button--settings:hover,.jp-button--settings:focus{background:#9fbd72;color:#fff}.jp-button--settings.current{background:#3c6621;color:#fff;box-shadow:inset 0 2px 0 #365A1F, inset 0 1px 3px #3c6621}.download-jetpack{display:inline-block;position:relative;padding:0.64286em 0.85714em 0.53571em;color:#fff;font:400 20px/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif;background:#518d2a;z-index:3;border-radius:6px;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:visited{color:#fff}.download-jetpack:hover,.download-jetpack:focus{color:#fff;background:#57972d;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:active{top:6px;box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.4)}.download-jetpack:active:after{top:-6px}.download-jetpack:before{content:'';display:inline-block;position:relative;top:-2px;margin-left:13px;width:30px;height:30px;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%}.download-jetpack:after{content:'';position:absolute;top:0;right:0;width:100%;height:100%}@media (max-width: 1147px){.download-jetpack{font-size:1.28571em}.download-jetpack:before{top:-1px;width:23px;height:23px}}@media (max-width: 900px){.download-jetpack:active{top:0}}@media (max-width: 530px){.download-jetpack{font-size:1.21429em;font-weight:600}.download-jetpack:before{width:19px;height:19px;margin-left:9px}}
2
- #searchsubmit{display:inline-block;border:none;position:relative;padding:0.71429em 1.5em;color:#efefef;font:800 0.8em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 -1px 1px rgba(0,0,0,0.2);background:#6f7476;outline:none;border-radius:3px}#searchsubmit:visited{color:#efefef}#searchsubmit:hover,#searchsubmit:focus{color:#fff;background:#2aa0d5}#searchsubmit:active{opacity:0.7}@font-face{font-family:'automatticons';src:url("../_inc/fonts/automatticons/automatticons.eot");src:url("../_inc/fonts/automatticons/automatticons.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/automatticons/automatticons.woff") format("woff"),url("../_inc/fonts/automatticons/automatticons.ttf") format("truetype"),url("../_inc/fonts/automatticons/automatticons.svg#automatticonsregular") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.eot");src:url("../_inc/fonts/jetpack/jetpack.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/jetpack/jetpack.woff") format("woff"),url("../_inc/fonts/jetpack/jetpack.ttf") format("truetype"),url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg");font-weight:normal;font-style:normal}@media screen and (-webkit-min-device-pixel-ratio: 0){@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg")}}.nav-horizontal a{display:inline-block}.nav-horizontal li{position:relative;float:right}.nav-horizontal ul{margin:0;padding:0}*,*:before,*:after{-moz-box-sizing:border-box;box-sizing:border-box}::-moz-selection{background:#91bd51;color:#fff;text-shadow:none}::selection{background:#91bd51;color:#fff;text-shadow:none}#wpbody-content{padding-bottom:0}#wpcontent{margin-right:160px;padding:0}ul#adminmenu a.toplevel_page_jetpack:after{border-left-color:#81a844}.folded #wpcontent{margin-right:36px}#wpfooter{display:none}.jp-content{background:#f9f9f9;margin:0;height:auto;min-height:100%;width:100%;width:100%;-webkit-font-smoothing:antialiased}.jp-content .wrapper{background:#f9f9f9}@media (max-width: 900px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-right:36px;padding-right:0}}@media (max-width: 782px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-right:0}}
3
- @media (max-width: 782px){.configure .frame.top.fixed{padding-right:0}}
4
- .wrap.inner,.page-content{max-width:950px;margin:0 auto}.wrap.inner li,.page-content li{line-height:23px}@media (max-width: 530px){.page-content{margin-top:0}}
5
- @media (max-width: 1147px){.wrap.inner{background:#f9f9f9;padding:15px}}@media (max-width: 530px){.wrap.inner{margin-top:1.71429em}}
6
- .jetpack_page_jetpack_modules .header-nav{margin:0}.jetpack_page_jetpack_modules .page-content{max-width:1200px;min-height:500px;margin:0}.page-content.about{position:relative;z-index:10}@media (max-width: 1147px){.page-content.about{background:#f9f9f9;padding:15px}}
7
- @media (max-width: 1147px){.page-content.configure{background:#f9f9f9}}
8
- .footer nav{max-width:550px;margin:0 auto}.header{right:0;left:0;background:#81a844}.header-nav li{line-height:60px}.header-nav a{padding:0 0.71429em;line-height:24px}.header-nav .jetpack-logo a{display:inline-block;position:relative;width:214px;margin-left:6px;background:url(../images/jetpack-logo.png) center center no-repeat;background:url(../images/jetpack-logo.svg) center center no-repeat,none;background-size:183px auto;color:#fff;line-height:60px;font-weight:normal}.header-nav .jetpack-logo a span{text-indent:-9999px;visibility:hidden}.header-nav .jetpack-logo a:before{content:'';position:absolute;top:0;right:0;width:100%;height:100%;background-size:183px 32px}.header-nav .jetpack-modules+.jetpack-modules{margin-right:15px}.main-nav{float:right}.main-nav li{margin:0}@media (max-width: 900px){.main-nav{font-size:13px}}
9
- .user-nav{float:left}.user-nav li{margin:0}.jetpack-pagestyles #screen-meta{margin:0}.jetpack-pagestyles #screen-meta-links .screen-meta-toggle{z-index:2}.jetpack-pagestyles #screen-options-link-wrap,.jetpack-pagestyles #contextual-help-link-wrap{border:none}.jetpack-pagestyles .update-nag{display:none}.masthead{position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:linear-gradient(top, #81a844, #8eb74e)}.masthead.hasbutton .flyer{bottom:-270px}.masthead.hasbutton .subhead{margin-top:175px}@media (max-width: 530px){.masthead.hasbutton .subhead{margin-top:105px;padding:0}}.masthead h1,.masthead h2{margin:0 auto}.masthead h1{padding:2.5em 0 1.11111em;max-width:21.94444em;color:#fff;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;position:relative;text-shadow:0 -1px 1px rgba(0,0,0,0.12);z-index:3}.masthead h1+.flyby{margin-top:180px}@media (max-width: 1147px){.masthead h1{padding-top:1.83333em;font-size:2.14286em}}@media (max-width: 782px){.masthead h1{max-width:600px;font-size:28px}}@media (max-width: 530px){.masthead h1{margin:0 15px;padding:31px 0 15px 0;font-size:21px;font-weight:400}}
10
- .jetpack-connected .masthead h1{margin-bottom:33px;max-width:600px}.flyby{position:relative;max-width:1200px;margin:0 auto}@media (max-width: 900px){.flyby{display:none}}
11
- .flyer{position:absolute;bottom:-200px;right:4%;z-index:1;-webkit-animation:flyer 3.4s 2s ease-in-out;animation:flyer 3.4s 2s ease-in-out}.flyer:nth-child(2){right:49%;width:120px;height:131px;-webkit-animation-delay:4.6s;animation-delay:4.6s;-webkit-animation-duration:2.4s;animation-duration:2.4s}.flyer:nth-child(3){right:23%;width:60px;height:66px;-webkit-animation-delay:5.8s;animation-delay:5.8s;-webkit-animation-duration:4.5s;animation-duration:4.5s}.subhead{position:relative;margin-top:105px;padding:4em 0;background:#f9f9f9;z-index:2}.subhead h2{max-width:460px;color:#5d6d74;font:400 1.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 900px){.subhead h2{max-width:428px;font-size:20px}}@media (max-width: 530px){.subhead h2{display:none}}.subhead:after{content:'';position:absolute;bottom:100%;right:0;margin-bottom:-1px;width:100%;height:228px;background:url("../images/the-cloud.svg") center bottom repeat-x;pointer-events:none;z-index:-1}@media (max-width: 1147px){.subhead{margin-top:122px;padding:70px 0 49px}.subhead:after{background-size:160% auto}}@media (max-width: 900px){.subhead{margin-top:122px;padding:70px 0 49px}}@media (max-width: 530px){.subhead{margin-top:83px;padding:47px 15px 39px}}
12
- .clouds-sm{height:100px;position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:linear-gradient(top, #81a844, #89b348)}.clouds-sm:after{content:'';position:absolute;bottom:0;right:0;margin-bottom:-1px;width:100%;height:137px;background:url("../images/the-cloud-sm.svg") center bottom repeat-x;pointer-events:none;z-index:2}@media (max-width: 530px){.clouds-sm{height:90px}}
13
- .featured{border-top:1px solid #d6d6d6;border-bottom:1px solid #d6d6d6;background:#fff;position:relative;padding:2.0em 1em 4.6em 1em;text-align:center;z-index:1}.featured:before{content:"";display:block;position:absolute;top:0;height:100%;z-index:-1}.featured .features,.featured .modules{margin:0 auto;display:inline-block}@media (max-width: 530px){.featured{display:none}}
14
- .featured h2,.module-grid h2{margin-top:1em;color:#5d6d74;font:300 2em/1em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-align:center}@media (max-width: 900px){.featured h2,.module-grid h2{font-size:30px}}@media (max-width: 782px){.featured h2,.module-grid h2{font-size:28px}}
15
- .features,.modules{margin:0 -5px}.feature,.module{position:relative;float:right;margin:0 5px 10px;width:310px;transition:all .2s ease-in-out}@media (max-width: 1147px){.feature,.module{margin:.75% 1.5% .75% 0;width:32.333333%;transition:none}.feature:nth-child(3n+1),.module:nth-child(3n+1){margin-right:0}.feature:hover,.module:hover{top:0;box-shadow:none}}
16
- .feature{-webkit-transform:translateZ(0);transform:translateZ(0)}.feature h3{margin:0 0 0.58824em;color:#697b84;font-size:1.21429em;line-height:1em;font-weight:800}.feature p{margin:0;color:#6e818a}.feature:before{content:'';position:absolute;bottom:0;right:0;width:100%;height:10px;background:rgba(0,0,0,0.02);z-index:-1;-webkit-transform:translateZ(0);transform:translateZ(0);transition:all .2s ease-in-out}.feature:hover{-webkit-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px)}.feature:hover h3{color:#1a8dba}.feature:hover .feature-img{border:1px solid #ccc;border-bottom:none}.feature:hover .no-border{border:none}.feature:hover:before{-webkit-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px)}@media (max-width: 1147px){.feature:hover h3{color:#6e818a}.feature:hover .feature-img{border:1px solid #ddd;border-bottom:none}.feature:hover .no-border{border:none}}.feature .feature-img{padding-top:52%;width:100%;height:auto;border:1px solid #ddd;border-bottom:none}.feature .feature-img.custom-css{background:url("../images/custom-css.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.custom-css{background-image:url("../images/custom-css@2x.jpg")}}.feature .feature-img.wordpress-connect{background:url("../images/wordpress-connect.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-connect{background-image:url("../images/wordpress-connect@2x.jpg")}}.feature .feature-img.wordpress-stats{background:url("../images/wordpress-stats.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-stats{background-image:url("../images/wordpress-stats@2x.jpg")}}.feature .feature-img.no-border{border:none;padding-bottom:1px}.feature-description{display:block;padding:1em 1.07143em 1.07143em;border:1px solid #ddd;background:#f5f5f5}.feature:hover .feature-description{background:#fff;border-color:#ccc}@media (max-width: 1147px){.feature:hover .feature-description{border:1px solid #ddd;background:#f5f5f5}}@media (max-width: 900px){.feature-description{min-height:115px}}
17
- .cat{clear:both;margin-bottom:23px}.cat h3{font-size:24px;font-weight:300;margin:0 6px 13px 0;text-align:right}.cat .clear{clear:both}.module-grid{text-align:center}.module-grid h2{margin:1em 0}@media (max-width: 530px){.module-grid h2{padding-top:16px;margin-top:0;font-size:25px}}
18
- #module-search{position:relative;width:100%;max-width:40.71429em;margin:0 auto 1.07143em;overflow:hidden}#jetpack-search{margin:0;padding:11px 16px 11px 16px;width:100%;border:1px solid #c9ced0;border-radius:3px;background:#fff;color:#5c6671;line-height:1.3}#jetpack-search:focus{color:#5c6671;outline:none}#jetpack-search:focus+label{background:transparent;opacity:0}#jetpack-search::-webkit-input-placeholder{color:#a8acae}#jetpack-search :-moz-placeholder{color:#a8acae}#jetpack-search::-moz-placeholder{color:#a8acae}#jetpack-search:-ms-input-placeholder{color:#a8acae}#jetpack-search+label{position:absolute;top:1px;left:1px;bottom:1px;width:48px;color:#abafb1;text-indent:-9999px;pointer-events:none;border-radius:3px;transition:all .2s ease-in-out}#jetpack-search+label:after{content:'\f400';position:absolute;left:11px;text-align:left;top:4px;font-size:1.71429em;font-weight:normal;font-family:"genericons"}.jp-filter{margin-bottom:2.85714em;color:#6f7476}.jp-filter a{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#aaa;font:600 0.92857em/1 "Open Sans", Helvetica, Arial, sans-serif;text-shadow:0 -1px 1px rgba(255,255,255,0.2);background:#eee;border-radius:3px;background-clip:padding-box}.jp-filter a.selected,.jp-filter a:hover,.jp-filter a:focus{color:#efefef;text-shadow:0 -1px 1px rgba(0,0,0,0.2);background:#6f7476}@media (max-width: 530px){.jp-filter a{padding:0.76em 1em}}
19
- .module{display:block;padding:0.71429em 1.07143em 1em;text-align:right;border:1px solid #dae0e2;background:#fff;box-shadow:0 0 0 rgba(0,0,0,0.03);transition:opacity 2s ease-in}.module:hover{border-color:#8ac9e8;background:#f8fcfe}.module h3{cursor:pointer;margin:0 0 0.5em;color:#1a8dba;font-size:1.14286em;line-height:1.4em;font-weight:700}.module p{margin:0;color:#686f72;font-size:0.85714em}.module:hover,.module:focus{border-color:#8ac9e8;background:#f8fcfe}.module.active{border-color:#2ea2cc;box-shadow:inset -4px 0 0 #2ea2cc}.module.active:hover{border-color:#69bedd;box-shadow:inset -4px 0 0 #69bedd}.module .button,.module .button-primary{margin-top:15px}@media (max-width: 530px){.module .configure,.module .activate{display:block;width:100%;text-align:center}.module .button,.module .button-primary{width:50%}.module .button-primary{line-height:normal;padding:6px 14px;height:auto;font-size:14px}}@media screen and (max-width: 450px){.module .button,.module .button-primary{margin:20px auto 0 auto}.module .button.alignright,.module .button-primary.alignright{float:none}}@media (max-width: 1147px){.cat .module:nth-child(3n+1){margin:.75% 1.5% .75% 0}.cat .module:nth-child(3n - 1){margin-right:0}}@media (max-width: 900px){.cat .module{margin:1% 2% 1% 0}.cat .module:nth-child(2n+1){margin:1% 2% 1% 0}.cat .module:nth-child(2n+0){margin-right:0}}@media (max-width: 530px){.cat .module{margin:5px 0}.cat .module:nth-child(2n+1){margin-right:0}.cat .module:nth-child(2n+0){margin-right:0}}@media (max-width: 900px){.module{margin:1% 2% 1% 0;width:49%}.module:nth-child(3n+1){margin-right:2%}.module:nth-child(2n+1){margin-right:0}}@media (max-width: 530px){.module{margin:5px 0;width:100%}.module:nth-child(3n+1){margin-right:0}.module:nth-child(2n+1){margin-right:0}}
20
- .new{position:relative}.new:after{content:'NEW';position:absolute;top:-8px;left:-8px;padding-top:10px;width:32px;height:32px;color:#fff;font-size:8px;font-weight:800;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,0.2);background:url("../images/new-badge.svg") center center no-repeat;background-size:100%;border-radius:50%}.paid{display:inline-block;position:relative;top:5px;margin-right:10px;padding:1px 4px 0 6px;height:13px;color:#fff;font:700 10px/1 "Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 0 rgba(0,0,0,0.05);background:#d0d0d0;vertical-align:top}.paid:before,.paid:after{position:absolute;top:0;left:100%;font:normal 14px/14px "genericons"}.paid:before{content:'\f503';color:#d0d0d0;text-shadow:none}.paid:after{content:'\f428';margin-left:-5px;font-size:11px}.rtl .paid:before{content:'\f501'}.load-more{margin:2.71429em 0 6.15385em}.set{display:none}.show.set{display:block}.loading{bottom:50%;position:absolute;top:50%;width:100%}.loading span{color:#999}.modal{background:#fff;position:fixed;top:52px;bottom:20px;left:20px;right:20px;margin-right:160px;display:none;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1);z-index:500}.modal .close{position:absolute;top:0;left:0;font:300 1.71429em "genericons" !important;color:#777;content:'\f405';display:inline-block;padding:0.28571em 0.71429em 0.42857em;z-index:5}.modal .close:hover{background:#eee;opacity:0.8}.modal .close:active{background:#eee;opacity:0.4}.modal #jp-post-flair{display:none}.modal .content-container{position:absolute;top:0;left:0;bottom:0;right:0;overflow:auto;padding:2.14286em}.modal .content{margin:0 auto;max-width:900px;text-align:right}.modal h2{text-align:right;margin-top:0;color:#5d6d74;font:300 32px "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 530px){.modal h2{font-size:26px}}.modal h5{clear:right}.modal p{font-size:1.23077em}.modal footer{position:absolute;right:0;bottom:0;width:100%;padding:12px 20px;border-top:1px solid #ddd;background:#fff;text-align:left}.modal footer ul{margin:0}.modal footer li{display:inline-block;margin:0}.modal .button-secondary,.modal .button-primary:active{vertical-align:baseline}@media (max-width: 900px){.modal{bottom:5%;margin-right:36px;font-size:80%}.modal .content{top:38px}}@media (max-width: 782px){.modal{top:66px;margin-right:0}}@media (max-width: 600px){.modal{top:10px;left:10px;bottom:10px;right:10px}}
21
- .jp-info-img{float:left;margin:0 30px 30px 0}.jp-info-img img{border:1px solid #ddd;max-width:100%;height:auto}.jp-info-img img:first-child{margin-top:0}@media (max-width: 782px){.jp-info-img{float:none;margin:0 0 15px}}
22
- .content-container.modal-footer{bottom:53px}.shade{background:#000;bottom:0;cursor:pointer;display:none;right:0;opacity:0.2;position:fixed;left:0;top:0;z-index:11}.entry-title,.page-template-default h1{margin-top:0.61111em;color:#5d6d74;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 530px){.entry-title,.page-template-default h1{font-size:2em}}
23
- .blog h3,.single h3,.page-template-default h2{margin-top:0.61111em;color:#5d6d74;font:300 1.9em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 530px){.blog h3,.single h3,.page-template-default h2{font-size:1.4em}}
24
- .page-template-default p{line-height:1.71429em}.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{float:right;width:70%}.footer{margin-top:1.42857em;position:relative;padding:10em 0 4.28571em;text-align:center}.footer:before,.footer:after{content:'';position:absolute;right:0;pointer-events:none}.footer:before{top:0;margin-top:-1px;width:100%;height:195px}.footer:after{bottom:0;width:100%;height:50px;background:url("../images/the-footcloud.svg") center bottom no-repeat;background-size:auto 45px;z-index:1}.footer .download-jetpack{margin-bottom:33px}@media (max-width: 1147px){.footer{padding-top:165px;padding-bottom:0}.footer:before{background-size:160% auto}.footer:after{display:none}.footer ul{float:none;overflow:hidden}}@media (max-width: 900px){.footer{padding-top:146px}}@media (max-width: 782px){.footer{margin-top:0}}@media (max-width: 530px){.footer{margin-top:0;padding-top:135px}}@media (max-width: 320px){.footer{padding-top:76px}}
25
- .footer nav{max-width:100%}.footer nav a,.footer nav a:visited{padding:4px 6px;color:#999}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#81A844}@media (max-width: 1147px){.footer nav{border:none;padding:0}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#fff}}@media (max-width: 530px){.footer nav li{display:block;float:none;margin:0;text-align:right}.footer nav a{display:block;padding:0 16px;line-height:44px}}
26
- .primary{padding:25px 15px 10px 15px;border-bottom:1px solid #eee}.secondary-footer{margin:0 auto}.secondary-footer li{margin-left:5px}@media (max-width: 1147px){.secondary-footer{margin:0 30px;padding:8px 15px 30px}}@media (max-width: 530px){.secondary-footer{margin:0;padding:0;border:none;font-weight:400}.secondary-footer a{border-top:1px solid #eee}}
27
- .footer .a8c-attribution{margin:0;padding:0 6px;color:#bbb;font-size:0.78571em;font-family:"Gill Sans","Gill Sans MT","Open Sans",Helvetica,Arial,sans-serif;text-transform:uppercase}.footer .a8c-attribution a{display:inline-block;position:relative;padding:4px 16px;left:9999px;outline:0}.footer .a8c-attribution a:after{content:'A';position:absolute;top:2px;left:-9999px;height:100%;color:#999;font-size:1.54545em;font-family:"automatticons";text-align:center}.footer .a8c-attribution a:hover:after{-webkit-animation:candy .4s ease-in-out;animation:candy .4s ease-in-out}.secondary{padding:10px 15px 0 15px}.jetpack-message{background:#8eb74e;border:1px solid #73963d;margin:33px auto 0;max-width:90%;position:relative;z-index:2}.jetpack-message.is-opt-in{margin:50px 0 0;max-width:100%;padding:10px 15px;background:#fff;border:0;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);font-size:13px;text-align:center}.subhead .jetpack-message.is-opt-in{margin:0;padding-bottom:0;background:transparent;box-shadow:none}.subhead .jetpack-message.is-opt-in .jp-button,.subhead .jetpack-message.is-opt-in .jp-button--settings{display:inline-block}.jetpack-message.is-opt-in p{color:#3c4549}.jetpack-message.is-opt-in .jp-button,.jetpack-message.is-opt-in .jp-button--settings{margin-top:15px;display:none}.jetpack-message h4{color:#fff;margin:0}.jetpack-message p{color:#fff;margin:0;opacity:0.7}.jetpack-message .squeezer{padding:23px 80px 23px 23px;position:relative;text-align:right}.jetpack-message .squeezer:before{color:#fff;content:'\f418';font-family:'Genericons';font-size:33px;height:33px;right:25px;opacity:0.6;position:absolute;top:23px;top:calc(50% - 22px )}@media (max-width: 530px){.jetpack-message .squeezer{padding:23px}.jetpack-message .squeezer:before{display:none}}.jetpack-message .squeezer a{color:#FFF;border-bottom:1px solid #D5E4BD}.jetpack-message .squeezer a:hover{border-bottom:1px solid #F1F6E9}.jetpack-message.error .squeezer:before,.jetpack-message.jetpack-err .squeezer:before{content:'\f414'}.configure-module .jetpack-message{max-width:100%}.jetpack-modules #site-icon-deprecated .info,.modules h3.icon,.jetpack-modules .info a{width:auto}.jetpack-modules #site-icon-deprecated .info:before,.modules h3.icon:before,.jetpack-modules .info a:before{display:inline-block;position:relative;top:1px;right:-3px;margin-left:2px;opacity:0.8;font:normal 20px "genericons";vertical-align:top}.jetpack-modules .info a:before{margin-top:1px}.latex:before,.jetpack-modules #latex .info a:before{content:'\f408'}.carousel:before,.jetpack-modules #carousel .info a:before{content:'\f102'}.modules h3.contact-form:before,.jetpack-modules #contact-form .info a:before{content:'\f175';font:normal 20px "dashicons"}.modules h3.custom-css:before,.jetpack-modules #custom-css .info a:before{content:'\f100';font:normal 20px "dashicons"}.modules h3.enhanced-distribution:before,.jetpack-modules #enhanced-distribution .info a:before{content:'\f237';font:normal 20px "dashicons"}.modules h3.widgets:before,.jetpack-modules #widgets .info a:before{content:'\f116';font:normal 20px "dashicons"}.modules h3.gravatar-hovercards:before,.jetpack-modules #gravatar-hovercards .info a:before{content:'G';font-family:"automatticons"}.infinite-scroll:before,.jetpack-modules #infinite-scroll .info a:before{content:'\f408'}.comments:before,.jetpack-modules #comments .info a:before{content:'\f108'}.sso:before,.jetpack-modules #sso .info a:before{content:'\f205'}.json-api:before,.jetpack-modules #json-api .info a:before{content:'\f415'}.likes:before,.jetpack-modules #likes .info a:before{content:'\f408'}.markdown:before,.jetpack-modules #markdown .info a:before{content:'\f462'}.minileven:before,.jetpack-modules #minileven .info a:before{content:'\f453'}.manage:before,.jetpack-modules #manage .info a:before{content:'\f205'}.monitor:before,.jetpack-modules #monitor .info a:before{content:'\f468'}.notes:before,.jetpack-modules #notes .info a:before{content:'\f300'}.omnisearch:before,.jetpack-modules #omnisearch .info a:before{content:'\f400'}.photon:before,.jetpack-modules #photon .info a:before{content:'\f403'}.post-by-email:before,.jetpack-modules #post-by-email .info a:before{content:'\f410'}.protect:before,.jetpack-modules #protect .info a:before{content:'\f470';position:relative;top:-1px}.modules h3.publicize:before,.jetpack-modules #publicize .info a:before{content:'\f237';font:normal 20px "dashicons"}.related-posts:before,.jetpack-modules #related-posts .info a:before{content:'\f420'}.sharedaddy:before,.jetpack-modules #sharedaddy .info a:before{content:'\f415'}.shortcodes:before,.jetpack-modules #shortcodes .info a:before{content:'\f100'}.verification-tools:before,.jetpack-modules #verification-tools .info a:before{content:'\f425'}.after-the-deadline:before,.jetpack-modules #after-the-deadline .info a:before{content:'\f411'}.subscriptions:before,.jetpack-modules #subscriptions .info a:before{content:'\f410'}.tiled-gallery:before,.jetpack-modules #tiled-gallery .info a:before{content:'\f103'}.modules h3.vaultpress:before,.jetpack-modules #vaultpress .info a:before{content:'V';font-family:"automatticons"}.videopress:before,.jetpack-modules #videopress .info a:before{content:'\f104'}.modules h3.widget-visibility:before,.jetpack-modules #widget-visibility .info a:before{content:'\f116';font:normal 20px "dashicons"}.stats:before,.jetpack-modules #stats .info a:before{content:'\f205'}.shortlinks:before,.jetpack-modules #shortlinks .info a:before{content:'\f107'}.modules h3.custom-content-types:before,.jetpack-modules #custom-content-types .info a:before{content:'\f498';font:normal 20px "dashicons"}.modules h3.site-icon:before,.jetpack-modules #site-icon .info a:before{content:'\f475'}.jetpack-modules #site-icon-deprecated .info:before{content:'\f475'}@media (max-width: 782px){.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{width:100%}}@media (max-width: 600px){.clouds-sm{display:none}}@media (max-width: 530px){.wrap.inner.jp-support .jp-support-column-left{width:100%}.wrap.inner.jp-support .jp-support-column-left .widget-text{margin-left:0;width:100%}.wrap.inner.jp-support .jp-support-column-right{width:100%}}@media screen and (max-width: 515px){.jp-frame .header-nav{padding-bottom:10px}.jp-frame .header-nav li{line-height:30px}.jp-frame .header-nav .jetpack-logo{width:100%;text-align:center}.jp-frame .header-nav .jetpack-modules{margin:0;width:50%;text-align:left;padding:0 5px}.jp-frame .header-nav .jetpack-modules+.jetpack-modules{text-align:right}.jp-frame .header-nav .jetpack-modules:nth-child(4){text-align:center;margin:0 auto;width:100%}.jp-frame .header-nav .jetpack-modules:nth-child(4) a{padding:0 10px}}@media (max-width: 320px){.jetpack_page_jetpack_modules .wrap{padding:0 0 1em}}
28
- .page-content.configure{margin-top:0}.configure .frame.top{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}.configure .frame.top.fixed{background:#f9f9f9;border-bottom:1px solid #e9e9e9;padding-right:160px;margin-top:-6px;position:fixed;left:0;top:32px;width:100%;z-index:4;box-shadow:0 2px 2px -2px #eee}@media (max-width: 782px){.configure .frame.top.fixed{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}}@media (max-width: 600px){.configure .frame.top.fixed{top:0}}.configure .frame.top .tablenav.top{float:right}@media (max-width: 900px){.configure .frame.top .tablenav.top .actions{display:block}}@media (max-width: 782px){.configure .frame.top .tablenav.top .actions{margin-top:6px}}
29
- .jp-frame-top-fixed .configure{padding-top:94px}.filter-search{display:none;float:left;margin-top:10px}@media (max-width: 782px){.filter-search{display:block}}@media (max-width: 530px){.filter-search{display:none}}
30
- .module-actions.landing-page{float:left;margin-left:15px}.module-actions.landing-page a{font-size:0.6em}.table-bordered.jetpack-modules{border:none;margin-bottom:0}.table-bordered.jetpack-modules tr.jetpack-module th{border-right:0;padding:14px 4px 0}.table-bordered.jetpack-modules tr.jetpack-module th input{display:block}.table-bordered.jetpack-modules tr.jetpack-module:hover .genericon{display:inline-block}.table-bordered.jetpack-modules tr.jetpack-module:hover td .row-actions span a{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module.active th,.table-bordered.jetpack-modules tr.jetpack-module.active td{background:#f7fcfe}.table-bordered.jetpack-modules tr.jetpack-module.active th{border-right:4px solid #2ea2cc;padding-right:0px}.table-bordered.jetpack-modules tr.jetpack-module.active td:first-child{border-right:4px solid #2ea2cc}.table-bordered.jetpack-modules tr.jetpack-module.unavailable{opacity:0.3}.table-bordered.jetpack-modules tr.jetpack-module.unavailable input{display:none}.table-bordered.jetpack-modules tr.jetpack-module#vaultpress{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module.deprecated span{color:#888}.table-bordered.jetpack-modules tr.jetpack-module.deprecated .dep-msg{margin-left:10px;color:#555}.table-bordered.jetpack-modules tr.jetpack-module th,.table-bordered.jetpack-modules tr.jetpack-module td{background:#fff;margin:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.1)}.table-bordered.jetpack-modules tr.jetpack-module td{padding:10px 14px 8px 10px;line-height:25px}.table-bordered.jetpack-modules tr.jetpack-module td:first-child{border-right:4px solid #fff}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{float:left;padding:0 0 1px;visibility:visible}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span{margin-right:5px}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a{opacity:0}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a:focus{opacity:1}@media (max-width: 530px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:none}}@media (max-width: 782px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:block;padding-right:10px;visibility:visible}}.table-bordered.jetpack-modules>thead>tr>th{border:0;vertical-align:middle}.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-left:0}@media (max-width: 782px){.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-right:0}}.table-bordered.jetpack-modules td{background:#fff}.table-bordered.jetpack-modules #doaction{margin-top:0}@media (max-width: 782px){.table-bordered.jetpack-modules #doaction{padding:10px 7px}}.table-bordered.jetpack-modules .checkall{margin-top:1px}.table-bordered.jetpack-modules .filter-search{margin-top:8px}.table-bordered.jetpack-modules .genericon{color:#999;display:none;margin:7px 3px 0}@media (max-width: 900px){.table-bordered.jetpack-modules .genericon{display:inline-block}}.table-bordered.jetpack-modules .med{width:70px}.table-bordered.jetpack-modules .sm{width:30px}@media (max-width: 782px){.table-bordered.jetpack-modules .check-column{width:50px}}
31
- .fixed-top .check-column{padding:8px 10px 0 10px;width:2.2em}.wrap{margin:0;padding:0 1.5em 1em;overflow:hidden}.wrap h2{font-size:24px;font-weight:400}.wrap .manage-left{float:right;margin:0;padding:0;width:63%}.wrap .manage-left table{width:100%}.wrap .manage-left th{font-weight:400}@media (max-width: 782px){.wrap .manage-left{width:100%}}.wrap .manage-right{margin:0;padding:0;float:left;width:35%;z-index:1}.wrap .manage-right p{font-size:12px;font-weight:bold;color:#bbb;padding-top:2px;text-transform:uppercase;letter-spacing:1px;clear:right}.wrap .manage-right .bumper{margin-right:33px}.wrap .manage-right.show{display:block;overflow-y:auto;overflow-x:hidden;position:absolute;z-index:100000}.wrap .manage-right .search-bar{margin-bottom:18px;max-width:300px}.wrap .manage-right p.search-box{float:none;height:auto;margin-bottom:0;position:relative}.wrap .manage-right p.search-box input[type='search']{padding:0 8px;width:90%;line-height:initial}@media (max-width: 782px){.wrap .manage-right p.search-box input[type='search']{float:right;padding:9px 8px}}.wrap .manage-left p.search-box input[type="submit"]{display:none}.wrap .manage-right .button-group .button{outline:none}.wrap .manage-right .subsubsub{margin:0;padding:0}.wrap .manage-right .subsubsub a{padding:0;line-height:inherit}.wrap .manage-right .subsubsub .current{padding:1px 5px;border-radius:2px;margin-right:-5px;background:#0D72B2;color:#fff}.wrap .manage-right .subsubsub .current .count{color:#BCD7E7;font-weight:200}.wrap .manage-right .subsubsub li{display:block;text-align:right}@media (max-width: 782px){.wrap .manage-right{background:#fff;bottom:0;display:none;min-width:300px;position:fixed;left:0;top:0;z-index:13;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1)}.wrap .manage-right .bumper{margin:13px}.wrap .manage-right .navbar-form{margin:0;padding:0}}
32
- @media (max-width: 782px){.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):not(.check-column){padding:11px 10px;display:block}.jetpack_page_jetpack_modules #doaction{padding:7px 14px}.jetpack_page_jetpack_modules .fixed-top thead .check-column{padding:28px 10px 0 10px}.jetpack_page_jetpack_modules .filter-search{margin-top:28px}.jetpack_page_jetpack_modules .filter-search .button{padding:7px 14px}.manage-right.show .subsubsub li{padding:5px}}@media (max-width: 650px){.table-bordered.jetpack-modules tr.jetpack-module.deprecated td .row-actions{float:none;padding-right:18px}}@media (max-width: 430px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:none}.table-bordered.jetpack-modules tr.jetpack-module.deprecated td .row-actions{display:block}}.configure-module p{font-size:14px}.configure-module p.success,.configure-module p.error{color:#fff;padding:10px}.configure-module p.success{background-color:#81a844}.configure-module p.error{background-color:#d94f4f}.protect-status p{font-size:16px}.protect-status strong{display:inline-block;margin-top:10px;background:#fff;padding:10px;border:1px #ddd solid;font-size:16px;color:#000;max-width:100%}.protect-status.attn{color:#d94f4f}.protect-status.working{color:#81a844}#non-editable-whitelist{margin-top:15px}.protect-whitelist textarea{width:100%;min-height:150px}#editable-whitelist .whitelist-table{width:100%}.configure-module input[disabled]{opacity:.5}.configure-module input.button-primary{font-weight:bold}.whitelist-table{border-top:1px solid;border-left:1px solid;border-color:#ddd;background-color:#fff}.whitelist-table td,.whitelist-table th{padding:10px;margin:0;border-bottom:1px solid;border-right:1px solid;border-color:#ddd;font-size:14px}.whitelist-table th.heading{font-weight:bold;color:#5d6d74;text-align:right;background-color:#eee}.whitelist-table td.item-actions{border-right:none;text-align:left}.whitelist-table .toolbar{padding:0}.whitelist-table .add-btn{text-align:center;width:10%;border-right:1px #ddd solid}.ip-address,.enter-ip{width:90%;text-align:right;vertical-align:middle}.delete-ip-address{text-align:center;border:0;background:transparent;color:#6f7476;box-shadow:none;font-size:20px;margin:0;padding:0;cursor:pointer;border-radius:2px}.delete-ip-address:hover{background:#eee}.toolbar div{float:right;padding:10px}@media only screen and (min-width: 1100px){#non-editable-whitelist{width:28%;float:left;margin-top:0}.protect-whitelist{width:65%;float:right}}@media only screen and (max-width: 1130px){.enter-ip input[type="text"]{max-width:175px}}@media only screen and (max-width: 1250px) and (min-width: 1065px), (max-width: 730px) and (min-width: 600px){.enter-ip{width:85%}.add-btn{width:15%}}@media only screen and (max-width: 782px){.add-btn{text-align:left}.add-btn .ip-add{margin-top:4px;margin-bottom:3px}}@media only screen and (max-width: 730px){.add-btn{text-align:center}}@media only screen and (max-width: 665px) and (min-width: 600px){.enter-ip input[type="text"]{max-width:165px}}@media only screen and (max-width: 600px){.toolbar div{width:100%}.add-btn{border-top:1px #ddd solid}.enter-ip{text-align:center}.enter-ip strong{display:block;margin-bottom:5px}.enter-ip input[type="text"]{width:100%;max-width:100%}.add-btn input,.enter-ip .button{width:50%;margin:0 auto}.enter-ip .button{margin-top:10px}}@media only screen and (max-width: 400px){.protect-status strong{font-size:12px;overflow:auto}.add-btn input,.enter-ip .button{width:100%}}.my-jetpack-actions{margin:0 0 40px 0}.my-jetpack-actions .j-col{padding:0;text-align:center}.my-jetpack-actions #user-list{height:30px;margin-top:-1px;margin-right:-3px}#jetpack-disconnect-content{display:none;text-align:center}#jetpack-disconnect-content .cancel-disconnect{display:block;margin-top:10px}.connection-details{border:1px #ddd solid}.connection-details.local-user{margin-bottom:10px}.connection-details .user-01,.connection-details .wpuser-02,.connection-details .action-btns{padding:10px}.connection-details .user-01 .button,.connection-details .user-01 select,.connection-details .wpuser-02 .button,.connection-details .wpuser-02 select,.connection-details .action-btns .button,.connection-details .action-btns select{margin-top:5px}.connection-details .wpuser-02{margin-top:10px}.connection-details h3{padding:10px;margin:0;background:#eee;border-bottom:1px #ddd solid;font-size:14px}.jp-user img{margin-left:10px;border-radius:50%}.jp-user div,.wp-user div,.wp-action div{display:inline-block;width:100%}.j-col.jp-user,.j-col.wp-user,.j-col.wp-action{padding:0}.my-jetpack-actions select{max-width:150px}.j-actions .button:nth-child(3){margin-left:5px}.j-row.disconnect{text-align:center}.j-row.disconnect .button{margin:0 auto}a.what-is-primary{color:#b4b9be;margin-right:4px}@media (max-width: 782px){.wp-action{border-top:1px #ddd solid}.wp-action h3{display:none}}@media screen and (max-width: 500px){.connection-details{font-size:11px}.connection-details h3{font-size:12px;padding:5px}.connection-details .user-01,.connection-details .wpuser-02{padding:6px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:200px}.connection-details .action-btns{text-align:center}}@media (max-width: 530px){.connection-details .wpuser-02{margin-top:0;padding:12px}}@media screen and (max-width: 450px){.j-actions .button{width:100%;margin-bottom:5px;text-align:center}.j-actions .button.alignright{float:none}}@media screen and (max-width: 350px){.user-01,.wpuser-02{max-width:100px}}.jp-content .hide{display:none}.jp-content .pointer{cursor:pointer}.jp-content .landing{margin:0 auto;z-index:2;position:relative}.jp-content h1{font:300 2.57143em/1em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;position:relative;z-index:3;width:100%;text-align:center}.jp-content h1.success{color:#81a844}.jp-content .footer{padding-top:0;margin-top:0;background-image:none}.jp-content .footer:before{height:inherit}.jp-content .more-info:before{content:none}.landing .wpcom-connect{min-height:400px}.wpcom-connect .j-col{padding:0}.wpcom-connect .connect-desc{padding-left:25px}.wpcom-connect .connect-btn{text-align:center}.module-grid h2{color:#000;font:300 2.57143em/1em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif}.download-jetpack{margin-top:1em !important}#jump-start-area{margin-top:35px;padding-right:60px;padding-left:60px;background:#fefefe;border:1px #dae0e2 solid;padding-bottom:20px}#jump-start-area #jumpstart-cta,#jump-start-area .jumpstart-desc{padding:0}#jump-start-area p{font-size:14px;line-height:185%}#jump-start-area .spinner{float:none;margin:0 auto;position:absolute;bottom:0;height:100%;width:100%;background-position:50% 56%;background-color:rgba(254,254,254,0.99);display:block;opacity:.9}.jumpstart-message p{padding-left:25px}.jumpstart-desc{text-align:right}#jumpstart-cta{text-align:center}.dismiss-jumpstart{color:#999;font-size:14px}#jumpstart-cta .button,#jumpstart-cta .button-primary{margin:1em;font-size:18px;height:45px !important;padding:8px 15px 1px}#jumpstart-cta .button-primary{display:block;margin:35px 20px 5px 20px}#jp-config-list{position:relative;padding-top:15px;padding-bottom:15px;margin-right:-15px;margin-left:-15px}#jp-config-list .j-col{padding:15px}#jp-config-list strong{display:inline-block}#jp-config-list small{display:block;margin-top:5px;line-height:150%}#jp-config-list .close{position:absolute;top:10px;left:0;text-transform:uppercase;font-weight:bold;display:block;z-index:5}.jp-config-status{text-transform:uppercase;font-size:10px;font-weight:bold;line-height:100%;color:#fff;background:#9fbd72;border-radius:2px;padding:2px 4px;display:inline-block}.miguel{display:none;position:fixed;opacity:.35;bottom:-200px;right:0;z-index:1;-webkit-animation:miguel 3.4s 0s ease-in-out;animation:miguel 3.4s 0s ease-in-out}.miguel:nth-child(2){right:49%;width:120px;height:131px;-webkit-animation-duration:2.4s;animation-duration:2.4s;-webkit-animation-delay:0s;animation-delay:0s}.miguel:nth-child(3){right:23%;width:60px;height:66px;-webkit-animation-duration:4.5s;animation-duration:4.5s;-webkit-animation-delay:0s;animation-delay:0s}@-webkit-keyframes "miguel"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(900px, -900px, 0px);transform:translate3d(900px, -900px, 0px)}}@keyframes "miguel"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(900px, -900px, 0px);transform:translate3d(900px, -900px, 0px)}}@media (max-width: 1147px){.jp-content .landing{padding:0 2em}.jp-content .footer{padding-top:1.5em}}@media (max-width: 782px){#jumpstart-cta .button-primary{margin:10px 0 5px 0}#jump-start-area .spinner{background-position:50% 35%}}@media (max-width: 530px){.jp-content .landing{padding:0 .5em}#jump-start-area{padding:0 1em}.jumpstart-message p{padding-left:0}#jumpstart-cta .button-primary{margin:0 0 5px 0;padding-bottom:10px}.footer .a8c-attribution a:after{top:6px}}.nav-horizontal:before,.features:before,.modules:before,.load-more:before,.nav-horizontal:after,.features:after,.modules:after,.load-more:after{content:"";display:table}.nav-horizontal:after,.features:after,.modules:after,.load-more:after{clear:both}
33
 
34
  /*# sourceMappingURL=jetpack-admin.min.css.map */
1
+ .j-row{width:100%;margin:0 auto}.j-row:before,.j-row:after{content:" ";display:table}.j-row:after{clear:both}.j-col{padding:0.85em;width:100%;float:right;position:relative}@media only screen{.j-sm-1{width:8.33333%}.j-sm-2{width:16.66667%}.j-sm-3{width:25%}.j-sm-4{width:33.33333%}.j-sm-5{width:41.66667%}.j-sm-6{width:50%}.j-sm-7{width:58.33333%}.j-sm-8{width:66.66667%}.j-sm-9{width:75%}.j-sm-10{width:83.33333%}.j-sm-11{width:91.66667%}.j-sm-12{width:100%}}@media (min-width: 530px){.j-md-1{width:8.33333%}.j-md-2{width:16.66667%}.j-md-3{width:25%}.j-md-4{width:33.33333%}.j-md-5{width:41.66667%}.j-md-6{width:50%}.j-md-7{width:58.33333%}.j-md-8{width:66.66667%}.j-md-9{width:75%}.j-md-10{width:83.33333%}.j-md-11{width:91.66667%}.j-md-12{width:100%}}@media (min-width: 782px){.j-lrg-1{width:8.33333%}.j-lrg-2{width:16.66667%}.j-lrg-3{width:25%}.j-lrg-4{width:33.33333%}.j-lrg-5{width:41.66667%}.j-lrg-6{width:50%}.j-lrg-7{width:58.33333%}.j-lrg-8{width:66.66667%}.j-lrg-9{width:75%}.j-lrg-10{width:83.33333%}.j-lrg-11{width:91.66667%}.j-lrg-12{width:100%}}body,button,input,select,textarea{color:#222;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.4;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{color:#222;clear:both}a{color:#0d72b2;-webkit-transition:color .2s;transition:color .2s;text-decoration:none}a:visited{color:#0d72b2}a:hover{color:#0f92e5}a:focus{outline:thin dotted}address{margin:0 0 1.5em}abbr[title],acronym{cursor:help}ins{background:#eee;text-decoration:none}dt{font-weight:700}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}img{vertical-align:middle}@-webkit-keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}@keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}.button,.download-jetpack{-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.jp-button,.jp-button--settings{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#efefef;font:800 0.9285714286em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 -1px 1px rgba(0,0,0,0.2);background:#6f7476;border-radius:3px}.jp-button:visited,.jp-button--settings:visited{color:#efefef}.jp-button:hover,.jp-button--settings:hover,.jp-button:focus,.jp-button--settings:focus{color:#fff;background:#57972d}.jp-button:active,.jp-button--settings:active{background:#57972d;opacity:0.8}.jp-button--settings{background:#93b45f;color:#e8eedf}.jp-button--settings:visited{color:#e8eedf}.jp-button--settings:hover,.jp-button--settings:focus{background:#9fbd72;color:#fff}.jp-button--settings.current{background:#3c6621;color:#fff;box-shadow:inset 0 2px 0 #365A1F, inset 0 1px 3px #3c6621}.download-jetpack{display:inline-block;position:relative;padding:0.64286em 0.85714em 0.53571em;color:#fff;font:400 20px/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif;background:#518d2a;z-index:3;border-radius:6px;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:visited{color:#fff}.download-jetpack:hover,.download-jetpack:focus{color:#fff;background:#57972d;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:active{top:6px;box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.4)}.download-jetpack:active:after{top:-6px}.download-jetpack:before{content:'';display:inline-block;position:relative;top:-2px;margin-left:13px;width:30px;height:30px;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%}.download-jetpack:after{content:'';position:absolute;top:0;right:0;width:100%;height:100%}@media (max-width: 1147px){.download-jetpack{font-size:1.28571em}.download-jetpack:before{top:-1px;width:23px;height:23px}}@media (max-width: 900px){.download-jetpack:active{top:0}}@media (max-width: 530px){.download-jetpack{font-size:1.21429em;font-weight:600}.download-jetpack:before{width:19px;height:19px;margin-left:9px}}#searchsubmit{display:inline-block;border:none;position:relative;padding:0.71429em 1.5em;color:#efefef;font:800 0.8em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 -1px 1px rgba(0,0,0,0.2);background:#6f7476;outline:none;border-radius:3px}#searchsubmit:visited{color:#efefef}#searchsubmit:hover,#searchsubmit:focus{color:#fff;background:#2aa0d5}#searchsubmit:active{opacity:0.7}@font-face{font-family:'automatticons';src:url("../_inc/fonts/automatticons/automatticons.eot");src:url("../_inc/fonts/automatticons/automatticons.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/automatticons/automatticons.woff") format("woff"),url("../_inc/fonts/automatticons/automatticons.ttf") format("truetype"),url("../_inc/fonts/automatticons/automatticons.svg#automatticonsregular") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.eot");src:url("../_inc/fonts/jetpack/jetpack.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/jetpack/jetpack.woff") format("woff"),url("../_inc/fonts/jetpack/jetpack.ttf") format("truetype"),url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg");font-weight:normal;font-style:normal}@media screen and (-webkit-min-device-pixel-ratio: 0){@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg")}}.nav-horizontal a{display:inline-block}.nav-horizontal li{position:relative;float:right}.nav-horizontal ul{margin:0;padding:0}*,*:before,*:after{-moz-box-sizing:border-box;box-sizing:border-box}::-moz-selection{background:#91bd51;color:#fff;text-shadow:none}::selection{background:#91bd51;color:#fff;text-shadow:none}#wpbody-content{padding-bottom:0}#wpcontent{margin-right:160px;padding:0}ul#adminmenu a.toplevel_page_jetpack:after{border-left-color:#81a844}.folded #wpcontent{margin-right:36px}.jp-content{background:#f9f9f9;margin:0;height:auto;min-height:100%;width:100%;width:100%;-webkit-font-smoothing:antialiased}.jp-content .wrapper{background:#f9f9f9}@media (max-width: 900px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-right:36px;padding-right:0}}@media (max-width: 782px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-right:0}}@media (max-width: 782px){.configure .frame.top.fixed{padding-right:0}}.wrap.inner,.page-content{max-width:950px;margin:0 auto}.wrap.inner li,.page-content li{line-height:23px}@media (max-width: 530px){.page-content{margin-top:0}}@media (max-width: 1147px){.wrap.inner{background:#f9f9f9;padding:15px}}@media (max-width: 530px){.wrap.inner{margin-top:1.71429em}}.jetpack_page_jetpack_modules .header-nav{margin:0}.jetpack_page_jetpack_modules .page-content{max-width:1200px;min-height:500px;margin:0}.page-content.about{position:relative;z-index:10}@media (max-width: 1147px){.page-content.about{background:#f9f9f9;padding:15px}}@media (max-width: 1147px){.page-content.configure{background:#f9f9f9}}.footer nav{max-width:550px;margin:0 auto}.header{right:0;left:0;background:#81a844}.header-nav li{line-height:60px}.header-nav a{padding:0 0.71429em;line-height:24px}.header-nav .jetpack-logo a{display:inline-block;position:relative;width:214px;margin-left:6px;background:url(../images/jetpack-logo.png) center center no-repeat;background:url(../images/jetpack-logo.svg) center center no-repeat,none;background-size:183px auto;color:#fff;line-height:60px;font-weight:normal}.header-nav .jetpack-logo a span{text-indent:-9999px;visibility:hidden}.header-nav .jetpack-logo a:before{content:'';position:absolute;top:0;right:0;width:100%;height:100%;background-size:183px 32px}.header-nav .jetpack-modules+.jetpack-modules{margin-right:15px}.main-nav{float:right}.main-nav li{margin:0}@media (max-width: 900px){.main-nav{font-size:13px}}.user-nav{float:left}.user-nav li{margin:0}.jetpack-pagestyles #screen-meta{margin:0}.jetpack-pagestyles #screen-meta-links .screen-meta-toggle{z-index:2}.jetpack-pagestyles #screen-options-link-wrap,.jetpack-pagestyles #contextual-help-link-wrap{border:none}.jetpack-pagestyles .update-nag{display:none}.masthead{position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:-webkit-linear-gradient(top, #81a844, #8eb74e);background-image:linear-gradient(top, #81a844, #8eb74e)}.masthead.hasbutton .flyer{bottom:-270px}.masthead.hasbutton .subhead{margin-top:175px}@media (max-width: 530px){.masthead.hasbutton .subhead{margin-top:105px;padding:0}}.masthead h1,.masthead h2{margin:0 auto}.masthead h1{padding:2.5em 0 1.11111em;max-width:21.94444em;color:#fff;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;position:relative;text-shadow:0 -1px 1px rgba(0,0,0,0.12);z-index:3}.masthead h1+.flyby{margin-top:180px}@media (max-width: 1147px){.masthead h1{padding-top:1.83333em;font-size:2.14286em}}@media (max-width: 782px){.masthead h1{max-width:600px;font-size:28px}}@media (max-width: 530px){.masthead h1{margin:0 15px;padding:31px 0 15px 0;font-size:21px;font-weight:400}}.jetpack-connected .masthead h1{margin-bottom:33px;max-width:600px}.flyby{position:relative;max-width:1200px;margin:0 auto}@media (max-width: 900px){.flyby{display:none}}.flyer{position:absolute;bottom:-200px;right:4%;z-index:1;-webkit-animation:flyer 3.4s 2s ease-in-out;animation:flyer 3.4s 2s ease-in-out}.flyer:nth-child(2){right:49%;width:120px;height:131px;-webkit-animation-delay:4.6s;animation-delay:4.6s;-webkit-animation-duration:2.4s;animation-duration:2.4s}.flyer:nth-child(3){right:23%;width:60px;height:66px;-webkit-animation-delay:5.8s;animation-delay:5.8s;-webkit-animation-duration:4.5s;animation-duration:4.5s}.subhead{position:relative;margin-top:105px;padding:4em 0;background:#f9f9f9;z-index:2}.subhead h2{max-width:460px;color:#5d6d74;font:400 1.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 900px){.subhead h2{max-width:428px;font-size:20px}}@media (max-width: 530px){.subhead h2{display:none}}.subhead:after{content:'';position:absolute;bottom:100%;right:0;margin-bottom:-1px;width:100%;height:228px;background:url("../images/the-cloud.svg") center bottom repeat-x;pointer-events:none;z-index:-1}@media (max-width: 1147px){.subhead{margin-top:122px;padding:70px 0 49px}.subhead:after{background-size:160% auto}}@media (max-width: 900px){.subhead{margin-top:122px;padding:70px 0 49px}}@media (max-width: 530px){.subhead{margin-top:83px;padding:47px 15px 39px}}.clouds-sm{height:100px;position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:-webkit-gradient(linear, right top, right bottom, from(#81a844), to(#89b348));background-image:-webkit-linear-gradient(top, #81a844, #89b348);background-image:linear-gradient(top, #81a844, #89b348)}.clouds-sm:after{content:'';position:absolute;bottom:0;right:0;margin-bottom:-1px;width:100%;height:137px;background:url("../images/the-cloud-sm.svg") center bottom repeat-x;pointer-events:none;z-index:2}@media (max-width: 530px){.clouds-sm{height:90px}}.featured{border-top:1px solid #d6d6d6;border-bottom:1px solid #d6d6d6;background:#fff;position:relative;padding:2.0em 1em 4.6em 1em;text-align:center;z-index:1}.featured:before{content:"";display:block;position:absolute;top:0;height:100%;z-index:-1}.featured .features,.featured .modules{margin:0 auto;display:inline-block}@media (max-width: 530px){.featured{display:none}}.featured h2,.module-grid h2{margin-top:1em;color:#5d6d74;font:300 2em/1em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-align:center}@media (max-width: 900px){.featured h2,.module-grid h2{font-size:30px}}@media (max-width: 782px){.featured h2,.module-grid h2{font-size:28px}}.features,.modules{margin:0 -5px}.feature,.module{position:relative;float:right;margin:0 5px 10px;width:310px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}@media (max-width: 1147px){.feature,.module{margin:.75% 1.5% .75% 0;width:32.333333%;-webkit-transition:none;transition:none}.feature:nth-child(3n+1),.module:nth-child(3n+1){margin-right:0}.feature:hover,.module:hover{top:0;box-shadow:none}}.feature{-webkit-transform:translateZ(0);transform:translateZ(0)}.feature h3{margin:0 0 0.58824em;color:#697b84;font-size:1.21429em;line-height:1em;font-weight:800}.feature p{margin:0;color:#6e818a}.feature:before{content:'';position:absolute;bottom:0;right:0;width:100%;height:10px;background:rgba(0,0,0,0.02);z-index:-1;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.feature:hover{-webkit-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px)}.feature:hover h3{color:#1a8dba}.feature:hover .feature-img{border:1px solid #ccc;border-bottom:none}.feature:hover .no-border{border:none}.feature:hover:before{-webkit-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px)}@media (max-width: 1147px){.feature:hover h3{color:#6e818a}.feature:hover .feature-img{border:1px solid #ddd;border-bottom:none}.feature:hover .no-border{border:none}}.feature .feature-img{padding-top:52%;width:100%;height:auto;border:1px solid #ddd;border-bottom:none}.feature .feature-img.custom-css{background:url("../images/custom-css.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.custom-css{background-image:url("../images/custom-css@2x.jpg")}}.feature .feature-img.wordpress-connect{background:url("../images/wordpress-connect.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-connect{background-image:url("../images/wordpress-connect@2x.jpg")}}.feature .feature-img.wordpress-stats{background:url("../images/wordpress-stats.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-stats{background-image:url("../images/wordpress-stats@2x.jpg")}}.feature .feature-img.no-border{border:none;padding-bottom:1px}.feature-description{display:block;padding:1em 1.07143em 1.07143em;border:1px solid #ddd;background:#f5f5f5}.feature:hover .feature-description{background:#fff;border-color:#ccc}@media (max-width: 1147px){.feature:hover .feature-description{border:1px solid #ddd;background:#f5f5f5}}@media (max-width: 900px){.feature-description{min-height:115px}}.cat{clear:both;margin-bottom:23px}.cat h3{font-size:24px;font-weight:300;margin:0 6px 13px 0;text-align:right}.cat .clear{clear:both}.module-grid{text-align:center}.module-grid h2{margin:1em 0}@media (max-width: 530px){.module-grid h2{padding-top:16px;margin-top:0;font-size:25px}}#module-search{position:relative;width:100%;max-width:40.71429em;margin:0 auto 1.07143em;overflow:hidden}#jetpack-search{margin:0;padding:11px 16px 11px 16px;width:100%;border:1px solid #c9ced0;border-radius:3px;background:#fff;color:#5c6671;line-height:1.3}#jetpack-search:focus{color:#5c6671;outline:none}#jetpack-search:focus+label{background:transparent;opacity:0}#jetpack-search::-webkit-input-placeholder{color:#a8acae}#jetpack-search :-moz-placeholder{color:#a8acae}#jetpack-search::-moz-placeholder{color:#a8acae}#jetpack-search:-ms-input-placeholder{color:#a8acae}#jetpack-search+label{position:absolute;top:1px;left:1px;bottom:1px;width:48px;color:#abafb1;text-indent:-9999px;pointer-events:none;border-radius:3px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}#jetpack-search+label:after{content:'\f400';position:absolute;left:11px;text-align:left;top:4px;font-size:1.71429em;font-weight:normal;font-family:"genericons"}.jp-filter{margin-bottom:2.85714em;color:#6f7476}.jp-filter a{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#aaa;font:600 0.92857em/1 "Open Sans", Helvetica, Arial, sans-serif;text-shadow:0 -1px 1px rgba(255,255,255,0.2);background:#eee;border-radius:3px;background-clip:padding-box}.jp-filter a.selected,.jp-filter a:hover,.jp-filter a:focus{color:#efefef;text-shadow:0 -1px 1px rgba(0,0,0,0.2);background:#6f7476}@media (max-width: 530px){.jp-filter a{padding:0.76em 1em}}.module{display:block;padding:0.71429em 1.07143em 1em;text-align:right;border:1px solid #dae0e2;background:#fff;box-shadow:0 0 0 rgba(0,0,0,0.03);-webkit-transition:opacity 2s ease-in;transition:opacity 2s ease-in}.module:hover{border-color:#8ac9e8;background:#f8fcfe}.module h3{cursor:pointer;margin:0 0 0.5em;color:#1a8dba;font-size:1.14286em;line-height:1.4em;font-weight:700}.module p{margin:0;color:#686f72;font-size:0.85714em}.module:hover,.module:focus{border-color:#8ac9e8;background:#f8fcfe}.module.active{border-color:#2ea2cc;box-shadow:inset -4px 0 0 #2ea2cc}.module.active:hover{border-color:#69bedd;box-shadow:inset -4px 0 0 #69bedd}.module .button,.module .button-primary{margin-top:15px}@media (max-width: 530px){.module .configure,.module .activate{display:block;width:100%;text-align:center}.module .button,.module .button-primary{width:50%}.module .button-primary{line-height:normal;padding:6px 14px;height:auto;font-size:14px}}@media screen and (max-width: 450px){.module .button,.module .button-primary{margin:20px auto 0 auto}.module .button.alignright,.module .button-primary.alignright{float:none}}@media (max-width: 1147px){.cat .module:nth-child(3n+1){margin:.75% 1.5% .75% 0}.cat .module:nth-child(3n - 1){margin-right:0}}@media (max-width: 900px){.cat .module{margin:1% 2% 1% 0}.cat .module:nth-child(2n+1){margin:1% 2% 1% 0}.cat .module:nth-child(2n+0){margin-right:0}}@media (max-width: 530px){.cat .module{margin:5px 0}.cat .module:nth-child(2n+1){margin-right:0}.cat .module:nth-child(2n+0){margin-right:0}}@media (max-width: 900px){.module{margin:1% 2% 1% 0;width:49%}.module:nth-child(3n+1){margin-right:2%}.module:nth-child(2n+1){margin-right:0}}@media (max-width: 530px){.module{margin:5px 0;width:100%}.module:nth-child(3n+1){margin-right:0}.module:nth-child(2n+1){margin-right:0}}.new{position:relative}.new:after{content:'NEW';position:absolute;top:-8px;left:-8px;padding-top:10px;width:32px;height:32px;color:#fff;font-size:8px;font-weight:800;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,0.2);background:url("../images/new-badge.svg") center center no-repeat;background-size:100%;border-radius:50%}.paid{display:inline-block;position:relative;top:5px;margin-right:10px;padding:1px 4px 0 6px;height:13px;color:#fff;font:700 10px/1 "Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 0 rgba(0,0,0,0.05);background:#d0d0d0;vertical-align:top}.paid:before,.paid:after{position:absolute;top:0;left:100%;font:normal 14px/14px "genericons"}.paid:before{content:'\f503';color:#d0d0d0;text-shadow:none}.paid:after{content:'\f428';margin-left:-5px;font-size:11px}.rtl .paid:before{content:'\f501'}.load-more{margin:2.71429em 0 6.15385em}.set{display:none}.show.set{display:block}.loading{bottom:50%;position:absolute;top:50%;width:100%}.loading span{color:#999}.modal{background:#fff;position:fixed;top:52px;bottom:20px;left:20px;right:20px;margin-right:160px;display:none;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1);z-index:500}.modal .close{position:absolute;top:0;left:0;font:300 1.71429em "genericons" !important;color:#777;content:'\f405';display:inline-block;padding:0.28571em 0.71429em 0.42857em;z-index:5}.modal .close:hover{background:#eee;opacity:0.8}.modal .close:active{background:#eee;opacity:0.4}.modal #jp-post-flair{display:none}.modal .content-container{position:absolute;top:0;left:0;bottom:0;right:0;overflow:auto;padding:2.14286em}.modal .content{margin:0 auto;max-width:900px;text-align:right}.modal h2{text-align:right;margin-top:0;color:#5d6d74;font:300 32px "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 530px){.modal h2{font-size:26px}}.modal h5{clear:right}.modal p{font-size:1.23077em}.modal footer{position:absolute;right:0;bottom:0;width:100%;padding:12px 20px;border-top:1px solid #ddd;background:#fff;text-align:left}.modal footer ul{margin:0}.modal footer li{display:inline-block;margin:0}.modal .button-secondary,.modal .button-primary:active{vertical-align:baseline}@media (max-width: 900px){.modal{bottom:5%;margin-right:36px;font-size:80%}.modal .content{top:38px}}@media (max-width: 782px){.modal{top:66px;margin-right:0}}@media (max-width: 600px){.modal{top:10px;left:10px;bottom:10px;right:10px}}.jp-info-img{float:left;margin:0 30px 30px 0}.jp-info-img img{border:1px solid #ddd;max-width:100%;height:auto}.jp-info-img img:first-child{margin-top:0}@media (max-width: 782px){.jp-info-img{float:none;margin:0 0 15px}}.content-container.modal-footer{bottom:53px}.shade{background:#000;bottom:0;cursor:pointer;display:none;right:0;opacity:0.2;position:fixed;left:0;top:0;z-index:11}.entry-title,.page-template-default h1{margin-top:0.61111em;color:#5d6d74;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 530px){.entry-title,.page-template-default h1{font-size:2em}}.blog h3,.single h3,.page-template-default h2{margin-top:0.61111em;color:#5d6d74;font:300 1.9em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 530px){.blog h3,.single h3,.page-template-default h2{font-size:1.4em}}.page-template-default p{line-height:1.71429em}.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{float:right;width:70%}.footer{margin-top:1.42857em;position:relative;padding:10em 0 4.28571em;text-align:center}.footer:before,.footer:after{content:'';position:absolute;right:0;pointer-events:none}.footer:before{top:0;margin-top:-1px;width:100%;height:195px}.footer:after{display:none}.footer .download-jetpack{margin-bottom:33px}@media (min-width: 1147px){.footer{padding-bottom:35px}}@media (max-width: 1147px){.footer{padding-top:165px;padding-bottom:0}.footer:before{background-size:160% auto}.footer ul{float:none;overflow:hidden}}@media (max-width: 900px){.footer{padding-top:146px}}@media (max-width: 782px){.footer{margin-top:0}}@media (max-width: 530px){.footer{margin-top:0;padding-top:135px}}@media (max-width: 320px){.footer{padding-top:76px}}.footer nav{max-width:100%}.footer nav a,.footer nav a:visited{padding:4px 6px;color:#999}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#81A844}@media (max-width: 1147px){.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#81a844}}@media (max-width: 530px){.footer nav li{display:block;float:none;margin:0;text-align:right}.footer nav a{display:block;padding:0 16px;line-height:44px}}.primary{padding:25px 15px 10px 15px;border-bottom:1px solid #eee}.secondary-footer{margin:0 auto}.secondary-footer li{margin-left:5px}@media (min-width: 782px){.secondary-footer{padding:8px 15px 10px;margin-bottom:30px;border-bottom:1px solid #eee}}@media (min-width: 1147px){.secondary-footer{margin-bottom:0}}@media (max-width: 782px){.secondary-footer{padding:8px 15px 8px;border-bottom:none}}@media (max-width: 530px){.secondary-footer{margin:0;padding:0;border:none;font-weight:400}.secondary-footer a{border-top:1px solid #eee}}.footer .a8c-attribution{margin:0;padding:0 6px;color:#bbb;font-size:0.78571em;font-family:"Gill Sans","Gill Sans MT","Open Sans",Helvetica,Arial,sans-serif;text-transform:uppercase}.footer .a8c-attribution a{display:inline-block;position:relative;padding:4px 16px;left:9999px;outline:0}.footer .a8c-attribution a:after{content:'A';position:absolute;top:2px;left:-9999px;height:100%;color:#999;font-size:1.54545em;font-family:"automatticons";text-align:center}.footer .a8c-attribution a:hover:after{-webkit-animation:candy .4s ease-in-out;animation:candy .4s ease-in-out}@media (min-width: 782px){.secondary{padding:0 15px 10px 15px;border-bottom:1px solid #eee}}@media (min-width: 1147px){.secondary{padding:0 15px 10px 15px;border-bottom:none}}.jetpack-message{background:#8eb74e;border:1px solid #73963d;margin:33px auto 0;max-width:90%;position:relative;z-index:2}.jetpack-message.is-opt-in{margin:50px 0 0;max-width:100%;padding:10px 15px;background:#fff;border:0;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);font-size:13px;text-align:center}.subhead .jetpack-message.is-opt-in{margin:0;padding-bottom:0;background:transparent;box-shadow:none}.subhead .jetpack-message.is-opt-in .jp-button,.subhead .jetpack-message.is-opt-in .jp-button--settings{display:inline-block}.jetpack-message.is-opt-in p{color:#3c4549}.jetpack-message.is-opt-in .jp-button,.jetpack-message.is-opt-in .jp-button--settings{margin-top:15px;display:none}.jetpack-message h4{color:#fff;margin:0}.jetpack-message p{color:#fff;margin:0;opacity:0.7}.jetpack-message .squeezer{padding:23px 80px 23px 23px;position:relative;text-align:right}.jetpack-message .squeezer:before{color:#fff;content:'\f418';font-family:'Genericons';font-size:33px;height:33px;right:25px;opacity:0.6;position:absolute;top:23px;top:calc( 50% - 22px )}@media (max-width: 530px){.jetpack-message .squeezer{padding:23px}.jetpack-message .squeezer:before{display:none}}.jetpack-message .squeezer a{color:#FFF;border-bottom:1px solid #D5E4BD}.jetpack-message .squeezer a:hover{border-bottom:1px solid #F1F6E9}.jetpack-message.error .squeezer:before,.jetpack-message.jetpack-err .squeezer:before{content:'\f414'}.configure-module .jetpack-message{max-width:100%}.jetpack-modules #site-icon-deprecated .info,.modules h3.icon,.jetpack-modules .info a{width:auto}.jetpack-modules #site-icon-deprecated .info:before,.modules h3.icon:before,.jetpack-modules .info a:before{display:inline-block;position:relative;top:1px;right:-3px;margin-left:2px;opacity:0.8;font:normal 20px "genericons";vertical-align:top}.jetpack-modules .info a:before{margin-top:1px}.latex:before,.jetpack-modules #latex .info a:before{content:'\f408'}.carousel:before,.jetpack-modules #carousel .info a:before{content:'\f102'}.modules h3.contact-form:before,.jetpack-modules #contact-form .info a:before{content:'\f175';font:normal 20px "dashicons"}.modules h3.custom-css:before,.jetpack-modules #custom-css .info a:before{content:'\f100';font:normal 20px "dashicons"}.modules h3.enhanced-distribution:before,.jetpack-modules #enhanced-distribution .info a:before{content:'\f237';font:normal 20px "dashicons"}.modules h3.widgets:before,.jetpack-modules #widgets .info a:before{content:'\f116';font:normal 20px "dashicons"}.modules h3.gravatar-hovercards:before,.jetpack-modules #gravatar-hovercards .info a:before{content:'G';font-family:"automatticons"}.infinite-scroll:before,.jetpack-modules #infinite-scroll .info a:before{content:'\f408'}.comments:before,.jetpack-modules #comments .info a:before{content:'\f108'}.sso:before,.jetpack-modules #sso .info a:before{content:'\f205'}.json-api:before,.jetpack-modules #json-api .info a:before{content:'\f415'}.likes:before,.jetpack-modules #likes .info a:before{content:'\f408'}.markdown:before,.jetpack-modules #markdown .info a:before{content:'\f462'}.minileven:before,.jetpack-modules #minileven .info a:before{content:'\f453'}.manage:before,.jetpack-modules #manage .info a:before{content:'\f205'}.monitor:before,.jetpack-modules #monitor .info a:before{content:'\f468'}.notes:before,.jetpack-modules #notes .info a:before{content:'\f300'}.omnisearch:before,.jetpack-modules #omnisearch .info a:before{content:'\f400'}.photon:before,.jetpack-modules #photon .info a:before{content:'\f403'}.post-by-email:before,.jetpack-modules #post-by-email .info a:before{content:'\f410'}.protect:before,.jetpack-modules #protect .info a:before{content:'\f470';position:relative;top:-1px}.modules h3.publicize:before,.jetpack-modules #publicize .info a:before{content:'\f237';font:normal 20px "dashicons"}.related-posts:before,.jetpack-modules #related-posts .info a:before{content:'\f420'}.sharedaddy:before,.jetpack-modules #sharedaddy .info a:before{content:'\f415'}.shortcodes:before,.jetpack-modules #shortcodes .info a:before{content:'\f100'}.verification-tools:before,.jetpack-modules #verification-tools .info a:before{content:'\f425'}.after-the-deadline:before,.jetpack-modules #after-the-deadline .info a:before{content:'\f411'}.subscriptions:before,.jetpack-modules #subscriptions .info a:before{content:'\f410'}.tiled-gallery:before,.jetpack-modules #tiled-gallery .info a:before{content:'\f103'}.modules h3.vaultpress:before,.jetpack-modules #vaultpress .info a:before{content:'V';font-family:"automatticons"}.videopress:before,.jetpack-modules #videopress .info a:before{content:'\f104'}.modules h3.widget-visibility:before,.jetpack-modules #widget-visibility .info a:before{content:'\f116';font:normal 20px "dashicons"}.stats:before,.jetpack-modules #stats .info a:before{content:'\f205'}.shortlinks:before,.jetpack-modules #shortlinks .info a:before{content:'\f107'}.modules h3.custom-content-types:before,.jetpack-modules #custom-content-types .info a:before{content:'\f498';font:normal 20px "dashicons"}.modules h3.site-icon:before,.jetpack-modules #site-icon .info a:before{content:'\f475'}.jetpack-modules #site-icon-deprecated .info:before{content:'\f475'}@media (max-width: 782px){.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{width:100%}}@media (max-width: 600px){.clouds-sm{display:none}}@media (max-width: 530px){.wrap.inner.jp-support .jp-support-column-left{width:100%}.wrap.inner.jp-support .jp-support-column-left .widget-text{margin-left:0;width:100%}.wrap.inner.jp-support .jp-support-column-right{width:100%}}@media screen and (max-width: 515px){.jp-frame .header-nav{padding-bottom:10px}.jp-frame .header-nav li{line-height:30px}.jp-frame .header-nav .jetpack-logo{width:100%;text-align:center}.jp-frame .header-nav .jetpack-modules{margin:0;width:50%;text-align:left;padding:0 5px}.jp-frame .header-nav .jetpack-modules+.jetpack-modules{text-align:right}.jp-frame .header-nav .jetpack-modules:nth-child(4){text-align:center;margin:0 auto;width:100%}.jp-frame .header-nav .jetpack-modules:nth-child(4) a{padding:0 10px}}@media (max-width: 320px){.jetpack_page_jetpack_modules .wrap{padding:0 0 1em}}.page-content.configure{margin-top:0}.configure .frame.top{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}.configure .frame.top.fixed{background:#f9f9f9;border-bottom:1px solid #e9e9e9;padding-right:160px;margin-top:-6px;position:fixed;left:0;top:32px;width:100%;z-index:4;box-shadow:0 2px 2px -2px #eee}@media (max-width: 782px){.configure .frame.top.fixed{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}}@media (max-width: 600px){.configure .frame.top.fixed{top:0}}.configure .frame.top .tablenav.top{float:right}@media (max-width: 900px){.configure .frame.top .tablenav.top .actions{display:block}}@media (max-width: 782px){.configure .frame.top .tablenav.top .actions{margin-top:6px}}.jp-frame-top-fixed .configure{padding-top:94px}.filter-search{display:none;float:left;margin-top:10px}@media (max-width: 782px){.filter-search{display:block}}@media (max-width: 530px){.filter-search{display:none}}.module-actions.landing-page{float:left;margin-left:15px}.module-actions.landing-page a{font-size:0.6em}.table-bordered.jetpack-modules{border:none;margin-bottom:0}.table-bordered.jetpack-modules tr.jetpack-module th{border-right:0;padding:14px 4px 0}.table-bordered.jetpack-modules tr.jetpack-module th input{display:block}.table-bordered.jetpack-modules tr.jetpack-module:hover .genericon{display:inline-block}.table-bordered.jetpack-modules tr.jetpack-module:hover td .row-actions span a{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module.active th,.table-bordered.jetpack-modules tr.jetpack-module.active td{background:#f7fcfe}.table-bordered.jetpack-modules tr.jetpack-module.active th{border-right:4px solid #2ea2cc;padding-right:0px}.table-bordered.jetpack-modules tr.jetpack-module.active td:first-child{border-right:4px solid #2ea2cc}.table-bordered.jetpack-modules tr.jetpack-module.unavailable{opacity:0.3}.table-bordered.jetpack-modules tr.jetpack-module.unavailable input{display:none}.table-bordered.jetpack-modules tr.jetpack-module#vaultpress{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module.deprecated span{color:#888}.table-bordered.jetpack-modules tr.jetpack-module.deprecated .dep-msg{margin-left:10px;color:#555}.table-bordered.jetpack-modules tr.jetpack-module th,.table-bordered.jetpack-modules tr.jetpack-module td{background:#fff;margin:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.1)}.table-bordered.jetpack-modules tr.jetpack-module td{padding:10px 14px 8px 10px;line-height:25px}.table-bordered.jetpack-modules tr.jetpack-module td:first-child{border-right:4px solid #fff}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{float:left;padding:0 0 1px;visibility:visible}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span{margin-right:5px}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a{opacity:0}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a:focus{opacity:1}@media (max-width: 530px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:none}}@media (max-width: 782px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:block;padding-right:10px;visibility:visible}}.table-bordered.jetpack-modules>thead>tr>th{border:0;vertical-align:middle}.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-left:0}@media (max-width: 782px){.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-right:0}}.table-bordered.jetpack-modules td{background:#fff}.table-bordered.jetpack-modules #doaction{margin-top:0}@media (max-width: 782px){.table-bordered.jetpack-modules #doaction{padding:10px 7px}}.table-bordered.jetpack-modules .checkall{margin-top:1px}.table-bordered.jetpack-modules .filter-search{margin-top:8px}.table-bordered.jetpack-modules .genericon{color:#999;display:none;margin:7px 3px 0}@media (max-width: 900px){.table-bordered.jetpack-modules .genericon{display:inline-block}}.table-bordered.jetpack-modules .med{width:70px}.table-bordered.jetpack-modules .sm{width:30px}@media (max-width: 782px){.table-bordered.jetpack-modules .check-column{width:50px}}.fixed-top .check-column{padding:8px 10px 0 10px;width:2.2em}.wrap{margin:0;padding:0 1.5em 1em;overflow:hidden}.wrap h2{font-size:24px;font-weight:400}.wrap .manage-left{float:right;margin:0;padding:0;width:63%}.wrap .manage-left table{width:100%}.wrap .manage-left th{font-weight:400}@media (max-width: 782px){.wrap .manage-left{width:100%}}.wrap .manage-right{margin:0;padding:0;float:left;width:35%;z-index:1}.wrap .manage-right p{font-size:12px;font-weight:bold;color:#bbb;padding-top:2px;text-transform:uppercase;letter-spacing:1px;clear:right}.wrap .manage-right .bumper{margin-right:33px}.wrap .manage-right.show{display:block;overflow-y:auto;overflow-x:hidden;position:absolute;z-index:100000}.wrap .manage-right .search-bar{margin-bottom:18px;max-width:300px}.wrap .manage-right p.search-box{float:none;height:auto;margin-bottom:0;position:relative}.wrap .manage-right p.search-box input[type='search']{padding:0 8px;width:90%;line-height:initial}@media (max-width: 782px){.wrap .manage-right p.search-box input[type='search']{float:right;padding:9px 8px}}.wrap .manage-left p.search-box input[type="submit"]{display:none}.wrap .manage-right .button-group .button{outline:none}.wrap .manage-right .subsubsub{margin:0;padding:0}.wrap .manage-right .subsubsub a{padding:0;line-height:inherit}.wrap .manage-right .subsubsub .current{padding:1px 5px;border-radius:2px;margin-right:-5px;background:#0D72B2;color:#fff}.wrap .manage-right .subsubsub .current .count{color:#BCD7E7;font-weight:200}.wrap .manage-right .subsubsub li{display:block;text-align:right}@media (max-width: 782px){.wrap .manage-right{background:#fff;bottom:0;display:none;min-width:300px;position:fixed;left:0;top:0;z-index:13;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1)}.wrap .manage-right .bumper{margin:13px}.wrap .manage-right .navbar-form{margin:0;padding:0}}@media (max-width: 782px){.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):not(.check-column){padding:11px 10px;display:block}.jetpack_page_jetpack_modules #doaction{padding:7px 14px}.jetpack_page_jetpack_modules .fixed-top thead .check-column{padding:28px 10px 0 10px}.jetpack_page_jetpack_modules .filter-search{margin-top:28px}.jetpack_page_jetpack_modules .filter-search .button{padding:7px 14px}.manage-right.show .subsubsub li{padding:5px}}@media (max-width: 650px){.table-bordered.jetpack-modules tr.jetpack-module.deprecated td .row-actions{float:none;padding-right:18px}}@media (max-width: 430px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:none}.table-bordered.jetpack-modules tr.jetpack-module.deprecated td .row-actions{display:block}}.configure-module p{font-size:14px}.configure-module p.success,.configure-module p.error{color:#fff;padding:10px}.configure-module p.success{background-color:#81a844}.configure-module p.error{background-color:#d94f4f}.protect-status p{font-size:16px}.protect-status strong{display:inline-block;margin-top:10px;background:#fff;padding:10px;border:1px #ddd solid;font-size:16px;color:#000;max-width:100%}.protect-status.attn{color:#d94f4f}.protect-status.working{color:#81a844}#non-editable-whitelist{margin-top:15px}.protect-whitelist textarea{width:100%;min-height:150px}#editable-whitelist .whitelist-table{width:100%}.configure-module input[disabled]{opacity:.5}.configure-module input.button-primary{font-weight:bold}.whitelist-table{border-top:1px solid;border-left:1px solid;border-color:#ddd;background-color:#fff}.whitelist-table td,.whitelist-table th{padding:10px;margin:0;border-bottom:1px solid;border-right:1px solid;border-color:#ddd;font-size:14px}.whitelist-table th.heading{font-weight:bold;color:#5d6d74;text-align:right;background-color:#eee}.whitelist-table td.item-actions{border-right:none;text-align:left}.whitelist-table .toolbar{padding:0}.whitelist-table .add-btn{text-align:center;width:10%;border-right:1px #ddd solid}.ip-address,.enter-ip{width:90%;text-align:right;vertical-align:middle}.delete-ip-address{text-align:center;border:0;background:transparent;color:#6f7476;box-shadow:none;font-size:20px;margin:0;padding:0;cursor:pointer;border-radius:2px}.delete-ip-address:hover{background:#eee}.toolbar div{float:right;padding:10px}@media only screen and (min-width: 1100px){#non-editable-whitelist{width:28%;float:left;margin-top:0}.protect-whitelist{width:65%;float:right}}@media only screen and (max-width: 1130px){.enter-ip input[type="text"]{max-width:175px}}@media only screen and (max-width: 1250px) and (min-width: 1065px), (max-width: 730px) and (min-width: 600px){.enter-ip{width:85%}.add-btn{width:15%}}@media only screen and (max-width: 782px){.add-btn{text-align:left}.add-btn .ip-add{margin-top:4px;margin-bottom:3px}}@media only screen and (max-width: 730px){.add-btn{text-align:center}}@media only screen and (max-width: 665px) and (min-width: 600px){.enter-ip input[type="text"]{max-width:165px}}@media only screen and (max-width: 600px){.toolbar div{width:100%}.add-btn{border-top:1px #ddd solid}.enter-ip{text-align:center}.enter-ip strong{display:block;margin-bottom:5px}.enter-ip input[type="text"]{width:100%;max-width:100%}.add-btn input,.enter-ip .button{width:50%;margin:0 auto}.enter-ip .button{margin-top:10px}}@media only screen and (max-width: 400px){.protect-status strong{font-size:12px;overflow:auto}.add-btn input,.enter-ip .button{width:100%}}.my-jetpack-actions{margin:0 0 40px 0}.my-jetpack-actions .j-col{padding:0;text-align:center}.my-jetpack-actions #user-list{height:30px;margin-top:-1px;margin-right:-3px}#jetpack-disconnect-content{display:none;text-align:center}#jetpack-disconnect-content .cancel-disconnect{display:block;margin-top:10px}.connection-details{border:1px #ddd solid}.connection-details.local-user{margin-bottom:10px}.connection-details .user-01,.connection-details .wpuser-02,.connection-details .action-btns{padding:10px}.connection-details .user-01 .button,.connection-details .user-01 select,.connection-details .wpuser-02 .button,.connection-details .wpuser-02 select,.connection-details .action-btns .button,.connection-details .action-btns select{margin-top:5px}.connection-details .wpuser-02{margin-top:10px}.connection-details h3{padding:10px;margin:0;background:#eee;border-bottom:1px #ddd solid;font-size:14px}.jp-user img{margin-left:10px;border-radius:50%}.jp-user div,.wp-user div,.wp-action div{display:inline-block;width:100%}.j-col.jp-user,.j-col.wp-user,.j-col.wp-action{padding:0}.my-jetpack-actions select{max-width:150px}.j-actions .button:nth-child(3){margin-left:5px}.j-row.disconnect{text-align:center}.j-row.disconnect .button{margin:0 auto}a.what-is-primary{color:#b4b9be;margin-right:4px}@media (max-width: 782px){.wp-action{border-top:1px #ddd solid}.wp-action h3{display:none}}@media screen and (max-width: 500px){.connection-details{font-size:11px}.connection-details h3{font-size:12px;padding:5px}.connection-details .user-01,.connection-details .wpuser-02{padding:6px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:200px}.connection-details .action-btns{text-align:center}}@media (max-width: 530px){.connection-details .wpuser-02{margin-top:0;padding:12px}}@media screen and (max-width: 450px){.j-actions .button{width:100%;margin-bottom:5px;text-align:center}.j-actions .button.alignright{float:none}}@media screen and (max-width: 350px){.user-01,.wpuser-02{max-width:100px}}.jp-content .hide{display:none}.jp-content .pointer{cursor:pointer}.jp-content .landing{margin:0 auto;z-index:2;position:relative}.jp-content h1{font:300 2.57143em/1em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;position:relative;z-index:3;width:100%;text-align:center}.jp-content h1.success{color:#81a844}.jp-content .footer{padding-top:0;margin-top:0;background-image:none}.jp-content .footer:before{height:inherit}.jp-content .more-info:before{content:none}.landing .wpcom-connect{min-height:400px}.wpcom-connect .j-col{padding:0}.wpcom-connect .connect-desc{padding-left:25px}.wpcom-connect .connect-btn{text-align:center}.module-grid h2{color:#000;font:300 2.57143em/1em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif}.download-jetpack{margin-top:1em !important}#jump-start-area{margin-top:35px;padding-right:60px;padding-left:60px;background:#fefefe;border:1px #dae0e2 solid;padding-bottom:20px;text-align:center}#jump-start-area .connect-btn{text-align:center}#jump-start-area #jumpstart-cta,#jump-start-area .jumpstart-desc{padding:0}#jump-start-area p{font-size:14px;line-height:185%}#jump-start-area .spinner{float:none;margin:0 auto;position:absolute;bottom:0;height:100%;width:100%;background-position:50% 56%;background-color:rgba(254,254,254,0.99);display:block;opacity:.9}.jumpstart-message p{padding-left:25px}.jumpstart-desc{text-align:right}#jumpstart-cta{text-align:center;display:inline-block;float:none}.dismiss-jumpstart{color:#999;font-size:14px}#jumpstart-cta .button,#jumpstart-cta .button-primary{margin:1em;font-size:18px;height:45px !important;padding:8px 15px 1px}#jumpstart-cta .button-primary{display:block;margin:35px 20px 5px 20px}#jp-config-list{position:relative;padding-top:15px;padding-bottom:15px;margin-right:-15px;margin-left:-15px}#jp-config-list .j-col{padding:15px}#jp-config-list strong{display:inline-block}#jp-config-list small{display:block;margin-top:5px;line-height:150%}#jp-config-list .close{position:absolute;top:10px;left:0;text-transform:uppercase;font-weight:bold;display:block;z-index:5}.jp-config-status{text-transform:uppercase;font-size:10px;font-weight:bold;line-height:100%;color:#fff;background:#9fbd72;border-radius:2px;padding:2px 4px;display:inline-block}.miguel{display:none;position:fixed;opacity:.35;bottom:-200px;right:0;z-index:1;-webkit-animation:miguel 3.4s 0s ease-in-out;animation:miguel 3.4s 0s ease-in-out}.miguel:nth-child(2){right:49%;width:120px;height:131px;-webkit-animation-duration:2.4s;animation-duration:2.4s;-webkit-animation-delay:0s;animation-delay:0s}.miguel:nth-child(3){right:23%;width:60px;height:66px;-webkit-animation-duration:4.5s;animation-duration:4.5s;-webkit-animation-delay:0s;animation-delay:0s}@-webkit-keyframes "miguel"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(900px, -900px, 0px);transform:translate3d(900px, -900px, 0px)}}@keyframes "miguel"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(900px, -900px, 0px);transform:translate3d(900px, -900px, 0px)}}.nux-intro h3{background:#81a844;color:#fff;font-weight:600;padding:.75em;margin:0}.nux-intro h4{margin:0 0 2px 0}.nux-intro p{text-align:center;font-size:1.24em;line-height:175%}.nux-intro a{-webkit-transition:all .4s ease;transition:all .4s ease}.nux-intro .j-col{padding:0 0.5em}.nux-intro .j-col:first-of-type{padding-right:0}.nux-intro .j-col:last-of-type{padding-left:0}.nux-intro .nux-in{background:#ececec;-webkit-border-bottom-left-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;border-bottom-right-radius:6px}.nux-intro .nux-in h3{font-size:1.10em;-webkit-border-top-right-radius:6px;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;border-top-left-radius:6px}.nux-intro .nux-in h3 .dashicons{float:left;color:#658435;font-size:1.25em;padding-right:0}.nux-intro .nux-in h3 .dashicons:hover{color:#57722e}.nux-intro .nux-in p{font-size:.9em;line-height:150%;margin:0;text-align:right;color:#686f72}.nux-intro .nux-in .j-row{border-bottom:1px #f9f9f9 solid;padding:5px 0;position:relative;min-height:70px}.nux-intro .nux-in .j-row:hover{background:#e0e0e0}.nux-intro .nux-in .unavailable{opacity:0.5}.nux-intro .nux-in .unavailable .act{display:none}.nux-intro .nux-in .paid{top:4px;margin-right:12px}.nux-intro .nux-in .dashicons{color:#81a844;font-size:1em;position:relative;top:3px;padding-right:6px}.nux-intro .nux-in .dashicons:hover{color:#57722e}.nux-intro .nux-in .dashicons-external{font-size:1.5em;top:2px;padding-right:3px}.nux-intro .nux-in .lmore{font-size:11px;color:#81a844}.nux-intro .nux-in .lmore:hover{color:#57722e}.nux-intro .feat.j-col{padding:10px 10px 10px 2px}.nux-intro .feat .dashicons{display:none}.nux-intro .activated .feat .dashicons{display:inline-block}.nux-intro .act{position:absolute;top:50%;-ms-transform:translate(0, -50%);-webkit-transform:translate(0, -50%);transform:translate(0, -50%);left:8px;float:left}.nux-intro .act.j-col{padding:5px;text-align:left}.nux-intro .module-action{text-transform:uppercase;font-size:.85em;font-weight:600}.nux-intro .wpcom h3{background:#0087be}.nux-intro .wpcom h3 .dashicons{color:#00638b}.nux-intro .wpcom h3 .dashicons:hover{color:#005172}.nux-intro .wpcom .j-col{padding:10px}.nux-intro .wpcom .goto{text-align:center;padding:1em}.nux-intro .wpcom .goto:hover{background:#ececec}.nux-intro .wpcom .goto .j-col{padding:0 5px}.nux-intro .wpcom .goto a{width:100%;padding:.25em;height:auto}.nux-intro .wpcom .goto .button{height:auto;min-height:28px;line-height:18px;white-space:normal;max-width:200px;margin-bottom:0;padding-top:2px}.nux-intro .wpcom .goto .feat{position:absolute;top:50%;-ms-transform:translate(0, -50%);-webkit-transform:translate(0, -50%);transform:translate(0, -50%)}.nux-intro .nux-foot .j-col{padding:1em}.nux-foot{margin-top:2em;background:#ececec;border-radius:6px}.nux-foot .j-col{min-height:75px;padding:1em}@media (max-width: 650px){.nux-foot .j-col{width:100%}}.nux-foot .j-col+.j-col{border-right:1px #f9f9f9 solid}@media (max-width: 650px){.nux-foot .j-col+.j-col{border-right:none;border-top:1px #f9f9f9 solid}}.nux-foot img{float:right;margin-left:1em;width:75px;border-radius:4px}.nux-foot p{font-size:.9em;text-align:right;font-weight:600;margin-top:0}.nux-foot p+p{font-weight:400;margin-bottom:0}.nux-foot ul{font-size:.9em;margin-bottom:0}.nux-foot ul li{margin-bottom:0;line-height:175%}.form-toggle[type="checkbox"]{opacity:0;position:absolute}.form-toggle__switch{position:relative;display:inline-block;border-radius:12px;-moz-box-sizing:border-box;box-sizing:border-box;padding:2px;width:40px;height:24px;background:#b9b9b9;vertical-align:middle;outline:0;cursor:pointer;-webkit-transition:all .4s ease;transition:all .4s ease}.form-toggle__switch:before,.form-toggle__switch:after{position:relative;display:block;content:"";width:20px;height:20px}.form-toggle__switch:after{right:0;border-radius:50%;background:#fff;-webkit-transition:all .2s ease;transition:all .2s ease}.form-toggle__switch:before{display:none}.form-toggle__switch:hover{background:#bdd597}.form-toggle__label{cursor:pointer}.plugin-action__label{padding-left:5px;top:-1px;position:relative;color:#8e9598}.activated .plugin-action__label{color:#81a844}.form-toggle:focus+.form-toggle__label .form-toggle__switch,.form-toggle:focus:checked+.form-toggle__label .form-toggle__switch{box-shadow:0 0 0 2px #0087be}.form-toggle:checked+.form-toggle__label .form-toggle__switch{background:#81a844}.form-toggle:checked+.form-toggle__label .form-toggle__switch:after{right:16px}.form-toggle:checked:hover+.form-toggle__label .form-toggle__switch{background:#bdd597}.form-toggle:disabled+.form-toggle__label .form-toggle__switch,.form-toggle:disabled:hover+.form-toggle__label .form-toggle__switch{background:#e9eff3}.form-toggle.is-toggling+.form-toggle__label .form-toggle__switch{background:#81a844}.form-toggle.is-toggling:checked+.form-toggle__label .form-toggle__switch{background:#bdd597}.form-toggle.is-compact+.form-toggle__label .form-toggle__switch{border-radius:8px;width:24px;height:16px}.form-toggle.is-compact+.form-toggle__label .form-toggle__switch:before,.form-toggle.is-compact+.form-toggle__label .form-toggle__switch:after{width:12px;height:12px}.form-toggle.is-compact:checked+.form-toggle__label .form-toggle__switch:after{right:8px}@media (max-width: 1147px){.jp-content .landing{padding:0 2em}.jp-content .footer{padding-top:1.5em}.nux-intro .main-col{width:50%;margin-bottom:2em}.nux-intro .main-col.wpcom{width:100%}.nux-intro .main-col+.main-col{padding-left:0}.nux-intro .wpcom{padding:0}.nux-intro .wpcom .j-row{width:50%;float:right;border-bottom:1px #f9f9f9 solid;border-left:1px #f9f9f9 solid}.nux-intro .wpcom .j-row:last-of-type{width:100%;float:none;clear:both;border:none;border-top:1px #f9f9f9 solid;position:relative;top:-1px}.nux-intro .wpcom .goto .feat a{float:right}.nux-foot .j-col{border:none}.nux-foot img{float:left;margin-left:0;margin-right:1em}}@media (max-width: 900px){.nux-intro .main-col{width:100%;padding:0;margin-bottom:2em}.nux-intro .wpcom .j-row{width:100%;float:none}}@media (max-width: 782px){#jumpstart-cta .button-primary{margin:10px 0 5px 0}#jump-start-area .spinner{background-position:50% 35%}}@media (max-width: 600px){.nux-intro h1{font-size:1.75em}.nux-intro p{font-size:1em}}@media (max-width: 530px){.jp-content .landing{padding:0 .5em}#jump-start-area{padding:0 1em}.jumpstart-message p{padding-left:0}#jumpstart-cta .button-primary{margin:0 0 5px 0;padding-bottom:10px}.footer .a8c-attribution a:after{top:6px}}.nav-horizontal:before,.features:before,.modules:before,.load-more:before,.nav-horizontal:after,.features:after,.modules:after,.load-more:after{content:"";display:table}.nav-horizontal:after,.features:after,.modules:after,.load-more:after{clear:both}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  /*# sourceMappingURL=jetpack-admin.min.css.map */
css/jetpack-admin.css CHANGED
@@ -173,7 +173,7 @@ button,
173
  input,
174
  select,
175
  textarea {
176
- color: #222222;
177
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
178
  font-size: 14px;
179
  line-height: 1.4;
@@ -192,6 +192,7 @@ h6 {
192
 
193
  a {
194
  color: #0d72b2;
 
195
  transition: color .2s;
196
  text-decoration: none;
197
  }
@@ -251,12 +252,10 @@ img {
251
  -webkit-transform: scale(0.3);
252
  transform: scale(0.3);
253
  }
254
-
255
  60% {
256
  -webkit-transform: scale(1.15);
257
  transform: scale(1.15);
258
  }
259
-
260
  100% {
261
  -webkit-transform: scale(1);
262
  transform: scale(1);
@@ -268,12 +267,10 @@ img {
268
  -webkit-transform: scale(0.3);
269
  transform: scale(0.3);
270
  }
271
-
272
  60% {
273
  -webkit-transform: scale(1.15);
274
  transform: scale(1.15);
275
  }
276
-
277
  100% {
278
  -webkit-transform: scale(1);
279
  transform: scale(1);
@@ -284,17 +281,14 @@ img {
284
  -webkit-transform: scale(1);
285
  transform: scale(1);
286
  }
287
-
288
  20% {
289
  -webkit-transform: scale(1.15);
290
  transform: scale(1.15);
291
  }
292
-
293
  60% {
294
  -webkit-transform: scale(0.95);
295
  transform: scale(0.95);
296
  }
297
-
298
  100% {
299
  -webkit-transform: scale(1);
300
  transform: scale(1);
@@ -305,17 +299,14 @@ img {
305
  -webkit-transform: scale(1);
306
  transform: scale(1);
307
  }
308
-
309
  20% {
310
  -webkit-transform: scale(1.15);
311
  transform: scale(1.15);
312
  }
313
-
314
  60% {
315
  -webkit-transform: scale(0.95);
316
  transform: scale(0.95);
317
  }
318
-
319
  100% {
320
  -webkit-transform: scale(1);
321
  transform: scale(1);
@@ -326,7 +317,6 @@ img {
326
  -webkit-transform: translate3d(0px, 0px, 0px);
327
  transform: translate3d(0px, 0px, 0px);
328
  }
329
-
330
  100% {
331
  -webkit-transform: translate3d(680px, -680px, 0px);
332
  transform: translate3d(680px, -680px, 0px);
@@ -337,7 +327,6 @@ img {
337
  -webkit-transform: translate3d(0px, 0px, 0px);
338
  transform: translate3d(0px, 0px, 0px);
339
  }
340
-
341
  100% {
342
  -webkit-transform: translate3d(680px, -680px, 0px);
343
  transform: translate3d(680px, -680px, 0px);
@@ -345,6 +334,7 @@ img {
345
  }
346
  .button,
347
  .download-jetpack {
 
348
  transition: all .1s ease-in-out;
349
  }
350
 
@@ -551,10 +541,6 @@ ul#adminmenu a.toplevel_page_jetpack:after {
551
  margin-left: 36px;
552
  }
553
 
554
- #wpfooter {
555
- display: none;
556
- }
557
-
558
  .jp-content {
559
  background: #f9f9f9;
560
  margin: 0;
@@ -732,6 +718,7 @@ ul#adminmenu a.toplevel_page_jetpack:after {
732
  text-align: center;
733
  z-index: 1;
734
  background-color: #81a844;
 
735
  background-image: linear-gradient(top, #81a844, #8eb74e);
736
  }
737
  .masthead.hasbutton .flyer {
@@ -890,6 +877,8 @@ ul#adminmenu a.toplevel_page_jetpack:after {
890
  text-align: center;
891
  z-index: 1;
892
  background-color: #81a844;
 
 
893
  background-image: linear-gradient(top, #81a844, #89b348);
894
  }
895
  .clouds-sm:after {
@@ -967,6 +956,7 @@ ul#adminmenu a.toplevel_page_jetpack:after {
967
  float: left;
968
  margin: 0 5px 10px;
969
  width: 310px;
 
970
  transition: all .2s ease-in-out;
971
  }
972
  @media (max-width: 1147px) {
@@ -974,6 +964,7 @@ ul#adminmenu a.toplevel_page_jetpack:after {
974
  .module {
975
  margin: .75% 0 .75% 1.5%;
976
  width: 32.333333%;
 
977
  transition: none;
978
  }
979
  .feature:nth-child(3n + 1),
@@ -1013,6 +1004,7 @@ ul#adminmenu a.toplevel_page_jetpack:after {
1013
  z-index: -1;
1014
  -webkit-transform: translateZ(0);
1015
  transform: translateZ(0);
 
1016
  transition: all .2s ease-in-out;
1017
  }
1018
  .feature:hover {
@@ -1184,6 +1176,7 @@ ul#adminmenu a.toplevel_page_jetpack:after {
1184
  text-indent: -9999px;
1185
  pointer-events: none;
1186
  border-radius: 3px;
 
1187
  transition: all .2s ease-in-out;
1188
  }
1189
  #jetpack-search + label:after {
@@ -1230,6 +1223,7 @@ ul#adminmenu a.toplevel_page_jetpack:after {
1230
  border: 1px solid #dae0e2;
1231
  background: #fff;
1232
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.03);
 
1233
  transition: opacity 2s ease-in;
1234
  }
1235
  .module:hover {
@@ -1633,27 +1627,27 @@ ul#adminmenu a.toplevel_page_jetpack:after {
1633
  height: 195px;
1634
  }
1635
  .footer:after {
1636
- bottom: 0;
1637
- width: 100%;
1638
- height: 50px;
1639
- background: url("../images/the-footcloud.svg") center bottom no-repeat;
1640
- background-size: auto 45px;
1641
- z-index: 1;
1642
  }
1643
  .footer .download-jetpack {
1644
  margin-bottom: 33px;
1645
  }
 
 
 
 
 
1646
  @media (max-width: 1147px) {
1647
  .footer {
1648
  padding-top: 165px;
1649
  padding-bottom: 0;
 
 
 
1650
  }
1651
  .footer:before {
1652
  background-size: 160% auto;
1653
  }
1654
- .footer:after {
1655
- display: none;
1656
- }
1657
  .footer ul {
1658
  float: none;
1659
  overflow: hidden;
@@ -1695,14 +1689,10 @@ ul#adminmenu a.toplevel_page_jetpack:after {
1695
  color: #81A844;
1696
  }
1697
  @media (max-width: 1147px) {
1698
- .footer nav {
1699
- border: none;
1700
- padding: 0;
1701
- }
1702
  .footer nav a:hover, .footer nav a:focus,
1703
  .footer nav a:visited:hover,
1704
  .footer nav a:visited:focus {
1705
- color: #fff;
1706
  }
1707
  }
1708
  @media (max-width: 530px) {
@@ -1730,10 +1720,22 @@ ul#adminmenu a.toplevel_page_jetpack:after {
1730
  .secondary-footer li {
1731
  margin-right: 5px;
1732
  }
1733
- @media (max-width: 1147px) {
1734
  .secondary-footer {
1735
- margin: 0 30px;
1736
- padding: 8px 15px 30px;
 
 
 
 
 
 
 
 
 
 
 
 
1737
  }
1738
  }
1739
  @media (max-width: 530px) {
@@ -1755,9 +1757,6 @@ ul#adminmenu a.toplevel_page_jetpack:after {
1755
  font-size: 0.78571em;
1756
  font-family: "Gill Sans", "Gill Sans MT", "Open Sans", Helvetica, Arial, sans-serif;
1757
  text-transform: uppercase;
1758
- /*@include breakpoint(large-desktop){
1759
- display: none;
1760
- };*/
1761
  }
1762
  .footer .a8c-attribution a {
1763
  display: inline-block;
@@ -1782,8 +1781,17 @@ ul#adminmenu a.toplevel_page_jetpack:after {
1782
  animation: candy .4s ease-in-out;
1783
  }
1784
 
1785
- .secondary {
1786
- padding: 10px 15px 0 15px;
 
 
 
 
 
 
 
 
 
1787
  }
1788
 
1789
  .jetpack-message {
@@ -1844,7 +1852,7 @@ ul#adminmenu a.toplevel_page_jetpack:after {
1844
  opacity: 0.6;
1845
  position: absolute;
1846
  top: 23px;
1847
- top: calc(50% - 22px );
1848
  }
1849
  @media (max-width: 530px) {
1850
  .jetpack-message .squeezer {
@@ -2532,7 +2540,7 @@ ul#adminmenu a.toplevel_page_jetpack:after {
2532
  font-size: 14px;
2533
  }
2534
  .configure-module p.success, .configure-module p.error {
2535
- color: white;
2536
  padding: 10px;
2537
  }
2538
  .configure-module p.success {
@@ -2945,6 +2953,10 @@ a.what-is-primary {
2945
  background: #fefefe;
2946
  border: 1px #dae0e2 solid;
2947
  padding-bottom: 20px;
 
 
 
 
2948
  }
2949
  #jump-start-area #jumpstart-cta,
2950
  #jump-start-area .jumpstart-desc {
@@ -2977,6 +2989,8 @@ a.what-is-primary {
2977
 
2978
  #jumpstart-cta {
2979
  text-align: center;
 
 
2980
  }
2981
 
2982
  .dismiss-jumpstart {
@@ -3073,7 +3087,6 @@ a.what-is-primary {
3073
  -webkit-transform: translate3d(0px, 0px, 0px);
3074
  transform: translate3d(0px, 0px, 0px);
3075
  }
3076
-
3077
  100% {
3078
  -webkit-transform: translate3d(900px, -900px, 0px);
3079
  transform: translate3d(900px, -900px, 0px);
@@ -3084,12 +3097,336 @@ a.what-is-primary {
3084
  -webkit-transform: translate3d(0px, 0px, 0px);
3085
  transform: translate3d(0px, 0px, 0px);
3086
  }
3087
-
3088
  100% {
3089
  -webkit-transform: translate3d(900px, -900px, 0px);
3090
  transform: translate3d(900px, -900px, 0px);
3091
  }
3092
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3093
  @media (max-width: 1147px) {
3094
  .jp-content .landing {
3095
  padding: 0 2em;
@@ -3097,6 +3434,58 @@ a.what-is-primary {
3097
  .jp-content .footer {
3098
  padding-top: 1.5em;
3099
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3100
  }
3101
  @media (max-width: 782px) {
3102
  #jumpstart-cta .button-primary {
@@ -3107,6 +3496,14 @@ a.what-is-primary {
3107
  background-position: 50% 35%;
3108
  }
3109
  }
 
 
 
 
 
 
 
 
3110
  @media (max-width: 530px) {
3111
  .jp-content .landing {
3112
  padding: 0 .5em;
@@ -3136,3 +3533,5 @@ a.what-is-primary {
3136
  .nav-horizontal:after, .features:after, .modules:after, .load-more:after {
3137
  clear: both;
3138
  }
 
 
173
  input,
174
  select,
175
  textarea {
176
+ color: #222;
177
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
178
  font-size: 14px;
179
  line-height: 1.4;
192
 
193
  a {
194
  color: #0d72b2;
195
+ -webkit-transition: color .2s;
196
  transition: color .2s;
197
  text-decoration: none;
198
  }
252
  -webkit-transform: scale(0.3);
253
  transform: scale(0.3);
254
  }
 
255
  60% {
256
  -webkit-transform: scale(1.15);
257
  transform: scale(1.15);
258
  }
 
259
  100% {
260
  -webkit-transform: scale(1);
261
  transform: scale(1);
267
  -webkit-transform: scale(0.3);
268
  transform: scale(0.3);
269
  }
 
270
  60% {
271
  -webkit-transform: scale(1.15);
272
  transform: scale(1.15);
273
  }
 
274
  100% {
275
  -webkit-transform: scale(1);
276
  transform: scale(1);
281
  -webkit-transform: scale(1);
282
  transform: scale(1);
283
  }
 
284
  20% {
285
  -webkit-transform: scale(1.15);
286
  transform: scale(1.15);
287
  }
 
288
  60% {
289
  -webkit-transform: scale(0.95);
290
  transform: scale(0.95);
291
  }
 
292
  100% {
293
  -webkit-transform: scale(1);
294
  transform: scale(1);
299
  -webkit-transform: scale(1);
300
  transform: scale(1);
301
  }
 
302
  20% {
303
  -webkit-transform: scale(1.15);
304
  transform: scale(1.15);
305
  }
 
306
  60% {
307
  -webkit-transform: scale(0.95);
308
  transform: scale(0.95);
309
  }
 
310
  100% {
311
  -webkit-transform: scale(1);
312
  transform: scale(1);
317
  -webkit-transform: translate3d(0px, 0px, 0px);
318
  transform: translate3d(0px, 0px, 0px);
319
  }
 
320
  100% {
321
  -webkit-transform: translate3d(680px, -680px, 0px);
322
  transform: translate3d(680px, -680px, 0px);
327
  -webkit-transform: translate3d(0px, 0px, 0px);
328
  transform: translate3d(0px, 0px, 0px);
329
  }
 
330
  100% {
331
  -webkit-transform: translate3d(680px, -680px, 0px);
332
  transform: translate3d(680px, -680px, 0px);
334
  }
335
  .button,
336
  .download-jetpack {
337
+ -webkit-transition: all .1s ease-in-out;
338
  transition: all .1s ease-in-out;
339
  }
340
 
541
  margin-left: 36px;
542
  }
543
 
 
 
 
 
544
  .jp-content {
545
  background: #f9f9f9;
546
  margin: 0;
718
  text-align: center;
719
  z-index: 1;
720
  background-color: #81a844;
721
+ background-image: -webkit-linear-gradient(top, #81a844, #8eb74e);
722
  background-image: linear-gradient(top, #81a844, #8eb74e);
723
  }
724
  .masthead.hasbutton .flyer {
877
  text-align: center;
878
  z-index: 1;
879
  background-color: #81a844;
880
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#81a844), to(#89b348));
881
+ background-image: -webkit-linear-gradient(top, #81a844, #89b348);
882
  background-image: linear-gradient(top, #81a844, #89b348);
883
  }
884
  .clouds-sm:after {
956
  float: left;
957
  margin: 0 5px 10px;
958
  width: 310px;
959
+ -webkit-transition: all .2s ease-in-out;
960
  transition: all .2s ease-in-out;
961
  }
962
  @media (max-width: 1147px) {
964
  .module {
965
  margin: .75% 0 .75% 1.5%;
966
  width: 32.333333%;
967
+ -webkit-transition: none;
968
  transition: none;
969
  }
970
  .feature:nth-child(3n + 1),
1004
  z-index: -1;
1005
  -webkit-transform: translateZ(0);
1006
  transform: translateZ(0);
1007
+ -webkit-transition: all .2s ease-in-out;
1008
  transition: all .2s ease-in-out;
1009
  }
1010
  .feature:hover {
1176
  text-indent: -9999px;
1177
  pointer-events: none;
1178
  border-radius: 3px;
1179
+ -webkit-transition: all .2s ease-in-out;
1180
  transition: all .2s ease-in-out;
1181
  }
1182
  #jetpack-search + label:after {
1223
  border: 1px solid #dae0e2;
1224
  background: #fff;
1225
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.03);
1226
+ -webkit-transition: opacity 2s ease-in;
1227
  transition: opacity 2s ease-in;
1228
  }
1229
  .module:hover {
1627
  height: 195px;
1628
  }
1629
  .footer:after {
1630
+ display: none;
 
 
 
 
 
1631
  }
1632
  .footer .download-jetpack {
1633
  margin-bottom: 33px;
1634
  }
1635
+ @media (min-width: 1147px) {
1636
+ .footer {
1637
+ padding-bottom: 35px;
1638
+ }
1639
+ }
1640
  @media (max-width: 1147px) {
1641
  .footer {
1642
  padding-top: 165px;
1643
  padding-bottom: 0;
1644
+ /*&:after {
1645
+ display: none;
1646
+ }*/
1647
  }
1648
  .footer:before {
1649
  background-size: 160% auto;
1650
  }
 
 
 
1651
  .footer ul {
1652
  float: none;
1653
  overflow: hidden;
1689
  color: #81A844;
1690
  }
1691
  @media (max-width: 1147px) {
 
 
 
 
1692
  .footer nav a:hover, .footer nav a:focus,
1693
  .footer nav a:visited:hover,
1694
  .footer nav a:visited:focus {
1695
+ color: #81a844;
1696
  }
1697
  }
1698
  @media (max-width: 530px) {
1720
  .secondary-footer li {
1721
  margin-right: 5px;
1722
  }
1723
+ @media (min-width: 782px) {
1724
  .secondary-footer {
1725
+ padding: 8px 15px 10px;
1726
+ margin-bottom: 30px;
1727
+ border-bottom: 1px solid #eee;
1728
+ }
1729
+ }
1730
+ @media (min-width: 1147px) {
1731
+ .secondary-footer {
1732
+ margin-bottom: 0;
1733
+ }
1734
+ }
1735
+ @media (max-width: 782px) {
1736
+ .secondary-footer {
1737
+ padding: 8px 15px 8px;
1738
+ border-bottom: none;
1739
  }
1740
  }
1741
  @media (max-width: 530px) {
1757
  font-size: 0.78571em;
1758
  font-family: "Gill Sans", "Gill Sans MT", "Open Sans", Helvetica, Arial, sans-serif;
1759
  text-transform: uppercase;
 
 
 
1760
  }
1761
  .footer .a8c-attribution a {
1762
  display: inline-block;
1781
  animation: candy .4s ease-in-out;
1782
  }
1783
 
1784
+ @media (min-width: 782px) {
1785
+ .secondary {
1786
+ padding: 0 15px 10px 15px;
1787
+ border-bottom: 1px solid #eee;
1788
+ }
1789
+ }
1790
+ @media (min-width: 1147px) {
1791
+ .secondary {
1792
+ padding: 0 15px 10px 15px;
1793
+ border-bottom: none;
1794
+ }
1795
  }
1796
 
1797
  .jetpack-message {
1852
  opacity: 0.6;
1853
  position: absolute;
1854
  top: 23px;
1855
+ top: calc( 50% - 22px );
1856
  }
1857
  @media (max-width: 530px) {
1858
  .jetpack-message .squeezer {
2540
  font-size: 14px;
2541
  }
2542
  .configure-module p.success, .configure-module p.error {
2543
+ color: #fff;
2544
  padding: 10px;
2545
  }
2546
  .configure-module p.success {
2953
  background: #fefefe;
2954
  border: 1px #dae0e2 solid;
2955
  padding-bottom: 20px;
2956
+ text-align: center;
2957
+ }
2958
+ #jump-start-area .connect-btn {
2959
+ text-align: center;
2960
  }
2961
  #jump-start-area #jumpstart-cta,
2962
  #jump-start-area .jumpstart-desc {
2989
 
2990
  #jumpstart-cta {
2991
  text-align: center;
2992
+ display: inline-block;
2993
+ float: none;
2994
  }
2995
 
2996
  .dismiss-jumpstart {
3087
  -webkit-transform: translate3d(0px, 0px, 0px);
3088
  transform: translate3d(0px, 0px, 0px);
3089
  }
 
3090
  100% {
3091
  -webkit-transform: translate3d(900px, -900px, 0px);
3092
  transform: translate3d(900px, -900px, 0px);
3097
  -webkit-transform: translate3d(0px, 0px, 0px);
3098
  transform: translate3d(0px, 0px, 0px);
3099
  }
 
3100
  100% {
3101
  -webkit-transform: translate3d(900px, -900px, 0px);
3102
  transform: translate3d(900px, -900px, 0px);
3103
  }
3104
  }
3105
+ .nux-intro h3 {
3106
+ background: #81a844;
3107
+ color: #fff;
3108
+ font-weight: 600;
3109
+ padding: .75em;
3110
+ margin: 0;
3111
+ }
3112
+ .nux-intro h4 {
3113
+ margin: 0 0 2px 0;
3114
+ }
3115
+ .nux-intro p {
3116
+ text-align: center;
3117
+ font-size: 1.24em;
3118
+ line-height: 175%;
3119
+ }
3120
+ .nux-intro a {
3121
+ -webkit-transition: all .4s ease;
3122
+ transition: all .4s ease;
3123
+ }
3124
+ .nux-intro .j-col {
3125
+ padding: 0 0.5em;
3126
+ }
3127
+ .nux-intro .j-col:first-of-type {
3128
+ padding-left: 0;
3129
+ }
3130
+ .nux-intro .j-col:last-of-type {
3131
+ padding-right: 0;
3132
+ }
3133
+ .nux-intro .nux-in {
3134
+ background: #ececec;
3135
+ -webkit-border-bottom-right-radius: 6px;
3136
+ -webkit-border-bottom-left-radius: 6px;
3137
+ -moz-border-radius-bottomright: 6px;
3138
+ -moz-border-radius-bottomleft: 6px;
3139
+ border-bottom-right-radius: 6px;
3140
+ border-bottom-left-radius: 6px;
3141
+ }
3142
+ .nux-intro .nux-in h3 {
3143
+ font-size: 1.10em;
3144
+ -webkit-border-top-left-radius: 6px;
3145
+ -webkit-border-top-right-radius: 6px;
3146
+ -moz-border-radius-topleft: 6px;
3147
+ -moz-border-radius-topright: 6px;
3148
+ border-top-left-radius: 6px;
3149
+ border-top-right-radius: 6px;
3150
+ }
3151
+ .nux-intro .nux-in h3 .dashicons {
3152
+ float: right;
3153
+ color: #658435;
3154
+ font-size: 1.25em;
3155
+ padding-left: 0;
3156
+ }
3157
+ .nux-intro .nux-in h3 .dashicons:hover {
3158
+ color: #57722e;
3159
+ }
3160
+ .nux-intro .nux-in p {
3161
+ font-size: .9em;
3162
+ line-height: 150%;
3163
+ margin: 0;
3164
+ text-align: left;
3165
+ color: #686f72;
3166
+ }
3167
+ .nux-intro .nux-in .j-row {
3168
+ border-bottom: 1px #f9f9f9 solid;
3169
+ padding: 5px 0;
3170
+ position: relative;
3171
+ min-height: 70px;
3172
+ }
3173
+ .nux-intro .nux-in .j-row:hover {
3174
+ background: #e0e0e0;
3175
+ }
3176
+ .nux-intro .nux-in .unavailable {
3177
+ opacity: 0.5;
3178
+ }
3179
+ .nux-intro .nux-in .unavailable .act {
3180
+ display: none;
3181
+ }
3182
+ .nux-intro .nux-in .paid {
3183
+ top: 4px;
3184
+ margin-left: 12px;
3185
+ }
3186
+ .nux-intro .nux-in .dashicons {
3187
+ color: #81a844;
3188
+ font-size: 1em;
3189
+ position: relative;
3190
+ top: 3px;
3191
+ padding-left: 6px;
3192
+ }
3193
+ .nux-intro .nux-in .dashicons:hover {
3194
+ color: #57722e;
3195
+ }
3196
+ .nux-intro .nux-in .dashicons-external {
3197
+ font-size: 1.5em;
3198
+ top: 2px;
3199
+ padding-left: 3px;
3200
+ }
3201
+ .nux-intro .nux-in .lmore {
3202
+ font-size: 11px;
3203
+ color: #81a844;
3204
+ }
3205
+ .nux-intro .nux-in .lmore:hover {
3206
+ color: #57722e;
3207
+ }
3208
+ .nux-intro .feat.j-col {
3209
+ padding: 10px 2px 10px 10px;
3210
+ }
3211
+ .nux-intro .feat .dashicons {
3212
+ display: none;
3213
+ }
3214
+ .nux-intro .activated .feat .dashicons {
3215
+ display: inline-block;
3216
+ }
3217
+ .nux-intro .act {
3218
+ position: absolute;
3219
+ top: 50%;
3220
+ -ms-transform: translate(0, -50%);
3221
+ -webkit-transform: translate(0, -50%);
3222
+ transform: translate(0, -50%);
3223
+ right: 8px;
3224
+ float: right;
3225
+ }
3226
+ .nux-intro .act.j-col {
3227
+ padding: 5px;
3228
+ text-align: right;
3229
+ }
3230
+ .nux-intro .module-action {
3231
+ text-transform: uppercase;
3232
+ font-size: .85em;
3233
+ font-weight: 600;
3234
+ }
3235
+ .nux-intro .wpcom h3 {
3236
+ background: #0087be;
3237
+ }
3238
+ .nux-intro .wpcom h3 .dashicons {
3239
+ color: #00638b;
3240
+ }
3241
+ .nux-intro .wpcom h3 .dashicons:hover {
3242
+ color: #005172;
3243
+ }
3244
+ .nux-intro .wpcom .j-col {
3245
+ padding: 10px;
3246
+ }
3247
+ .nux-intro .wpcom .goto {
3248
+ text-align: center;
3249
+ padding: 1em;
3250
+ }
3251
+ .nux-intro .wpcom .goto:hover {
3252
+ background: #ececec;
3253
+ }
3254
+ .nux-intro .wpcom .goto .j-col {
3255
+ padding: 0 5px;
3256
+ }
3257
+ .nux-intro .wpcom .goto a {
3258
+ width: 100%;
3259
+ padding: .25em;
3260
+ height: auto;
3261
+ }
3262
+ .nux-intro .wpcom .goto .button {
3263
+ height: auto;
3264
+ min-height: 28px;
3265
+ line-height: 18px;
3266
+ white-space: normal;
3267
+ max-width: 200px;
3268
+ margin-bottom: 0;
3269
+ padding-top: 2px;
3270
+ }
3271
+ .nux-intro .wpcom .goto .feat {
3272
+ position: absolute;
3273
+ top: 50%;
3274
+ -ms-transform: translate(0, -50%);
3275
+ -webkit-transform: translate(0, -50%);
3276
+ transform: translate(0, -50%);
3277
+ }
3278
+ .nux-intro .nux-foot .j-col {
3279
+ padding: 1em;
3280
+ }
3281
+
3282
+ .nux-foot {
3283
+ margin-top: 2em;
3284
+ background: #ececec;
3285
+ border-radius: 6px;
3286
+ }
3287
+ .nux-foot .j-col {
3288
+ min-height: 75px;
3289
+ padding: 1em;
3290
+ }
3291
+ @media (max-width: 650px) {
3292
+ .nux-foot .j-col {
3293
+ width: 100%;
3294
+ }
3295
+ }
3296
+ .nux-foot .j-col + .j-col {
3297
+ border-left: 1px #f9f9f9 solid;
3298
+ }
3299
+ @media (max-width: 650px) {
3300
+ .nux-foot .j-col + .j-col {
3301
+ border-left: none;
3302
+ border-top: 1px #f9f9f9 solid;
3303
+ }
3304
+ }
3305
+ .nux-foot img {
3306
+ float: left;
3307
+ margin-right: 1em;
3308
+ width: 75px;
3309
+ border-radius: 4px;
3310
+ }
3311
+ .nux-foot p {
3312
+ font-size: .9em;
3313
+ text-align: left;
3314
+ font-weight: 600;
3315
+ margin-top: 0;
3316
+ }
3317
+ .nux-foot p + p {
3318
+ font-weight: 400;
3319
+ margin-bottom: 0;
3320
+ }
3321
+ .nux-foot ul {
3322
+ font-size: .9em;
3323
+ margin-bottom: 0;
3324
+ }
3325
+ .nux-foot ul li {
3326
+ margin-bottom: 0;
3327
+ line-height: 175%;
3328
+ }
3329
+
3330
+ .form-toggle[type="checkbox"] {
3331
+ opacity: 0;
3332
+ position: absolute;
3333
+ }
3334
+
3335
+ .form-toggle__switch {
3336
+ position: relative;
3337
+ display: inline-block;
3338
+ border-radius: 12px;
3339
+ -moz-box-sizing: border-box;
3340
+ box-sizing: border-box;
3341
+ padding: 2px;
3342
+ width: 40px;
3343
+ height: 24px;
3344
+ background: #b9b9b9;
3345
+ vertical-align: middle;
3346
+ outline: 0;
3347
+ cursor: pointer;
3348
+ -webkit-transition: all .4s ease;
3349
+ transition: all .4s ease;
3350
+ }
3351
+ .form-toggle__switch:before, .form-toggle__switch:after {
3352
+ position: relative;
3353
+ display: block;
3354
+ content: "";
3355
+ width: 20px;
3356
+ height: 20px;
3357
+ }
3358
+ .form-toggle__switch:after {
3359
+ left: 0;
3360
+ border-radius: 50%;
3361
+ background: #fff;
3362
+ -webkit-transition: all .2s ease;
3363
+ transition: all .2s ease;
3364
+ }
3365
+ .form-toggle__switch:before {
3366
+ display: none;
3367
+ }
3368
+ .form-toggle__switch:hover {
3369
+ background: #bdd597;
3370
+ }
3371
+
3372
+ .form-toggle__label {
3373
+ cursor: pointer;
3374
+ }
3375
+
3376
+ .plugin-action__label {
3377
+ padding-right: 5px;
3378
+ top: -1px;
3379
+ position: relative;
3380
+ color: #8e9598;
3381
+ }
3382
+
3383
+ .activated .plugin-action__label {
3384
+ color: #81a844;
3385
+ }
3386
+
3387
+ .form-toggle:focus + .form-toggle__label .form-toggle__switch,
3388
+ .form-toggle:focus:checked + .form-toggle__label .form-toggle__switch {
3389
+ box-shadow: 0 0 0 2px #0087be;
3390
+ }
3391
+
3392
+ .form-toggle:checked + .form-toggle__label .form-toggle__switch {
3393
+ background: #81a844;
3394
+ }
3395
+ .form-toggle:checked + .form-toggle__label .form-toggle__switch:after {
3396
+ left: 16px;
3397
+ }
3398
+
3399
+ .form-toggle:checked:hover + .form-toggle__label .form-toggle__switch {
3400
+ background: #bdd597;
3401
+ }
3402
+
3403
+ .form-toggle:disabled + .form-toggle__label .form-toggle__switch,
3404
+ .form-toggle:disabled:hover + .form-toggle__label .form-toggle__switch {
3405
+ background: #e9eff3;
3406
+ }
3407
+
3408
+ .form-toggle.is-toggling + .form-toggle__label .form-toggle__switch {
3409
+ background: #81a844;
3410
+ }
3411
+
3412
+ .form-toggle.is-toggling:checked + .form-toggle__label .form-toggle__switch {
3413
+ background: #bdd597;
3414
+ }
3415
+
3416
+ .form-toggle.is-compact + .form-toggle__label .form-toggle__switch {
3417
+ border-radius: 8px;
3418
+ width: 24px;
3419
+ height: 16px;
3420
+ }
3421
+ .form-toggle.is-compact + .form-toggle__label .form-toggle__switch:before, .form-toggle.is-compact + .form-toggle__label .form-toggle__switch:after {
3422
+ width: 12px;
3423
+ height: 12px;
3424
+ }
3425
+
3426
+ .form-toggle.is-compact:checked + .form-toggle__label .form-toggle__switch:after {
3427
+ left: 8px;
3428
+ }
3429
+
3430
  @media (max-width: 1147px) {
3431
  .jp-content .landing {
3432
  padding: 0 2em;
3434
  .jp-content .footer {
3435
  padding-top: 1.5em;
3436
  }
3437
+
3438
+ .nux-intro .main-col {
3439
+ width: 50%;
3440
+ margin-bottom: 2em;
3441
+ }
3442
+ .nux-intro .main-col.wpcom {
3443
+ width: 100%;
3444
+ }
3445
+ .nux-intro .main-col + .main-col {
3446
+ padding-right: 0;
3447
+ }
3448
+ .nux-intro .wpcom {
3449
+ padding: 0;
3450
+ }
3451
+ .nux-intro .wpcom .j-row {
3452
+ width: 50%;
3453
+ float: left;
3454
+ border-bottom: 1px #f9f9f9 solid;
3455
+ border-right: 1px #f9f9f9 solid;
3456
+ }
3457
+ .nux-intro .wpcom .j-row:last-of-type {
3458
+ width: 100%;
3459
+ float: none;
3460
+ clear: both;
3461
+ border: none;
3462
+ border-top: 1px #f9f9f9 solid;
3463
+ position: relative;
3464
+ top: -1px;
3465
+ }
3466
+ .nux-intro .wpcom .goto .feat a {
3467
+ float: left;
3468
+ }
3469
+
3470
+ .nux-foot .j-col {
3471
+ border: none;
3472
+ }
3473
+ .nux-foot img {
3474
+ float: right;
3475
+ margin-right: 0;
3476
+ margin-left: 1em;
3477
+ }
3478
+ }
3479
+ @media (max-width: 900px) {
3480
+ .nux-intro .main-col {
3481
+ width: 100%;
3482
+ padding: 0;
3483
+ margin-bottom: 2em;
3484
+ }
3485
+ .nux-intro .wpcom .j-row {
3486
+ width: 100%;
3487
+ float: none;
3488
+ }
3489
  }
3490
  @media (max-width: 782px) {
3491
  #jumpstart-cta .button-primary {
3496
  background-position: 50% 35%;
3497
  }
3498
  }
3499
+ @media (max-width: 600px) {
3500
+ .nux-intro h1 {
3501
+ font-size: 1.75em;
3502
+ }
3503
+ .nux-intro p {
3504
+ font-size: 1em;
3505
+ }
3506
+ }
3507
  @media (max-width: 530px) {
3508
  .jp-content .landing {
3509
  padding: 0 .5em;
3533
  .nav-horizontal:after, .features:after, .modules:after, .load-more:after {
3534
  clear: both;
3535
  }
3536
+
3537
+ /*# sourceMappingURL=jetpack-admin.css.map */
css/jetpack-admin.css.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../scss/_utilities/_grid.scss","jetpack-admin.css","../scss/_utilities/mixins/_breakpoint.scss","../scss/atoms/typography/_typography.scss","../scss/atoms/_media.scss","../scss/atoms/_animations.scss","../scss/templates/_main.scss","../scss/templates/_settings.scss","../scss/pages/_connection.scss"],"names":[],"mappings":"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","file":"jetpack-admin.css"}
1
+ {"version":3,"sources":["../scss/_utilities/_grid.scss","jetpack-admin.css","../scss/_utilities/mixins/_breakpoint.scss","../scss/atoms/typography/_typography.scss","../scss/atoms/typography/_variables.scss","../scss/atoms/_media.scss","../scss/atoms/_animations.scss","../scss/atoms/_buttons.scss","../scss/atoms/icons/_automatticons.scss","../scss/atoms/icons/_jetpack.scss","../scss/molecules/_nav-horizontal.scss","../scss/templates/_main.scss","../scss/atoms/colors/_colors.scss","../scss/templates/_settings.scss","../scss/pages/_protect.scss","../scss/pages/_connection.scss","../scss/templates/_nux-landing-2015.scss","../scss/_utilities/_clearings.scss"],"names":[],"mappings":"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","file":"jetpack-admin.css"}
css/jetpack-admin.min.css CHANGED
@@ -1,34 +1,3 @@
1
- .j-row{width:100%;margin:0 auto}.j-row:before,.j-row:after{content:" ";display:table}.j-row:after{clear:both}.j-col{padding:0.85em;width:100%;float:left;position:relative}@media only screen{.j-sm-1{width:8.33333%}.j-sm-2{width:16.66667%}.j-sm-3{width:25%}.j-sm-4{width:33.33333%}.j-sm-5{width:41.66667%}.j-sm-6{width:50%}.j-sm-7{width:58.33333%}.j-sm-8{width:66.66667%}.j-sm-9{width:75%}.j-sm-10{width:83.33333%}.j-sm-11{width:91.66667%}.j-sm-12{width:100%}}@media (min-width: 530px){.j-md-1{width:8.33333%}.j-md-2{width:16.66667%}.j-md-3{width:25%}.j-md-4{width:33.33333%}.j-md-5{width:41.66667%}.j-md-6{width:50%}.j-md-7{width:58.33333%}.j-md-8{width:66.66667%}.j-md-9{width:75%}.j-md-10{width:83.33333%}.j-md-11{width:91.66667%}.j-md-12{width:100%}}@media (min-width: 782px){.j-lrg-1{width:8.33333%}.j-lrg-2{width:16.66667%}.j-lrg-3{width:25%}.j-lrg-4{width:33.33333%}.j-lrg-5{width:41.66667%}.j-lrg-6{width:50%}.j-lrg-7{width:58.33333%}.j-lrg-8{width:66.66667%}.j-lrg-9{width:75%}.j-lrg-10{width:83.33333%}.j-lrg-11{width:91.66667%}.j-lrg-12{width:100%}}body,button,input,select,textarea{color:#222;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.4;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{color:#222;clear:both}a{color:#0d72b2;transition:color .2s;text-decoration:none}a:visited{color:#0d72b2}a:hover{color:#0f92e5}a:focus{outline:thin dotted}address{margin:0 0 1.5em}abbr[title],acronym{cursor:help}ins{background:#eee;text-decoration:none}dt{font-weight:700}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}img{vertical-align:middle}@-webkit-keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}@keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}.button,.download-jetpack{transition:all .1s ease-in-out}.jp-button,.jp-button--settings{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#efefef;font:800 0.9285714286em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476;border-radius:3px}.jp-button:visited,.jp-button--settings:visited{color:#efefef}.jp-button:hover,.jp-button--settings:hover,.jp-button:focus,.jp-button--settings:focus{color:#fff;background:#57972d}.jp-button:active,.jp-button--settings:active{background:#57972d;opacity:0.8}.jp-button--settings{background:#93b45f;color:#e8eedf}.jp-button--settings:visited{color:#e8eedf}.jp-button--settings:hover,.jp-button--settings:focus{background:#9fbd72;color:#fff}.jp-button--settings.current{background:#3c6621;color:#fff;box-shadow:inset 0 2px 0 #365A1F, inset 0 1px 3px #3c6621}.download-jetpack{display:inline-block;position:relative;padding:0.64286em 0.85714em 0.53571em;color:#fff;font:400 20px/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif;background:#518d2a;z-index:3;border-radius:6px;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:visited{color:#fff}.download-jetpack:hover,.download-jetpack:focus{color:#fff;background:#57972d;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:active{top:6px;box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.4)}.download-jetpack:active:after{top:-6px}.download-jetpack:before{content:'';display:inline-block;position:relative;top:-2px;margin-right:13px;width:30px;height:30px;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%}.download-jetpack:after{content:'';position:absolute;top:0;left:0;width:100%;height:100%}@media (max-width: 1147px){.download-jetpack{font-size:1.28571em}.download-jetpack:before{top:-1px;width:23px;height:23px}}@media (max-width: 900px){.download-jetpack:active{top:0}}@media (max-width: 530px){.download-jetpack{font-size:1.21429em;font-weight:600}.download-jetpack:before{width:19px;height:19px;margin-right:9px}}
2
- #searchsubmit{display:inline-block;border:none;position:relative;padding:0.71429em 1.5em;color:#efefef;font:800 0.8em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476;outline:none;border-radius:3px}#searchsubmit:visited{color:#efefef}#searchsubmit:hover,#searchsubmit:focus{color:#fff;background:#2aa0d5}#searchsubmit:active{opacity:0.7}@font-face{font-family:'automatticons';src:url("../_inc/fonts/automatticons/automatticons.eot");src:url("../_inc/fonts/automatticons/automatticons.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/automatticons/automatticons.woff") format("woff"),url("../_inc/fonts/automatticons/automatticons.ttf") format("truetype"),url("../_inc/fonts/automatticons/automatticons.svg#automatticonsregular") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.eot");src:url("../_inc/fonts/jetpack/jetpack.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/jetpack/jetpack.woff") format("woff"),url("../_inc/fonts/jetpack/jetpack.ttf") format("truetype"),url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg");font-weight:normal;font-style:normal}@media screen and (-webkit-min-device-pixel-ratio: 0){@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg")}}.nav-horizontal a{display:inline-block}.nav-horizontal li{position:relative;float:left}.nav-horizontal ul{margin:0;padding:0}*,*:before,*:after{-moz-box-sizing:border-box;box-sizing:border-box}::-moz-selection{background:#91bd51;color:#fff;text-shadow:none}::selection{background:#91bd51;color:#fff;text-shadow:none}#wpbody-content{padding-bottom:0}#wpcontent{margin-left:160px;padding:0}ul#adminmenu a.toplevel_page_jetpack:after{border-right-color:#81a844}.folded #wpcontent{margin-left:36px}#wpfooter{display:none}.jp-content{background:#f9f9f9;margin:0;height:auto;min-height:100%;width:100%;width:100%;-webkit-font-smoothing:antialiased}.jp-content .wrapper{background:#f9f9f9}@media (max-width: 900px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-left:36px;padding-left:0}}@media (max-width: 782px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-left:0}}
3
- @media (max-width: 782px){.configure .frame.top.fixed{padding-left:0}}
4
- .wrap.inner,.page-content{max-width:950px;margin:0 auto}.wrap.inner li,.page-content li{line-height:23px}@media (max-width: 530px){.page-content{margin-top:0}}
5
- @media (max-width: 1147px){.wrap.inner{background:#f9f9f9;padding:15px}}@media (max-width: 530px){.wrap.inner{margin-top:1.71429em}}
6
- .jetpack_page_jetpack_modules .header-nav{margin:0}.jetpack_page_jetpack_modules .page-content{max-width:1200px;min-height:500px;margin:0}.page-content.about{position:relative;z-index:10}@media (max-width: 1147px){.page-content.about{background:#f9f9f9;padding:15px}}
7
- @media (max-width: 1147px){.page-content.configure{background:#f9f9f9}}
8
- .footer nav{max-width:550px;margin:0 auto}.header{left:0;right:0;background:#81a844}.header-nav li{line-height:60px}.header-nav a{padding:0 0.71429em;line-height:24px}.header-nav .jetpack-logo a{display:inline-block;position:relative;width:214px;margin-right:6px;background:url(../images/jetpack-logo.png) center center no-repeat;background:url(../images/jetpack-logo.svg) center center no-repeat,none;background-size:183px auto;color:#fff;line-height:60px;font-weight:normal}.header-nav .jetpack-logo a span{text-indent:-9999px;visibility:hidden}.header-nav .jetpack-logo a:before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background-size:183px 32px}.header-nav .jetpack-modules+.jetpack-modules{margin-left:15px}.main-nav{float:left}.main-nav li{margin:0}@media (max-width: 900px){.main-nav{font-size:13px}}
9
- .user-nav{float:right}.user-nav li{margin:0}.jetpack-pagestyles #screen-meta{margin:0}.jetpack-pagestyles #screen-meta-links .screen-meta-toggle{z-index:2}.jetpack-pagestyles #screen-options-link-wrap,.jetpack-pagestyles #contextual-help-link-wrap{border:none}.jetpack-pagestyles .update-nag{display:none}.masthead{position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:linear-gradient(top, #81a844, #8eb74e)}.masthead.hasbutton .flyer{bottom:-270px}.masthead.hasbutton .subhead{margin-top:175px}@media (max-width: 530px){.masthead.hasbutton .subhead{margin-top:105px;padding:0}}.masthead h1,.masthead h2{margin:0 auto}.masthead h1{padding:2.5em 0 1.11111em;max-width:21.94444em;color:#fff;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;position:relative;text-shadow:0 1px 1px rgba(0,0,0,0.12);z-index:3}.masthead h1+.flyby{margin-top:180px}@media (max-width: 1147px){.masthead h1{padding-top:1.83333em;font-size:2.14286em}}@media (max-width: 782px){.masthead h1{max-width:600px;font-size:28px}}@media (max-width: 530px){.masthead h1{margin:0 15px;padding:31px 0 15px 0;font-size:21px;font-weight:400}}
10
- .jetpack-connected .masthead h1{margin-bottom:33px;max-width:600px}.flyby{position:relative;max-width:1200px;margin:0 auto}@media (max-width: 900px){.flyby{display:none}}
11
- .flyer{position:absolute;bottom:-200px;left:4%;z-index:1;-webkit-animation:flyer 3.4s 2s ease-in-out;animation:flyer 3.4s 2s ease-in-out}.flyer:nth-child(2){left:49%;width:120px;height:131px;-webkit-animation-delay:4.6s;animation-delay:4.6s;-webkit-animation-duration:2.4s;animation-duration:2.4s}.flyer:nth-child(3){left:23%;width:60px;height:66px;-webkit-animation-delay:5.8s;animation-delay:5.8s;-webkit-animation-duration:4.5s;animation-duration:4.5s}.subhead{position:relative;margin-top:105px;padding:4em 0;background:#f9f9f9;z-index:2}.subhead h2{max-width:460px;color:#5d6d74;font:400 1.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 900px){.subhead h2{max-width:428px;font-size:20px}}@media (max-width: 530px){.subhead h2{display:none}}.subhead:after{content:'';position:absolute;bottom:100%;left:0;margin-bottom:-1px;width:100%;height:228px;background:url("../images/the-cloud.svg") center bottom repeat-x;pointer-events:none;z-index:-1}@media (max-width: 1147px){.subhead{margin-top:122px;padding:70px 0 49px}.subhead:after{background-size:160% auto}}@media (max-width: 900px){.subhead{margin-top:122px;padding:70px 0 49px}}@media (max-width: 530px){.subhead{margin-top:83px;padding:47px 15px 39px}}
12
- .clouds-sm{height:100px;position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:linear-gradient(top, #81a844, #89b348)}.clouds-sm:after{content:'';position:absolute;bottom:0;left:0;margin-bottom:-1px;width:100%;height:137px;background:url("../images/the-cloud-sm.svg") center bottom repeat-x;pointer-events:none;z-index:2}@media (max-width: 530px){.clouds-sm{height:90px}}
13
- .featured{border-top:1px solid #d6d6d6;border-bottom:1px solid #d6d6d6;background:#fff;position:relative;padding:2.0em 1em 4.6em 1em;text-align:center;z-index:1}.featured:before{content:"";display:block;position:absolute;top:0;height:100%;z-index:-1}.featured .features,.featured .modules{margin:0 auto;display:inline-block}@media (max-width: 530px){.featured{display:none}}
14
- .featured h2,.module-grid h2{margin-top:1em;color:#5d6d74;font:300 2em/1em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-align:center}@media (max-width: 900px){.featured h2,.module-grid h2{font-size:30px}}@media (max-width: 782px){.featured h2,.module-grid h2{font-size:28px}}
15
- .features,.modules{margin:0 -5px}.feature,.module{position:relative;float:left;margin:0 5px 10px;width:310px;transition:all .2s ease-in-out}@media (max-width: 1147px){.feature,.module{margin:.75% 0 .75% 1.5%;width:32.333333%;transition:none}.feature:nth-child(3n+1),.module:nth-child(3n+1){margin-left:0}.feature:hover,.module:hover{top:0;box-shadow:none}}
16
- .feature{-webkit-transform:translateZ(0);transform:translateZ(0)}.feature h3{margin:0 0 0.58824em;color:#697b84;font-size:1.21429em;line-height:1em;font-weight:800}.feature p{margin:0;color:#6e818a}.feature:before{content:'';position:absolute;bottom:0;left:0;width:100%;height:10px;background:rgba(0,0,0,0.02);z-index:-1;-webkit-transform:translateZ(0);transform:translateZ(0);transition:all .2s ease-in-out}.feature:hover{-webkit-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px)}.feature:hover h3{color:#1a8dba}.feature:hover .feature-img{border:1px solid #ccc;border-bottom:none}.feature:hover .no-border{border:none}.feature:hover:before{-webkit-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px)}@media (max-width: 1147px){.feature:hover h3{color:#6e818a}.feature:hover .feature-img{border:1px solid #ddd;border-bottom:none}.feature:hover .no-border{border:none}}.feature .feature-img{padding-top:52%;width:100%;height:auto;border:1px solid #ddd;border-bottom:none}.feature .feature-img.custom-css{background:url("../images/custom-css.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.custom-css{background-image:url("../images/custom-css@2x.jpg")}}.feature .feature-img.wordpress-connect{background:url("../images/wordpress-connect.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-connect{background-image:url("../images/wordpress-connect@2x.jpg")}}.feature .feature-img.wordpress-stats{background:url("../images/wordpress-stats.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-stats{background-image:url("../images/wordpress-stats@2x.jpg")}}.feature .feature-img.no-border{border:none;padding-bottom:1px}.feature-description{display:block;padding:1em 1.07143em 1.07143em;border:1px solid #ddd;background:#f5f5f5}.feature:hover .feature-description{background:#fff;border-color:#ccc}@media (max-width: 1147px){.feature:hover .feature-description{border:1px solid #ddd;background:#f5f5f5}}@media (max-width: 900px){.feature-description{min-height:115px}}
17
- .cat{clear:both;margin-bottom:23px}.cat h3{font-size:24px;font-weight:300;margin:0 0 13px 6px;text-align:left}.cat .clear{clear:both}.module-grid{text-align:center}.module-grid h2{margin:1em 0}@media (max-width: 530px){.module-grid h2{padding-top:16px;margin-top:0;font-size:25px}}
18
- #module-search{position:relative;width:100%;max-width:40.71429em;margin:0 auto 1.07143em;overflow:hidden}#jetpack-search{margin:0;padding:11px 16px 11px 16px;width:100%;border:1px solid #c9ced0;border-radius:3px;background:#fff;color:#5c6671;line-height:1.3}#jetpack-search:focus{color:#5c6671;outline:none}#jetpack-search:focus+label{background:transparent;opacity:0}#jetpack-search::-webkit-input-placeholder{color:#a8acae}#jetpack-search :-moz-placeholder{color:#a8acae}#jetpack-search::-moz-placeholder{color:#a8acae}#jetpack-search:-ms-input-placeholder{color:#a8acae}#jetpack-search+label{position:absolute;top:1px;right:1px;bottom:1px;width:48px;color:#abafb1;text-indent:-9999px;pointer-events:none;border-radius:3px;transition:all .2s ease-in-out}#jetpack-search+label:after{content:'\f400';position:absolute;right:11px;text-align:right;top:4px;font-size:1.71429em;font-weight:normal;font-family:"genericons"}.jp-filter{margin-bottom:2.85714em;color:#6f7476}.jp-filter a{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#aaa;font:600 0.92857em/1 "Open Sans", Helvetica, Arial, sans-serif;text-shadow:0 1px 1px rgba(255,255,255,0.2);background:#eee;border-radius:3px;background-clip:padding-box}.jp-filter a.selected,.jp-filter a:hover,.jp-filter a:focus{color:#efefef;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476}@media (max-width: 530px){.jp-filter a{padding:0.76em 1em}}
19
- .module{display:block;padding:0.71429em 1.07143em 1em;text-align:left;border:1px solid #dae0e2;background:#fff;box-shadow:0 0 0 rgba(0,0,0,0.03);transition:opacity 2s ease-in}.module:hover{border-color:#8ac9e8;background:#f8fcfe}.module h3{cursor:pointer;margin:0 0 0.5em;color:#1a8dba;font-size:1.14286em;line-height:1.4em;font-weight:700}.module p{margin:0;color:#686f72;font-size:0.85714em}.module:hover,.module:focus{border-color:#8ac9e8;background:#f8fcfe}.module.active{border-color:#2ea2cc;box-shadow:inset 4px 0 0 #2ea2cc}.module.active:hover{border-color:#69bedd;box-shadow:inset 4px 0 0 #69bedd}.module .button,.module .button-primary{margin-top:15px}@media (max-width: 530px){.module .configure,.module .activate{display:block;width:100%;text-align:center}.module .button,.module .button-primary{width:50%}.module .button-primary{line-height:normal;padding:6px 14px;height:auto;font-size:14px}}@media screen and (max-width: 450px){.module .button,.module .button-primary{margin:20px auto 0 auto}.module .button.alignright,.module .button-primary.alignright{float:none}}@media (max-width: 1147px){.cat .module:nth-child(3n+1){margin:.75% 0 .75% 1.5%}.cat .module:nth-child(3n - 1){margin-left:0}}@media (max-width: 900px){.cat .module{margin:1% 0 1% 2%}.cat .module:nth-child(2n+1){margin:1% 0 1% 2%}.cat .module:nth-child(2n+0){margin-left:0}}@media (max-width: 530px){.cat .module{margin:5px 0}.cat .module:nth-child(2n+1){margin-left:0}.cat .module:nth-child(2n+0){margin-left:0}}@media (max-width: 900px){.module{margin:1% 0 1% 2%;width:49%}.module:nth-child(3n+1){margin-left:2%}.module:nth-child(2n+1){margin-left:0}}@media (max-width: 530px){.module{margin:5px 0;width:100%}.module:nth-child(3n+1){margin-left:0}.module:nth-child(2n+1){margin-left:0}}
20
- .new{position:relative}.new:after{content:'NEW';position:absolute;top:-8px;right:-8px;padding-top:10px;width:32px;height:32px;color:#fff;font-size:8px;font-weight:800;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background:url("../images/new-badge.svg") center center no-repeat;background-size:100%;border-radius:50%}.paid{display:inline-block;position:relative;top:5px;margin-left:10px;padding:1px 6px 0 4px;height:13px;color:#fff;font:700 10px/1 "Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 0 rgba(0,0,0,0.05);background:#d0d0d0;vertical-align:top}.paid:before,.paid:after{position:absolute;top:0;right:100%;font:normal 14px/14px "genericons"}.paid:before{content:'\f503';color:#d0d0d0;text-shadow:none}.paid:after{content:'\f428';margin-right:-5px;font-size:11px}.rtl .paid:before{content:'\f501'}.load-more{margin:2.71429em 0 6.15385em}.set{display:none}.show.set{display:block}.loading{bottom:50%;position:absolute;top:50%;width:100%}.loading span{color:#999}.modal{background:#fff;position:fixed;top:52px;bottom:20px;right:20px;left:20px;margin-left:160px;display:none;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1);z-index:500}.modal .close{position:absolute;top:0;right:0;font:300 1.71429em "genericons" !important;color:#777;content:'\f405';display:inline-block;padding:0.28571em 0.71429em 0.42857em;z-index:5}.modal .close:hover{background:#eee;opacity:0.8}.modal .close:active{background:#eee;opacity:0.4}.modal #jp-post-flair{display:none}.modal .content-container{position:absolute;top:0;right:0;bottom:0;left:0;overflow:auto;padding:2.14286em}.modal .content{margin:0 auto;max-width:900px;text-align:left}.modal h2{text-align:left;margin-top:0;color:#5d6d74;font:300 32px "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 530px){.modal h2{font-size:26px}}.modal h5{clear:left}.modal p{font-size:1.23077em}.modal footer{position:absolute;left:0;bottom:0;width:100%;padding:12px 20px;border-top:1px solid #ddd;background:#fff;text-align:right}.modal footer ul{margin:0}.modal footer li{display:inline-block;margin:0}.modal .button-secondary,.modal .button-primary:active{vertical-align:baseline}@media (max-width: 900px){.modal{bottom:5%;margin-left:36px;font-size:80%}.modal .content{top:38px}}@media (max-width: 782px){.modal{top:66px;margin-left:0}}@media (max-width: 600px){.modal{top:10px;right:10px;bottom:10px;left:10px}}
21
- .jp-info-img{float:right;margin:0 0 30px 30px}.jp-info-img img{border:1px solid #ddd;max-width:100%;height:auto}.jp-info-img img:first-child{margin-top:0}@media (max-width: 782px){.jp-info-img{float:none;margin:0 0 15px}}
22
- .content-container.modal-footer{bottom:53px}.shade{background:#000;bottom:0;cursor:pointer;display:none;left:0;opacity:0.2;position:fixed;right:0;top:0;z-index:11}.entry-title,.page-template-default h1{margin-top:0.61111em;color:#5d6d74;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 530px){.entry-title,.page-template-default h1{font-size:2em}}
23
- .blog h3,.single h3,.page-template-default h2{margin-top:0.61111em;color:#5d6d74;font:300 1.9em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 530px){.blog h3,.single h3,.page-template-default h2{font-size:1.4em}}
24
- .page-template-default p{line-height:1.71429em}.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{float:left;width:70%}.footer{margin-top:1.42857em;position:relative;padding:10em 0 4.28571em;text-align:center}.footer:before,.footer:after{content:'';position:absolute;left:0;pointer-events:none}.footer:before{top:0;margin-top:-1px;width:100%;height:195px}.footer:after{bottom:0;width:100%;height:50px;background:url("../images/the-footcloud.svg") center bottom no-repeat;background-size:auto 45px;z-index:1}.footer .download-jetpack{margin-bottom:33px}@media (max-width: 1147px){.footer{padding-top:165px;padding-bottom:0}.footer:before{background-size:160% auto}.footer:after{display:none}.footer ul{float:none;overflow:hidden}}@media (max-width: 900px){.footer{padding-top:146px}}@media (max-width: 782px){.footer{margin-top:0}}@media (max-width: 530px){.footer{margin-top:0;padding-top:135px}}@media (max-width: 320px){.footer{padding-top:76px}}
25
- .footer nav{max-width:100%}.footer nav a,.footer nav a:visited{padding:4px 6px;color:#999}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#81A844}@media (max-width: 1147px){.footer nav{border:none;padding:0}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#fff}}@media (max-width: 530px){.footer nav li{display:block;float:none;margin:0;text-align:left}.footer nav a{display:block;padding:0 16px;line-height:44px}}
26
- .primary{padding:25px 15px 10px 15px;border-bottom:1px solid #eee}.secondary-footer{margin:0 auto}.secondary-footer li{margin-right:5px}@media (max-width: 1147px){.secondary-footer{margin:0 30px;padding:8px 15px 30px}}@media (max-width: 530px){.secondary-footer{margin:0;padding:0;border:none;font-weight:400}.secondary-footer a{border-top:1px solid #eee}}
27
- .footer .a8c-attribution{margin:0;padding:0 6px;color:#bbb;font-size:0.78571em;font-family:"Gill Sans","Gill Sans MT","Open Sans",Helvetica,Arial,sans-serif;text-transform:uppercase}.footer .a8c-attribution a{display:inline-block;position:relative;padding:4px 16px;right:9999px;outline:0}.footer .a8c-attribution a:after{content:'A';position:absolute;top:2px;right:-9999px;height:100%;color:#999;font-size:1.54545em;font-family:"automatticons";text-align:center}.footer .a8c-attribution a:hover:after{-webkit-animation:candy .4s ease-in-out;animation:candy .4s ease-in-out}.secondary{padding:10px 15px 0 15px}.jetpack-message{background:#8eb74e;border:1px solid #73963d;margin:33px auto 0;max-width:90%;position:relative;z-index:2}.jetpack-message.is-opt-in{margin:50px 0 0;max-width:100%;padding:10px 15px;background:#fff;border:0;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);font-size:13px;text-align:center}.subhead .jetpack-message.is-opt-in{margin:0;padding-bottom:0;background:transparent;box-shadow:none}.subhead .jetpack-message.is-opt-in .jp-button,.subhead .jetpack-message.is-opt-in .jp-button--settings{display:inline-block}.jetpack-message.is-opt-in p{color:#3c4549}.jetpack-message.is-opt-in .jp-button,.jetpack-message.is-opt-in .jp-button--settings{margin-top:15px;display:none}.jetpack-message h4{color:#fff;margin:0}.jetpack-message p{color:#fff;margin:0;opacity:0.7}.jetpack-message .squeezer{padding:23px 23px 23px 80px;position:relative;text-align:left}.jetpack-message .squeezer:before{color:#fff;content:'\f418';font-family:'Genericons';font-size:33px;height:33px;left:25px;opacity:0.6;position:absolute;top:23px;top:calc(50% - 22px )}@media (max-width: 530px){.jetpack-message .squeezer{padding:23px}.jetpack-message .squeezer:before{display:none}}.jetpack-message .squeezer a{color:#FFF;border-bottom:1px solid #D5E4BD}.jetpack-message .squeezer a:hover{border-bottom:1px solid #F1F6E9}.jetpack-message.error .squeezer:before,.jetpack-message.jetpack-err .squeezer:before{content:'\f414'}.configure-module .jetpack-message{max-width:100%}.jetpack-modules #site-icon-deprecated .info,.modules h3.icon,.jetpack-modules .info a{width:auto}.jetpack-modules #site-icon-deprecated .info:before,.modules h3.icon:before,.jetpack-modules .info a:before{display:inline-block;position:relative;top:1px;left:-3px;margin-right:2px;opacity:0.8;font:normal 20px "genericons";vertical-align:top}.jetpack-modules .info a:before{margin-top:1px}.latex:before,.jetpack-modules #latex .info a:before{content:'\f408'}.carousel:before,.jetpack-modules #carousel .info a:before{content:'\f102'}.modules h3.contact-form:before,.jetpack-modules #contact-form .info a:before{content:'\f175';font:normal 20px "dashicons"}.modules h3.custom-css:before,.jetpack-modules #custom-css .info a:before{content:'\f100';font:normal 20px "dashicons"}.modules h3.enhanced-distribution:before,.jetpack-modules #enhanced-distribution .info a:before{content:'\f237';font:normal 20px "dashicons"}.modules h3.widgets:before,.jetpack-modules #widgets .info a:before{content:'\f116';font:normal 20px "dashicons"}.modules h3.gravatar-hovercards:before,.jetpack-modules #gravatar-hovercards .info a:before{content:'G';font-family:"automatticons"}.infinite-scroll:before,.jetpack-modules #infinite-scroll .info a:before{content:'\f408'}.comments:before,.jetpack-modules #comments .info a:before{content:'\f108'}.sso:before,.jetpack-modules #sso .info a:before{content:'\f205'}.json-api:before,.jetpack-modules #json-api .info a:before{content:'\f415'}.likes:before,.jetpack-modules #likes .info a:before{content:'\f408'}.markdown:before,.jetpack-modules #markdown .info a:before{content:'\f462'}.minileven:before,.jetpack-modules #minileven .info a:before{content:'\f453'}.manage:before,.jetpack-modules #manage .info a:before{content:'\f205'}.monitor:before,.jetpack-modules #monitor .info a:before{content:'\f468'}.notes:before,.jetpack-modules #notes .info a:before{content:'\f300'}.omnisearch:before,.jetpack-modules #omnisearch .info a:before{content:'\f400'}.photon:before,.jetpack-modules #photon .info a:before{content:'\f403'}.post-by-email:before,.jetpack-modules #post-by-email .info a:before{content:'\f410'}.protect:before,.jetpack-modules #protect .info a:before{content:'\f470';position:relative;top:-1px}.modules h3.publicize:before,.jetpack-modules #publicize .info a:before{content:'\f237';font:normal 20px "dashicons"}.related-posts:before,.jetpack-modules #related-posts .info a:before{content:'\f420'}.sharedaddy:before,.jetpack-modules #sharedaddy .info a:before{content:'\f415'}.shortcodes:before,.jetpack-modules #shortcodes .info a:before{content:'\f100'}.verification-tools:before,.jetpack-modules #verification-tools .info a:before{content:'\f425'}.after-the-deadline:before,.jetpack-modules #after-the-deadline .info a:before{content:'\f411'}.subscriptions:before,.jetpack-modules #subscriptions .info a:before{content:'\f410'}.tiled-gallery:before,.jetpack-modules #tiled-gallery .info a:before{content:'\f103'}.modules h3.vaultpress:before,.jetpack-modules #vaultpress .info a:before{content:'V';font-family:"automatticons"}.videopress:before,.jetpack-modules #videopress .info a:before{content:'\f104'}.modules h3.widget-visibility:before,.jetpack-modules #widget-visibility .info a:before{content:'\f116';font:normal 20px "dashicons"}.stats:before,.jetpack-modules #stats .info a:before{content:'\f205'}.shortlinks:before,.jetpack-modules #shortlinks .info a:before{content:'\f107'}.modules h3.custom-content-types:before,.jetpack-modules #custom-content-types .info a:before{content:'\f498';font:normal 20px "dashicons"}.modules h3.site-icon:before,.jetpack-modules #site-icon .info a:before{content:'\f475'}.jetpack-modules #site-icon-deprecated .info:before{content:'\f475'}@media (max-width: 782px){.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{width:100%}}@media (max-width: 600px){.clouds-sm{display:none}}@media (max-width: 530px){.wrap.inner.jp-support .jp-support-column-left{width:100%}.wrap.inner.jp-support .jp-support-column-left .widget-text{margin-right:0;width:100%}.wrap.inner.jp-support .jp-support-column-right{width:100%}}@media screen and (max-width: 515px){.jp-frame .header-nav{padding-bottom:10px}.jp-frame .header-nav li{line-height:30px}.jp-frame .header-nav .jetpack-logo{width:100%;text-align:center}.jp-frame .header-nav .jetpack-modules{margin:0;width:50%;text-align:right;padding:0 5px}.jp-frame .header-nav .jetpack-modules+.jetpack-modules{text-align:left}.jp-frame .header-nav .jetpack-modules:nth-child(4){text-align:center;margin:0 auto;width:100%}.jp-frame .header-nav .jetpack-modules:nth-child(4) a{padding:0 10px}}@media (max-width: 320px){.jetpack_page_jetpack_modules .wrap{padding:0 0 1em}}
28
- .page-content.configure{margin-top:0}.configure .frame.top{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}.configure .frame.top.fixed{background:#f9f9f9;border-bottom:1px solid #e9e9e9;padding-left:160px;margin-top:-6px;position:fixed;right:0;top:32px;width:100%;z-index:4;box-shadow:0 2px 2px -2px #eee}@media (max-width: 782px){.configure .frame.top.fixed{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}}@media (max-width: 600px){.configure .frame.top.fixed{top:0}}.configure .frame.top .tablenav.top{float:left}@media (max-width: 900px){.configure .frame.top .tablenav.top .actions{display:block}}@media (max-width: 782px){.configure .frame.top .tablenav.top .actions{margin-top:6px}}
29
- .jp-frame-top-fixed .configure{padding-top:94px}.filter-search{display:none;float:right;margin-top:10px}@media (max-width: 782px){.filter-search{display:block}}@media (max-width: 530px){.filter-search{display:none}}
30
- .module-actions.landing-page{float:right;margin-right:15px}.module-actions.landing-page a{font-size:0.6em}.table-bordered.jetpack-modules{border:none;margin-bottom:0}.table-bordered.jetpack-modules tr.jetpack-module th{border-left:0;padding:14px 4px 0}.table-bordered.jetpack-modules tr.jetpack-module th input{display:block}.table-bordered.jetpack-modules tr.jetpack-module:hover .genericon{display:inline-block}.table-bordered.jetpack-modules tr.jetpack-module:hover td .row-actions span a{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module.active th,.table-bordered.jetpack-modules tr.jetpack-module.active td{background:#f7fcfe}.table-bordered.jetpack-modules tr.jetpack-module.active th{border-left:4px solid #2ea2cc;padding-left:0px}.table-bordered.jetpack-modules tr.jetpack-module.active td:first-child{border-left:4px solid #2ea2cc}.table-bordered.jetpack-modules tr.jetpack-module.unavailable{opacity:0.3}.table-bordered.jetpack-modules tr.jetpack-module.unavailable input{display:none}.table-bordered.jetpack-modules tr.jetpack-module#vaultpress{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module.deprecated span{color:#888}.table-bordered.jetpack-modules tr.jetpack-module.deprecated .dep-msg{margin-right:10px;color:#555}.table-bordered.jetpack-modules tr.jetpack-module th,.table-bordered.jetpack-modules tr.jetpack-module td{background:#fff;margin:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.1)}.table-bordered.jetpack-modules tr.jetpack-module td{padding:10px 10px 8px 14px;line-height:25px}.table-bordered.jetpack-modules tr.jetpack-module td:first-child{border-left:4px solid #fff}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{float:right;padding:0 0 1px;visibility:visible}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span{margin-left:5px}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a{opacity:0}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a:focus{opacity:1}@media (max-width: 530px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:none}}@media (max-width: 782px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:block;padding-left:10px;visibility:visible}}.table-bordered.jetpack-modules>thead>tr>th{border:0;vertical-align:middle}.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-right:0}@media (max-width: 782px){.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-left:0}}.table-bordered.jetpack-modules td{background:#fff}.table-bordered.jetpack-modules #doaction{margin-top:0}@media (max-width: 782px){.table-bordered.jetpack-modules #doaction{padding:10px 7px}}.table-bordered.jetpack-modules .checkall{margin-top:1px}.table-bordered.jetpack-modules .filter-search{margin-top:8px}.table-bordered.jetpack-modules .genericon{color:#999;display:none;margin:7px 3px 0}@media (max-width: 900px){.table-bordered.jetpack-modules .genericon{display:inline-block}}.table-bordered.jetpack-modules .med{width:70px}.table-bordered.jetpack-modules .sm{width:30px}@media (max-width: 782px){.table-bordered.jetpack-modules .check-column{width:50px}}
31
- .fixed-top .check-column{padding:8px 10px 0 10px;width:2.2em}.wrap{margin:0;padding:0 1.5em 1em;overflow:hidden}.wrap h2{font-size:24px;font-weight:400}.wrap .manage-left{float:left;margin:0;padding:0;width:63%}.wrap .manage-left table{width:100%}.wrap .manage-left th{font-weight:400}@media (max-width: 782px){.wrap .manage-left{width:100%}}.wrap .manage-right{margin:0;padding:0;float:right;width:35%;z-index:1}.wrap .manage-right p{font-size:12px;font-weight:bold;color:#bbb;padding-top:2px;text-transform:uppercase;letter-spacing:1px;clear:left}.wrap .manage-right .bumper{margin-left:33px}.wrap .manage-right.show{display:block;overflow-y:auto;overflow-x:hidden;position:absolute;z-index:100000}.wrap .manage-right .search-bar{margin-bottom:18px;max-width:300px}.wrap .manage-right p.search-box{float:none;height:auto;margin-bottom:0;position:relative}.wrap .manage-right p.search-box input[type='search']{padding:0 8px;width:90%;line-height:initial}@media (max-width: 782px){.wrap .manage-right p.search-box input[type='search']{float:left;padding:9px 8px}}.wrap .manage-right p.search-box input[type="submit"]{display:none}.wrap .manage-right .button-group .button{outline:none}.wrap .manage-right .subsubsub{margin:0;padding:0}.wrap .manage-right .subsubsub a{padding:0;line-height:inherit}.wrap .manage-right .subsubsub .current{padding:1px 5px;border-radius:2px;margin-left:-5px;background:#0D72B2;color:#fff}.wrap .manage-right .subsubsub .current .count{color:#BCD7E7;font-weight:200}.wrap .manage-right .subsubsub li{display:block;text-align:left}@media (max-width: 782px){.wrap .manage-right{background:#fff;bottom:0;display:none;min-width:300px;position:fixed;right:0;top:0;z-index:13;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1)}.wrap .manage-right .bumper{margin:13px}.wrap .manage-right .navbar-form{margin:0;padding:0}}
32
- @media (max-width: 782px){.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):not(.check-column){padding:11px 10px;display:block}.jetpack_page_jetpack_modules #doaction{padding:7px 14px}.jetpack_page_jetpack_modules .fixed-top thead .check-column{padding:28px 10px 0 10px}.jetpack_page_jetpack_modules .filter-search{margin-top:28px}.jetpack_page_jetpack_modules .filter-search .button{padding:7px 14px}.manage-right.show .subsubsub li{padding:5px}}@media (max-width: 650px){.table-bordered.jetpack-modules tr.jetpack-module.deprecated td .row-actions{float:none;padding-left:18px}}@media (max-width: 430px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:none}.table-bordered.jetpack-modules tr.jetpack-module.deprecated td .row-actions{display:block}}.configure-module p{font-size:14px}.configure-module p.success,.configure-module p.error{color:#fff;padding:10px}.configure-module p.success{background-color:#81a844}.configure-module p.error{background-color:#d94f4f}.protect-status p{font-size:16px}.protect-status strong{display:inline-block;margin-top:10px;background:#fff;padding:10px;border:1px #ddd solid;font-size:16px;color:#000;max-width:100%}.protect-status.attn{color:#d94f4f}.protect-status.working{color:#81a844}#non-editable-whitelist{margin-top:15px}.protect-whitelist textarea{width:100%;min-height:150px}#editable-whitelist .whitelist-table{width:100%}.configure-module input[disabled]{opacity:.5}.configure-module input.button-primary{font-weight:bold}.whitelist-table{border-top:1px solid;border-right:1px solid;border-color:#ddd;background-color:#fff}.whitelist-table td,.whitelist-table th{padding:10px;margin:0;border-bottom:1px solid;border-left:1px solid;border-color:#ddd;font-size:14px}.whitelist-table th.heading{font-weight:bold;color:#5d6d74;text-align:left;background-color:#eee}.whitelist-table td.item-actions{border-left:none;text-align:right}.whitelist-table .toolbar{padding:0}.whitelist-table .add-btn{text-align:center;width:10%;border-left:1px #ddd solid}.ip-address,.enter-ip{width:90%;text-align:left;vertical-align:middle}.delete-ip-address{text-align:center;border:0;background:transparent;color:#6f7476;box-shadow:none;font-size:20px;margin:0;padding:0;cursor:pointer;border-radius:2px}.delete-ip-address:hover{background:#eee}.toolbar div{float:left;padding:10px}@media only screen and (min-width: 1100px){#non-editable-whitelist{width:28%;float:right;margin-top:0}.protect-whitelist{width:65%;float:left}}@media only screen and (max-width: 1130px){.enter-ip input[type="text"]{max-width:175px}}@media only screen and (max-width: 1250px) and (min-width: 1065px), (max-width: 730px) and (min-width: 600px){.enter-ip{width:85%}.add-btn{width:15%}}@media only screen and (max-width: 782px){.add-btn{text-align:right}.add-btn .ip-add{margin-top:4px;margin-bottom:3px}}@media only screen and (max-width: 730px){.add-btn{text-align:center}}@media only screen and (max-width: 665px) and (min-width: 600px){.enter-ip input[type="text"]{max-width:165px}}@media only screen and (max-width: 600px){.toolbar div{width:100%}.add-btn{border-top:1px #ddd solid}.enter-ip{text-align:center}.enter-ip strong{display:block;margin-bottom:5px}.enter-ip input[type="text"]{width:100%;max-width:100%}.add-btn input,.enter-ip .button{width:50%;margin:0 auto}.enter-ip .button{margin-top:10px}}@media only screen and (max-width: 400px){.protect-status strong{font-size:12px;overflow:auto}.add-btn input,.enter-ip .button{width:100%}}.my-jetpack-actions{margin:0 0 40px 0}.my-jetpack-actions .j-col{padding:0;text-align:center}.my-jetpack-actions #user-list{height:30px;margin-top:-1px;margin-left:-3px}#jetpack-disconnect-content{display:none;text-align:center}#jetpack-disconnect-content .cancel-disconnect{display:block;margin-top:10px}.connection-details{border:1px #ddd solid}.connection-details.local-user{margin-bottom:10px}.connection-details .user-01,.connection-details .wpuser-02,.connection-details .action-btns{padding:10px}.connection-details .user-01 .button,.connection-details .user-01 select,.connection-details .wpuser-02 .button,.connection-details .wpuser-02 select,.connection-details .action-btns .button,.connection-details .action-btns select{margin-top:5px}.connection-details .wpuser-02{margin-top:10px}.connection-details h3{padding:10px;margin:0;background:#eee;border-bottom:1px #ddd solid;font-size:14px}.jp-user img{margin-right:10px;border-radius:50%}.jp-user div,.wp-user div,.wp-action div{display:inline-block;width:100%}.j-col.jp-user,.j-col.wp-user,.j-col.wp-action{padding:0}.my-jetpack-actions select{max-width:150px}.j-actions .button:nth-child(3){margin-right:5px}.j-row.disconnect{text-align:center}.j-row.disconnect .button{margin:0 auto}a.what-is-primary{color:#b4b9be;margin-left:4px}@media (max-width: 782px){.wp-action{border-top:1px #ddd solid}.wp-action h3{display:none}}@media screen and (max-width: 500px){.connection-details{font-size:11px}.connection-details h3{font-size:12px;padding:5px}.connection-details .user-01,.connection-details .wpuser-02{padding:6px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:200px}.connection-details .action-btns{text-align:center}}@media (max-width: 530px){.connection-details .wpuser-02{margin-top:0;padding:12px}}@media screen and (max-width: 450px){.j-actions .button{width:100%;margin-bottom:5px;text-align:center}.j-actions .button.alignright{float:none}}@media screen and (max-width: 350px){.user-01,.wpuser-02{max-width:100px}}.jp-content .hide{display:none}.jp-content .pointer{cursor:pointer}.jp-content .landing{margin:0 auto;z-index:2;position:relative}.jp-content h1{font:300 2.57143em/1em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;position:relative;z-index:3;width:100%;text-align:center}.jp-content h1.success{color:#81a844}.jp-content .footer{padding-top:0;margin-top:0;background-image:none}.jp-content .footer:before{height:inherit}.jp-content .more-info:before{content:none}.landing .wpcom-connect{min-height:400px}.wpcom-connect .j-col{padding:0}.wpcom-connect .connect-desc{padding-right:25px}.wpcom-connect .connect-btn{text-align:center}.module-grid h2{color:#000;font:300 2.57143em/1em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif}.download-jetpack{margin-top:1em !important}#jump-start-area{margin-top:35px;padding-left:60px;padding-right:60px;background:#fefefe;border:1px #dae0e2 solid;padding-bottom:20px}#jump-start-area #jumpstart-cta,#jump-start-area .jumpstart-desc{padding:0}#jump-start-area p{font-size:14px;line-height:185%}#jump-start-area .spinner{float:none;margin:0 auto;position:absolute;bottom:0;height:100%;width:100%;background-position:50% 56%;background-color:rgba(254,254,254,0.99);display:block;opacity:.9}.jumpstart-message p{padding-right:25px}.jumpstart-desc{text-align:left}#jumpstart-cta{text-align:center}.dismiss-jumpstart{color:#999;font-size:14px}#jumpstart-cta .button,#jumpstart-cta .button-primary{margin:1em;font-size:18px;height:45px !important;padding:8px 15px 1px}#jumpstart-cta .button-primary{display:block;margin:35px 20px 5px 20px}#jp-config-list{position:relative;padding-top:15px;padding-bottom:15px;margin-left:-15px;margin-right:-15px}#jp-config-list .j-col{padding:15px}#jp-config-list strong{display:inline-block}#jp-config-list small{display:block;margin-top:5px;line-height:150%}#jp-config-list .close{position:absolute;top:10px;right:0;text-transform:uppercase;font-weight:bold;display:block;z-index:5}.jp-config-status{text-transform:uppercase;font-size:10px;font-weight:bold;line-height:100%;color:#fff;background:#9fbd72;border-radius:2px;padding:2px 4px;display:inline-block}.miguel{display:none;position:fixed;opacity:.35;bottom:-200px;left:0;z-index:1;-webkit-animation:miguel 3.4s 0s ease-in-out;animation:miguel 3.4s 0s ease-in-out}.miguel:nth-child(2){left:49%;width:120px;height:131px;-webkit-animation-duration:2.4s;animation-duration:2.4s;-webkit-animation-delay:0s;animation-delay:0s}.miguel:nth-child(3){left:23%;width:60px;height:66px;-webkit-animation-duration:4.5s;animation-duration:4.5s;-webkit-animation-delay:0s;animation-delay:0s}@-webkit-keyframes "miguel"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(900px, -900px, 0px);transform:translate3d(900px, -900px, 0px)}}@keyframes "miguel"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(900px, -900px, 0px);transform:translate3d(900px, -900px, 0px)}}@media (max-width: 1147px){.jp-content .landing{padding:0 2em}.jp-content .footer{padding-top:1.5em}}@media (max-width: 782px){#jumpstart-cta .button-primary{margin:10px 0 5px 0}#jump-start-area .spinner{background-position:50% 35%}}@media (max-width: 530px){.jp-content .landing{padding:0 .5em}#jump-start-area{padding:0 1em}.jumpstart-message p{padding-right:0}#jumpstart-cta .button-primary{margin:0 0 5px 0;padding-bottom:10px}.footer .a8c-attribution a:after{top:6px}}.nav-horizontal:before,.features:before,.modules:before,.load-more:before,.nav-horizontal:after,.features:after,.modules:after,.load-more:after{content:"";display:table}.nav-horizontal:after,.features:after,.modules:after,.load-more:after{clear:both}
33
 
34
  /*# sourceMappingURL=jetpack-admin.min.css.map */
1
+ .j-row{width:100%;margin:0 auto}.j-row:before,.j-row:after{content:" ";display:table}.j-row:after{clear:both}.j-col{padding:0.85em;width:100%;float:left;position:relative}@media only screen{.j-sm-1{width:8.33333%}.j-sm-2{width:16.66667%}.j-sm-3{width:25%}.j-sm-4{width:33.33333%}.j-sm-5{width:41.66667%}.j-sm-6{width:50%}.j-sm-7{width:58.33333%}.j-sm-8{width:66.66667%}.j-sm-9{width:75%}.j-sm-10{width:83.33333%}.j-sm-11{width:91.66667%}.j-sm-12{width:100%}}@media (min-width: 530px){.j-md-1{width:8.33333%}.j-md-2{width:16.66667%}.j-md-3{width:25%}.j-md-4{width:33.33333%}.j-md-5{width:41.66667%}.j-md-6{width:50%}.j-md-7{width:58.33333%}.j-md-8{width:66.66667%}.j-md-9{width:75%}.j-md-10{width:83.33333%}.j-md-11{width:91.66667%}.j-md-12{width:100%}}@media (min-width: 782px){.j-lrg-1{width:8.33333%}.j-lrg-2{width:16.66667%}.j-lrg-3{width:25%}.j-lrg-4{width:33.33333%}.j-lrg-5{width:41.66667%}.j-lrg-6{width:50%}.j-lrg-7{width:58.33333%}.j-lrg-8{width:66.66667%}.j-lrg-9{width:75%}.j-lrg-10{width:83.33333%}.j-lrg-11{width:91.66667%}.j-lrg-12{width:100%}}body,button,input,select,textarea{color:#222;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.4;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{color:#222;clear:both}a{color:#0d72b2;-webkit-transition:color .2s;transition:color .2s;text-decoration:none}a:visited{color:#0d72b2}a:hover{color:#0f92e5}a:focus{outline:thin dotted}address{margin:0 0 1.5em}abbr[title],acronym{cursor:help}ins{background:#eee;text-decoration:none}dt{font-weight:700}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}img{vertical-align:middle}@-webkit-keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}@keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}.button,.download-jetpack{-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.jp-button,.jp-button--settings{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#efefef;font:800 0.9285714286em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476;border-radius:3px}.jp-button:visited,.jp-button--settings:visited{color:#efefef}.jp-button:hover,.jp-button--settings:hover,.jp-button:focus,.jp-button--settings:focus{color:#fff;background:#57972d}.jp-button:active,.jp-button--settings:active{background:#57972d;opacity:0.8}.jp-button--settings{background:#93b45f;color:#e8eedf}.jp-button--settings:visited{color:#e8eedf}.jp-button--settings:hover,.jp-button--settings:focus{background:#9fbd72;color:#fff}.jp-button--settings.current{background:#3c6621;color:#fff;box-shadow:inset 0 2px 0 #365A1F, inset 0 1px 3px #3c6621}.download-jetpack{display:inline-block;position:relative;padding:0.64286em 0.85714em 0.53571em;color:#fff;font:400 20px/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif;background:#518d2a;z-index:3;border-radius:6px;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:visited{color:#fff}.download-jetpack:hover,.download-jetpack:focus{color:#fff;background:#57972d;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:active{top:6px;box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.4)}.download-jetpack:active:after{top:-6px}.download-jetpack:before{content:'';display:inline-block;position:relative;top:-2px;margin-right:13px;width:30px;height:30px;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%}.download-jetpack:after{content:'';position:absolute;top:0;left:0;width:100%;height:100%}@media (max-width: 1147px){.download-jetpack{font-size:1.28571em}.download-jetpack:before{top:-1px;width:23px;height:23px}}@media (max-width: 900px){.download-jetpack:active{top:0}}@media (max-width: 530px){.download-jetpack{font-size:1.21429em;font-weight:600}.download-jetpack:before{width:19px;height:19px;margin-right:9px}}#searchsubmit{display:inline-block;border:none;position:relative;padding:0.71429em 1.5em;color:#efefef;font:800 0.8em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476;outline:none;border-radius:3px}#searchsubmit:visited{color:#efefef}#searchsubmit:hover,#searchsubmit:focus{color:#fff;background:#2aa0d5}#searchsubmit:active{opacity:0.7}@font-face{font-family:'automatticons';src:url("../_inc/fonts/automatticons/automatticons.eot");src:url("../_inc/fonts/automatticons/automatticons.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/automatticons/automatticons.woff") format("woff"),url("../_inc/fonts/automatticons/automatticons.ttf") format("truetype"),url("../_inc/fonts/automatticons/automatticons.svg#automatticonsregular") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.eot");src:url("../_inc/fonts/jetpack/jetpack.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/jetpack/jetpack.woff") format("woff"),url("../_inc/fonts/jetpack/jetpack.ttf") format("truetype"),url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg");font-weight:normal;font-style:normal}@media screen and (-webkit-min-device-pixel-ratio: 0){@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg")}}.nav-horizontal a{display:inline-block}.nav-horizontal li{position:relative;float:left}.nav-horizontal ul{margin:0;padding:0}*,*:before,*:after{-moz-box-sizing:border-box;box-sizing:border-box}::-moz-selection{background:#91bd51;color:#fff;text-shadow:none}::selection{background:#91bd51;color:#fff;text-shadow:none}#wpbody-content{padding-bottom:0}#wpcontent{margin-left:160px;padding:0}ul#adminmenu a.toplevel_page_jetpack:after{border-right-color:#81a844}.folded #wpcontent{margin-left:36px}.jp-content{background:#f9f9f9;margin:0;height:auto;min-height:100%;width:100%;width:100%;-webkit-font-smoothing:antialiased}.jp-content .wrapper{background:#f9f9f9}@media (max-width: 900px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-left:36px;padding-left:0}}@media (max-width: 782px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-left:0}}@media (max-width: 782px){.configure .frame.top.fixed{padding-left:0}}.wrap.inner,.page-content{max-width:950px;margin:0 auto}.wrap.inner li,.page-content li{line-height:23px}@media (max-width: 530px){.page-content{margin-top:0}}@media (max-width: 1147px){.wrap.inner{background:#f9f9f9;padding:15px}}@media (max-width: 530px){.wrap.inner{margin-top:1.71429em}}.jetpack_page_jetpack_modules .header-nav{margin:0}.jetpack_page_jetpack_modules .page-content{max-width:1200px;min-height:500px;margin:0}.page-content.about{position:relative;z-index:10}@media (max-width: 1147px){.page-content.about{background:#f9f9f9;padding:15px}}@media (max-width: 1147px){.page-content.configure{background:#f9f9f9}}.footer nav{max-width:550px;margin:0 auto}.header{left:0;right:0;background:#81a844}.header-nav li{line-height:60px}.header-nav a{padding:0 0.71429em;line-height:24px}.header-nav .jetpack-logo a{display:inline-block;position:relative;width:214px;margin-right:6px;background:url(../images/jetpack-logo.png) center center no-repeat;background:url(../images/jetpack-logo.svg) center center no-repeat,none;background-size:183px auto;color:#fff;line-height:60px;font-weight:normal}.header-nav .jetpack-logo a span{text-indent:-9999px;visibility:hidden}.header-nav .jetpack-logo a:before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background-size:183px 32px}.header-nav .jetpack-modules+.jetpack-modules{margin-left:15px}.main-nav{float:left}.main-nav li{margin:0}@media (max-width: 900px){.main-nav{font-size:13px}}.user-nav{float:right}.user-nav li{margin:0}.jetpack-pagestyles #screen-meta{margin:0}.jetpack-pagestyles #screen-meta-links .screen-meta-toggle{z-index:2}.jetpack-pagestyles #screen-options-link-wrap,.jetpack-pagestyles #contextual-help-link-wrap{border:none}.jetpack-pagestyles .update-nag{display:none}.masthead{position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:-webkit-linear-gradient(top, #81a844, #8eb74e);background-image:linear-gradient(top, #81a844, #8eb74e)}.masthead.hasbutton .flyer{bottom:-270px}.masthead.hasbutton .subhead{margin-top:175px}@media (max-width: 530px){.masthead.hasbutton .subhead{margin-top:105px;padding:0}}.masthead h1,.masthead h2{margin:0 auto}.masthead h1{padding:2.5em 0 1.11111em;max-width:21.94444em;color:#fff;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;position:relative;text-shadow:0 1px 1px rgba(0,0,0,0.12);z-index:3}.masthead h1+.flyby{margin-top:180px}@media (max-width: 1147px){.masthead h1{padding-top:1.83333em;font-size:2.14286em}}@media (max-width: 782px){.masthead h1{max-width:600px;font-size:28px}}@media (max-width: 530px){.masthead h1{margin:0 15px;padding:31px 0 15px 0;font-size:21px;font-weight:400}}.jetpack-connected .masthead h1{margin-bottom:33px;max-width:600px}.flyby{position:relative;max-width:1200px;margin:0 auto}@media (max-width: 900px){.flyby{display:none}}.flyer{position:absolute;bottom:-200px;left:4%;z-index:1;-webkit-animation:flyer 3.4s 2s ease-in-out;animation:flyer 3.4s 2s ease-in-out}.flyer:nth-child(2){left:49%;width:120px;height:131px;-webkit-animation-delay:4.6s;animation-delay:4.6s;-webkit-animation-duration:2.4s;animation-duration:2.4s}.flyer:nth-child(3){left:23%;width:60px;height:66px;-webkit-animation-delay:5.8s;animation-delay:5.8s;-webkit-animation-duration:4.5s;animation-duration:4.5s}.subhead{position:relative;margin-top:105px;padding:4em 0;background:#f9f9f9;z-index:2}.subhead h2{max-width:460px;color:#5d6d74;font:400 1.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 900px){.subhead h2{max-width:428px;font-size:20px}}@media (max-width: 530px){.subhead h2{display:none}}.subhead:after{content:'';position:absolute;bottom:100%;left:0;margin-bottom:-1px;width:100%;height:228px;background:url("../images/the-cloud.svg") center bottom repeat-x;pointer-events:none;z-index:-1}@media (max-width: 1147px){.subhead{margin-top:122px;padding:70px 0 49px}.subhead:after{background-size:160% auto}}@media (max-width: 900px){.subhead{margin-top:122px;padding:70px 0 49px}}@media (max-width: 530px){.subhead{margin-top:83px;padding:47px 15px 39px}}.clouds-sm{height:100px;position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:-webkit-gradient(linear, left top, left bottom, from(#81a844), to(#89b348));background-image:-webkit-linear-gradient(top, #81a844, #89b348);background-image:linear-gradient(top, #81a844, #89b348)}.clouds-sm:after{content:'';position:absolute;bottom:0;left:0;margin-bottom:-1px;width:100%;height:137px;background:url("../images/the-cloud-sm.svg") center bottom repeat-x;pointer-events:none;z-index:2}@media (max-width: 530px){.clouds-sm{height:90px}}.featured{border-top:1px solid #d6d6d6;border-bottom:1px solid #d6d6d6;background:#fff;position:relative;padding:2.0em 1em 4.6em 1em;text-align:center;z-index:1}.featured:before{content:"";display:block;position:absolute;top:0;height:100%;z-index:-1}.featured .features,.featured .modules{margin:0 auto;display:inline-block}@media (max-width: 530px){.featured{display:none}}.featured h2,.module-grid h2{margin-top:1em;color:#5d6d74;font:300 2em/1em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-align:center}@media (max-width: 900px){.featured h2,.module-grid h2{font-size:30px}}@media (max-width: 782px){.featured h2,.module-grid h2{font-size:28px}}.features,.modules{margin:0 -5px}.feature,.module{position:relative;float:left;margin:0 5px 10px;width:310px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}@media (max-width: 1147px){.feature,.module{margin:.75% 0 .75% 1.5%;width:32.333333%;-webkit-transition:none;transition:none}.feature:nth-child(3n+1),.module:nth-child(3n+1){margin-left:0}.feature:hover,.module:hover{top:0;box-shadow:none}}.feature{-webkit-transform:translateZ(0);transform:translateZ(0)}.feature h3{margin:0 0 0.58824em;color:#697b84;font-size:1.21429em;line-height:1em;font-weight:800}.feature p{margin:0;color:#6e818a}.feature:before{content:'';position:absolute;bottom:0;left:0;width:100%;height:10px;background:rgba(0,0,0,0.02);z-index:-1;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.feature:hover{-webkit-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px)}.feature:hover h3{color:#1a8dba}.feature:hover .feature-img{border:1px solid #ccc;border-bottom:none}.feature:hover .no-border{border:none}.feature:hover:before{-webkit-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px)}@media (max-width: 1147px){.feature:hover h3{color:#6e818a}.feature:hover .feature-img{border:1px solid #ddd;border-bottom:none}.feature:hover .no-border{border:none}}.feature .feature-img{padding-top:52%;width:100%;height:auto;border:1px solid #ddd;border-bottom:none}.feature .feature-img.custom-css{background:url("../images/custom-css.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.custom-css{background-image:url("../images/custom-css@2x.jpg")}}.feature .feature-img.wordpress-connect{background:url("../images/wordpress-connect.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-connect{background-image:url("../images/wordpress-connect@2x.jpg")}}.feature .feature-img.wordpress-stats{background:url("../images/wordpress-stats.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-stats{background-image:url("../images/wordpress-stats@2x.jpg")}}.feature .feature-img.no-border{border:none;padding-bottom:1px}.feature-description{display:block;padding:1em 1.07143em 1.07143em;border:1px solid #ddd;background:#f5f5f5}.feature:hover .feature-description{background:#fff;border-color:#ccc}@media (max-width: 1147px){.feature:hover .feature-description{border:1px solid #ddd;background:#f5f5f5}}@media (max-width: 900px){.feature-description{min-height:115px}}.cat{clear:both;margin-bottom:23px}.cat h3{font-size:24px;font-weight:300;margin:0 0 13px 6px;text-align:left}.cat .clear{clear:both}.module-grid{text-align:center}.module-grid h2{margin:1em 0}@media (max-width: 530px){.module-grid h2{padding-top:16px;margin-top:0;font-size:25px}}#module-search{position:relative;width:100%;max-width:40.71429em;margin:0 auto 1.07143em;overflow:hidden}#jetpack-search{margin:0;padding:11px 16px 11px 16px;width:100%;border:1px solid #c9ced0;border-radius:3px;background:#fff;color:#5c6671;line-height:1.3}#jetpack-search:focus{color:#5c6671;outline:none}#jetpack-search:focus+label{background:transparent;opacity:0}#jetpack-search::-webkit-input-placeholder{color:#a8acae}#jetpack-search :-moz-placeholder{color:#a8acae}#jetpack-search::-moz-placeholder{color:#a8acae}#jetpack-search:-ms-input-placeholder{color:#a8acae}#jetpack-search+label{position:absolute;top:1px;right:1px;bottom:1px;width:48px;color:#abafb1;text-indent:-9999px;pointer-events:none;border-radius:3px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}#jetpack-search+label:after{content:'\f400';position:absolute;right:11px;text-align:right;top:4px;font-size:1.71429em;font-weight:normal;font-family:"genericons"}.jp-filter{margin-bottom:2.85714em;color:#6f7476}.jp-filter a{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#aaa;font:600 0.92857em/1 "Open Sans", Helvetica, Arial, sans-serif;text-shadow:0 1px 1px rgba(255,255,255,0.2);background:#eee;border-radius:3px;background-clip:padding-box}.jp-filter a.selected,.jp-filter a:hover,.jp-filter a:focus{color:#efefef;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476}@media (max-width: 530px){.jp-filter a{padding:0.76em 1em}}.module{display:block;padding:0.71429em 1.07143em 1em;text-align:left;border:1px solid #dae0e2;background:#fff;box-shadow:0 0 0 rgba(0,0,0,0.03);-webkit-transition:opacity 2s ease-in;transition:opacity 2s ease-in}.module:hover{border-color:#8ac9e8;background:#f8fcfe}.module h3{cursor:pointer;margin:0 0 0.5em;color:#1a8dba;font-size:1.14286em;line-height:1.4em;font-weight:700}.module p{margin:0;color:#686f72;font-size:0.85714em}.module:hover,.module:focus{border-color:#8ac9e8;background:#f8fcfe}.module.active{border-color:#2ea2cc;box-shadow:inset 4px 0 0 #2ea2cc}.module.active:hover{border-color:#69bedd;box-shadow:inset 4px 0 0 #69bedd}.module .button,.module .button-primary{margin-top:15px}@media (max-width: 530px){.module .configure,.module .activate{display:block;width:100%;text-align:center}.module .button,.module .button-primary{width:50%}.module .button-primary{line-height:normal;padding:6px 14px;height:auto;font-size:14px}}@media screen and (max-width: 450px){.module .button,.module .button-primary{margin:20px auto 0 auto}.module .button.alignright,.module .button-primary.alignright{float:none}}@media (max-width: 1147px){.cat .module:nth-child(3n+1){margin:.75% 0 .75% 1.5%}.cat .module:nth-child(3n - 1){margin-left:0}}@media (max-width: 900px){.cat .module{margin:1% 0 1% 2%}.cat .module:nth-child(2n+1){margin:1% 0 1% 2%}.cat .module:nth-child(2n+0){margin-left:0}}@media (max-width: 530px){.cat .module{margin:5px 0}.cat .module:nth-child(2n+1){margin-left:0}.cat .module:nth-child(2n+0){margin-left:0}}@media (max-width: 900px){.module{margin:1% 0 1% 2%;width:49%}.module:nth-child(3n+1){margin-left:2%}.module:nth-child(2n+1){margin-left:0}}@media (max-width: 530px){.module{margin:5px 0;width:100%}.module:nth-child(3n+1){margin-left:0}.module:nth-child(2n+1){margin-left:0}}.new{position:relative}.new:after{content:'NEW';position:absolute;top:-8px;right:-8px;padding-top:10px;width:32px;height:32px;color:#fff;font-size:8px;font-weight:800;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background:url("../images/new-badge.svg") center center no-repeat;background-size:100%;border-radius:50%}.paid{display:inline-block;position:relative;top:5px;margin-left:10px;padding:1px 6px 0 4px;height:13px;color:#fff;font:700 10px/1 "Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 0 rgba(0,0,0,0.05);background:#d0d0d0;vertical-align:top}.paid:before,.paid:after{position:absolute;top:0;right:100%;font:normal 14px/14px "genericons"}.paid:before{content:'\f503';color:#d0d0d0;text-shadow:none}.paid:after{content:'\f428';margin-right:-5px;font-size:11px}.rtl .paid:before{content:'\f501'}.load-more{margin:2.71429em 0 6.15385em}.set{display:none}.show.set{display:block}.loading{bottom:50%;position:absolute;top:50%;width:100%}.loading span{color:#999}.modal{background:#fff;position:fixed;top:52px;bottom:20px;right:20px;left:20px;margin-left:160px;display:none;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1);z-index:500}.modal .close{position:absolute;top:0;right:0;font:300 1.71429em "genericons" !important;color:#777;content:'\f405';display:inline-block;padding:0.28571em 0.71429em 0.42857em;z-index:5}.modal .close:hover{background:#eee;opacity:0.8}.modal .close:active{background:#eee;opacity:0.4}.modal #jp-post-flair{display:none}.modal .content-container{position:absolute;top:0;right:0;bottom:0;left:0;overflow:auto;padding:2.14286em}.modal .content{margin:0 auto;max-width:900px;text-align:left}.modal h2{text-align:left;margin-top:0;color:#5d6d74;font:300 32px "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 530px){.modal h2{font-size:26px}}.modal h5{clear:left}.modal p{font-size:1.23077em}.modal footer{position:absolute;left:0;bottom:0;width:100%;padding:12px 20px;border-top:1px solid #ddd;background:#fff;text-align:right}.modal footer ul{margin:0}.modal footer li{display:inline-block;margin:0}.modal .button-secondary,.modal .button-primary:active{vertical-align:baseline}@media (max-width: 900px){.modal{bottom:5%;margin-left:36px;font-size:80%}.modal .content{top:38px}}@media (max-width: 782px){.modal{top:66px;margin-left:0}}@media (max-width: 600px){.modal{top:10px;right:10px;bottom:10px;left:10px}}.jp-info-img{float:right;margin:0 0 30px 30px}.jp-info-img img{border:1px solid #ddd;max-width:100%;height:auto}.jp-info-img img:first-child{margin-top:0}@media (max-width: 782px){.jp-info-img{float:none;margin:0 0 15px}}.content-container.modal-footer{bottom:53px}.shade{background:#000;bottom:0;cursor:pointer;display:none;left:0;opacity:0.2;position:fixed;right:0;top:0;z-index:11}.entry-title,.page-template-default h1{margin-top:0.61111em;color:#5d6d74;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 530px){.entry-title,.page-template-default h1{font-size:2em}}.blog h3,.single h3,.page-template-default h2{margin-top:0.61111em;color:#5d6d74;font:300 1.9em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 530px){.blog h3,.single h3,.page-template-default h2{font-size:1.4em}}.page-template-default p{line-height:1.71429em}.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{float:left;width:70%}.footer{margin-top:1.42857em;position:relative;padding:10em 0 4.28571em;text-align:center}.footer:before,.footer:after{content:'';position:absolute;left:0;pointer-events:none}.footer:before{top:0;margin-top:-1px;width:100%;height:195px}.footer:after{display:none}.footer .download-jetpack{margin-bottom:33px}@media (min-width: 1147px){.footer{padding-bottom:35px}}@media (max-width: 1147px){.footer{padding-top:165px;padding-bottom:0}.footer:before{background-size:160% auto}.footer ul{float:none;overflow:hidden}}@media (max-width: 900px){.footer{padding-top:146px}}@media (max-width: 782px){.footer{margin-top:0}}@media (max-width: 530px){.footer{margin-top:0;padding-top:135px}}@media (max-width: 320px){.footer{padding-top:76px}}.footer nav{max-width:100%}.footer nav a,.footer nav a:visited{padding:4px 6px;color:#999}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#81A844}@media (max-width: 1147px){.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#81a844}}@media (max-width: 530px){.footer nav li{display:block;float:none;margin:0;text-align:left}.footer nav a{display:block;padding:0 16px;line-height:44px}}.primary{padding:25px 15px 10px 15px;border-bottom:1px solid #eee}.secondary-footer{margin:0 auto}.secondary-footer li{margin-right:5px}@media (min-width: 782px){.secondary-footer{padding:8px 15px 10px;margin-bottom:30px;border-bottom:1px solid #eee}}@media (min-width: 1147px){.secondary-footer{margin-bottom:0}}@media (max-width: 782px){.secondary-footer{padding:8px 15px 8px;border-bottom:none}}@media (max-width: 530px){.secondary-footer{margin:0;padding:0;border:none;font-weight:400}.secondary-footer a{border-top:1px solid #eee}}.footer .a8c-attribution{margin:0;padding:0 6px;color:#bbb;font-size:0.78571em;font-family:"Gill Sans","Gill Sans MT","Open Sans",Helvetica,Arial,sans-serif;text-transform:uppercase}.footer .a8c-attribution a{display:inline-block;position:relative;padding:4px 16px;right:9999px;outline:0}.footer .a8c-attribution a:after{content:'A';position:absolute;top:2px;right:-9999px;height:100%;color:#999;font-size:1.54545em;font-family:"automatticons";text-align:center}.footer .a8c-attribution a:hover:after{-webkit-animation:candy .4s ease-in-out;animation:candy .4s ease-in-out}@media (min-width: 782px){.secondary{padding:0 15px 10px 15px;border-bottom:1px solid #eee}}@media (min-width: 1147px){.secondary{padding:0 15px 10px 15px;border-bottom:none}}.jetpack-message{background:#8eb74e;border:1px solid #73963d;margin:33px auto 0;max-width:90%;position:relative;z-index:2}.jetpack-message.is-opt-in{margin:50px 0 0;max-width:100%;padding:10px 15px;background:#fff;border:0;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);font-size:13px;text-align:center}.subhead .jetpack-message.is-opt-in{margin:0;padding-bottom:0;background:transparent;box-shadow:none}.subhead .jetpack-message.is-opt-in .jp-button,.subhead .jetpack-message.is-opt-in .jp-button--settings{display:inline-block}.jetpack-message.is-opt-in p{color:#3c4549}.jetpack-message.is-opt-in .jp-button,.jetpack-message.is-opt-in .jp-button--settings{margin-top:15px;display:none}.jetpack-message h4{color:#fff;margin:0}.jetpack-message p{color:#fff;margin:0;opacity:0.7}.jetpack-message .squeezer{padding:23px 23px 23px 80px;position:relative;text-align:left}.jetpack-message .squeezer:before{color:#fff;content:'\f418';font-family:'Genericons';font-size:33px;height:33px;left:25px;opacity:0.6;position:absolute;top:23px;top:calc( 50% - 22px )}@media (max-width: 530px){.jetpack-message .squeezer{padding:23px}.jetpack-message .squeezer:before{display:none}}.jetpack-message .squeezer a{color:#FFF;border-bottom:1px solid #D5E4BD}.jetpack-message .squeezer a:hover{border-bottom:1px solid #F1F6E9}.jetpack-message.error .squeezer:before,.jetpack-message.jetpack-err .squeezer:before{content:'\f414'}.configure-module .jetpack-message{max-width:100%}.jetpack-modules #site-icon-deprecated .info,.modules h3.icon,.jetpack-modules .info a{width:auto}.jetpack-modules #site-icon-deprecated .info:before,.modules h3.icon:before,.jetpack-modules .info a:before{display:inline-block;position:relative;top:1px;left:-3px;margin-right:2px;opacity:0.8;font:normal 20px "genericons";vertical-align:top}.jetpack-modules .info a:before{margin-top:1px}.latex:before,.jetpack-modules #latex .info a:before{content:'\f408'}.carousel:before,.jetpack-modules #carousel .info a:before{content:'\f102'}.modules h3.contact-form:before,.jetpack-modules #contact-form .info a:before{content:'\f175';font:normal 20px "dashicons"}.modules h3.custom-css:before,.jetpack-modules #custom-css .info a:before{content:'\f100';font:normal 20px "dashicons"}.modules h3.enhanced-distribution:before,.jetpack-modules #enhanced-distribution .info a:before{content:'\f237';font:normal 20px "dashicons"}.modules h3.widgets:before,.jetpack-modules #widgets .info a:before{content:'\f116';font:normal 20px "dashicons"}.modules h3.gravatar-hovercards:before,.jetpack-modules #gravatar-hovercards .info a:before{content:'G';font-family:"automatticons"}.infinite-scroll:before,.jetpack-modules #infinite-scroll .info a:before{content:'\f408'}.comments:before,.jetpack-modules #comments .info a:before{content:'\f108'}.sso:before,.jetpack-modules #sso .info a:before{content:'\f205'}.json-api:before,.jetpack-modules #json-api .info a:before{content:'\f415'}.likes:before,.jetpack-modules #likes .info a:before{content:'\f408'}.markdown:before,.jetpack-modules #markdown .info a:before{content:'\f462'}.minileven:before,.jetpack-modules #minileven .info a:before{content:'\f453'}.manage:before,.jetpack-modules #manage .info a:before{content:'\f205'}.monitor:before,.jetpack-modules #monitor .info a:before{content:'\f468'}.notes:before,.jetpack-modules #notes .info a:before{content:'\f300'}.omnisearch:before,.jetpack-modules #omnisearch .info a:before{content:'\f400'}.photon:before,.jetpack-modules #photon .info a:before{content:'\f403'}.post-by-email:before,.jetpack-modules #post-by-email .info a:before{content:'\f410'}.protect:before,.jetpack-modules #protect .info a:before{content:'\f470';position:relative;top:-1px}.modules h3.publicize:before,.jetpack-modules #publicize .info a:before{content:'\f237';font:normal 20px "dashicons"}.related-posts:before,.jetpack-modules #related-posts .info a:before{content:'\f420'}.sharedaddy:before,.jetpack-modules #sharedaddy .info a:before{content:'\f415'}.shortcodes:before,.jetpack-modules #shortcodes .info a:before{content:'\f100'}.verification-tools:before,.jetpack-modules #verification-tools .info a:before{content:'\f425'}.after-the-deadline:before,.jetpack-modules #after-the-deadline .info a:before{content:'\f411'}.subscriptions:before,.jetpack-modules #subscriptions .info a:before{content:'\f410'}.tiled-gallery:before,.jetpack-modules #tiled-gallery .info a:before{content:'\f103'}.modules h3.vaultpress:before,.jetpack-modules #vaultpress .info a:before{content:'V';font-family:"automatticons"}.videopress:before,.jetpack-modules #videopress .info a:before{content:'\f104'}.modules h3.widget-visibility:before,.jetpack-modules #widget-visibility .info a:before{content:'\f116';font:normal 20px "dashicons"}.stats:before,.jetpack-modules #stats .info a:before{content:'\f205'}.shortlinks:before,.jetpack-modules #shortlinks .info a:before{content:'\f107'}.modules h3.custom-content-types:before,.jetpack-modules #custom-content-types .info a:before{content:'\f498';font:normal 20px "dashicons"}.modules h3.site-icon:before,.jetpack-modules #site-icon .info a:before{content:'\f475'}.jetpack-modules #site-icon-deprecated .info:before{content:'\f475'}@media (max-width: 782px){.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{width:100%}}@media (max-width: 600px){.clouds-sm{display:none}}@media (max-width: 530px){.wrap.inner.jp-support .jp-support-column-left{width:100%}.wrap.inner.jp-support .jp-support-column-left .widget-text{margin-right:0;width:100%}.wrap.inner.jp-support .jp-support-column-right{width:100%}}@media screen and (max-width: 515px){.jp-frame .header-nav{padding-bottom:10px}.jp-frame .header-nav li{line-height:30px}.jp-frame .header-nav .jetpack-logo{width:100%;text-align:center}.jp-frame .header-nav .jetpack-modules{margin:0;width:50%;text-align:right;padding:0 5px}.jp-frame .header-nav .jetpack-modules+.jetpack-modules{text-align:left}.jp-frame .header-nav .jetpack-modules:nth-child(4){text-align:center;margin:0 auto;width:100%}.jp-frame .header-nav .jetpack-modules:nth-child(4) a{padding:0 10px}}@media (max-width: 320px){.jetpack_page_jetpack_modules .wrap{padding:0 0 1em}}.page-content.configure{margin-top:0}.configure .frame.top{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}.configure .frame.top.fixed{background:#f9f9f9;border-bottom:1px solid #e9e9e9;padding-left:160px;margin-top:-6px;position:fixed;right:0;top:32px;width:100%;z-index:4;box-shadow:0 2px 2px -2px #eee}@media (max-width: 782px){.configure .frame.top.fixed{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}}@media (max-width: 600px){.configure .frame.top.fixed{top:0}}.configure .frame.top .tablenav.top{float:left}@media (max-width: 900px){.configure .frame.top .tablenav.top .actions{display:block}}@media (max-width: 782px){.configure .frame.top .tablenav.top .actions{margin-top:6px}}.jp-frame-top-fixed .configure{padding-top:94px}.filter-search{display:none;float:right;margin-top:10px}@media (max-width: 782px){.filter-search{display:block}}@media (max-width: 530px){.filter-search{display:none}}.module-actions.landing-page{float:right;margin-right:15px}.module-actions.landing-page a{font-size:0.6em}.table-bordered.jetpack-modules{border:none;margin-bottom:0}.table-bordered.jetpack-modules tr.jetpack-module th{border-left:0;padding:14px 4px 0}.table-bordered.jetpack-modules tr.jetpack-module th input{display:block}.table-bordered.jetpack-modules tr.jetpack-module:hover .genericon{display:inline-block}.table-bordered.jetpack-modules tr.jetpack-module:hover td .row-actions span a{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module.active th,.table-bordered.jetpack-modules tr.jetpack-module.active td{background:#f7fcfe}.table-bordered.jetpack-modules tr.jetpack-module.active th{border-left:4px solid #2ea2cc;padding-left:0px}.table-bordered.jetpack-modules tr.jetpack-module.active td:first-child{border-left:4px solid #2ea2cc}.table-bordered.jetpack-modules tr.jetpack-module.unavailable{opacity:0.3}.table-bordered.jetpack-modules tr.jetpack-module.unavailable input{display:none}.table-bordered.jetpack-modules tr.jetpack-module#vaultpress{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module.deprecated span{color:#888}.table-bordered.jetpack-modules tr.jetpack-module.deprecated .dep-msg{margin-right:10px;color:#555}.table-bordered.jetpack-modules tr.jetpack-module th,.table-bordered.jetpack-modules tr.jetpack-module td{background:#fff;margin:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.1)}.table-bordered.jetpack-modules tr.jetpack-module td{padding:10px 10px 8px 14px;line-height:25px}.table-bordered.jetpack-modules tr.jetpack-module td:first-child{border-left:4px solid #fff}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{float:right;padding:0 0 1px;visibility:visible}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span{margin-left:5px}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a{opacity:0}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a:focus{opacity:1}@media (max-width: 530px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:none}}@media (max-width: 782px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:block;padding-left:10px;visibility:visible}}.table-bordered.jetpack-modules>thead>tr>th{border:0;vertical-align:middle}.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-right:0}@media (max-width: 782px){.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-left:0}}.table-bordered.jetpack-modules td{background:#fff}.table-bordered.jetpack-modules #doaction{margin-top:0}@media (max-width: 782px){.table-bordered.jetpack-modules #doaction{padding:10px 7px}}.table-bordered.jetpack-modules .checkall{margin-top:1px}.table-bordered.jetpack-modules .filter-search{margin-top:8px}.table-bordered.jetpack-modules .genericon{color:#999;display:none;margin:7px 3px 0}@media (max-width: 900px){.table-bordered.jetpack-modules .genericon{display:inline-block}}.table-bordered.jetpack-modules .med{width:70px}.table-bordered.jetpack-modules .sm{width:30px}@media (max-width: 782px){.table-bordered.jetpack-modules .check-column{width:50px}}.fixed-top .check-column{padding:8px 10px 0 10px;width:2.2em}.wrap{margin:0;padding:0 1.5em 1em;overflow:hidden}.wrap h2{font-size:24px;font-weight:400}.wrap .manage-left{float:left;margin:0;padding:0;width:63%}.wrap .manage-left table{width:100%}.wrap .manage-left th{font-weight:400}@media (max-width: 782px){.wrap .manage-left{width:100%}}.wrap .manage-right{margin:0;padding:0;float:right;width:35%;z-index:1}.wrap .manage-right p{font-size:12px;font-weight:bold;color:#bbb;padding-top:2px;text-transform:uppercase;letter-spacing:1px;clear:left}.wrap .manage-right .bumper{margin-left:33px}.wrap .manage-right.show{display:block;overflow-y:auto;overflow-x:hidden;position:absolute;z-index:100000}.wrap .manage-right .search-bar{margin-bottom:18px;max-width:300px}.wrap .manage-right p.search-box{float:none;height:auto;margin-bottom:0;position:relative}.wrap .manage-right p.search-box input[type='search']{padding:0 8px;width:90%;line-height:initial}@media (max-width: 782px){.wrap .manage-right p.search-box input[type='search']{float:left;padding:9px 8px}}.wrap .manage-right p.search-box input[type="submit"]{display:none}.wrap .manage-right .button-group .button{outline:none}.wrap .manage-right .subsubsub{margin:0;padding:0}.wrap .manage-right .subsubsub a{padding:0;line-height:inherit}.wrap .manage-right .subsubsub .current{padding:1px 5px;border-radius:2px;margin-left:-5px;background:#0D72B2;color:#fff}.wrap .manage-right .subsubsub .current .count{color:#BCD7E7;font-weight:200}.wrap .manage-right .subsubsub li{display:block;text-align:left}@media (max-width: 782px){.wrap .manage-right{background:#fff;bottom:0;display:none;min-width:300px;position:fixed;right:0;top:0;z-index:13;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1)}.wrap .manage-right .bumper{margin:13px}.wrap .manage-right .navbar-form{margin:0;padding:0}}@media (max-width: 782px){.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary):not(.check-column){padding:11px 10px;display:block}.jetpack_page_jetpack_modules #doaction{padding:7px 14px}.jetpack_page_jetpack_modules .fixed-top thead .check-column{padding:28px 10px 0 10px}.jetpack_page_jetpack_modules .filter-search{margin-top:28px}.jetpack_page_jetpack_modules .filter-search .button{padding:7px 14px}.manage-right.show .subsubsub li{padding:5px}}@media (max-width: 650px){.table-bordered.jetpack-modules tr.jetpack-module.deprecated td .row-actions{float:none;padding-left:18px}}@media (max-width: 430px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:none}.table-bordered.jetpack-modules tr.jetpack-module.deprecated td .row-actions{display:block}}.configure-module p{font-size:14px}.configure-module p.success,.configure-module p.error{color:#fff;padding:10px}.configure-module p.success{background-color:#81a844}.configure-module p.error{background-color:#d94f4f}.protect-status p{font-size:16px}.protect-status strong{display:inline-block;margin-top:10px;background:#fff;padding:10px;border:1px #ddd solid;font-size:16px;color:#000;max-width:100%}.protect-status.attn{color:#d94f4f}.protect-status.working{color:#81a844}#non-editable-whitelist{margin-top:15px}.protect-whitelist textarea{width:100%;min-height:150px}#editable-whitelist .whitelist-table{width:100%}.configure-module input[disabled]{opacity:.5}.configure-module input.button-primary{font-weight:bold}.whitelist-table{border-top:1px solid;border-right:1px solid;border-color:#ddd;background-color:#fff}.whitelist-table td,.whitelist-table th{padding:10px;margin:0;border-bottom:1px solid;border-left:1px solid;border-color:#ddd;font-size:14px}.whitelist-table th.heading{font-weight:bold;color:#5d6d74;text-align:left;background-color:#eee}.whitelist-table td.item-actions{border-left:none;text-align:right}.whitelist-table .toolbar{padding:0}.whitelist-table .add-btn{text-align:center;width:10%;border-left:1px #ddd solid}.ip-address,.enter-ip{width:90%;text-align:left;vertical-align:middle}.delete-ip-address{text-align:center;border:0;background:transparent;color:#6f7476;box-shadow:none;font-size:20px;margin:0;padding:0;cursor:pointer;border-radius:2px}.delete-ip-address:hover{background:#eee}.toolbar div{float:left;padding:10px}@media only screen and (min-width: 1100px){#non-editable-whitelist{width:28%;float:right;margin-top:0}.protect-whitelist{width:65%;float:left}}@media only screen and (max-width: 1130px){.enter-ip input[type="text"]{max-width:175px}}@media only screen and (max-width: 1250px) and (min-width: 1065px), (max-width: 730px) and (min-width: 600px){.enter-ip{width:85%}.add-btn{width:15%}}@media only screen and (max-width: 782px){.add-btn{text-align:right}.add-btn .ip-add{margin-top:4px;margin-bottom:3px}}@media only screen and (max-width: 730px){.add-btn{text-align:center}}@media only screen and (max-width: 665px) and (min-width: 600px){.enter-ip input[type="text"]{max-width:165px}}@media only screen and (max-width: 600px){.toolbar div{width:100%}.add-btn{border-top:1px #ddd solid}.enter-ip{text-align:center}.enter-ip strong{display:block;margin-bottom:5px}.enter-ip input[type="text"]{width:100%;max-width:100%}.add-btn input,.enter-ip .button{width:50%;margin:0 auto}.enter-ip .button{margin-top:10px}}@media only screen and (max-width: 400px){.protect-status strong{font-size:12px;overflow:auto}.add-btn input,.enter-ip .button{width:100%}}.my-jetpack-actions{margin:0 0 40px 0}.my-jetpack-actions .j-col{padding:0;text-align:center}.my-jetpack-actions #user-list{height:30px;margin-top:-1px;margin-left:-3px}#jetpack-disconnect-content{display:none;text-align:center}#jetpack-disconnect-content .cancel-disconnect{display:block;margin-top:10px}.connection-details{border:1px #ddd solid}.connection-details.local-user{margin-bottom:10px}.connection-details .user-01,.connection-details .wpuser-02,.connection-details .action-btns{padding:10px}.connection-details .user-01 .button,.connection-details .user-01 select,.connection-details .wpuser-02 .button,.connection-details .wpuser-02 select,.connection-details .action-btns .button,.connection-details .action-btns select{margin-top:5px}.connection-details .wpuser-02{margin-top:10px}.connection-details h3{padding:10px;margin:0;background:#eee;border-bottom:1px #ddd solid;font-size:14px}.jp-user img{margin-right:10px;border-radius:50%}.jp-user div,.wp-user div,.wp-action div{display:inline-block;width:100%}.j-col.jp-user,.j-col.wp-user,.j-col.wp-action{padding:0}.my-jetpack-actions select{max-width:150px}.j-actions .button:nth-child(3){margin-right:5px}.j-row.disconnect{text-align:center}.j-row.disconnect .button{margin:0 auto}a.what-is-primary{color:#b4b9be;margin-left:4px}@media (max-width: 782px){.wp-action{border-top:1px #ddd solid}.wp-action h3{display:none}}@media screen and (max-width: 500px){.connection-details{font-size:11px}.connection-details h3{font-size:12px;padding:5px}.connection-details .user-01,.connection-details .wpuser-02{padding:6px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:200px}.connection-details .action-btns{text-align:center}}@media (max-width: 530px){.connection-details .wpuser-02{margin-top:0;padding:12px}}@media screen and (max-width: 450px){.j-actions .button{width:100%;margin-bottom:5px;text-align:center}.j-actions .button.alignright{float:none}}@media screen and (max-width: 350px){.user-01,.wpuser-02{max-width:100px}}.jp-content .hide{display:none}.jp-content .pointer{cursor:pointer}.jp-content .landing{margin:0 auto;z-index:2;position:relative}.jp-content h1{font:300 2.57143em/1em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;position:relative;z-index:3;width:100%;text-align:center}.jp-content h1.success{color:#81a844}.jp-content .footer{padding-top:0;margin-top:0;background-image:none}.jp-content .footer:before{height:inherit}.jp-content .more-info:before{content:none}.landing .wpcom-connect{min-height:400px}.wpcom-connect .j-col{padding:0}.wpcom-connect .connect-desc{padding-right:25px}.wpcom-connect .connect-btn{text-align:center}.module-grid h2{color:#000;font:300 2.57143em/1em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif}.download-jetpack{margin-top:1em !important}#jump-start-area{margin-top:35px;padding-left:60px;padding-right:60px;background:#fefefe;border:1px #dae0e2 solid;padding-bottom:20px;text-align:center}#jump-start-area .connect-btn{text-align:center}#jump-start-area #jumpstart-cta,#jump-start-area .jumpstart-desc{padding:0}#jump-start-area p{font-size:14px;line-height:185%}#jump-start-area .spinner{float:none;margin:0 auto;position:absolute;bottom:0;height:100%;width:100%;background-position:50% 56%;background-color:rgba(254,254,254,0.99);display:block;opacity:.9}.jumpstart-message p{padding-right:25px}.jumpstart-desc{text-align:left}#jumpstart-cta{text-align:center;display:inline-block;float:none}.dismiss-jumpstart{color:#999;font-size:14px}#jumpstart-cta .button,#jumpstart-cta .button-primary{margin:1em;font-size:18px;height:45px !important;padding:8px 15px 1px}#jumpstart-cta .button-primary{display:block;margin:35px 20px 5px 20px}#jp-config-list{position:relative;padding-top:15px;padding-bottom:15px;margin-left:-15px;margin-right:-15px}#jp-config-list .j-col{padding:15px}#jp-config-list strong{display:inline-block}#jp-config-list small{display:block;margin-top:5px;line-height:150%}#jp-config-list .close{position:absolute;top:10px;right:0;text-transform:uppercase;font-weight:bold;display:block;z-index:5}.jp-config-status{text-transform:uppercase;font-size:10px;font-weight:bold;line-height:100%;color:#fff;background:#9fbd72;border-radius:2px;padding:2px 4px;display:inline-block}.miguel{display:none;position:fixed;opacity:.35;bottom:-200px;left:0;z-index:1;-webkit-animation:miguel 3.4s 0s ease-in-out;animation:miguel 3.4s 0s ease-in-out}.miguel:nth-child(2){left:49%;width:120px;height:131px;-webkit-animation-duration:2.4s;animation-duration:2.4s;-webkit-animation-delay:0s;animation-delay:0s}.miguel:nth-child(3){left:23%;width:60px;height:66px;-webkit-animation-duration:4.5s;animation-duration:4.5s;-webkit-animation-delay:0s;animation-delay:0s}@-webkit-keyframes "miguel"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(900px, -900px, 0px);transform:translate3d(900px, -900px, 0px)}}@keyframes "miguel"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(900px, -900px, 0px);transform:translate3d(900px, -900px, 0px)}}.nux-intro h3{background:#81a844;color:#fff;font-weight:600;padding:.75em;margin:0}.nux-intro h4{margin:0 0 2px 0}.nux-intro p{text-align:center;font-size:1.24em;line-height:175%}.nux-intro a{-webkit-transition:all .4s ease;transition:all .4s ease}.nux-intro .j-col{padding:0 0.5em}.nux-intro .j-col:first-of-type{padding-left:0}.nux-intro .j-col:last-of-type{padding-right:0}.nux-intro .nux-in{background:#ececec;-webkit-border-bottom-right-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomright:6px;-moz-border-radius-bottomleft:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px}.nux-intro .nux-in h3{font-size:1.10em;-webkit-border-top-left-radius:6px;-webkit-border-top-right-radius:6px;-moz-border-radius-topleft:6px;-moz-border-radius-topright:6px;border-top-left-radius:6px;border-top-right-radius:6px}.nux-intro .nux-in h3 .dashicons{float:right;color:#658435;font-size:1.25em;padding-left:0}.nux-intro .nux-in h3 .dashicons:hover{color:#57722e}.nux-intro .nux-in p{font-size:.9em;line-height:150%;margin:0;text-align:left;color:#686f72}.nux-intro .nux-in .j-row{border-bottom:1px #f9f9f9 solid;padding:5px 0;position:relative;min-height:70px}.nux-intro .nux-in .j-row:hover{background:#e0e0e0}.nux-intro .nux-in .unavailable{opacity:0.5}.nux-intro .nux-in .unavailable .act{display:none}.nux-intro .nux-in .paid{top:4px;margin-left:12px}.nux-intro .nux-in .dashicons{color:#81a844;font-size:1em;position:relative;top:3px;padding-left:6px}.nux-intro .nux-in .dashicons:hover{color:#57722e}.nux-intro .nux-in .dashicons-external{font-size:1.5em;top:2px;padding-left:3px}.nux-intro .nux-in .lmore{font-size:11px;color:#81a844}.nux-intro .nux-in .lmore:hover{color:#57722e}.nux-intro .feat.j-col{padding:10px 2px 10px 10px}.nux-intro .feat .dashicons{display:none}.nux-intro .activated .feat .dashicons{display:inline-block}.nux-intro .act{position:absolute;top:50%;-ms-transform:translate(0, -50%);-webkit-transform:translate(0, -50%);transform:translate(0, -50%);right:8px;float:right}.nux-intro .act.j-col{padding:5px;text-align:right}.nux-intro .module-action{text-transform:uppercase;font-size:.85em;font-weight:600}.nux-intro .wpcom h3{background:#0087be}.nux-intro .wpcom h3 .dashicons{color:#00638b}.nux-intro .wpcom h3 .dashicons:hover{color:#005172}.nux-intro .wpcom .j-col{padding:10px}.nux-intro .wpcom .goto{text-align:center;padding:1em}.nux-intro .wpcom .goto:hover{background:#ececec}.nux-intro .wpcom .goto .j-col{padding:0 5px}.nux-intro .wpcom .goto a{width:100%;padding:.25em;height:auto}.nux-intro .wpcom .goto .button{height:auto;min-height:28px;line-height:18px;white-space:normal;max-width:200px;margin-bottom:0;padding-top:2px}.nux-intro .wpcom .goto .feat{position:absolute;top:50%;-ms-transform:translate(0, -50%);-webkit-transform:translate(0, -50%);transform:translate(0, -50%)}.nux-intro .nux-foot .j-col{padding:1em}.nux-foot{margin-top:2em;background:#ececec;border-radius:6px}.nux-foot .j-col{min-height:75px;padding:1em}@media (max-width: 650px){.nux-foot .j-col{width:100%}}.nux-foot .j-col+.j-col{border-left:1px #f9f9f9 solid}@media (max-width: 650px){.nux-foot .j-col+.j-col{border-left:none;border-top:1px #f9f9f9 solid}}.nux-foot img{float:left;margin-right:1em;width:75px;border-radius:4px}.nux-foot p{font-size:.9em;text-align:left;font-weight:600;margin-top:0}.nux-foot p+p{font-weight:400;margin-bottom:0}.nux-foot ul{font-size:.9em;margin-bottom:0}.nux-foot ul li{margin-bottom:0;line-height:175%}.form-toggle[type="checkbox"]{opacity:0;position:absolute}.form-toggle__switch{position:relative;display:inline-block;border-radius:12px;-moz-box-sizing:border-box;box-sizing:border-box;padding:2px;width:40px;height:24px;background:#b9b9b9;vertical-align:middle;outline:0;cursor:pointer;-webkit-transition:all .4s ease;transition:all .4s ease}.form-toggle__switch:before,.form-toggle__switch:after{position:relative;display:block;content:"";width:20px;height:20px}.form-toggle__switch:after{left:0;border-radius:50%;background:#fff;-webkit-transition:all .2s ease;transition:all .2s ease}.form-toggle__switch:before{display:none}.form-toggle__switch:hover{background:#bdd597}.form-toggle__label{cursor:pointer}.plugin-action__label{padding-right:5px;top:-1px;position:relative;color:#8e9598}.activated .plugin-action__label{color:#81a844}.form-toggle:focus+.form-toggle__label .form-toggle__switch,.form-toggle:focus:checked+.form-toggle__label .form-toggle__switch{box-shadow:0 0 0 2px #0087be}.form-toggle:checked+.form-toggle__label .form-toggle__switch{background:#81a844}.form-toggle:checked+.form-toggle__label .form-toggle__switch:after{left:16px}.form-toggle:checked:hover+.form-toggle__label .form-toggle__switch{background:#bdd597}.form-toggle:disabled+.form-toggle__label .form-toggle__switch,.form-toggle:disabled:hover+.form-toggle__label .form-toggle__switch{background:#e9eff3}.form-toggle.is-toggling+.form-toggle__label .form-toggle__switch{background:#81a844}.form-toggle.is-toggling:checked+.form-toggle__label .form-toggle__switch{background:#bdd597}.form-toggle.is-compact+.form-toggle__label .form-toggle__switch{border-radius:8px;width:24px;height:16px}.form-toggle.is-compact+.form-toggle__label .form-toggle__switch:before,.form-toggle.is-compact+.form-toggle__label .form-toggle__switch:after{width:12px;height:12px}.form-toggle.is-compact:checked+.form-toggle__label .form-toggle__switch:after{left:8px}@media (max-width: 1147px){.jp-content .landing{padding:0 2em}.jp-content .footer{padding-top:1.5em}.nux-intro .main-col{width:50%;margin-bottom:2em}.nux-intro .main-col.wpcom{width:100%}.nux-intro .main-col+.main-col{padding-right:0}.nux-intro .wpcom{padding:0}.nux-intro .wpcom .j-row{width:50%;float:left;border-bottom:1px #f9f9f9 solid;border-right:1px #f9f9f9 solid}.nux-intro .wpcom .j-row:last-of-type{width:100%;float:none;clear:both;border:none;border-top:1px #f9f9f9 solid;position:relative;top:-1px}.nux-intro .wpcom .goto .feat a{float:left}.nux-foot .j-col{border:none}.nux-foot img{float:right;margin-right:0;margin-left:1em}}@media (max-width: 900px){.nux-intro .main-col{width:100%;padding:0;margin-bottom:2em}.nux-intro .wpcom .j-row{width:100%;float:none}}@media (max-width: 782px){#jumpstart-cta .button-primary{margin:10px 0 5px 0}#jump-start-area .spinner{background-position:50% 35%}}@media (max-width: 600px){.nux-intro h1{font-size:1.75em}.nux-intro p{font-size:1em}}@media (max-width: 530px){.jp-content .landing{padding:0 .5em}#jump-start-area{padding:0 1em}.jumpstart-message p{padding-right:0}#jumpstart-cta .button-primary{margin:0 0 5px 0;padding-bottom:10px}.footer .a8c-attribution a:after{top:6px}}.nav-horizontal:before,.features:before,.modules:before,.load-more:before,.nav-horizontal:after,.features:after,.modules:after,.load-more:after{content:"";display:table}.nav-horizontal:after,.features:after,.modules:after,.load-more:after{clear:both}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  /*# sourceMappingURL=jetpack-admin.min.css.map */
css/jetpack-admin.min.css.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../scss/_utilities/_grid.scss","../scss/_utilities/mixins/_breakpoint.scss","../scss/atoms/typography/_typography.scss","../scss/atoms/_media.scss","../scss/atoms/_animations.scss","../scss/atoms/_buttons.scss","../scss/atoms/icons/_automatticons.scss","../scss/atoms/icons/_jetpack.scss","../scss/molecules/_nav-horizontal.scss","../scss/templates/_main.scss","../scss/atoms/colors/_colors.scss","../scss/templates/_settings.scss","../scss/pages/_protect.scss","../scss/pages/_connection.scss","../scss/templates/_module-overhaul.scss","../scss/_utilities/_clearings.scss"],"names":[],"mappings":"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","file":"jetpack-admin.min.css"}
1
+ {"version":3,"sources":["../scss/_utilities/_grid.scss","../scss/_utilities/mixins/_breakpoint.scss","../scss/atoms/typography/_typography.scss","../scss/atoms/_media.scss","../scss/atoms/_animations.scss","../scss/atoms/_buttons.scss","../scss/atoms/icons/_automatticons.scss","../scss/atoms/icons/_jetpack.scss","../scss/molecules/_nav-horizontal.scss","../scss/templates/_main.scss","../scss/atoms/colors/_colors.scss","../scss/templates/_settings.scss","../scss/pages/_protect.scss","../scss/pages/_connection.scss","../scss/templates/_nux-landing-2015.scss","../scss/_utilities/_clearings.scss"],"names":[],"mappings":"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","file":"jetpack-admin.min.css"}
css/jetpack-banners-rtl.css CHANGED
@@ -2,6 +2,74 @@
2
  * Do not modify this file directly. It is compiled Sass code.
3
  * @see: jetpack/_inc/jetpack.scss
4
  */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  #message.jp-banner {
6
  position: relative;
7
  margin-bottom: 26px;
@@ -139,6 +207,7 @@
139
  background: #518d2a;
140
  box-shadow: 0 4px 0 #3e6c20, 0 2px 3px rgba(0, 0, 0, 0.2);
141
  font: 400 1.5em/1 'Open Sans', Helvetica, sans-serif;
 
142
  transition: all .1s ease-in-out;
143
  }
144
  @media (max-width: 1175px) {
@@ -261,9 +330,7 @@
261
  color: #a0a5aa;
262
  }
263
 
264
- #message.jp-banner{position:relative;margin-bottom:26px;padding:17px 0 17px 44px;border:none;background:#81a844;color:#fff;overflow:hidden;-moz-box-sizing:border-box;box-sizing:border-box}#message.jp-banner:after{content:'';position:absolute;bottom:0;left:-100px;width:100%;height:50px;background:url("../images/the-footcloud.svg") left bottom no-repeat;pointer-events:none;z-index:1}@media (max-width: 830px){#message.jp-banner:after{display:none}}#message.jp-banner a{color:#fff}#message.jp-banner h4{display:block;margin:0;padding:0;color:#fff;font-size:20px;line-height:1.3;font-weight:normal}#message.jp-banner h4+p{margin-top:10px}.jp-banner a{padding:0}#message .jp-banner__content{color:#dfffcc;padding:0 20px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;width:50%}@media (max-width: 768px){#message .jp-banner__content{width:100%}#message .jp-banner__content.is-connection{width:100%}}#message .jp-banner__content a{text-decoration:underline}#message .jp-banner__content p{margin:0;padding:0;line-height:1.5}#message .jp-banner__action-container{position:absolute;top:0;left:0;padding-right:20px;width:50%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box}@media (max-width: 768px){#message .jp-banner__action-container{position:static;margin:14px 0 9px;width:100%}}#message .jp-banner__action-container.is-full-width{position:static;margin:14px 0 9px;width:100%;height:auto}@media (max-width: 768px){#message .jp-banner__action-container.is-connection{width:100%}}
265
- #message.is-opt-in .jp-banner__content{width:60%}#message.is-opt-in .jp-banner__action-container{width:40%}@media (max-width: 768px){#message.is-opt-in .jp-banner__content,#message.is-opt-in .jp-banner__action-container{width:100%}}
266
- #message .jp-banner__button{display:inline-block;position:absolute;top:50%;left:125px;margin-top:-23px;padding:0.57143em 0.57143em 0.38095em 0.85714em;border-radius:6px;-moz-box-sizing:border-box;box-sizing:border-box;background:#518d2a;box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2);font:400 1.5em/1 'Open Sans', Helvetica, sans-serif;transition:all .1s ease-in-out}@media (max-width: 1175px){#message .jp-banner__button{font-size:1.25em;left:110px}}@media (max-width: 830px){#message .jp-banner__button{left:45px}}@media (max-width: 768px){#message .jp-banner__button{position:static;margin:0}}@media (max-width: 420px){#message .jp-banner__button{display:block;width:100%;text-align:center;font-size:1.1em;left:0}}#message .jp-banner__button:hover,#message .jp-banner__button:focus{box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2)}#message .jp-banner__button:active{outline:none;-webkit-transform:translateY(2px);-ms-transform:translateY(2px);transform:translateY(2px);box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.2)}#message .jp-banner__button:active:after{top:-2px}#message .jp-banner__button:before{content:'';display:inline-block;position:relative;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%;top:-2px;margin-left:13px;width:22px;height:22px}@media (max-width: 420px){#message .jp-banner__button:before{display:none}}
267
- #message .is-full-width .jp-banner__button{position:static;margin:0}#message .is-opt-in .jp-banner__button:before{content:"\f147";width:20px;height:20px;background:none;font:normal 20px/1 Dashicons}#message .jp-banner__dismiss{position:absolute;top:0;left:0;width:44px;height:44px;text-align:center;z-index:99}#message .jp-banner__dismiss:before{color:#a7c979;content:'\f158';font:normal 20px/44px 'dashicons'}#message .jp-banner__dismiss:hover{opacity:0.8}#message .jp-banner__dismiss:active{opacity:1;outline:none}#message.jp-banner.protect-error{background:#fff;border-right:4px #d94f4f solid}#message.jp-banner.protect-error .jp-banner__content{color:#444}#message.jp-banner.protect-error .jp-banner__content h4,#message.jp-banner.protect-error .jp-banner__content a{color:#d94f4f}#message.jp-banner.protect-error .jp-banner__content a:hover{color:#d43a3a}#message.jp-banner.protect-error .jp-banner__button{background:#d94f4f;box-shadow:none;color:#fff}#message.jp-banner.protect-error .jp-banner__button:hover,#message.jp-banner.protect-error .jp-banner__button:focus,#message.jp-banner.protect-error .jp-banner__button:active{box-shadow:none}#message.jp-banner.protect-error .jp-banner__button:hover{background:#d43a3a}#message.jp-banner.protect-error .jp-banner__dismiss:before{color:#a0a5aa}
268
 
269
  /*# sourceMappingURL=jetpack-banners.min.css.map */
2
  * Do not modify this file directly. It is compiled Sass code.
3
  * @see: jetpack/_inc/jetpack.scss
4
  */
5
+ #message.jp-identity-crisis {
6
+ display: table;
7
+ padding: 0;
8
+ background: #d94f4f;
9
+ border: none;
10
+ color: #fff;
11
+ }
12
+ #message.jp-identity-crisis .service-mark {
13
+ display: table-cell;
14
+ vertical-align: middle;
15
+ padding: 0 20px;
16
+ }
17
+ #message.jp-identity-crisis .service-mark:before {
18
+ font-family: "jetpack" !important;
19
+ content: "\f102";
20
+ font-size: 40px;
21
+ line-height: 1;
22
+ color: #fff;
23
+ }
24
+ #message.jp-identity-crisis .jp-id-banner__content {
25
+ display: table;
26
+ padding: 10px 0 10px 10px;
27
+ }
28
+ #message.jp-identity-crisis .jp-id-banner__content .success-notice {
29
+ color: #fff;
30
+ }
31
+ #message.jp-identity-crisis .jp-id-banner__content .banner-content {
32
+ display: table-row;
33
+ }
34
+ #message.jp-identity-crisis .jp-id-banner__content .banner-content p {
35
+ margin: 0;
36
+ font-size: 13px;
37
+ color: #fff;
38
+ opacity: 1.0;
39
+ }
40
+ #message.jp-identity-crisis .jp-id-banner__content .banner-content p strong {
41
+ text-decoration: none;
42
+ font-weight: 600;
43
+ color: #fff;
44
+ opacity: 1.0;
45
+ }
46
+ #message.jp-identity-crisis .jp-id-banner__content .banner-content a {
47
+ display: inline-block;
48
+ color: rgba(255, 255, 255, 0.8);
49
+ border-bottom: 1px solid rgba(255, 255, 255, 0.5);
50
+ text-decoration: none;
51
+ -webkit-transform: all 1s ease;
52
+ }
53
+ #message.jp-identity-crisis .jp-id-banner__content .jp-btn-group {
54
+ display: table-row;
55
+ }
56
+ #message.jp-identity-crisis .jp-id-banner__content .jp-btn-group a {
57
+ display: inline-block;
58
+ margin: 10px 0 0 0;
59
+ padding: 0 0 1px 0;
60
+ color: rgba(255, 255, 255, 0.8);
61
+ border-bottom: 1px solid rgba(255, 255, 255, 0.5);
62
+ text-decoration: none;
63
+ -webkit-transform: all 1s ease;
64
+ }
65
+ #message.jp-identity-crisis .jp-id-banner__content .jp-btn-group a:hover {
66
+ color: white;
67
+ border-bottom: 1px solid rgba(255, 255, 255, 0.8);
68
+ }
69
+ #message.jp-identity-crisis .jp-id-banner__content .jp-btn-group .idc-separator {
70
+ margin: 0 6px;
71
+ }
72
+
73
  #message.jp-banner {
74
  position: relative;
75
  margin-bottom: 26px;
207
  background: #518d2a;
208
  box-shadow: 0 4px 0 #3e6c20, 0 2px 3px rgba(0, 0, 0, 0.2);
209
  font: 400 1.5em/1 'Open Sans', Helvetica, sans-serif;
210
+ -webkit-transition: all .1s ease-in-out;
211
  transition: all .1s ease-in-out;
212
  }
213
  @media (max-width: 1175px) {
330
  color: #a0a5aa;
331
  }
332
 
333
+ /*# sourceMappingURL=jetpack-banners.css.map */
334
+ #message.jp-identity-crisis{display:table;padding:0;background:#d94f4f;border:none;color:#fff}#message.jp-identity-crisis .service-mark{display:table-cell;vertical-align:middle;padding:0 20px}#message.jp-identity-crisis .service-mark:before{font-family:"jetpack" !important;content:"\f102";font-size:40px;line-height:1;color:#fff}#message.jp-identity-crisis .jp-id-banner__content{display:table;padding:10px 0 10px 10px}#message.jp-identity-crisis .jp-id-banner__content .success-notice{color:#fff}#message.jp-identity-crisis .jp-id-banner__content .banner-content{display:table-row}#message.jp-identity-crisis .jp-id-banner__content .banner-content p{margin:0;font-size:13px;color:#fff;opacity:1.0}#message.jp-identity-crisis .jp-id-banner__content .banner-content p strong{text-decoration:none;font-weight:600;color:#fff;opacity:1.0}#message.jp-identity-crisis .jp-id-banner__content .banner-content a{display:inline-block;color:rgba(255,255,255,0.8);border-bottom:1px solid rgba(255,255,255,0.5);text-decoration:none;-webkit-transform:all 1s ease}#message.jp-identity-crisis .jp-id-banner__content .jp-btn-group{display:table-row}#message.jp-identity-crisis .jp-id-banner__content .jp-btn-group a{display:inline-block;margin:10px 0 0 0;padding:0 0 1px 0;color:rgba(255,255,255,0.8);border-bottom:1px solid rgba(255,255,255,0.5);text-decoration:none;-webkit-transform:all 1s ease}#message.jp-identity-crisis .jp-id-banner__content .jp-btn-group a:hover{color:#fff;border-bottom:1px solid rgba(255,255,255,0.8)}#message.jp-identity-crisis .jp-id-banner__content .jp-btn-group .idc-separator{margin:0 6px}#message.jp-banner{position:relative;margin-bottom:26px;padding:17px 0 17px 44px;border:none;background:#81a844;color:#fff;overflow:hidden;-moz-box-sizing:border-box;box-sizing:border-box}#message.jp-banner:after{content:'';position:absolute;bottom:0;left:-100px;width:100%;height:50px;background:url("../images/the-footcloud.svg") left bottom no-repeat;pointer-events:none;z-index:1}@media (max-width: 830px){#message.jp-banner:after{display:none}}#message.jp-banner a{color:#fff}#message.jp-banner h4{display:block;margin:0;padding:0;color:#fff;font-size:20px;line-height:1.3;font-weight:normal}#message.jp-banner h4+p{margin-top:10px}.jp-banner a{padding:0}#message .jp-banner__content{color:#dfffcc;padding:0 20px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;width:50%}@media (max-width: 768px){#message .jp-banner__content{width:100%}#message .jp-banner__content.is-connection{width:100%}}#message .jp-banner__content a{text-decoration:underline}#message .jp-banner__content p{margin:0;padding:0;line-height:1.5}#message .jp-banner__action-container{position:absolute;top:0;left:0;padding-right:20px;width:50%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box}@media (max-width: 768px){#message .jp-banner__action-container{position:static;margin:14px 0 9px;width:100%}}#message .jp-banner__action-container.is-full-width{position:static;margin:14px 0 9px;width:100%;height:auto}@media (max-width: 768px){#message .jp-banner__action-container.is-connection{width:100%}}#message.is-opt-in .jp-banner__content{width:60%}#message.is-opt-in .jp-banner__action-container{width:40%}@media (max-width: 768px){#message.is-opt-in .jp-banner__content,#message.is-opt-in .jp-banner__action-container{width:100%}}#message .jp-banner__button{display:inline-block;position:absolute;top:50%;left:125px;margin-top:-23px;padding:0.57143em 0.57143em 0.38095em 0.85714em;border-radius:6px;-moz-box-sizing:border-box;box-sizing:border-box;background:#518d2a;box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2);font:400 1.5em/1 'Open Sans', Helvetica, sans-serif;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}@media (max-width: 1175px){#message .jp-banner__button{font-size:1.25em;left:110px}}@media (max-width: 830px){#message .jp-banner__button{left:45px}}@media (max-width: 768px){#message .jp-banner__button{position:static;margin:0}}@media (max-width: 420px){#message .jp-banner__button{display:block;width:100%;text-align:center;font-size:1.1em;left:0}}#message .jp-banner__button:hover,#message .jp-banner__button:focus{box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2)}#message .jp-banner__button:active{outline:none;-webkit-transform:translateY(2px);-ms-transform:translateY(2px);transform:translateY(2px);box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.2)}#message .jp-banner__button:active:after{top:-2px}#message .jp-banner__button:before{content:'';display:inline-block;position:relative;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%;top:-2px;margin-left:13px;width:22px;height:22px}@media (max-width: 420px){#message .jp-banner__button:before{display:none}}#message .is-full-width .jp-banner__button{position:static;margin:0}#message .is-opt-in .jp-banner__button:before{content:"\f147";width:20px;height:20px;background:none;font:normal 20px/1 Dashicons}#message .jp-banner__dismiss{position:absolute;top:0;left:0;width:44px;height:44px;text-align:center;z-index:99}#message .jp-banner__dismiss:before{color:#a7c979;content:'\f158';font:normal 20px/44px 'dashicons'}#message .jp-banner__dismiss:hover{opacity:0.8}#message .jp-banner__dismiss:active{opacity:1;outline:none}#message.jp-banner.protect-error{background:#fff;border-right:4px #d94f4f solid}#message.jp-banner.protect-error .jp-banner__content{color:#444}#message.jp-banner.protect-error .jp-banner__content h4,#message.jp-banner.protect-error .jp-banner__content a{color:#d94f4f}#message.jp-banner.protect-error .jp-banner__content a:hover{color:#d43a3a}#message.jp-banner.protect-error .jp-banner__button{background:#d94f4f;box-shadow:none;color:#fff}#message.jp-banner.protect-error .jp-banner__button:hover,#message.jp-banner.protect-error .jp-banner__button:focus,#message.jp-banner.protect-error .jp-banner__button:active{box-shadow:none}#message.jp-banner.protect-error .jp-banner__button:hover{background:#d43a3a}#message.jp-banner.protect-error .jp-banner__dismiss:before{color:#a0a5aa}
 
 
335
 
336
  /*# sourceMappingURL=jetpack-banners.min.css.map */
css/jetpack-banners-rtl.min.css CHANGED
@@ -1,6 +1,3 @@
1
- #message.jp-banner{position:relative;margin-bottom:26px;padding:17px 0 17px 44px;border:none;background:#81a844;color:#fff;overflow:hidden;-moz-box-sizing:border-box;box-sizing:border-box}#message.jp-banner:after{content:'';position:absolute;bottom:0;left:-100px;width:100%;height:50px;background:url("../images/the-footcloud.svg") left bottom no-repeat;pointer-events:none;z-index:1}@media (max-width: 830px){#message.jp-banner:after{display:none}}#message.jp-banner a{color:#fff}#message.jp-banner h4{display:block;margin:0;padding:0;color:#fff;font-size:20px;line-height:1.3;font-weight:normal}#message.jp-banner h4+p{margin-top:10px}.jp-banner a{padding:0}#message .jp-banner__content{color:#dfffcc;padding:0 20px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;width:50%}@media (max-width: 768px){#message .jp-banner__content{width:100%}#message .jp-banner__content.is-connection{width:100%}}#message .jp-banner__content a{text-decoration:underline}#message .jp-banner__content p{margin:0;padding:0;line-height:1.5}#message .jp-banner__action-container{position:absolute;top:0;left:0;padding-right:20px;width:50%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box}@media (max-width: 768px){#message .jp-banner__action-container{position:static;margin:14px 0 9px;width:100%}}#message .jp-banner__action-container.is-full-width{position:static;margin:14px 0 9px;width:100%;height:auto}@media (max-width: 768px){#message .jp-banner__action-container.is-connection{width:100%}}
2
- #message.is-opt-in .jp-banner__content{width:60%}#message.is-opt-in .jp-banner__action-container{width:40%}@media (max-width: 768px){#message.is-opt-in .jp-banner__content,#message.is-opt-in .jp-banner__action-container{width:100%}}
3
- #message .jp-banner__button{display:inline-block;position:absolute;top:50%;left:125px;margin-top:-23px;padding:0.57143em 0.57143em 0.38095em 0.85714em;border-radius:6px;-moz-box-sizing:border-box;box-sizing:border-box;background:#518d2a;box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2);font:400 1.5em/1 'Open Sans', Helvetica, sans-serif;transition:all .1s ease-in-out}@media (max-width: 1175px){#message .jp-banner__button{font-size:1.25em;left:110px}}@media (max-width: 830px){#message .jp-banner__button{left:45px}}@media (max-width: 768px){#message .jp-banner__button{position:static;margin:0}}@media (max-width: 420px){#message .jp-banner__button{display:block;width:100%;text-align:center;font-size:1.1em;left:0}}#message .jp-banner__button:hover,#message .jp-banner__button:focus{box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2)}#message .jp-banner__button:active{outline:none;-webkit-transform:translateY(2px);-ms-transform:translateY(2px);transform:translateY(2px);box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.2)}#message .jp-banner__button:active:after{top:-2px}#message .jp-banner__button:before{content:'';display:inline-block;position:relative;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%;top:-2px;margin-left:13px;width:22px;height:22px}@media (max-width: 420px){#message .jp-banner__button:before{display:none}}
4
- #message .is-full-width .jp-banner__button{position:static;margin:0}#message .is-opt-in .jp-banner__button:before{content:"\f147";width:20px;height:20px;background:none;font:normal 20px/1 Dashicons}#message .jp-banner__dismiss{position:absolute;top:0;left:0;width:44px;height:44px;text-align:center;z-index:99}#message .jp-banner__dismiss:before{color:#a7c979;content:'\f158';font:normal 20px/44px 'dashicons'}#message .jp-banner__dismiss:hover{opacity:0.8}#message .jp-banner__dismiss:active{opacity:1;outline:none}#message.jp-banner.protect-error{background:#fff;border-right:4px #d94f4f solid}#message.jp-banner.protect-error .jp-banner__content{color:#444}#message.jp-banner.protect-error .jp-banner__content h4,#message.jp-banner.protect-error .jp-banner__content a{color:#d94f4f}#message.jp-banner.protect-error .jp-banner__content a:hover{color:#d43a3a}#message.jp-banner.protect-error .jp-banner__button{background:#d94f4f;box-shadow:none;color:#fff}#message.jp-banner.protect-error .jp-banner__button:hover,#message.jp-banner.protect-error .jp-banner__button:focus,#message.jp-banner.protect-error .jp-banner__button:active{box-shadow:none}#message.jp-banner.protect-error .jp-banner__button:hover{background:#d43a3a}#message.jp-banner.protect-error .jp-banner__dismiss:before{color:#a0a5aa}
5
 
6
  /*# sourceMappingURL=jetpack-banners.min.css.map */
1
+ #message.jp-identity-crisis{display:table;padding:0;background:#d94f4f;border:none;color:#fff}#message.jp-identity-crisis .service-mark{display:table-cell;vertical-align:middle;padding:0 20px}#message.jp-identity-crisis .service-mark:before{font-family:"jetpack" !important;content:"\f102";font-size:40px;line-height:1;color:#fff}#message.jp-identity-crisis .jp-id-banner__content{display:table;padding:10px 0 10px 10px}#message.jp-identity-crisis .jp-id-banner__content .success-notice{color:#fff}#message.jp-identity-crisis .jp-id-banner__content .banner-content{display:table-row}#message.jp-identity-crisis .jp-id-banner__content .banner-content p{margin:0;font-size:13px;color:#fff;opacity:1.0}#message.jp-identity-crisis .jp-id-banner__content .banner-content p strong{text-decoration:none;font-weight:600;color:#fff;opacity:1.0}#message.jp-identity-crisis .jp-id-banner__content .banner-content a{display:inline-block;color:rgba(255,255,255,0.8);border-bottom:1px solid rgba(255,255,255,0.5);text-decoration:none;-webkit-transform:all 1s ease}#message.jp-identity-crisis .jp-id-banner__content .jp-btn-group{display:table-row}#message.jp-identity-crisis .jp-id-banner__content .jp-btn-group a{display:inline-block;margin:10px 0 0 0;padding:0 0 1px 0;color:rgba(255,255,255,0.8);border-bottom:1px solid rgba(255,255,255,0.5);text-decoration:none;-webkit-transform:all 1s ease}#message.jp-identity-crisis .jp-id-banner__content .jp-btn-group a:hover{color:#fff;border-bottom:1px solid rgba(255,255,255,0.8)}#message.jp-identity-crisis .jp-id-banner__content .jp-btn-group .idc-separator{margin:0 6px}#message.jp-banner{position:relative;margin-bottom:26px;padding:17px 0 17px 44px;border:none;background:#81a844;color:#fff;overflow:hidden;-moz-box-sizing:border-box;box-sizing:border-box}#message.jp-banner:after{content:'';position:absolute;bottom:0;left:-100px;width:100%;height:50px;background:url("../images/the-footcloud.svg") left bottom no-repeat;pointer-events:none;z-index:1}@media (max-width: 830px){#message.jp-banner:after{display:none}}#message.jp-banner a{color:#fff}#message.jp-banner h4{display:block;margin:0;padding:0;color:#fff;font-size:20px;line-height:1.3;font-weight:normal}#message.jp-banner h4+p{margin-top:10px}.jp-banner a{padding:0}#message .jp-banner__content{color:#dfffcc;padding:0 20px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;width:50%}@media (max-width: 768px){#message .jp-banner__content{width:100%}#message .jp-banner__content.is-connection{width:100%}}#message .jp-banner__content a{text-decoration:underline}#message .jp-banner__content p{margin:0;padding:0;line-height:1.5}#message .jp-banner__action-container{position:absolute;top:0;left:0;padding-right:20px;width:50%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box}@media (max-width: 768px){#message .jp-banner__action-container{position:static;margin:14px 0 9px;width:100%}}#message .jp-banner__action-container.is-full-width{position:static;margin:14px 0 9px;width:100%;height:auto}@media (max-width: 768px){#message .jp-banner__action-container.is-connection{width:100%}}#message.is-opt-in .jp-banner__content{width:60%}#message.is-opt-in .jp-banner__action-container{width:40%}@media (max-width: 768px){#message.is-opt-in .jp-banner__content,#message.is-opt-in .jp-banner__action-container{width:100%}}#message .jp-banner__button{display:inline-block;position:absolute;top:50%;left:125px;margin-top:-23px;padding:0.57143em 0.57143em 0.38095em 0.85714em;border-radius:6px;-moz-box-sizing:border-box;box-sizing:border-box;background:#518d2a;box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2);font:400 1.5em/1 'Open Sans', Helvetica, sans-serif;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}@media (max-width: 1175px){#message .jp-banner__button{font-size:1.25em;left:110px}}@media (max-width: 830px){#message .jp-banner__button{left:45px}}@media (max-width: 768px){#message .jp-banner__button{position:static;margin:0}}@media (max-width: 420px){#message .jp-banner__button{display:block;width:100%;text-align:center;font-size:1.1em;left:0}}#message .jp-banner__button:hover,#message .jp-banner__button:focus{box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2)}#message .jp-banner__button:active{outline:none;-webkit-transform:translateY(2px);-ms-transform:translateY(2px);transform:translateY(2px);box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.2)}#message .jp-banner__button:active:after{top:-2px}#message .jp-banner__button:before{content:'';display:inline-block;position:relative;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%;top:-2px;margin-left:13px;width:22px;height:22px}@media (max-width: 420px){#message .jp-banner__button:before{display:none}}#message .is-full-width .jp-banner__button{position:static;margin:0}#message .is-opt-in .jp-banner__button:before{content:"\f147";width:20px;height:20px;background:none;font:normal 20px/1 Dashicons}#message .jp-banner__dismiss{position:absolute;top:0;left:0;width:44px;height:44px;text-align:center;z-index:99}#message .jp-banner__dismiss:before{color:#a7c979;content:'\f158';font:normal 20px/44px 'dashicons'}#message .jp-banner__dismiss:hover{opacity:0.8}#message .jp-banner__dismiss:active{opacity:1;outline:none}#message.jp-banner.protect-error{background:#fff;border-right:4px #d94f4f solid}#message.jp-banner.protect-error .jp-banner__content{color:#444}#message.jp-banner.protect-error .jp-banner__content h4,#message.jp-banner.protect-error .jp-banner__content a{color:#d94f4f}#message.jp-banner.protect-error .jp-banner__content a:hover{color:#d43a3a}#message.jp-banner.protect-error .jp-banner__button{background:#d94f4f;box-shadow:none;color:#fff}#message.jp-banner.protect-error .jp-banner__button:hover,#message.jp-banner.protect-error .jp-banner__button:focus,#message.jp-banner.protect-error .jp-banner__button:active{box-shadow:none}#message.jp-banner.protect-error .jp-banner__button:hover{background:#d43a3a}#message.jp-banner.protect-error .jp-banner__dismiss:before{color:#a0a5aa}
 
 
 
2
 
3
  /*# sourceMappingURL=jetpack-banners.min.css.map */
css/jetpack-banners.css CHANGED
@@ -2,6 +2,74 @@
2
  * Do not modify this file directly. It is compiled Sass code.
3
  * @see: jetpack/_inc/jetpack.scss
4
  */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  #message.jp-banner {
6
  position: relative;
7
  margin-bottom: 26px;
@@ -139,6 +207,7 @@
139
  background: #518d2a;
140
  box-shadow: 0 4px 0 #3e6c20, 0 2px 3px rgba(0, 0, 0, 0.2);
141
  font: 400 1.5em/1 'Open Sans', Helvetica, sans-serif;
 
142
  transition: all .1s ease-in-out;
143
  }
144
  @media (max-width: 1175px) {
@@ -260,3 +329,5 @@
260
  #message.jp-banner.protect-error .jp-banner__dismiss:before {
261
  color: #a0a5aa;
262
  }
 
 
2
  * Do not modify this file directly. It is compiled Sass code.
3
  * @see: jetpack/_inc/jetpack.scss
4
  */
5
+ #message.jp-identity-crisis {
6
+ display: table;
7
+ padding: 0;
8
+ background: #d94f4f;
9
+ border: none;
10
+ color: #fff;
11
+ }
12
+ #message.jp-identity-crisis .service-mark {
13
+ display: table-cell;
14
+ vertical-align: middle;
15
+ padding: 0 20px;
16
+ }
17
+ #message.jp-identity-crisis .service-mark:before {
18
+ font-family: "jetpack" !important;
19
+ content: "\f102";
20
+ font-size: 40px;
21
+ line-height: 1;
22
+ color: #fff;
23
+ }
24
+ #message.jp-identity-crisis .jp-id-banner__content {
25
+ display: table;
26
+ padding: 10px 10px 10px 0;
27
+ }
28
+ #message.jp-identity-crisis .jp-id-banner__content .success-notice {
29
+ color: #fff;
30
+ }
31
+ #message.jp-identity-crisis .jp-id-banner__content .banner-content {
32
+ display: table-row;
33
+ }
34
+ #message.jp-identity-crisis .jp-id-banner__content .banner-content p {
35
+ margin: 0;
36
+ font-size: 13px;
37
+ color: #fff;
38
+ opacity: 1.0;
39
+ }
40
+ #message.jp-identity-crisis .jp-id-banner__content .banner-content p strong {
41
+ text-decoration: none;
42
+ font-weight: 600;
43
+ color: #fff;
44
+ opacity: 1.0;
45
+ }
46
+ #message.jp-identity-crisis .jp-id-banner__content .banner-content a {
47
+ display: inline-block;
48
+ color: rgba(255, 255, 255, 0.8);
49
+ border-bottom: 1px solid rgba(255, 255, 255, 0.5);
50
+ text-decoration: none;
51
+ -webkit-transform: all 1s ease;
52
+ }
53
+ #message.jp-identity-crisis .jp-id-banner__content .jp-btn-group {
54
+ display: table-row;
55
+ }
56
+ #message.jp-identity-crisis .jp-id-banner__content .jp-btn-group a {
57
+ display: inline-block;
58
+ margin: 10px 0 0 0;
59
+ padding: 0 0 1px 0;
60
+ color: rgba(255, 255, 255, 0.8);
61
+ border-bottom: 1px solid rgba(255, 255, 255, 0.5);
62
+ text-decoration: none;
63
+ -webkit-transform: all 1s ease;
64
+ }
65
+ #message.jp-identity-crisis .jp-id-banner__content .jp-btn-group a:hover {
66
+ color: white;
67
+ border-bottom: 1px solid rgba(255, 255, 255, 0.8);
68
+ }
69
+ #message.jp-identity-crisis .jp-id-banner__content .jp-btn-group .idc-separator {
70
+ margin: 0 6px;
71
+ }
72
+
73
  #message.jp-banner {
74
  position: relative;
75
  margin-bottom: 26px;
207
  background: #518d2a;
208
  box-shadow: 0 4px 0 #3e6c20, 0 2px 3px rgba(0, 0, 0, 0.2);
209
  font: 400 1.5em/1 'Open Sans', Helvetica, sans-serif;
210
+ -webkit-transition: all .1s ease-in-out;
211
  transition: all .1s ease-in-out;
212
  }
213
  @media (max-width: 1175px) {
329
  #message.jp-banner.protect-error .jp-banner__dismiss:before {
330
  color: #a0a5aa;
331
  }
332
+
333
+ /*# sourceMappingURL=jetpack-banners.css.map */
css/jetpack-banners.css.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../scss/organisms/_banners.scss","jetpack-banners.css"],"names":[],"mappings":"AAAA;;;GCGE;AACF;EDCC,oBAAA;EACA,qBAAA;EACA,2BAAA;EACA,cAAA;ECCC,qBAAA;EDCD,aAAA;EACC,kBAAA;EACA,6BAAA;EAAA,wBAAA;ECCD;AACD;EAAA,aAAA;EAAA,oBAAA;EAAA,WAAA;EAAA,eAAA;EAAA,aAAA;EAAA,cAAA;EDCE,uEAAA;EACA,sBAAA;EACA,YAAA;ECOD;AACD;EAAA;IAAA,eAAA;IAGG;EACF;AACD;EAAA,aAAA;EAEC;AACD;EAAA,gBAAA;EAAA,WAAA;EAAA,YAAA;EAAA,aAAA;EAAA,iBAAA;EAAA,kBAAA;EDAE,qBAAA;ECQD;AACD;EAAA,kBAAA;EAEC;;AAED;EAAA,YAAA;EAEC;;AAED;EAAA,gBAAA;EAAA,qBAAA;EAAA,6BAAA;EAAA,wBAAA;EAAA,YAAA;EAKC;AACD;EADC;IACD,aAAA;IADC;EAKC;IALD,aAAA;IAKC;EAGD;AACD;EADC,4BAAA;IACD;;;;;;;;;;;OAaM;EACL;AACD;EADC,WAAA;EACD,YAAA;EADC,kBAAA;EAKA;;AAED;EACE,oBAAmB;EADrB,QAAA;EACE,UAAA;EADF,oBAAA;EACE,YAAA;EADF,cAAA;EACE,6BAAA;EAAA,wBAAA;EAOD;AACD;EARE;IAOD,kBAAA;IACD,oBAAA;IARE,aAAA;IAaC;EACF;AACD;EACE,kBAHC;EACF,oBAAA;EACD,aAAA;EACE,cAAA;EAID;AACD;EALE;IAID,aAAA;IACD;EAIC;;AAED;EAFC,YAAA;EAIA;AAFD;EAFC,YAAA;EAOA;AALD;EAFC;IAOA,aAAA;IALD;EAUC;;AAED;EAFC,uBAAA;EAIC,oBAAmB;EAFrB,UAAA;EAFC,cAAA;EAIC,mBAAA;EAFF,kDAAA;EAFC,oBAAA;EAIC,6BAAA;EAAA,wBAAA;EAFF,qBAAA;EAFC,2DAAA;EAIC,sDAAA;EAAA,iCAAA;EAWD;AACD;EAZE;IAAA,mBAAA;IAWD,cAAA;IACD;EAKC;AACD;EACE;IAPF,aAAA;IAKC;EACD;AAKA;EACE;IAPD,kBAAA;IACD,WAAA;IAKA;EAKC;AACD;EACE;IAPF,gBAAA;IAKC,aAAA;IACD,oBAAA;IACE,kBAAA;IAPF,UAAA;IAaG;EACF;AACD;EACE,2DAhBF;EAiBC;AACD;EAHA,eAAA;EACE,oCAAA;EAAA,gCAAA;EAAA,4BAAA;EACD,uDAAA;EACD;AAKA;EAPE,WAAA;EASD;AACD;EATC,aAAA;EACD,uBAAA;EAKA,oBAAA;EAPE,wBAAA;EASD,uEAAA;EACD,uBAAA;EATC,WAAA;EACD,oBAAA;EAKA,aAAA;EAPE,cAAA;EAqBD;AACD;EArBC;IACD,eAAA;IAKA;EAmBC;;AAJD;EArBC,kBAAA;EA6BC,WA5BF;EA6BC;;AAED;EAXA,kBAAA;EArBC,aAAA;EA6BC,cA5BF;EA6BC,kBAAA;EAOC,+BAA8B;EALhC;;AAQA;EAXE,oBDbD;ECcA,QAAA;EAOC,UAAA;EALF,aAAA;EAaE,cAAa;EALf,oBAAA;EAXE,aAAA;EAmBD;AACD;EAjBA,gBAAA;EAaE,kBAAa;EALf,oCAAA;EAaC;AACD;EALA,cAAA;EAOC;AACD;EAjBA,YAAA;EAaC,eAAA;EACD;;AAQA;EALA,kBAAA;EAjBA,gCAAA;EAyBC;AACD;EACE,aAAY;EALd;AAOA;EA7BA,gBAAA;EA+BC;AALD;EACE,gBAAY;EAOb;AALD;EA7BA,qBAAA;EA+BC,kBAAA;EALD,aAAA;EAaC;AACD;EAXA,kBAAA;EAaC;AACD;EAjBA,qBAAA;EAmBC;AALD;EAXA,gBAAA;EAmBC","file":"jetpack-banners.css"}
1
+ {"version":3,"sources":["../scss/organisms/_banners.scss","jetpack-banners.css"],"names":[],"mappings":"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","file":"jetpack-banners.css"}
css/jetpack-banners.min.css CHANGED
@@ -1,6 +1,3 @@
1
- #message.jp-banner{position:relative;margin-bottom:26px;padding:17px 44px 17px 0;border:none;background:#81a844;color:#fff;overflow:hidden;-moz-box-sizing:border-box;box-sizing:border-box}#message.jp-banner:after{content:'';position:absolute;bottom:0;right:-100px;width:100%;height:50px;background:url("../images/the-footcloud.svg") right bottom no-repeat;pointer-events:none;z-index:1}@media (max-width: 830px){#message.jp-banner:after{display:none}}#message.jp-banner a{color:#fff}#message.jp-banner h4{display:block;margin:0;padding:0;color:#fff;font-size:20px;line-height:1.3;font-weight:normal}#message.jp-banner h4+p{margin-top:10px}.jp-banner a{padding:0}#message .jp-banner__content{color:#dfffcc;padding:0 0 0 20px;-moz-box-sizing:border-box;box-sizing:border-box;width:50%}@media (max-width: 768px){#message .jp-banner__content{width:100%}#message .jp-banner__content.is-connection{width:100%}}#message .jp-banner__content a{text-decoration:underline}#message .jp-banner__content p{margin:0;padding:0;line-height:1.5}#message .jp-banner__action-container{position:absolute;top:0;right:0;padding-left:20px;width:50%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box}@media (max-width: 768px){#message .jp-banner__action-container{position:static;margin:14px 0 9px;width:100%}}#message .jp-banner__action-container.is-full-width{position:static;margin:14px 0 9px;width:100%;height:auto}@media (max-width: 768px){#message .jp-banner__action-container.is-connection{width:100%}}
2
- #message.is-opt-in .jp-banner__content{width:60%}#message.is-opt-in .jp-banner__action-container{width:40%}@media (max-width: 768px){#message.is-opt-in .jp-banner__content,#message.is-opt-in .jp-banner__action-container{width:100%}}
3
- #message .jp-banner__button{display:inline-block;position:absolute;top:50%;right:125px;margin-top:-23px;padding:0.57143em 0.85714em 0.38095em 0.57143em;border-radius:6px;-moz-box-sizing:border-box;box-sizing:border-box;background:#518d2a;box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2);font:400 1.5em/1 'Open Sans', Helvetica, sans-serif;transition:all .1s ease-in-out}@media (max-width: 1175px){#message .jp-banner__button{font-size:1.25em;right:110px}}@media (max-width: 830px){#message .jp-banner__button{right:45px}}@media (max-width: 768px){#message .jp-banner__button{position:static;margin:0}}@media (max-width: 420px){#message .jp-banner__button{display:block;width:100%;text-align:center;font-size:1.1em;right:0}}#message .jp-banner__button:hover,#message .jp-banner__button:focus{box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2)}#message .jp-banner__button:active{outline:none;-webkit-transform:translateY(2px);-ms-transform:translateY(2px);transform:translateY(2px);box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.2)}#message .jp-banner__button:active:after{top:-2px}#message .jp-banner__button:before{content:'';display:inline-block;position:relative;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%;top:-2px;margin-right:13px;width:22px;height:22px}@media (max-width: 420px){#message .jp-banner__button:before{display:none}}
4
- #message .is-full-width .jp-banner__button{position:static;margin:0}#message .is-opt-in .jp-banner__button:before{content:"\f147";width:20px;height:20px;background:none;font:normal 20px/1 Dashicons}#message .jp-banner__dismiss{position:absolute;top:0;right:0;width:44px;height:44px;text-align:center;z-index:99}#message .jp-banner__dismiss:before{color:#a7c979;content:'\f158';font:normal 20px/44px 'dashicons'}#message .jp-banner__dismiss:hover{opacity:0.8}#message .jp-banner__dismiss:active{opacity:1;outline:none}#message.jp-banner.protect-error{background:#fff;border-left:4px #d94f4f solid}#message.jp-banner.protect-error .jp-banner__content{color:#444}#message.jp-banner.protect-error .jp-banner__content h4,#message.jp-banner.protect-error .jp-banner__content a{color:#d94f4f}#message.jp-banner.protect-error .jp-banner__content a:hover{color:#d43a3a}#message.jp-banner.protect-error .jp-banner__button{background:#d94f4f;box-shadow:none;color:#fff}#message.jp-banner.protect-error .jp-banner__button:hover,#message.jp-banner.protect-error .jp-banner__button:focus,#message.jp-banner.protect-error .jp-banner__button:active{box-shadow:none}#message.jp-banner.protect-error .jp-banner__button:hover{background:#d43a3a}#message.jp-banner.protect-error .jp-banner__dismiss:before{color:#a0a5aa}
5
 
6
  /*# sourceMappingURL=jetpack-banners.min.css.map */
1
+ #message.jp-identity-crisis{display:table;padding:0;background:#d94f4f;border:none;color:#fff}#message.jp-identity-crisis .service-mark{display:table-cell;vertical-align:middle;padding:0 20px}#message.jp-identity-crisis .service-mark:before{font-family:"jetpack" !important;content:"\f102";font-size:40px;line-height:1;color:#fff}#message.jp-identity-crisis .jp-id-banner__content{display:table;padding:10px 10px 10px 0}#message.jp-identity-crisis .jp-id-banner__content .success-notice{color:#fff}#message.jp-identity-crisis .jp-id-banner__content .banner-content{display:table-row}#message.jp-identity-crisis .jp-id-banner__content .banner-content p{margin:0;font-size:13px;color:#fff;opacity:1.0}#message.jp-identity-crisis .jp-id-banner__content .banner-content p strong{text-decoration:none;font-weight:600;color:#fff;opacity:1.0}#message.jp-identity-crisis .jp-id-banner__content .banner-content a{display:inline-block;color:rgba(255,255,255,0.8);border-bottom:1px solid rgba(255,255,255,0.5);text-decoration:none;-webkit-transform:all 1s ease}#message.jp-identity-crisis .jp-id-banner__content .jp-btn-group{display:table-row}#message.jp-identity-crisis .jp-id-banner__content .jp-btn-group a{display:inline-block;margin:10px 0 0 0;padding:0 0 1px 0;color:rgba(255,255,255,0.8);border-bottom:1px solid rgba(255,255,255,0.5);text-decoration:none;-webkit-transform:all 1s ease}#message.jp-identity-crisis .jp-id-banner__content .jp-btn-group a:hover{color:#fff;border-bottom:1px solid rgba(255,255,255,0.8)}#message.jp-identity-crisis .jp-id-banner__content .jp-btn-group .idc-separator{margin:0 6px}#message.jp-banner{position:relative;margin-bottom:26px;padding:17px 44px 17px 0;border:none;background:#81a844;color:#fff;overflow:hidden;-moz-box-sizing:border-box;box-sizing:border-box}#message.jp-banner:after{content:'';position:absolute;bottom:0;right:-100px;width:100%;height:50px;background:url("../images/the-footcloud.svg") right bottom no-repeat;pointer-events:none;z-index:1}@media (max-width: 830px){#message.jp-banner:after{display:none}}#message.jp-banner a{color:#fff}#message.jp-banner h4{display:block;margin:0;padding:0;color:#fff;font-size:20px;line-height:1.3;font-weight:normal}#message.jp-banner h4+p{margin-top:10px}.jp-banner a{padding:0}#message .jp-banner__content{color:#dfffcc;padding:0 0 0 20px;-moz-box-sizing:border-box;box-sizing:border-box;width:50%}@media (max-width: 768px){#message .jp-banner__content{width:100%}#message .jp-banner__content.is-connection{width:100%}}#message .jp-banner__content a{text-decoration:underline}#message .jp-banner__content p{margin:0;padding:0;line-height:1.5}#message .jp-banner__action-container{position:absolute;top:0;right:0;padding-left:20px;width:50%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box}@media (max-width: 768px){#message .jp-banner__action-container{position:static;margin:14px 0 9px;width:100%}}#message .jp-banner__action-container.is-full-width{position:static;margin:14px 0 9px;width:100%;height:auto}@media (max-width: 768px){#message .jp-banner__action-container.is-connection{width:100%}}#message.is-opt-in .jp-banner__content{width:60%}#message.is-opt-in .jp-banner__action-container{width:40%}@media (max-width: 768px){#message.is-opt-in .jp-banner__content,#message.is-opt-in .jp-banner__action-container{width:100%}}#message .jp-banner__button{display:inline-block;position:absolute;top:50%;right:125px;margin-top:-23px;padding:0.57143em 0.85714em 0.38095em 0.57143em;border-radius:6px;-moz-box-sizing:border-box;box-sizing:border-box;background:#518d2a;box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2);font:400 1.5em/1 'Open Sans', Helvetica, sans-serif;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}@media (max-width: 1175px){#message .jp-banner__button{font-size:1.25em;right:110px}}@media (max-width: 830px){#message .jp-banner__button{right:45px}}@media (max-width: 768px){#message .jp-banner__button{position:static;margin:0}}@media (max-width: 420px){#message .jp-banner__button{display:block;width:100%;text-align:center;font-size:1.1em;right:0}}#message .jp-banner__button:hover,#message .jp-banner__button:focus{box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2)}#message .jp-banner__button:active{outline:none;-webkit-transform:translateY(2px);-ms-transform:translateY(2px);transform:translateY(2px);box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.2)}#message .jp-banner__button:active:after{top:-2px}#message .jp-banner__button:before{content:'';display:inline-block;position:relative;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%;top:-2px;margin-right:13px;width:22px;height:22px}@media (max-width: 420px){#message .jp-banner__button:before{display:none}}#message .is-full-width .jp-banner__button{position:static;margin:0}#message .is-opt-in .jp-banner__button:before{content:"\f147";width:20px;height:20px;background:none;font:normal 20px/1 Dashicons}#message .jp-banner__dismiss{position:absolute;top:0;right:0;width:44px;height:44px;text-align:center;z-index:99}#message .jp-banner__dismiss:before{color:#a7c979;content:'\f158';font:normal 20px/44px 'dashicons'}#message .jp-banner__dismiss:hover{opacity:0.8}#message .jp-banner__dismiss:active{opacity:1;outline:none}#message.jp-banner.protect-error{background:#fff;border-left:4px #d94f4f solid}#message.jp-banner.protect-error .jp-banner__content{color:#444}#message.jp-banner.protect-error .jp-banner__content h4,#message.jp-banner.protect-error .jp-banner__content a{color:#d94f4f}#message.jp-banner.protect-error .jp-banner__content a:hover{color:#d43a3a}#message.jp-banner.protect-error .jp-banner__button{background:#d94f4f;box-shadow:none;color:#fff}#message.jp-banner.protect-error .jp-banner__button:hover,#message.jp-banner.protect-error .jp-banner__button:focus,#message.jp-banner.protect-error .jp-banner__button:active{box-shadow:none}#message.jp-banner.protect-error .jp-banner__button:hover{background:#d43a3a}#message.jp-banner.protect-error .jp-banner__dismiss:before{color:#a0a5aa}
 
 
 
2
 
3
  /*# sourceMappingURL=jetpack-banners.min.css.map */
css/jetpack-banners.min.css.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../scss/organisms/_banners.scss"],"names":[],"mappings":"AAAA,mBACC,kBACA,CAAA,kBACA,CAAA,wBACA,CAAA,WACA,CAAA,kBACA,CAAA,UACA,CAAA,eACA,CAAA,0BAAA,CAEA,qBAAA,CAAA,wBACC,WACA,CAAA,iBACA,CAAA,QACA,CAAA,YACA,CAAA,UACA,CAAA,WACA,CAAA,oEACA,CAAA,mBACA,CAAA,SAEA,CAAA,yBAXD,yBAYE,aAAa,CAAA,AAGf,CAAA,oBACC,WAED,CAAA,qBACC,cACA,CAAA,QACA,CAAA,SACA,CAAA,UACA,CAAA,cACA,CAAA,eACA,CAAA,kBAEA,CAAA,uBACC,gBAKH,CAAA,YACC,UAGD,CAAA,4BACC,cACA,CAAA,kBACA,CAAA,0BAAA,CACA,qBAAA,CAAA,SAEA,CAAA,yBAND,6BAOE,WAEA,CAAA,0CACC,WAAW,CAAA,AAIb,CAAA,8BACC,0BAcD,CAAA,8BACC,SACA,CAAA,SACA,CAAA,eAIF,CAAA,qCACC,kBACA,CAAA,KACA,CAAA,OACA,CAAA,iBACA,CAAA,SACA,CAAA,WACA,CAAA,0BAAA,CAEA,qBAAA,CAAA,yBATD,sCAUE,gBACA,CAAA,iBACA,CAAA,UAAW,CAAA,AAEZ,CAAA,mDACC,gBACA,CAAA,iBACA,CAAA,UACA,CAAA,WAIA,CAAA,yBAFD,oDAGE,WAAW,CAAA,CAAA;AAQZ,uCACC,UAED,CAAA,+CACC,UAGD,CAAA,yBACC,uFACC,WAAW,CAAA,CAAA;AAMf,4BACC,qBACA,CAAA,iBACC,CAAA,OACA,CAAA,WACD,CAAA,gBACA,CAAA,+CACA,CAAA,iBACA,CAAA,0BAAA,CACA,qBAAA,CAAA,kBACA,CAAA,oDAGA,CAAA,mDACA,CAAA,8BAEA,CAAA,0BAhBD,4BAiBE,iBACA,CAAA,WAAY,CAAA,AAGb,CAAA,yBArBD,4BAsBE,WAAW,CAAA,AAGZ,CAAA,yBAzBD,4BA0BE,gBACA,CAAA,QAAS,CAAA,AAEV,CAAA,yBA7BD,4BA8BE,cACA,CAAA,UACA,CAAA,iBACA,CAAA,eACA,CAAA,OAAQ,CAAA,AAET,CAAA,mEAEC,qDAID,CAAA,kCACC,aACA,CAAA,iCAAA,CACA,6BADA,CACA,yBAAA,CAAA,gDAIA,CAAA,wCAEC,SAGF,CAAA,kCACC,WACA,CAAA,oBACA,CAAA,iBACA,CAAA,qBACA,CAAA,oEACA,CAAA,oBACA,CAAA,QACA,CAAA,iBACA,CAAA,UACA,CAAA,WAEA,CAAA,yBAZD,mCAaE,aAAa,CAAA,CAAA;AAKhB,2CACC,gBACA,CAAA,QAID,CAAA,6CACC,gBACA,CAAA,UACA,CAAA,WACA,CAAA,eACA,CAAA,4BAGD,CAAA,4BACC,kBACC,CAAA,KACA,CAAA,OACD,CAAA,UACA,CAAA,WACA,CAAA,iBACA,CAAA,UAEA,CAAA,mCACC,cACA,CAAA,eACA,CAAA,iCAED,CAAA,kCACC,YAED,CAAA,mCACC,UACA,CAAA,YAMF,CAAA,gCACC,gBACA,CAAA,6BAEA,CAAA,oDACC,WACA,CAAA,8GACC,cAED,CAAA,4DACC,cAIF,CAAA,mDACC,mBACA,CAAA,eACA,CAAA,UAEA,CAAA,8KAGC,gBAED,CAAA,yDACC,mBAIF,CAAA,2DACC,cAAc,CAAA","file":"jetpack-banners.min.css"}
1
+ {"version":3,"sources":["../scss/organisms/_banners.scss"],"names":[],"mappings":"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","file":"jetpack-banners.min.css"}
css/jetpack-icons.css CHANGED
@@ -35,3 +35,5 @@ li.toplevel_page_jetpack .wp-menu-image:before {
35
  height: auto;
36
  }
37
  }
 
 
35
  height: auto;
36
  }
37
  }
38
+
39
+ /*# sourceMappingURL=jetpack-icons.css.map */
css/jetpack-icons.css.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../scss/atoms/icons/_jetpack.scss","jetpack-icons.css","../scss/jetpack-icons.scss"],"names":[],"mappings":"AAIA;;;GCDE;AACF;EDQC,wBAAA;ECNC,+CAAA;EDSF,yQAAA;EACC,qBAAA;ECPC,oBAAA;EACD;AACD;EACE;ICNF,wBAAA;IACC,qEAAA;IDQE;EACF;AACD;ECPA,mCAAA;EACC,kBAAA;EDSA;;AAED;ECRA,mCAAA;EACC,kBAAA;EDUA;;AAED;ECTA,6BAAA;EACC,8BAAA;EDWA;;AAED;EACE;IACE,cAAA;IACD;EACF","file":"jetpack-icons.css"}
1
+ {"version":3,"sources":["../scss/atoms/icons/_jetpack.scss","jetpack-icons.css","../scss/jetpack-icons.scss"],"names":[],"mappings":"AAIA;;;GAGC;ACHD;EDQC,wBAAkB;ECNjB,+CAA8C;EDShD,yQAAqD;EACpD,qBAGC;ECVA,oBDQa;ECPd;AACD;EACE;ICNF,wBAAA;IACC,qEAAiC;IACjC;EDQA;AACD;ECPA,mCAAA;EACC,kBAAa;EDSb;;AAED;ECRA,mCAAA;EACC,kBAAY;EDUZ;;AAED;ECTA,6BAAyB;EACxB,8BAAA;EDWA;;AAED;EACE;IACE,cAAa;IACd;EACF","file":"jetpack-icons.css"}
css/jetpack-rtl.css CHANGED
@@ -1,4 +1,4 @@
1
  /*!
2
  * Do not modify this file directly. It is concatenated from individual module CSS files.
3
  */
4
- .jp-carousel-wrap *{line-height:inherit}.jp-carousel-overlay{background:#000}div.jp-carousel-fadeaway{position:fixed;bottom:0;z-index:2147483647;width:100%;height:15px}.jp-carousel-next-button span,.jp-carousel-previous-button span{background:url(../modules/carousel/images/arrows.png) center center/200px 126px no-repeat}.jp-carousel-msg{font-family:"Open Sans",sans-serif;font-style:normal;display:inline-block;line-height:19px;padding:11px 15px;font-size:14px;text-align:center;margin:25px 2px 0 20px;background-color:#fff;border-right:4px solid #ffba00;box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){.jp-carousel-next-button span,.jp-carousel-previous-button span{background-image:url(../modules/carousel/images/arrows-2x.png)}}.jp-carousel-wrap{font-family:"Helvetica Neue",sans-serif!important}.jp-carousel-info{position:absolute;bottom:0;text-align:right!important;-webkit-font-smoothing:subpixel-antialiased!important}.jp-carousel-info ::selection{background:#68c9e8;color:#fff}.jp-carousel-info ::-moz-selection{background:#68c9e8;color:#fff}.jp-carousel-photo-info{position:relative;right:25%;width:50%}.jp-carousel-transitions .jp-carousel-photo-info{transition:400ms ease-out}.jp-carousel-info h2{background:none!important;border:none!important;color:#999;display:block!important;font:400 13px/1.25em "Helvetica Neue",sans-serif!important;letter-spacing:0!important;margin:7px 0 0!important;padding:10px 0 0!important;overflow:hidden;text-align:right;text-shadow:none!important;text-transform:none!important;-webkit-font-smoothing:subpixel-antialiased}.jp-carousel-next-button,.jp-carousel-previous-button{text-indent:-9999px;overflow:hidden;cursor:pointer}.jp-carousel-next-button span,.jp-carousel-previous-button span{position:absolute;top:0;bottom:0;width:82px;zoom:1;filter:alpha(opacity=20);opacity:.2}.jp-carousel-transitions .jp-carousel-next-button span,.jp-carousel-transitions .jp-carousel-previous-button span{transition:500ms opacity ease-out}.jp-carousel-next-button:hover span,.jp-carousel-previous-button:hover span{filter:alpha(opacity=60);opacity:.6}.jp-carousel-next-button span{background-position:-110px center;left:0}.jp-carousel-previous-button span{background-position:-10px center;right:0}.jp-carousel-buttons{margin:-18px -20px 15px;padding:8px 10px;border-bottom:1px solid #222;background:#222;text-align:center}div.jp-carousel-buttons a{border:none!important;color:#999;font:400 11px/1.2em "Helvetica Neue",sans-serif!important;letter-spacing:0!important;padding:5px 0 5px 2px;text-decoration:none!important;text-shadow:none!important;vertical-align:middle;-webkit-font-smoothing:subpixel-antialiased}div.jp-carousel-buttons a:hover{color:#68c9e8;border:none!important}.jp-carousel-transitions div.jp-carousel-buttons a:hover{transition:none!important}.jp-carousel-next-button,.jp-carousel-previous-button,.jp-carousel-slide,.jp-carousel-slide img{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.jp-carousel-slide{position:fixed;width:0;bottom:0;background-color:#000;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px}.jp-carousel-slide.selected{position:absolute!important;filter:alpha(opacity=100);opacity:1}.jp-carousel-slide{filter:alpha(opacity=25);opacity:.25}.jp-carousel-slide img{display:block;width:100%!important;height:100%!important;max-width:100%!important;max-height:100%!important;background:none!important;border:none!important;padding:0!important;box-shadow:0 2px 8px rgba(0,0,0,.1);zoom:1}.jp-carousel-transitions .jp-carousel-slide{transition:opacity 400ms linear}.jp-carousel-close-hint{color:#999;cursor:default;letter-spacing:0!important;padding:.35em 0 0;position:absolute;text-align:right;width:90%}.jp-carousel-transitions .jp-carousel-close-hint{transition:color 200ms linear}.jp-carousel-close-hint span{cursor:pointer;background-color:#000;background-color:rgba(0,0,0,.8);display:block;height:22px;font:400 24px/1 "Helvetica Neue",sans-serif!important;line-height:22px;margin:0 .4em 0 0;text-align:center;vertical-align:middle;width:22px;border-radius:4px}.jp-carousel-transitions .jp-carousel-close-hint span{transition:border-color 200ms linear}.jp-carousel-close-hint:hover{cursor:default;color:#fff}.jp-carousel-close-hint:hover span{border-color:#fff}a.jp-carousel-image-download,div.jp-carousel-buttons a.jp-carousel-commentlink,div.jp-carousel-buttons a.jp-carousel-like,div.jp-carousel-buttons a.jp-carousel-reblog{background:url(../modules/carousel/images/carousel-sprite.png?5) 0 0/16px 200px no-repeat}div.jp-carousel-buttons a.jp-carousel-commentlink,div.jp-carousel-buttons a.jp-carousel-reblog{margin:0 0 0 14px!important}div.jp-carousel-buttons a.jp-carousel-like.liked,div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{background-color:#303030;padding-left:8px!important;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px}div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{margin:0 -12px 0 2px!important}div.jp-carousel-buttons a.jp-carousel-reblog,div.jp-carousel-buttons a.jp-carousel-reblog.reblogged:hover{background-position:6px -36px;padding-left:auto!important;padding-right:26px!important;color:#999}div.jp-carousel-buttons a.jp-carousel-commentlink{background-position:0 -156px;padding-right:19px!important}div.jp-carousel-buttons a.jp-carousel-reblog.reblogged:hover{cursor:default}div.jp-carousel-buttons a.jp-carousel-reblog:hover{background-position:6px -56px;color:#68c9e8}div.jp-carousel-buttons a.jp-carousel-like{background-position:5px 5px;padding-right:24px!important}div.jp-carousel-buttons a.jp-carousel-like:hover{background-position:5px -15px}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){a.jp-carousel-image-download,div.jp-carousel-buttons a.jp-carousel-commentlink,div.jp-carousel-buttons a.jp-carousel-like,div.jp-carousel-buttons a.jp-carousel-reblog{background-image:url(../modules/carousel/images/carousel-sprite-2x.png?5)}}div#carousel-reblog-box{background:#222;padding:3px 0 0;display:none;margin:5px auto 0;border-radius:2px;box-shadow:0 0 20px rgba(0,0,0,.9);height:74px;width:565px}#carousel-reblog-box textarea{background:#999;font:13px/1.4 "Helvetica Neue",sans-serif!important;color:#444;padding:3px 6px;width:370px;height:48px;float:right;margin:6px 9px 0;border:1px solid #666;box-shadow:inset -2px 2px 2px rgba(0,0,0,.2);border-radius:2px}#carousel-reblog-box textarea:focus{background:#ccc;color:#222}#carousel-reblog-box label{color:#aaa;font-size:11px;padding-left:2px;padding-right:2px;display:inline;font-weight:400}#carousel-reblog-box select{width:110px;padding:0;font-size:12px;font-family:"Helvetica Neue",sans-serif!important;background:#333;color:#eee;border:1px solid #444;margin-top:5px}#carousel-reblog-box .submit,#wrapper #carousel-reblog-box p.response{float:right;width:154px;padding-top:0;padding-right:1px;overflow:hidden;height:34px;margin:3px 2px 0 0!important}#wrapper #carousel-reblog-box p.response{font-size:13px;clear:none;padding-right:2px;height:34px;color:#aaa}#carousel-reblog-box input#carousel-reblog-submit,#jp-carousel-comment-form-button-submit{font:13px/24px "Helvetica Neue",sans-serif!important;margin-top:8px;padding:0 10px!important;border-radius:1em;height:24px;color:#333;cursor:pointer;font-weight:400;background:#aaa;border:1px solid #444}#carousel-reblog-box input#carousel-reblog-submit:hover,#jp-carousel-comment-form-button-submit:hover{background:#ccc}#carousel-reblog-box .canceltext{color:#aaa;font-size:11px;line-height:24px}#carousel-reblog-box .canceltext a{color:#fff}.jp-carousel-titleanddesc{border-top:1px solid #222;color:#999;font-size:15px;padding-top:24px;margin-bottom:20px;font-weight:400}.jp-carousel-titleanddesc-title{font:300 1.5em/1.1 "Helvetica Neue",sans-serif!important;text-transform:none!important;color:#fff;margin:0 0 15px;padding:0}.jp-carousel-titleanddesc-desc p{color:#999;line-height:1.4;margin-bottom:.75em}.jp-carousel-comments p a,.jp-carousel-info h2 a,.jp-carousel-titleanddesc p a{color:#fff!important;border:none!important;text-decoration:underline!important;font-weight:400!important;font-style:normal!important}.jp-carousel-titleanddesc p b,.jp-carousel-titleanddesc p strong{font-weight:700;color:#999}.jp-carousel-titleanddesc p em,.jp-carousel-titleanddesc p i{font-style:italic;color:#999}.jp-carousel-comments p a:hover,.jp-carousel-info h2 a:hover,.jp-carousel-titleanddesc p a:hover{color:#68c9e8!important}.jp-carousel-titleanddesc p:empty{display:none}.jp-carousel-left-column-wrapper h1:after,.jp-carousel-left-column-wrapper h1:before,.jp-carousel-photo-info h1:after,.jp-carousel-photo-info h1:before{content:none!important}.jp-carousel-image-meta{background:#111;border:1px solid #222;color:#fff;font:12px/1.4 "Helvetica Neue",sans-serif!important;overflow:hidden;padding:18px 20px;width:209px!important}.jp-carousel-image-meta h5,.jp-carousel-image-meta li{font-family:"Helvetica Neue",sans-serif!important;position:inherit!important;top:auto!important;left:auto!important;right:auto!important;bottom:auto!important;background:none!important;border:none!important;font-weight:400!important;line-height:1.3em!important}.jp-carousel-image-meta ul{margin:0!important;padding:0!important;list-style:none!important}.jp-carousel-image-meta li{width:48%!important;float:right!important;margin:0 0 15px 2%!important;color:#fff!important;font-size:13px!important}.jp-carousel-image-meta h5{color:#999!important;text-transform:uppercase!important;font-size:10px!important;margin:0 0 2px!important;letter-spacing:.1em!important}a.jp-carousel-image-download{padding-right:23px;display:inline-block;clear:both;color:#999;line-height:1;font-weight:400;font-size:13px;text-decoration:none;background-position:0 -82px}a.jp-carousel-image-download span.photo-size{font-size:11px;border-radius:1em;margin-right:2px;display:inline-block}a.jp-carousel-image-download span.photo-size-times{padding:0 2px 0 1px}a.jp-carousel-image-download:hover{background-position:0 -122px;color:#68c9e8;border:none!important}.jp-carousel-image-map{position:relative;margin:-20px -20px 20px;border-bottom:1px solid rgba(255,255,255,.17);height:154px}.jp-carousel-image-map img.gmap-main{border-top-right-radius:6px;border-left:1px solid rgba(255,255,255,.17)}.jp-carousel-image-map div.gmap-topright{width:94px;height:154px;position:absolute;top:0;left:0}.jp-carousel-image-map div.imgclip{overflow:hidden;border-top-left-radius:6px}.jp-carousel-image-map div.gmap-topright img{margin-right:-40px}.jp-carousel-image-map img.gmap-bottomright{position:absolute;top:96px;left:0}.jp-carousel-comments{font:15px/1.7 "Helvetica Neue",sans-serif!important;font-weight:400;background:none}.jp-carousel-comments p a:active,.jp-carousel-comments p a:focus,.jp-carousel-comments p a:hover{color:#68c9e8!important}.jp-carousel-comment{background:none;color:#999;margin-bottom:20px;clear:right;overflow:auto;width:100%}.jp-carousel-comment p{color:#999!important}.jp-carousel-comment .comment-author{font-size:13px;font-weight:400;padding:0;width:auto;display:inline;float:none;border:none;margin:0}.jp-carousel-comment .comment-author a{color:#fff}.jp-carousel-comment .comment-gravatar{float:right}.jp-carousel-comment .comment-content{border:none;margin-right:85px;padding:0}.jp-carousel-comment .avatar{margin:0 0 0 20px;border-radius:4px;border:none!important;padding:0!important;background-color:transparent!important}.jp-carousel-comment .comment-date{color:#999;margin-top:4px;font-size:11px;display:inline;float:left}#jp-carousel-comment-form{margin:0 0 10px!important;float:right;width:100%}textarea#jp-carousel-comment-form-comment-field{background:rgba(34,34,34,.9);border:1px solid #3a3a3a;color:#aaa;font:15px/1.4 "Helvetica Neue",sans-serif!important;width:100%;padding:10px 10px 5px;margin:0;float:none;height:147px;box-shadow:inset -2px 2px 2px rgba(0,0,0,.2);border-radius:3px;overflow:hidden;-moz-box-sizing:border-box;box-sizing:border-box}textarea#jp-carousel-comment-form-comment-field::-webkit-input-placeholder{color:#555}textarea#jp-carousel-comment-form-comment-field:focus{background:#ccc;color:#222}textarea#jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder{color:#aaa}#jp-carousel-comment-form-spinner{color:#fff;margin:22px 10px 0 0;display:block;width:20px;height:20px;float:right}#jp-carousel-comment-form-submit-and-info-wrapper{display:none;overflow:hidden;width:100%}#jp-carousel-comment-form-commenting-as input{background:rgba(34,34,34,.9);border:1px solid #3a3a3a;color:#aaa;font:13px/1.4 "Helvetica Neue",sans-serif!important;padding:3px 6px;float:right;box-shadow:inset -2px 2px 2px rgba(0,0,0,.2);border-radius:2px;width:285px}#jp-carousel-comment-form-commenting-as input:focus{background:#ccc;color:#222}#jp-carousel-comment-form-commenting-as p{font:400 13px/1.7 "Helvetica Neue",sans-serif!important;margin:22px 0 0;float:right}#jp-carousel-comment-form-commenting-as fieldset{float:right;border:none;margin:20px 0 0;padding:0;clear:both}#jp-carousel-comment-form-commenting-as label{font:400 13px/1.7 "Helvetica Neue",sans-serif!important;margin:0 0 3px 20px;float:right;width:100px}#jp-carousel-comment-form-button-submit{margin-top:20px;float:left}#jp-carousel-comment-form-container,#js-carousel-comment-form-container{margin-bottom:15px;overflow:auto;width:100%}#jp-carousel-comment-post-results{display:none;overflow:auto;width:100%}#jp-carousel-comment-post-results span{display:block;text-align:center;margin-top:20px;width:100%;overflow:auto;padding:1em 0;-moz-box-sizing:border-box;box-sizing:border-box;background:rgba(0,0,0,.7);border-radius:2px;font:13px/1.4 "Helvetica Neue",sans-serif!important;border:1px solid rgba(255,255,255,.17);box-shadow:inset 0 0 5px 5px rgba(0,0,0,1)}.jp-carousel-comment-post-error{color:#DF4926}#jp-carousel-comments-closed{display:none;color:#999}#jp-carousel-comments-loading{font:400 15px/1.7 "Helvetica Neue",sans-serif!important;display:none;color:#999;text-align:right;margin-bottom:20px}.jp-carousel-light .jp-carousel-overlay{background:#fff}.jp-carousel-light .jp-carousel-next-button:hover span,.jp-carousel-light .jp-carousel-previous-button:hover span{opacity:.8}.jp-carousel-light .jp-carousel-close-hint:hover,.jp-carousel-light .jp-carousel-titleanddesc div{color:#000!important}.jp-carousel-light .jp-carousel-comment .comment-author a,.jp-carousel-light .jp-carousel-comments p a,.jp-carousel-light .jp-carousel-info h2 a,.jp-carousel-light .jp-carousel-titleanddesc p a{color:#1e8cbe!important}.jp-carousel-light .jp-carousel-comment .comment-author a:hover,.jp-carousel-light .jp-carousel-comments p a:hover,.jp-carousel-light .jp-carousel-info h2 a:hover,.jp-carousel-light .jp-carousel-titleanddesc p a:hover{color:#f1831e!important}.jp-carousel-light .jp-carousel-comment,.jp-carousel-light .jp-carousel-comment p,.jp-carousel-light .jp-carousel-info h2,.jp-carousel-light .jp-carousel-titleanddesc,.jp-carousel-light .jp-carousel-titleanddesc p,.jp-carousel-light .jp-carousel-titleanddesc p b,.jp-carousel-light .jp-carousel-titleanddesc p em,.jp-carousel-light .jp-carousel-titleanddesc p i,.jp-carousel-light .jp-carousel-titleanddesc p strong,.jp-carousel-light div.jp-carousel-buttons a{color:#666}.jp-carousel-light .jp-carousel-buttons{border-bottom-color:#f0f0f0;background:#f5f5f5}.jp-carousel-light div.jp-carousel-buttons a:hover{text-decoration:none;color:#f1831e}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog,.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog:hover{background-position:4px -56px;padding-right:24px!important}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like.liked,.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{background-color:#2ea2cc;color:#fff}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-commentlink{background-position:0 -176px}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like,.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like:hover{background-position:5px -15px;padding-right:23px!important}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{background-position:5px -36px}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like.liked{background-position:5px 5px}.jp-carousel-light div#carousel-reblog-box{background:#eee;box-shadow:0 2px 10px rgba(0,0,0,.1);border:1px solid #ddd}.jp-carousel-light #carousel-reblog-box textarea{color:#666;border:1px solid #cfcfcf;background:#fff}.jp-carousel-light #carousel-reblog-box .canceltext{color:#888}.jp-carousel-light #carousel-reblog-box .canceltext a{color:#666}.jp-carousel-light #carousel-reblog-box select{background:#eee;color:#333;border:1px solid #aaa}#jp-carousel-comment-form-button-submit,.jp-carousel-light #carousel-reblog-box input#carousel-reblog-submit{color:#333;background:#fff;border:1px solid #aaa}.jp-carousel-light .jp-carousel-image-meta{background:#fafafa;border:1px solid #eee;border-top-color:#f5f5f5;border-right-color:#f5f5f5;color:#333}.jp-carousel-light .jp-carousel-image-meta li{color:#000!important}.jp-carousel-light .jp-carousel-close-hint{color:#ccc}.jp-carousel-light .jp-carousel-close-hint span{background-color:#fff;border-color:#ccc}.jp-carousel-light #jp-carousel-comment-form-comment-field::-webkit-input-placeholder{color:#aaa}.jp-carousel-light #jp-carousel-comment-form-comment-field:focus{color:#333}.jp-carousel-light #jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder{color:#ddd}.jp-carousel-light a.jp-carousel-image-download{background-position:0 -122px}.jp-carousel-light a.jp-carousel-image-download:hover{background-position:0 -122px;color:#f1831e}.jp-carousel-light textarea#jp-carousel-comment-form-comment-field{background:#fbfbfb;color:#333;border:1px solid #dfdfdf;box-shadow:inset -2px 2px 2px rgba(0,0,0,.1)}.jp-carousel-light #jp-carousel-comment-form-commenting-as input{background:#fbfbfb;border:1px solid #dfdfdf;color:#333;box-shadow:inset -2px 2px 2px rgba(0,0,0,.1)}.jp-carousel-light #jp-carousel-comment-form-commenting-as input:focus{background:#fbfbfb;color:#333}.jp-carousel-light #jp-carousel-comment-post-results span{background:#f7f7f7;border:1px solid #dfdfdf;box-shadow:inset 0 0 5px rgba(0,0,0,.05)}.jp-carousel-light .jp-carousel-slide{background-color:#fff}.jp-carousel-light .jp-carousel-titleanddesc{border-top:1px solid #eee}@media only screen and (max-width:760px){.jp-carousel-info{margin:0 10px!important}.jp-carousel-buttons,.jp-carousel-next-button,.jp-carousel-previous-button{display:none!important}.jp-carousel-image-meta{float:none!important;width:100%!important;-moz-box-sizing:border-box;box-sizing:border-box}.jp-carousel-close-hint{font-weight:800!important;font-size:26px!important;position:fixed!important;top:-10px}.jp-carousel-slide img{filter:alpha(opacity=100);opacity:1}.jp-carousel-wrap{background-color:#000}.jp-carousel-fadeaway{display:none}#jp-carousel-comment-form-container{display:none!important}.jp-carousel-titleanddesc{padding-top:0!important;border:none!important}.jp-carousel-titleanddesc-title{font-size:1em!important}.jp-carousel-left-column-wrapper{padding:0;width:100%!important}.jp-carousel-photo-info{right:0!important;width:100%!important}}.contact-form .clear-form{clear:both}.contact-form input[type=email],.contact-form input[type=text]{width:300px;max-width:98%;margin-bottom:13px}.contact-form select{margin-bottom:13px}.contact-form textarea{height:200px;width:80%;float:none;margin-bottom:13px}.contact-form input[type=checkbox],.contact-form input[type=radio]{float:none;margin-bottom:13px}.contact-form label{margin-bottom:3px;float:none;font-weight:700;display:block}.contact-form label.checkbox,.contact-form label.radio{margin-bottom:3px;float:none;font-weight:700;display:inline-block}.contact-form label span{color:#AAA;margin-right:4px;font-weight:400}.form-errors .form-error-message{color:red}.textwidget .contact-form input[type=email],.textwidget .contact-form input[type=text],.textwidget .contact-form textarea{width:250px;max-width:100%;-moz-box-sizing:border-box;box-sizing:border-box}#jetpack-check-feedback-spam{margin:1px 0 0 8px}.jetpack-check-feedback-spam-spinner{display:inline-block;margin-top:7px}.infinite-loader{color:#000;display:block;height:28px;text-indent:-9999px}#infinite-handle span{background:#333;border-radius:1px;color:#eee;cursor:pointer;font-size:13px;padding:6px 16px}#infinite-handle span button,#infinite-handle span button:focus,#infinite-handle span button:hover{display:inline;position:static;padding:0;margin:0;border:none;line-height:inherit;background:0 0;color:inherit;cursor:inherit;font-size:inherit;font-weight:inherit;font-family:inherit}#infinite-handle span button::-moz-focus-inner{margin:0;padding:0;border:none}@media (max-width:800px){#infinite-handle span:before{display:none}#infinite-handle span{display:block}}#infinite-footer{position:fixed;bottom:-50px;right:0;width:100%}#infinite-footer a{text-decoration:none}#infinite-footer .blog-credits a:hover,#infinite-footer .blog-info a:hover{color:#444;text-decoration:underline}#infinite-footer .container{background:rgba(255,255,255,.8);border-color:#ccc;border-color:rgba(0,0,0,.1);border-style:solid;border-width:1px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;margin:0 auto;overflow:hidden;padding:1px 20px;width:780px}#infinite-footer .blog-credits,#infinite-footer .blog-info{-moz-box-sizing:border-box;box-sizing:border-box;line-height:25px}#infinite-footer .blog-info{float:right;overflow:hidden;text-align:right;text-overflow:ellipsis;white-space:nowrap;width:40%}#infinite-footer .blog-credits{font-weight:400;float:left;width:60%}#infinite-footer .blog-info a{color:#111;font-size:14px;font-weight:700}#infinite-footer .blog-credits{color:#888;font-size:12px;text-align:left}#infinite-footer .blog-credits a{color:#666}.infinity-end.neverending #infinite-footer{display:none}@media (max-width:640px){#infinite-footer .container{-moz-box-sizing:border-box;box-sizing:border-box;width:100%}#infinite-footer .blog-info{width:30%}#infinite-footer .blog-credits{width:70%}#infinite-footer .blog-credits,#infinite-footer .blog-info a{font-size:10px}}@media (max-width:640px){#infinite-footer{position:static}}#wpadminbar li#wp-admin-bar-admin-bar-likes-widget{width:61px;overflow:hidden}#wpadminbar iframe.admin-bar-likes-widget{width:61px;height:28px;min-height:28px;border-width:0;position:absolute;top:0}div.jetpack-likes-widget-wrapper{width:100%;min-height:50px;position:relative}div.jetpack-likes-widget-wrapper .sd-link-color{font-size:12px}div.jetpack-likes-widget-wrapper.slim-likes-widget{width:1px;min-height:0}#likes-other-gravatars{display:none;position:absolute;padding:10px 10px 12px;background-color:#2e4453;border-width:0;box-shadow:0 0 10px #2e4453;box-shadow:0 0 10px rgba(46,68,83,.6);min-width:130px;z-index:1000}#likes-other-gravatars *{line-height:normal}#likes-other-gravatars .likes-text{color:#fff;font-size:12px;padding-bottom:8px}#likes-other-gravatars li,#likes-other-gravatars ul{margin:0;padding:0;text-indent:0;list-style-type:none}#likes-other-gravatars li::before{content:""}#likes-other-gravatars ul.wpl-avatars{overflow:auto;display:block;max-height:190px}#likes-other-gravatars ul.wpl-avatars li{width:32px;height:32px;float:right;margin:0 0 5px 5px}#likes-other-gravatars ul.wpl-avatars li a{margin:0 0 0 2px;border-bottom:none!important;display:block}#likes-other-gravatars ul.wpl-avatars li a img{background:0 0;border:none;margin:0!important;padding:0!important;position:static}div.sd-box{border-top:1px solid #ddd;border-top:1px solid rgba(0,0,0,.13)}.comment-likes-widget,.entry-content .post-likes-widget,.post-likes-widget{margin:0;border-width:0;display:block}.post-likes-widget-placeholder{margin:0;border-width:0;position:relative}.post-likes-widget-placeholder .button{display:none}.post-likes-widget-placeholder .loading{color:#999;font-size:12px}.slim-likes-widget .post-likes-widget{width:auto;float:none}div.sharedaddy.sd-like-enabled .sd-like h3{display:none}div.sharedaddy.sd-like-enabled .sd-like .post-likes-widget{width:100%;float:none;position:absolute;top:0}.comment-likes-widget{width:100%}.pd-rating{display:block!important}.sd-gplus .sd-title{display:none}#jp-relatedposts{display:none;padding-top:1em;margin:1em 0;position:relative;clear:both}.jp-relatedposts:after{content:'';display:block;clear:both}#jp-relatedposts h3.jp-relatedposts-headline{margin:0 0 1em;display:inline-block;float:right;font-size:9pt;font-weight:700;font-family:inherit}#jp-relatedposts h3.jp-relatedposts-headline em:before{content:"";display:block;width:100%;min-width:30px;border-top:1px solid #ddd;border-top:1px solid rgba(0,0,0,.2);margin-bottom:1em}#jp-relatedposts h3.jp-relatedposts-headline em{font-style:normal;font-weight:700}#jp-relatedposts .jp-relatedposts-items{clear:right}#jp-relatedposts .jp-relatedposts-items-visual{margin-left:-20px}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{float:right;width:33%;margin:0 0 1em;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post{padding-left:20px;filter:alpha(opacity=80);-moz-opacity:.8;opacity:.8}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n+4),#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post:nth-child(3n+4){clear:both}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover .jp-relatedposts-post-title a{text-decoration:underline}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover{filter:alpha(opacity=100);-moz-opacity:1;opacity:1}#jp-relatedposts .jp-relatedposts-items p,#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title{font-size:14px;line-height:20px;margin:0}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs{position:relative}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs a.jp-relatedposts-post-aoverlay{position:absolute;top:0;bottom:0;right:0;left:0;display:block}#jp-relatedposts .jp-relatedposts-items p{margin-bottom:0}#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title{text-transform:none;margin:0;font-family:inherit;display:block;max-width:100%}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a{font-size:inherit;font-weight:400;text-decoration:none;filter:alpha(opacity=100);-moz-opacity:1;opacity:1}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a:hover{text-decoration:underline}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post img.jp-relatedposts-post-img,#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post span{display:block;max-width:90%;overflow:hidden;text-overflow:ellipsis}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post img.jp-relatedposts-post-img,#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post span{max-width:100%}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context,#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date{opacity:.6}#jp-relatedposts .jp-relatedposts-items-visual div.jp-relatedposts-post-thumbs p.jp-relatedposts-post-excerpt,.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date{display:none}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs p.jp-relatedposts-post-excerpt{overflow:hidden}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs span{margin-bottom:1em}@media only screen and (max-width:640px){#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{width:50%}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n){clear:right}#jp-relatedposts .jp-relatedposts-items-visual{margin-left:20px}}@media only screen and (max-width:320px){#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{width:100%;clear:both;margin:0 0 1em}}#jp-post-flair{padding-top:.5em}#content div.sharedaddy,#main div.sharedaddy,div.sharedaddy{clear:both}div.sharedaddy h3.sd-title{margin:0 0 1em;display:inline-block;line-height:1.2;font-size:9pt;font-weight:700}div.sharedaddy h3.sd-title:before{content:"";display:block;width:100%;min-width:30px;border-top:1px solid #ddd;margin-bottom:1em}body.highlander-light h3.sd-title:before{border-top:1px solid rgba(0,0,0,.2)}body.highlander-dark h3.sd-title:before{border-top:1px solid rgba(255,255,255,.4)}.sd-content ul{padding:0!important;margin:0 0 .7em!important;list-style:none!important}.sd-content ul li{display:inline-block}.sd-block.sd-gplus{margin:0 0 .5em}.sd-gplus .sd-content{font-size:12px}#sharing_email .sharing_send,.sd-content ul li .option a.share-ustom,.sd-content ul li a.sd-button,.sd-content ul li.advanced a.share-more,.sd-content ul li.preview-item div.option.option-smart-off a,.sd-social-icon .sd-content ul li a.sd-button,.sd-social-icon-text .sd-content ul li a.sd-button,.sd-social-official .sd-content>ul>li .digg_button >a,.sd-social-official .sd-content>ul>li>a.sd-button,.sd-social-text .sd-content ul li a.sd-button{text-decoration:none!important;display:inline-block;margin:0 0 5px 5px;font-size:12px;font-family:"Open Sans",sans-serif;font-weight:400;border-radius:3px;color:#777!important;background:#f8f8f8;border:1px solid #ccc;box-shadow:0 1px 0 rgba(0,0,0,.08);text-shadow:none;line-height:23px;padding:1px 5px 0 8px}.sd-content ul li .option a.share-ustom span,.sd-content ul li a.sd-button>span,.sd-content ul li.advanced a.share-more span,.sd-content ul li.preview-item div.option.option-smart-off a span,.sd-social-icon-text .sd-content ul li a.sd-button>span,.sd-social-official .sd-content>ul>li .digg_button >a span,.sd-social-official .sd-content>ul>li>a.sd-button span,.sd-social-text .sd-content ul li a.sd-button span{line-height:23px}.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a,.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button,.sd-social-official .sd-content>ul>li .digg_button>a,.sd-social-official .sd-content>ul>li>a.sd-button{line-height:17px;box-shadow:none;vertical-align:top}.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a:before,.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button:before,.sd-social-official .sd-content>ul>li .digg_button>a:before,.sd-social-official .sd-content>ul>li>a.sd-button:before{margin-bottom:-1px;top:0}.sd-social-icon .sd-content ul li a.sd-button:active,.sd-social-icon .sd-content ul li a.sd-button:hover,.sd-social-icon-text .sd-content ul li a.sd-button:active,.sd-social-icon-text .sd-content ul li a.sd-button:hover,.sd-social-official .sd-content>ul>li .digg_button>a:active,.sd-social-official .sd-content>ul>li .digg_button>a:hover,.sd-social-official .sd-content>ul>li>a.sd-button:active,.sd-social-official .sd-content>ul>li>a.sd-button:hover,.sd-social-text .sd-content ul li a.sd-button:active,.sd-social-text .sd-content ul li a.sd-button:hover{color:#555;background:#fafafa;border:1px solid #999}.sd-social-icon .sd-content ul li a.sd-button:active,.sd-social-icon-text .sd-content ul li a.sd-button:active,.sd-social-official .sd-content>ul>li .digg_button>a:active,.sd-social-official .sd-content>ul>li>a.sd-button:active,.sd-social-text .sd-content ul li a.sd-button:active{box-shadow:inset 0 1px 0 rgba(0,0,0,.16)}.sd-content ul li a.sd-button:before{display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font:400 16px/1 Genericons;vertical-align:top;position:relative;top:3px;text-align:center}.sd-content ul li{margin:0!important;padding:0}.sd-content ul li.preview-item a.sd-button span,.sd-social-icon-text .sd-content ul li a span,.sd-social-official .sd-content ul li a.sd-button span{margin-right:3px}.sd-content ul li.preview-item.no-icon a.sd-button span{margin-right:0}.sd-content ul li.no-icon a:before,.sd-social-text .sd-content ul li a:before{display:none}body .sd-content ul li.share-custom.no-icon a span,body .sd-social-text .sd-content ul li.share-custom a span{background-image:none;background-position:-500px -500px!important;background-repeat:no-repeat!important;padding-right:0;height:0;line-height:inherit}.sd-social-icon .sd-content ul li a.share-more{position:relative;top:2px}.sd-social-icon .sd-content ul li a.share-more span{margin-right:3px}.sd-content ul li.share-print div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-print a:before,.sd-social-icon-text .sd-content li.share-print a:before,.sd-social-official .sd-content li.share-print a:before,.sd-social-text .sd-content ul li.share-print a:before{content:'\f469'}.sd-content ul li.share-email div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-email a:before,.sd-social-icon-text .sd-content li.share-email a:before,.sd-social-official .sd-content li.share-email a:before,.sd-social-text .sd-content ul li.share-email a:before{content:'\f410'}.sd-content ul li.share-linkedin div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-linkedin a:before,.sd-social-icon-text .sd-content li.share-linkedin a:before,.sd-social-text .sd-content ul li.share-linkedin a:before{content:'\f207'}.sd-content ul li.share-twitter div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-twitter a:before,.sd-social-icon-text .sd-content li.share-twitter a:before,.sd-social-text .sd-content ul li.share-twitter a:before{content:'\f202'}.sd-content ul li.share-reddit div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-reddit a:before,.sd-social-icon-text .sd-content li.share-reddit a:before,.sd-social-text .sd-content ul li.share-reddit a:before{content:'\f222'}.sd-content ul li.share-tumblr div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-tumblr a:before,.sd-social-icon-text .sd-content li.share-tumblr a:before,.sd-social-text .sd-content ul li.share-tumblr a:before{content:'\f214'}.sd-content ul li.share-stumbleupon div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-stumbleupon a:before,.sd-social-icon-text .sd-content li.share-stumbleupon a:before,.sd-social-text .sd-content ul li.share-stumbleupon a:before{content:'\f223'}.sd-content ul li.share-pocket div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-pocket a:before,.sd-social-icon-text .sd-content li.share-pocket a:before,.sd-social-text .sd-content ul li.share-pocket a:before{content:'\f224'}.sd-content ul li.share-pinterest div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-pinterest a:before,.sd-social-icon-text .sd-content li.share-pinterest a:before,.sd-social-text .sd-content ul li.share-pinterest a:before{content:'\f209'}.sd-content ul li.share-google-plus-1 div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-google-plus-1 a:before,.sd-social-icon-text .sd-content li.share-google-plus-1 a:before,.sd-social-text .sd-content ul li.share-google-plus-1 a:before{content:'\f218'}.sd-content ul li.share-facebook div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-facebook a:before,.sd-social-icon-text .sd-content li.share-facebook a:before,.sd-social-text .sd-content ul li.share-facebook a:before{content:'\f204'}.sd-content ul li.share-press-this div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-press-this a:before,.sd-social-icon-text .sd-content li.share-press-this a:before,.sd-social-official .sd-content li.share-press-this a:before,.sd-social-text .sd-content ul li.share-press-this a:before{content:'\f205'}.sd-social-official .sd-content li.share-press-this a:before{color:#2ba1cb}.sd-content ul li.advanced a.share-more:before,.sd-social-icon .sd-content ul a.share-more:before,.sd-social-icon-text .sd-content a.share-more:before,.sd-social-official .sd-content a.share-more:before,.sd-social-text .sd-content ul a.share-more:before{content:'\f415'}.sd-social-official .sd-content a.share-more:before{color:#2ba1cb}.sd-social .sd-button .share-count{background:#2ea2cc;color:#fff;border-radius:10px;display:inline-block;text-align:center;font-size:10px;padding:1px 3px;line-height:1}.sd-social-official .sd-content ul,.sd-social-official .sd-content ul li{line-height:25px!important}.sd-social-official .sd-content>ul>li>a.sd-button span{line-height:1}.sd-social-official .sd-content ul:after{content:".";display:block;height:0;clear:both;visibility:hidden}.sd-social-official .sd-content li.share-press-this a{margin:0 0 5px}.sd-social-official .sd-content ul>li{display:block;float:right;margin:0 0 5px 10px!important;height:25px}.sd-social-official .fb-share-button>span{vertical-align:top!important}.sd-social-official .sd-content .pocket_button iframe{width:98px}.sd-social-official .sd-content .twitter_button iframe{width:96px}.reddit_button iframe,.stumbleupon_button iframe{margin-top:1px}.googleplus1_button iframe,.linkedin_button>span,.pinterest_button,.pocket_button iframe,.twitter_button{margin:0!important}body .sd-social-official li a.share-more,body .sd-social-official li.share-custom a,body .sd-social-official li.share-digg a,body .sd-social-official li.share-email a,body .sd-social-official li.share-press-this a,body .sd-social-official li.share-print{position:relative;top:0}body .sd-social-icon .sd-content li.share-custom>a{padding:2px 3px 0;position:relative;top:4px}body .sd-content ul li.share-custom a.share-icon span,body .sd-social-icon .sd-content li.share-custom a span,body .sd-social-icon-text .sd-content li.share-custom a span,body .sd-social-official .sd-content li.share-custom a span,body .sd-social-text .sd-content li.share-custom a span{background-size:16px 16px;background-repeat:no-repeat;margin-right:0;padding:0 19px 0 0;display:inline-block;height:16px;line-height:16px}body .sd-social-icon .sd-content li.share-custom a span{width:0}body .sd-social-icon .sd-content li.share-custom a span{padding-right:16px!important}.sharing-hidden .inner{position:absolute;z-index:2;border:1px solid #ccc;padding:10px;background:#fff;box-shadow:0 5px 20px rgba(0,0,0,.2);border-radius:2px;margin-top:5px;max-width:400px}.sharing-hidden .inner ul{margin:0!important}.sd-social-official .sd-content .sharing-hidden ul>li.share-end{clear:both;margin:0;height:0}.sharing-hidden .inner:after,.sharing-hidden .inner:before{position:absolute;z-index:1;top:-8px;right:20px;width:0;height:0;border-right:6px solid transparent;border-left:6px solid transparent;border-bottom:8px solid #ccc;content:"";display:block}.sharing-hidden .inner:after{z-index:2;top:-7px;border-right:6px solid transparent;border-left:6px solid transparent;border-bottom:8px solid #fff}.sharing-hidden ul{margin:0}.sd-social-icon .sd-content ul li[class*=share-] a,.sd-social-icon .sd-content ul li[class*=share-] a:hover,.sd-social-icon .sd-content ul li[class*=share-] div.option a{border-radius:50%;-webkit-border-radius:50%;border:0;box-shadow:none;padding:8px;position:relative;top:-2px;line-height:1;width:auto;height:auto;margin-bottom:0}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button>span,.sd-social-icon .sd-content ul li[class*=share-] div.option a span{line-height:1}.sd-social-icon .sd-content ul li[class*=share-] a:hover,.sd-social-icon .sd-content ul li[class*=share-] div.option a:hover{border:none;opacity:.6}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button:before{top:0}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button.share-custom{padding:8px 8px 6px;top:5px}.sd-social-icon .sd-content ul li a.sd-button.share-more{margin-right:10px}.sd-social-icon .sd-content ul li:first-child a.sd-button.share-more{margin-right:0}.sd-social-icon .sd-button span.share-count{position:absolute;bottom:0;left:0;border-radius:0;background:#555;font-size:9px}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button{background:#e9e9e9;margin-top:2px;text-indent:0}.sd-social-icon .sd-content ul li[class*=share-].share-tumblr a.sd-button{background:#2c4762;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-facebook a.sd-button{background:#3b5998;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-stumbleupon a.sd-button{background:#ea4b24;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-twitter a.sd-button{background:#00acee;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-pinterest a.sd-button{background:#ca1f27;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-digg a.sd-button{color:#555!important}.sd-social-icon .sd-content ul li[class*=share-].share-press-this a.sd-button{background:#1e8cbe;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-linkedin a.sd-button{background:#0077b5;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-google-plus-1 a.sd-button{background:#dd4b39;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-pocket a.sd-button{background:#ee4056;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-reddit a.sd-button{background:#cee3f8;color:#555!important}.sharing-screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}.sharing-screen-reader-text:active,.sharing-screen-reader-text:focus,.sharing-screen-reader-text:hover{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}#sharing_email{width:342px;position:absolute;z-index:1001;border:1px solid #ccc;padding:15px;background:#fff;box-shadow:0 5px 20px rgba(0,0,0,.2);text-align:right}div.sharedaddy.sharedaddy-dark #sharing_email{border-color:#fff}#sharing_email .errors{color:#fff;background-color:#771a09;font-size:12px;padding:5px 8px;line-height:1;margin:10px 0 0}#sharing_email label{font-size:12px;color:#333;font-weight:700;display:block;padding:0 0 4px;text-align:right;text-shadow:none}#sharing_email form{margin:0}#sharing_email input[type=email],#sharing_email input[type=text]{width:100%;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;border:1px solid #ccc;margin-bottom:1em;background:#fff;font-size:12px;color:#333;max-width:none;padding:1px 3px}#jetpack-source_f_name{display:none!important;position:absolute!important;right:-9000px}#sharing_email .sharing_cancel{padding:0 1em 0 0;font-size:12px;text-shadow:none}#sharing_email .recaptcha{width:312px;height:123px;margin:0 0 1em}.slideshow-window{background-color:#222;border:20px solid #222;border-radius:10px;height:0;margin-bottom:20px;overflow:hidden;padding-top:30px!important;padding-bottom:56.25%!important;position:relative;z-index:1}.slideshow-window.slideshow-white{background-color:#fff;border-color:#fff}.slideshow-window,.slideshow-window *{-moz-box-sizing:content-box;box-sizing:content-box}.slideshow-loading{height:100%;text-align:center;margin:auto}body div.slideshow-window * img{background-color:transparent!important;background-image:none!important;border-width:0!important;display:block;margin:0 auto;max-width:100%;max-height:100%;padding:0!important;position:relative;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);top:50%}.slideshow-loading img{vertical-align:middle}.slideshow-slide{display:none;height:100%!important;right:0;margin:auto;position:absolute;text-align:center;top:0;width:100%!important}.slideshow-slide img{vertical-align:middle}.slideshow-line-height-hack{overflow:hidden;width:0;font-size:0}.slideshow-slide-caption{font-size:13px;font-family:"Helvetica Neue",sans-serif;color:#f7f7f7;text-shadow:#222 -1px 1px 2px;line-height:25px;height:25px;position:absolute;bottom:5px;right:0;z-index:100;width:100%;text-align:center}.slideshow-controls{z-index:1000;position:absolute;bottom:30px;margin:auto;text-align:center;width:100%;-ms-filter:"alpha(Opacity=50)";opacity:.5;direction:rtl;transition:300ms opacity ease-out}.slideshow-window:hover .slideshow-controls{-ms-filter:"alpha(Opacity=100)";opacity:1}body div div.slideshow-controls a,body div div.slideshow-controls a:hover{border:2px solid rgba(255,255,255,.1)!important;background-color:#000!important;background-color:rgba(0,0,0,.6)!important;background-image:url(../modules/shortcodes/img/slideshow-controls.png)!important;background-repeat:no-repeat;background-size:142px 16px!important;background-position:-34px 8px!important;color:#222!important;margin:0 5px!important;padding:0!important;display:inline-block!important;zoom:1;height:32px!important;width:32px!important;line-height:32px!important;text-align:center!important;-khtml-border-radius:10em!important;border-radius:10em!important;transition:300ms border-color ease-out}@media only screen and (-webkit-min-device-pixel-ratio:1.5){body div div.slideshow-controls a,body div div.slideshow-controls a:hover{background-image:url(../modules/shortcodes/img/slideshow-controls-2x.png)!important}}body div div.slideshow-controls a:hover{border-color:rgba(255,255,255,1)!important}body div div.slideshow-controls a:first-child{background-position:-76px 8px!important}body div div.slideshow-controls a:last-child{background-position:-117px 8px!important}body div div.slideshow-controls a.running,body div div.slideshow-controls a:nth-child(2){background-position:-34px 8px!important}body div div.slideshow-controls a.paused{background-position:9px 8px!important}.slideshow-controls a img{border:50px dotted #f0f}body.presentation-wrapper-fullscreen-parent,html.presentation-wrapper-fullscreen-parent{overflow:hidden!important}.presentation-wrapper-fullscreen-parent #wpadminbar{display:none}.presentation-wrapper-fullscreen,.presentation-wrapper-fullscreen-parent{min-width:100%!important;min-height:100%!important;position:absolute!important;top:0!important;left:0!important;bottom:0!important;right:0!important;margin:0!important;padding:0!important;z-index:10000!important}.presentation-wrapper-fullscreen{background-color:gray;border:none!important}.presentation-wrapper-fullscreen .nav-arrow-left,.presentation-wrapper-fullscreen .nav-arrow-right{z-index:20001}.presentation-wrapper-fullscreen .nav-fullscreen-button{z-index:20002}.presentation-wrapper{margin:20px auto;border:1px solid #e5e5e5;overflow:hidden;line-height:normal}.presentation{position:relative;margin:0;overflow:hidden;outline:0}.presentation,.presentation .step{background-repeat:no-repeat;background-position:center;background-size:100% 100%}.presentation .step.fade:not(.active){opacity:0}.presentation .slide-content{padding:30px}.presentation .nav-arrow-left,.presentation .nav-arrow-right,.presentation .nav-fullscreen-button{position:absolute;width:34px;background-repeat:no-repeat;z-index:2;opacity:0;transition:opacity .25s}.presentation .nav-arrow-left,.presentation .nav-arrow-right{height:100%;background-image:url(../modules/shortcodes/images/slide-nav.png);background-size:450% 61px}.presentation .nav-arrow-left{right:0;background-position:4px 50%}.presentation .nav-arrow-right{left:0;background-position:-120px 50%}.presentation .nav-fullscreen-button{width:32px;height:32px;margin:4px;bottom:0;left:0;z-index:3;background-image:url(../modules/shortcodes/images/expand.png);background-size:100% 100%}.presentation:hover .nav-arrow-left,.presentation:hover .nav-arrow-right{opacity:1}.presentation:hover .nav-fullscreen-button{opacity:.8}.presentation-wrapper-fullscreen .nav-fullscreen-button{background-image:url(../modules/shortcodes/images/collapse.png)}.presentation .autoplay-overlay{height:15%;width:80%;margin:30% 10%;position:relative;z-index:100;display:table;border-radius:50px;background-color:#e5e5e5;background-color:rgba(0,0,0,.75);transition:opacity .5s}.presentation .autoplay-overlay .overlay-msg{position:relative;display:table-cell;text-align:center;vertical-align:middle;color:#fff}.presentation .will-fade{opacity:0}.presentation .do-fade{opacity:1;transition:opacity .5s}#subscribe-email input{width:95%;padding:1px 2px}.comment-subscription-form .subscribe-label{display:inline!important}.jetpack-video-wrapper{margin-bottom:1.6em}.jetpack-video-wrapper>.wp-video,.jetpack-video-wrapper>embed,.jetpack-video-wrapper>iframe,.jetpack-video-wrapper>object{margin-bottom:0}.tiled-gallery{clear:both;margin:0 0 20px;overflow:hidden}.tiled-gallery img{margin:2px!important}.tiled-gallery .gallery-group{float:right;position:relative}.tiled-gallery .tiled-gallery-item{float:right;margin:0;position:relative;width:inherit}.tiled-gallery .gallery-row{overflow:hidden}.tiled-gallery .tiled-gallery-item a{background:0 0;border:none;color:none;margin:0;padding:0;text-decoration:none;width:auto}.tiled-gallery .tiled-gallery-item img,.tiled-gallery .tiled-gallery-item img:hover{background:0 0;border:none;box-shadow:none;max-width:100%;padding:0;vertical-align:middle}.tiled-gallery-caption{background:#eee;background:rgba(255,255,255,.8);color:#333;font-size:13px;font-weight:400;overflow:hidden;padding:10px 0;position:absolute;bottom:0;text-indent:10px;text-overflow:ellipsis;width:100%;white-space:nowrap}.tiled-gallery .tiled-gallery-item-small .tiled-gallery-caption{font-size:11px}.widget-gallery .tiled-gallery-unresized{visibility:hidden;height:0;overflow:hidden}.tiled-gallery .tiled-gallery-item img.grayscale{position:absolute;right:0;top:0}.tiled-gallery .tiled-gallery-item img.grayscale:hover{opacity:0}.tiled-gallery.type-circle .tiled-gallery-item img{border-radius:50%!important}.tiled-gallery.type-circle .tiled-gallery-caption{display:none;opacity:0}.jetpack-display-remote-posts{margin:5px 0 20px}.jetpack-display-remote-posts h4{font-size:90%;margin:5px 0;padding:0}.jetpack-display-remote-posts h4 a{text-decoration:none}.jetpack-display-remote-posts p{margin:0!important;padding:0;line-height:1.4em!important;font-size:90%}.jetpack-display-remote-posts img{max-width:100%}.widget-grofile h4{margin:1em 0 .5em}.widget-grofile ul.grofile-urls{margin-right:0;overflow:hidden}.widget-grofile ul.grofile-accounts li{list-style:none;display:inline}.widget-grofile ul.grofile-accounts li::before{content:""!important}.widget-grofile .grofile-accounts-logo{background-image:url(//0.gravatar.com/images/grav-share-sprite.png);background-repeat:no-repeat;width:16px;height:16px;float:right;margin-left:8px;margin-bottom:8px}.rtl .widget-grofile .grofile-accounts-logo{margin-right:8px;margin-left:0}.grofile-thumbnail{width:500px;max-width:100%}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){.widget-grofile .grofile-accounts-logo{background-image:url(//0.gravatar.com/images/grav-share-sprite-2x.png);background-size:16px 784px}}div[class^=gr_custom_container]{border:1px solid gray;border-radius:10px;padding:10px 5px;background-color:#FFF;color:#000}div[class^=gr_custom_container] a{color:#000}h2[class^=gr_custom_header]{display:none}div[class^=gr_custom_each_container]{width:100%;clear:both;margin-bottom:10px;overflow:auto;padding-bottom:4px;border-bottom:1px solid #aaa}div[class^=gr_custom_book_container]{float:left;overflow:hidden;height:60px;margin-right:4px;width:39px}div[class^=gr_custom_author]{font-size:10px}div[class^=gr_custom_tags]{font-size:10px;color:gray}div[class^=gr_custom_rating]{display:none}.widget_wpcom_social_media_icons_widget ul{list-style-type:none;margin-right:0}.widget_wpcom_social_media_icons_widget li{border:0;display:inline;margin-left:.5em}.widget_wpcom_social_media_icons_widget li a{border:0;text-decoration:none}.widget_wpcom_social_media_icons_widget .genericon{font-family:Genericons}.widget_wpcom_social_media_icons_widget .screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}.widget_wpcom_social_media_icons_widget .screen-reader-text:active,.widget_wpcom_social_media_icons_widget .screen-reader-text:focus,.widget_wpcom_social_media_icons_widget .screen-reader-text:hover{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.widgets-grid-layout{width:100%}.widgets-grid-layout:after,.widgets-grid-layout:before{content:" ";display:table}.widgets-grid-layout:after{clear:both}.widget-grid-view-image{float:right;max-width:50%}.widget-grid-view-image a{display:block;margin:0 0 4px 2px}.widget-grid-view-image:image:nth-child(even){float:left}.widget-grid-view-image:nth-child(even) a{margin:0 2px 4px 0}.widgets-grid-layout .widget-grid-view-image img{max-width:100%;height:auto}.widgets-multi-column-grid ul{overflow:hidden;padding:0;margin:0;list-style-type:none}.widgets-multi-column-grid ul li{background:0 0;clear:none;float:right;margin:0 0 -3px -5px;padding:0 0 6px 8px;border:none;list-style-type:none!important}.widgets-multi-column-grid ul li a{background:0 0;margin:0;padding:0;border:0}.widgets-multi-column-grid .avatar{vertical-align:middle}.widgets-list-layout{padding:0;margin:0;list-style-type:none}.widgets-list-layout li:after,.widgets-list-layout li:before{content:"";display:table}.widgets-list-layout li:after{clear:both}.widgets-list-layout li{zoom:1;margin-bottom:1em;list-style-type:none!important}.widgets-list-layout .widgets-list-layout-blavatar{float:right;width:21.276596%;max-width:40px;height:auto}.widgets-list-layout-links{float:left;width:73.404255%}.widgets-list-layout span{opacity:.5}.widgets-list-layout span:hover{opacity:.8}
1
  /*!
2
  * Do not modify this file directly. It is concatenated from individual module CSS files.
3
  */
4
+ .jp-carousel-wrap *{line-height:inherit}.jp-carousel-overlay{background:#000}div.jp-carousel-fadeaway{background:-webkit-gradient(linear,right bottom,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));position:fixed;bottom:0;z-index:2147483647;width:100%;height:15px}.jp-carousel-next-button span,.jp-carousel-previous-button span{background:url(../modules/carousel/images/arrows.png) center center/200px 126px no-repeat}.jp-carousel-msg{font-family:"Open Sans",sans-serif;font-style:normal;display:inline-block;line-height:19px;padding:11px 15px;font-size:14px;text-align:center;margin:25px 2px 0 20px;background-color:#fff;border-right:4px solid #ffba00;box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){.jp-carousel-next-button span,.jp-carousel-previous-button span{background-image:url(../modules/carousel/images/arrows-2x.png)}}.jp-carousel-wrap{font-family:"Helvetica Neue",sans-serif!important}.jp-carousel-info{position:absolute;bottom:0;text-align:right!important;-webkit-font-smoothing:subpixel-antialiased!important}.jp-carousel-info ::selection{background:#68c9e8;color:#fff}.jp-carousel-info ::-moz-selection{background:#68c9e8;color:#fff}.jp-carousel-photo-info{position:relative;right:25%;width:50%}.jp-carousel-transitions .jp-carousel-photo-info{-webkit-transition:400ms ease-out;transition:400ms ease-out}.jp-carousel-info h2{background:none!important;border:none!important;color:#999;display:block!important;font:400 13px/1.25em "Helvetica Neue",sans-serif!important;letter-spacing:0!important;margin:7px 0 0!important;padding:10px 0 0!important;overflow:hidden;text-align:right;text-shadow:none!important;text-transform:none!important;-webkit-font-smoothing:subpixel-antialiased}.jp-carousel-next-button,.jp-carousel-previous-button{text-indent:-9999px;overflow:hidden;cursor:pointer}.jp-carousel-next-button span,.jp-carousel-previous-button span{position:absolute;top:0;bottom:0;width:82px;zoom:1;filter:alpha(opacity=20);opacity:.2}.jp-carousel-transitions .jp-carousel-next-button span,.jp-carousel-transitions .jp-carousel-previous-button span{-webkit-transition:500ms opacity ease-out;transition:500ms opacity ease-out}.jp-carousel-next-button:hover span,.jp-carousel-previous-button:hover span{filter:alpha(opacity=60);opacity:.6}.jp-carousel-next-button span{background-position:-110px center;left:0}.jp-carousel-previous-button span{background-position:-10px center;right:0}.jp-carousel-buttons{margin:-18px -20px 15px;padding:8px 10px;border-bottom:1px solid #222;background:#222;text-align:center}div.jp-carousel-buttons a{border:none!important;color:#999;font:400 11px/1.2em "Helvetica Neue",sans-serif!important;letter-spacing:0!important;padding:5px 0 5px 2px;text-decoration:none!important;text-shadow:none!important;vertical-align:middle;-webkit-font-smoothing:subpixel-antialiased}div.jp-carousel-buttons a:hover{color:#68c9e8;border:none!important}.jp-carousel-transitions div.jp-carousel-buttons a:hover{-webkit-transition:none!important;transition:none!important}.jp-carousel-next-button,.jp-carousel-previous-button,.jp-carousel-slide,.jp-carousel-slide img{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.jp-carousel-slide{position:fixed;width:0;bottom:0;background-color:#000;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px}.jp-carousel-slide.selected{position:absolute!important;filter:alpha(opacity=100);opacity:1}.jp-carousel-slide{filter:alpha(opacity=25);opacity:.25}.jp-carousel-slide img{display:block;width:100%!important;height:100%!important;max-width:100%!important;max-height:100%!important;background:none!important;border:none!important;padding:0!important;box-shadow:0 2px 8px rgba(0,0,0,.1);zoom:1}.jp-carousel-transitions .jp-carousel-slide{-webkit-transition:opacity 400ms linear;transition:opacity 400ms linear}.jp-carousel-close-hint{color:#999;cursor:default;letter-spacing:0!important;padding:.35em 0 0;position:absolute;text-align:right;width:90%}.jp-carousel-transitions .jp-carousel-close-hint{-webkit-transition:color 200ms linear;transition:color 200ms linear}.jp-carousel-close-hint span{cursor:pointer;background-color:#000;background-color:rgba(0,0,0,.8);display:block;height:22px;font:400 24px/1 "Helvetica Neue",sans-serif!important;line-height:22px;margin:0 .4em 0 0;text-align:center;vertical-align:middle;width:22px;border-radius:4px}.jp-carousel-transitions .jp-carousel-close-hint span{-webkit-transition:border-color 200ms linear;transition:border-color 200ms linear}.jp-carousel-close-hint:hover{cursor:default;color:#fff}.jp-carousel-close-hint:hover span{border-color:#fff}a.jp-carousel-image-download,div.jp-carousel-buttons a.jp-carousel-commentlink,div.jp-carousel-buttons a.jp-carousel-like,div.jp-carousel-buttons a.jp-carousel-reblog{background:url(../modules/carousel/images/carousel-sprite.png?5) 0 0/16px 200px no-repeat}div.jp-carousel-buttons a.jp-carousel-commentlink,div.jp-carousel-buttons a.jp-carousel-reblog{margin:0 0 0 14px!important}div.jp-carousel-buttons a.jp-carousel-like.liked,div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{background-color:#303030;padding-left:8px!important;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px}div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{margin:0 -12px 0 2px!important}div.jp-carousel-buttons a.jp-carousel-reblog,div.jp-carousel-buttons a.jp-carousel-reblog.reblogged:hover{background-position:6px -36px;padding-left:auto!important;padding-right:26px!important;color:#999}div.jp-carousel-buttons a.jp-carousel-commentlink{background-position:0 -156px;padding-right:19px!important}div.jp-carousel-buttons a.jp-carousel-reblog.reblogged:hover{cursor:default}div.jp-carousel-buttons a.jp-carousel-reblog:hover{background-position:6px -56px;color:#68c9e8}div.jp-carousel-buttons a.jp-carousel-like{background-position:5px 5px;padding-right:24px!important}div.jp-carousel-buttons a.jp-carousel-like:hover{background-position:5px -15px}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){a.jp-carousel-image-download,div.jp-carousel-buttons a.jp-carousel-commentlink,div.jp-carousel-buttons a.jp-carousel-like,div.jp-carousel-buttons a.jp-carousel-reblog{background-image:url(../modules/carousel/images/carousel-sprite-2x.png?5)}}div#carousel-reblog-box{background:#222;background:-webkit-gradient(linear,right bottom,right top,from(#222),to(#333));padding:3px 0 0;display:none;margin:5px auto 0;border-radius:2px;box-shadow:0 0 20px rgba(0,0,0,.9);height:74px;width:565px}#carousel-reblog-box textarea{background:#999;font:13px/1.4 "Helvetica Neue",sans-serif!important;color:#444;padding:3px 6px;width:370px;height:48px;float:right;margin:6px 9px 0;border:1px solid #666;box-shadow:inset -2px 2px 2px rgba(0,0,0,.2);border-radius:2px}#carousel-reblog-box textarea:focus{background:#ccc;color:#222}#carousel-reblog-box label{color:#aaa;font-size:11px;padding-left:2px;padding-right:2px;display:inline;font-weight:400}#carousel-reblog-box select{width:110px;padding:0;font-size:12px;font-family:"Helvetica Neue",sans-serif!important;background:#333;color:#eee;border:1px solid #444;margin-top:5px}#carousel-reblog-box .submit,#wrapper #carousel-reblog-box p.response{float:right;width:154px;padding-top:0;padding-right:1px;overflow:hidden;height:34px;margin:3px 2px 0 0!important}#wrapper #carousel-reblog-box p.response{font-size:13px;clear:none;padding-right:2px;height:34px;color:#aaa}#carousel-reblog-box input#carousel-reblog-submit,#jp-carousel-comment-form-button-submit{font:13px/24px "Helvetica Neue",sans-serif!important;margin-top:8px;padding:0 10px!important;border-radius:1em;height:24px;color:#333;cursor:pointer;font-weight:400;background:#aaa;background:-webkit-gradient(linear,right bottom,right top,from(#aaa),to(#ccc));border:1px solid #444}#carousel-reblog-box input#carousel-reblog-submit:hover,#jp-carousel-comment-form-button-submit:hover{background:#ccc;background:-webkit-gradient(linear,right bottom,right top,from(#ccc),to(#eee))}#carousel-reblog-box .canceltext{color:#aaa;font-size:11px;line-height:24px}#carousel-reblog-box .canceltext a{color:#fff}.jp-carousel-titleanddesc{border-top:1px solid #222;color:#999;font-size:15px;padding-top:24px;margin-bottom:20px;font-weight:400}.jp-carousel-titleanddesc-title{font:300 1.5em/1.1 "Helvetica Neue",sans-serif!important;text-transform:none!important;color:#fff;margin:0 0 15px;padding:0}.jp-carousel-titleanddesc-desc p{color:#999;line-height:1.4;margin-bottom:.75em}.jp-carousel-comments p a,.jp-carousel-info h2 a,.jp-carousel-titleanddesc p a{color:#fff!important;border:none!important;text-decoration:underline!important;font-weight:400!important;font-style:normal!important}.jp-carousel-titleanddesc p b,.jp-carousel-titleanddesc p strong{font-weight:700;color:#999}.jp-carousel-titleanddesc p em,.jp-carousel-titleanddesc p i{font-style:italic;color:#999}.jp-carousel-comments p a:hover,.jp-carousel-info h2 a:hover,.jp-carousel-titleanddesc p a:hover{color:#68c9e8!important}.jp-carousel-titleanddesc p:empty{display:none}.jp-carousel-left-column-wrapper h1:after,.jp-carousel-left-column-wrapper h1:before,.jp-carousel-photo-info h1:after,.jp-carousel-photo-info h1:before{content:none!important}.jp-carousel-image-meta{background:#111;border:1px solid #222;color:#fff;font:12px/1.4 "Helvetica Neue",sans-serif!important;overflow:hidden;padding:18px 20px;width:209px!important}.jp-carousel-image-meta h5,.jp-carousel-image-meta li{font-family:"Helvetica Neue",sans-serif!important;position:inherit!important;top:auto!important;left:auto!important;right:auto!important;bottom:auto!important;background:none!important;border:none!important;font-weight:400!important;line-height:1.3em!important}.jp-carousel-image-meta ul{margin:0!important;padding:0!important;list-style:none!important}.jp-carousel-image-meta li{width:48%!important;float:right!important;margin:0 0 15px 2%!important;color:#fff!important;font-size:13px!important}.jp-carousel-image-meta h5{color:#999!important;text-transform:uppercase!important;font-size:10px!important;margin:0 0 2px!important;letter-spacing:.1em!important}a.jp-carousel-image-download{padding-right:23px;display:inline-block;clear:both;color:#999;line-height:1;font-weight:400;font-size:13px;text-decoration:none;background-position:0 -82px}a.jp-carousel-image-download span.photo-size{font-size:11px;border-radius:1em;margin-right:2px;display:inline-block}a.jp-carousel-image-download span.photo-size-times{padding:0 2px 0 1px}a.jp-carousel-image-download:hover{background-position:0 -122px;color:#68c9e8;border:none!important}.jp-carousel-image-map{position:relative;margin:-20px -20px 20px;border-bottom:1px solid rgba(255,255,255,.17);height:154px}.jp-carousel-image-map img.gmap-main{border-top-right-radius:6px;border-left:1px solid rgba(255,255,255,.17)}.jp-carousel-image-map div.gmap-topright{width:94px;height:154px;position:absolute;top:0;left:0}.jp-carousel-image-map div.imgclip{overflow:hidden;border-top-left-radius:6px}.jp-carousel-image-map div.gmap-topright img{margin-right:-40px}.jp-carousel-image-map img.gmap-bottomright{position:absolute;top:96px;left:0}.jp-carousel-comments{font:15px/1.7 "Helvetica Neue",sans-serif!important;font-weight:400;background:none}.jp-carousel-comments p a:active,.jp-carousel-comments p a:focus,.jp-carousel-comments p a:hover{color:#68c9e8!important}.jp-carousel-comment{background:none;color:#999;margin-bottom:20px;clear:right;overflow:auto;width:100%}.jp-carousel-comment p{color:#999!important}.jp-carousel-comment .comment-author{font-size:13px;font-weight:400;padding:0;width:auto;display:inline;float:none;border:none;margin:0}.jp-carousel-comment .comment-author a{color:#fff}.jp-carousel-comment .comment-gravatar{float:right}.jp-carousel-comment .comment-content{border:none;margin-right:85px;padding:0}.jp-carousel-comment .avatar{margin:0 0 0 20px;border-radius:4px;border:none!important;padding:0!important;background-color:transparent!important}.jp-carousel-comment .comment-date{color:#999;margin-top:4px;font-size:11px;display:inline;float:left}#jp-carousel-comment-form{margin:0 0 10px!important;float:right;width:100%}textarea#jp-carousel-comment-form-comment-field{background:rgba(34,34,34,.9);border:1px solid #3a3a3a;color:#aaa;font:15px/1.4 "Helvetica Neue",sans-serif!important;width:100%;padding:10px 10px 5px;margin:0;float:none;height:147px;box-shadow:inset -2px 2px 2px rgba(0,0,0,.2);border-radius:3px;overflow:hidden;-moz-box-sizing:border-box;box-sizing:border-box}textarea#jp-carousel-comment-form-comment-field::-webkit-input-placeholder{color:#555}textarea#jp-carousel-comment-form-comment-field:focus{background:#ccc;color:#222}textarea#jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder{color:#aaa}#jp-carousel-comment-form-spinner{color:#fff;margin:22px 10px 0 0;display:block;width:20px;height:20px;float:right}#jp-carousel-comment-form-submit-and-info-wrapper{display:none;overflow:hidden;width:100%}#jp-carousel-comment-form-commenting-as input{background:rgba(34,34,34,.9);border:1px solid #3a3a3a;color:#aaa;font:13px/1.4 "Helvetica Neue",sans-serif!important;padding:3px 6px;float:right;box-shadow:inset -2px 2px 2px rgba(0,0,0,.2);border-radius:2px;width:285px}#jp-carousel-comment-form-commenting-as input:focus{background:#ccc;color:#222}#jp-carousel-comment-form-commenting-as p{font:400 13px/1.7 "Helvetica Neue",sans-serif!important;margin:22px 0 0;float:right}#jp-carousel-comment-form-commenting-as fieldset{float:right;border:none;margin:20px 0 0;padding:0;clear:both}#jp-carousel-comment-form-commenting-as label{font:400 13px/1.7 "Helvetica Neue",sans-serif!important;margin:0 0 3px 20px;float:right;width:100px}#jp-carousel-comment-form-button-submit{margin-top:20px;float:left}#jp-carousel-comment-form-container,#js-carousel-comment-form-container{margin-bottom:15px;overflow:auto;width:100%}#jp-carousel-comment-post-results{display:none;overflow:auto;width:100%}#jp-carousel-comment-post-results span{display:block;text-align:center;margin-top:20px;width:100%;overflow:auto;padding:1em 0;-moz-box-sizing:border-box;box-sizing:border-box;background:rgba(0,0,0,.7);border-radius:2px;font:13px/1.4 "Helvetica Neue",sans-serif!important;border:1px solid rgba(255,255,255,.17);box-shadow:inset 0 0 5px 5px rgba(0,0,0,1)}.jp-carousel-comment-post-error{color:#DF4926}#jp-carousel-comments-closed{display:none;color:#999}#jp-carousel-comments-loading{font:400 15px/1.7 "Helvetica Neue",sans-serif!important;display:none;color:#999;text-align:right;margin-bottom:20px}.jp-carousel-light .jp-carousel-overlay{background:#fff}.jp-carousel-light .jp-carousel-next-button:hover span,.jp-carousel-light .jp-carousel-previous-button:hover span{opacity:.8}.jp-carousel-light .jp-carousel-close-hint:hover,.jp-carousel-light .jp-carousel-titleanddesc div{color:#000!important}.jp-carousel-light .jp-carousel-comment .comment-author a,.jp-carousel-light .jp-carousel-comments p a,.jp-carousel-light .jp-carousel-info h2 a,.jp-carousel-light .jp-carousel-titleanddesc p a{color:#1e8cbe!important}.jp-carousel-light .jp-carousel-comment .comment-author a:hover,.jp-carousel-light .jp-carousel-comments p a:hover,.jp-carousel-light .jp-carousel-info h2 a:hover,.jp-carousel-light .jp-carousel-titleanddesc p a:hover{color:#f1831e!important}.jp-carousel-light .jp-carousel-comment,.jp-carousel-light .jp-carousel-comment p,.jp-carousel-light .jp-carousel-info h2,.jp-carousel-light .jp-carousel-titleanddesc,.jp-carousel-light .jp-carousel-titleanddesc p,.jp-carousel-light .jp-carousel-titleanddesc p b,.jp-carousel-light .jp-carousel-titleanddesc p em,.jp-carousel-light .jp-carousel-titleanddesc p i,.jp-carousel-light .jp-carousel-titleanddesc p strong,.jp-carousel-light div.jp-carousel-buttons a{color:#666}.jp-carousel-light .jp-carousel-buttons{border-bottom-color:#f0f0f0;background:#f5f5f5}.jp-carousel-light div.jp-carousel-buttons a:hover{text-decoration:none;color:#f1831e}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog,.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog:hover{background-position:4px -56px;padding-right:24px!important}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like.liked,.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{background-color:#2ea2cc;color:#fff}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-commentlink{background-position:0 -176px}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like,.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like:hover{background-position:5px -15px;padding-right:23px!important}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{background-position:5px -36px}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like.liked{background-position:5px 5px}.jp-carousel-light div#carousel-reblog-box{background:#eee;background:-webkit-gradient(linear,right bottom,right top,from(#ececec),to(#f7f7f7));box-shadow:0 2px 10px rgba(0,0,0,.1);border:1px solid #ddd}.jp-carousel-light #carousel-reblog-box textarea{color:#666;border:1px solid #cfcfcf;background:#fff}.jp-carousel-light #carousel-reblog-box .canceltext{color:#888}.jp-carousel-light #carousel-reblog-box .canceltext a{color:#666}.jp-carousel-light #carousel-reblog-box select{background:#eee;color:#333;border:1px solid #aaa}#jp-carousel-comment-form-button-submit,.jp-carousel-light #carousel-reblog-box input#carousel-reblog-submit{color:#333;background:#fff;background:-webkit-gradient(linear,right bottom,right top,from(#ddd),to(#fff));border:1px solid #aaa}.jp-carousel-light .jp-carousel-image-meta{background:#fafafa;border:1px solid #eee;border-top-color:#f5f5f5;border-right-color:#f5f5f5;color:#333}.jp-carousel-light .jp-carousel-image-meta li{color:#000!important}.jp-carousel-light .jp-carousel-close-hint{color:#ccc}.jp-carousel-light .jp-carousel-close-hint span{background-color:#fff;border-color:#ccc}.jp-carousel-light #jp-carousel-comment-form-comment-field::-webkit-input-placeholder{color:#aaa}.jp-carousel-light #jp-carousel-comment-form-comment-field:focus{color:#333}.jp-carousel-light #jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder{color:#ddd}.jp-carousel-light a.jp-carousel-image-download{background-position:0 -122px}.jp-carousel-light a.jp-carousel-image-download:hover{background-position:0 -122px;color:#f1831e}.jp-carousel-light textarea#jp-carousel-comment-form-comment-field{background:#fbfbfb;color:#333;border:1px solid #dfdfdf;box-shadow:inset -2px 2px 2px rgba(0,0,0,.1)}.jp-carousel-light #jp-carousel-comment-form-commenting-as input{background:#fbfbfb;border:1px solid #dfdfdf;color:#333;box-shadow:inset -2px 2px 2px rgba(0,0,0,.1)}.jp-carousel-light #jp-carousel-comment-form-commenting-as input:focus{background:#fbfbfb;color:#333}.jp-carousel-light #jp-carousel-comment-post-results span{background:#f7f7f7;border:1px solid #dfdfdf;box-shadow:inset 0 0 5px rgba(0,0,0,.05)}.jp-carousel-light .jp-carousel-slide{background-color:#fff}.jp-carousel-light .jp-carousel-titleanddesc{border-top:1px solid #eee}.jp-carousel-light .jp-carousel-fadeaway{background:-webkit-gradient(linear,right bottom,right top,from(rgba(255,255,255,.75)),to(rgba(255,255,255,0)))}@media only screen and (max-width:760px){.jp-carousel-info{margin:0 10px!important}.jp-carousel-buttons,.jp-carousel-next-button,.jp-carousel-previous-button{display:none!important}.jp-carousel-image-meta{float:none!important;width:100%!important;-moz-box-sizing:border-box;box-sizing:border-box}.jp-carousel-close-hint{font-weight:800!important;font-size:26px!important;position:fixed!important;top:-10px}.jp-carousel-slide img{filter:alpha(opacity=100);opacity:1}.jp-carousel-wrap{background-color:#000}.jp-carousel-fadeaway{display:none}#jp-carousel-comment-form-container{display:none!important}.jp-carousel-titleanddesc{padding-top:0!important;border:none!important}.jp-carousel-titleanddesc-title{font-size:1em!important}.jp-carousel-left-column-wrapper{padding:0;width:100%!important}.jp-carousel-photo-info{right:0!important;width:100%!important}}.contact-form .clear-form{clear:both}.contact-form input[type=email],.contact-form input[type=text]{width:300px;max-width:98%;margin-bottom:13px}.contact-form select{margin-bottom:13px}.contact-form textarea{height:200px;width:80%;float:none;margin-bottom:13px}.contact-form input[type=checkbox],.contact-form input[type=radio]{float:none;margin-bottom:13px}.contact-form label{margin-bottom:3px;float:none;font-weight:700;display:block}.contact-form label.checkbox,.contact-form label.radio{margin-bottom:3px;float:none;font-weight:700;display:inline-block}.contact-form label span{color:#AAA;margin-right:4px;font-weight:400}.form-errors .form-error-message{color:red}.textwidget .contact-form input[type=email],.textwidget .contact-form input[type=text],.textwidget .contact-form textarea{width:250px;max-width:100%;-moz-box-sizing:border-box;box-sizing:border-box}#jetpack-check-feedback-spam{margin:1px 0 0 8px}.jetpack-check-feedback-spam-spinner{display:inline-block;margin-top:7px}.infinite-loader{color:#000;display:block;height:28px;text-indent:-9999px}#infinite-handle span{background:#333;border-radius:1px;color:#eee;cursor:pointer;font-size:13px;padding:6px 16px}#infinite-handle span button,#infinite-handle span button:focus,#infinite-handle span button:hover{display:inline;position:static;padding:0;margin:0;border:none;line-height:inherit;background:0 0;color:inherit;cursor:inherit;font-size:inherit;font-weight:inherit;font-family:inherit}#infinite-handle span button::-moz-focus-inner{margin:0;padding:0;border:none}@media (max-width:800px){#infinite-handle span:before{display:none}#infinite-handle span{display:block}}#infinite-footer{position:fixed;bottom:-50px;right:0;width:100%}#infinite-footer a{text-decoration:none}#infinite-footer .blog-credits a:hover,#infinite-footer .blog-info a:hover{color:#444;text-decoration:underline}#infinite-footer .container{background:rgba(255,255,255,.8);border-color:#ccc;border-color:rgba(0,0,0,.1);border-style:solid;border-width:1px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;margin:0 auto;overflow:hidden;padding:1px 20px;width:780px}#infinite-footer .blog-credits,#infinite-footer .blog-info{-moz-box-sizing:border-box;box-sizing:border-box;line-height:25px}#infinite-footer .blog-info{float:right;overflow:hidden;text-align:right;text-overflow:ellipsis;white-space:nowrap;width:40%}#infinite-footer .blog-credits{font-weight:400;float:left;width:60%}#infinite-footer .blog-info a{color:#111;font-size:14px;font-weight:700}#infinite-footer .blog-credits{color:#888;font-size:12px;text-align:left}#infinite-footer .blog-credits a{color:#666}.infinity-end.neverending #infinite-footer{display:none}@media (max-width:640px){#infinite-footer .container{-moz-box-sizing:border-box;box-sizing:border-box;width:100%}#infinite-footer .blog-info{width:30%}#infinite-footer .blog-credits{width:70%}#infinite-footer .blog-credits,#infinite-footer .blog-info a{font-size:10px}}@media (max-width:640px){#infinite-footer{position:static}}#wpadminbar li#wp-admin-bar-admin-bar-likes-widget{width:61px;overflow:hidden}#wpadminbar iframe.admin-bar-likes-widget{width:61px;height:28px;min-height:28px;border-width:0;position:absolute;top:0}div.jetpack-likes-widget-wrapper{width:100%;min-height:50px;position:relative}div.jetpack-likes-widget-wrapper .sd-link-color{font-size:12px}div.jetpack-likes-widget-wrapper.slim-likes-widget{width:1px;min-height:0}#likes-other-gravatars{display:none;position:absolute;padding:10px 10px 12px;background-color:#2e4453;border-width:0;box-shadow:0 0 10px #2e4453;box-shadow:0 0 10px rgba(46,68,83,.6);min-width:130px;z-index:1000}#likes-other-gravatars *{line-height:normal}#likes-other-gravatars .likes-text{color:#fff;font-size:12px;padding-bottom:8px}#likes-other-gravatars li,#likes-other-gravatars ul{margin:0;padding:0;text-indent:0;list-style-type:none}#likes-other-gravatars li::before{content:""}#likes-other-gravatars ul.wpl-avatars{overflow:auto;display:block;max-height:190px}#likes-other-gravatars ul.wpl-avatars li{width:32px;height:32px;float:right;margin:0 0 5px 5px}#likes-other-gravatars ul.wpl-avatars li a{margin:0 0 0 2px;border-bottom:none!important;display:block}#likes-other-gravatars ul.wpl-avatars li a img{background:0 0;border:none;margin:0!important;padding:0!important;position:static}div.sd-box{border-top:1px solid #ddd;border-top:1px solid rgba(0,0,0,.13)}.comment-likes-widget,.entry-content .post-likes-widget,.post-likes-widget{margin:0;border-width:0;display:block}.post-likes-widget-placeholder{margin:0;border-width:0;position:relative}.post-likes-widget-placeholder .button{display:none}.post-likes-widget-placeholder .loading{color:#999;font-size:12px}.slim-likes-widget .post-likes-widget{width:auto;float:none}div.sharedaddy.sd-like-enabled .sd-like h3{display:none}div.sharedaddy.sd-like-enabled .sd-like .post-likes-widget{width:100%;float:none;position:absolute;top:0}.comment-likes-widget{width:100%}.pd-rating{display:block!important}.sd-gplus .sd-title{display:none}#jp-relatedposts{display:none;padding-top:1em;margin:1em 0;position:relative;clear:both}.jp-relatedposts:after{content:'';display:block;clear:both}#jp-relatedposts h3.jp-relatedposts-headline{margin:0 0 1em;display:inline-block;float:right;font-size:9pt;font-weight:700;font-family:inherit}#jp-relatedposts h3.jp-relatedposts-headline em:before{content:"";display:block;width:100%;min-width:30px;border-top:1px solid #ddd;border-top:1px solid rgba(0,0,0,.2);margin-bottom:1em}#jp-relatedposts h3.jp-relatedposts-headline em{font-style:normal;font-weight:700}#jp-relatedposts .jp-relatedposts-items{clear:right}#jp-relatedposts .jp-relatedposts-items-visual{margin-left:-20px}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{float:right;width:33%;margin:0 0 1em;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post{padding-left:20px;filter:alpha(opacity=80);-moz-opacity:.8;opacity:.8}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n+4),#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post:nth-child(3n+4){clear:both}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover .jp-relatedposts-post-title a{text-decoration:underline}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover{filter:alpha(opacity=100);-moz-opacity:1;opacity:1}#jp-relatedposts .jp-relatedposts-items p,#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title{font-size:14px;line-height:20px;margin:0}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs{position:relative}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs a.jp-relatedposts-post-aoverlay{position:absolute;top:0;bottom:0;right:0;left:0;display:block}#jp-relatedposts .jp-relatedposts-items p{margin-bottom:0}#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title{text-transform:none;margin:0;font-family:inherit;display:block;max-width:100%}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a{font-size:inherit;font-weight:400;text-decoration:none;filter:alpha(opacity=100);-moz-opacity:1;opacity:1}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a:hover{text-decoration:underline}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post img.jp-relatedposts-post-img,#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post span{display:block;max-width:90%;overflow:hidden;text-overflow:ellipsis}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post img.jp-relatedposts-post-img,#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post span{max-width:100%}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context,#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date{opacity:.6}#jp-relatedposts .jp-relatedposts-items-visual div.jp-relatedposts-post-thumbs p.jp-relatedposts-post-excerpt,.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date{display:none}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs p.jp-relatedposts-post-excerpt{overflow:hidden}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs span{margin-bottom:1em}@media only screen and (max-width:640px){#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{width:50%}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n){clear:right}#jp-relatedposts .jp-relatedposts-items-visual{margin-left:20px}}@media only screen and (max-width:320px){#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{width:100%;clear:both;margin:0 0 1em}}#jp-post-flair{padding-top:.5em}#content div.sharedaddy,#main div.sharedaddy,div.sharedaddy{clear:both}div.sharedaddy h3.sd-title{margin:0 0 1em;display:inline-block;line-height:1.2;font-size:9pt;font-weight:700}div.sharedaddy h3.sd-title:before{content:"";display:block;width:100%;min-width:30px;border-top:1px solid #ddd;margin-bottom:1em}body.highlander-light h3.sd-title:before{border-top:1px solid rgba(0,0,0,.2)}body.highlander-dark h3.sd-title:before{border-top:1px solid rgba(255,255,255,.4)}.sd-content ul{padding:0!important;margin:0 0 .7em!important;list-style:none!important}.sd-content ul li{display:inline-block}.sd-block.sd-gplus{margin:0 0 .5em}.sd-gplus .sd-content{font-size:12px}#sharing_email .sharing_send,.sd-content ul li .option a.share-ustom,.sd-content ul li a.sd-button,.sd-content ul li.advanced a.share-more,.sd-content ul li.preview-item div.option.option-smart-off a,.sd-social-icon .sd-content ul li a.sd-button,.sd-social-icon-text .sd-content ul li a.sd-button,.sd-social-official .sd-content>ul>li .digg_button >a,.sd-social-official .sd-content>ul>li>a.sd-button,.sd-social-text .sd-content ul li a.sd-button{text-decoration:none!important;display:inline-block;margin:0 0 5px 5px;font-size:12px;font-family:"Open Sans",sans-serif;font-weight:400;border-radius:3px;color:#777!important;background:#f8f8f8;border:1px solid #ccc;box-shadow:0 1px 0 rgba(0,0,0,.08);text-shadow:none;line-height:23px;padding:1px 5px 0 8px}.sd-content ul li .option a.share-ustom span,.sd-content ul li a.sd-button>span,.sd-content ul li.advanced a.share-more span,.sd-content ul li.preview-item div.option.option-smart-off a span,.sd-social-icon-text .sd-content ul li a.sd-button>span,.sd-social-official .sd-content>ul>li .digg_button >a span,.sd-social-official .sd-content>ul>li>a.sd-button span,.sd-social-text .sd-content ul li a.sd-button span{line-height:23px}.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a,.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button,.sd-social-official .sd-content>ul>li .digg_button>a,.sd-social-official .sd-content>ul>li>a.sd-button{line-height:17px;box-shadow:none;vertical-align:top}.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a:before,.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button:before,.sd-social-official .sd-content>ul>li .digg_button>a:before,.sd-social-official .sd-content>ul>li>a.sd-button:before{margin-bottom:-1px;top:0}.sd-social-icon .sd-content ul li a.sd-button:active,.sd-social-icon .sd-content ul li a.sd-button:hover,.sd-social-icon-text .sd-content ul li a.sd-button:active,.sd-social-icon-text .sd-content ul li a.sd-button:hover,.sd-social-official .sd-content>ul>li .digg_button>a:active,.sd-social-official .sd-content>ul>li .digg_button>a:hover,.sd-social-official .sd-content>ul>li>a.sd-button:active,.sd-social-official .sd-content>ul>li>a.sd-button:hover,.sd-social-text .sd-content ul li a.sd-button:active,.sd-social-text .sd-content ul li a.sd-button:hover{color:#555;background:#fafafa;border:1px solid #999}.sd-social-icon .sd-content ul li a.sd-button:active,.sd-social-icon-text .sd-content ul li a.sd-button:active,.sd-social-official .sd-content>ul>li .digg_button>a:active,.sd-social-official .sd-content>ul>li>a.sd-button:active,.sd-social-text .sd-content ul li a.sd-button:active{box-shadow:inset 0 1px 0 rgba(0,0,0,.16)}.sd-content ul li a.sd-button:before{display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font:400 16px/1 Genericons;vertical-align:top;position:relative;top:3px;text-align:center}.sd-content ul li{margin:0!important;padding:0}.sd-content ul li.preview-item a.sd-button span,.sd-social-icon-text .sd-content ul li a span,.sd-social-official .sd-content ul li a.sd-button span{margin-right:3px}.sd-content ul li.preview-item.no-icon a.sd-button span{margin-right:0}.sd-content ul li.no-icon a:before,.sd-social-text .sd-content ul li a:before{display:none}body .sd-content ul li.share-custom.no-icon a span,body .sd-social-text .sd-content ul li.share-custom a span{background-image:none;background-position:-500px -500px!important;background-repeat:no-repeat!important;padding-right:0;height:0;line-height:inherit}.sd-social-icon .sd-content ul li a.share-more{position:relative;top:2px}.sd-social-icon .sd-content ul li a.share-more span{margin-right:3px}.sd-content ul li.share-print div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-print a:before,.sd-social-icon-text .sd-content li.share-print a:before,.sd-social-official .sd-content li.share-print a:before,.sd-social-text .sd-content ul li.share-print a:before{content:'\f469'}.sd-content ul li.share-email div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-email a:before,.sd-social-icon-text .sd-content li.share-email a:before,.sd-social-official .sd-content li.share-email a:before,.sd-social-text .sd-content ul li.share-email a:before{content:'\f410'}.sd-content ul li.share-linkedin div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-linkedin a:before,.sd-social-icon-text .sd-content li.share-linkedin a:before,.sd-social-text .sd-content ul li.share-linkedin a:before{content:'\f207'}.sd-content ul li.share-twitter div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-twitter a:before,.sd-social-icon-text .sd-content li.share-twitter a:before,.sd-social-text .sd-content ul li.share-twitter a:before{content:'\f202'}.sd-content ul li.share-reddit div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-reddit a:before,.sd-social-icon-text .sd-content li.share-reddit a:before,.sd-social-text .sd-content ul li.share-reddit a:before{content:'\f222'}.sd-content ul li.share-tumblr div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-tumblr a:before,.sd-social-icon-text .sd-content li.share-tumblr a:before,.sd-social-text .sd-content ul li.share-tumblr a:before{content:'\f214'}.sd-content ul li.share-pocket div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-pocket a:before,.sd-social-icon-text .sd-content li.share-pocket a:before,.sd-social-text .sd-content ul li.share-pocket a:before{content:'\f224'}.sd-content ul li.share-pinterest div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-pinterest a:before,.sd-social-icon-text .sd-content li.share-pinterest a:before,.sd-social-text .sd-content ul li.share-pinterest a:before{content:'\f209'}.sd-content ul li.share-google-plus-1 div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-google-plus-1 a:before,.sd-social-icon-text .sd-content li.share-google-plus-1 a:before,.sd-social-text .sd-content ul li.share-google-plus-1 a:before{content:'\f218'}.sd-content ul li.share-facebook div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-facebook a:before,.sd-social-icon-text .sd-content li.share-facebook a:before,.sd-social-text .sd-content ul li.share-facebook a:before{content:'\f204'}.sd-content ul li.share-press-this div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-press-this a:before,.sd-social-icon-text .sd-content li.share-press-this a:before,.sd-social-official .sd-content li.share-press-this a:before,.sd-social-text .sd-content ul li.share-press-this a:before{content:'\f205'}.sd-social-official .sd-content li.share-press-this a:before{color:#2ba1cb}.sd-content ul li.advanced a.share-more:before,.sd-social-icon .sd-content ul a.share-more:before,.sd-social-icon-text .sd-content a.share-more:before,.sd-social-official .sd-content a.share-more:before,.sd-social-text .sd-content ul a.share-more:before{content:'\f415'}.sd-social-official .sd-content a.share-more:before{color:#2ba1cb}.sd-social .sd-button .share-count{background:#2ea2cc;color:#fff;border-radius:10px;display:inline-block;text-align:center;font-size:10px;padding:1px 3px;line-height:1}.sd-social-official .sd-content ul,.sd-social-official .sd-content ul li{line-height:25px!important}.sd-social-official .sd-content>ul>li>a.sd-button span{line-height:1}.sd-social-official .sd-content ul:after{content:".";display:block;height:0;clear:both;visibility:hidden}.sd-social-official .sd-content li.share-press-this a{margin:0 0 5px}.sd-social-official .sd-content ul>li{display:block;float:right;margin:0 0 5px 10px!important;height:25px}.sd-social-official .fb-share-button>span{vertical-align:top!important}.sd-social-official .sd-content .pocket_button iframe{width:98px}.sd-social-official .sd-content .twitter_button iframe{width:96px}.reddit_button iframe{margin-top:1px}.googleplus1_button iframe,.linkedin_button>span,.pinterest_button,.pocket_button iframe,.twitter_button{margin:0!important}body .sd-social-official li a.share-more,body .sd-social-official li.share-custom a,body .sd-social-official li.share-digg a,body .sd-social-official li.share-email a,body .sd-social-official li.share-press-this a,body .sd-social-official li.share-print{position:relative;top:0}body .sd-social-icon .sd-content li.share-custom>a{padding:2px 3px 0;position:relative;top:4px}body .sd-content ul li.share-custom a.share-icon span,body .sd-social-icon .sd-content li.share-custom a span,body .sd-social-icon-text .sd-content li.share-custom a span,body .sd-social-official .sd-content li.share-custom a span,body .sd-social-text .sd-content li.share-custom a span{background-size:16px 16px;background-repeat:no-repeat;margin-right:0;padding:0 19px 0 0;display:inline-block;height:16px;line-height:16px}body .sd-social-icon .sd-content li.share-custom a span{width:0}body .sd-social-icon .sd-content li.share-custom a span{padding-right:16px!important}.sharing-hidden .inner{position:absolute;z-index:2;border:1px solid #ccc;padding:10px;background:#fff;box-shadow:0 5px 20px rgba(0,0,0,.2);border-radius:2px;margin-top:5px;max-width:400px}.sharing-hidden .inner ul{margin:0!important}.sd-social-official .sd-content .sharing-hidden ul>li.share-end{clear:both;margin:0;height:0}.sharing-hidden .inner:after,.sharing-hidden .inner:before{position:absolute;z-index:1;top:-8px;right:20px;width:0;height:0;border-right:6px solid transparent;border-left:6px solid transparent;border-bottom:8px solid #ccc;content:"";display:block}.sharing-hidden .inner:after{z-index:2;top:-7px;border-right:6px solid transparent;border-left:6px solid transparent;border-bottom:8px solid #fff}.sharing-hidden ul{margin:0}.sd-social-icon .sd-content ul li[class*=share-] a,.sd-social-icon .sd-content ul li[class*=share-] a:hover,.sd-social-icon .sd-content ul li[class*=share-] div.option a{border-radius:50%;-webkit-border-radius:50%;border:0;box-shadow:none;padding:8px;position:relative;top:-2px;line-height:1;width:auto;height:auto;margin-bottom:0}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button>span,.sd-social-icon .sd-content ul li[class*=share-] div.option a span{line-height:1}.sd-social-icon .sd-content ul li[class*=share-] a:hover,.sd-social-icon .sd-content ul li[class*=share-] div.option a:hover{border:none;opacity:.6}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button:before{top:0}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button.share-custom{padding:8px 8px 6px;top:5px}.sd-social-icon .sd-content ul li a.sd-button.share-more{margin-right:10px}.sd-social-icon .sd-content ul li:first-child a.sd-button.share-more{margin-right:0}.sd-social-icon .sd-button span.share-count{position:absolute;bottom:0;left:0;border-radius:0;background:#555;font-size:9px}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button{background:#e9e9e9;margin-top:2px;text-indent:0}.sd-social-icon .sd-content ul li[class*=share-].share-tumblr a.sd-button{background:#2c4762;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-facebook a.sd-button{background:#3b5998;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-twitter a.sd-button{background:#00acee;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-pinterest a.sd-button{background:#ca1f27;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-digg a.sd-button{color:#555!important}.sd-social-icon .sd-content ul li[class*=share-].share-press-this a.sd-button{background:#1e8cbe;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-linkedin a.sd-button{background:#0077b5;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-google-plus-1 a.sd-button{background:#dd4b39;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-pocket a.sd-button{background:#ee4056;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-reddit a.sd-button{background:#cee3f8;color:#555!important}.sharing-screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}.sharing-screen-reader-text:active,.sharing-screen-reader-text:focus,.sharing-screen-reader-text:hover{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}#sharing_email{width:342px;position:absolute;z-index:1001;border:1px solid #ccc;padding:15px;background:#fff;box-shadow:0 5px 20px rgba(0,0,0,.2);text-align:right}div.sharedaddy.sharedaddy-dark #sharing_email{border-color:#fff}#sharing_email .errors{color:#fff;background-color:#771a09;font-size:12px;padding:5px 8px;line-height:1;margin:10px 0 0}#sharing_email label{font-size:12px;color:#333;font-weight:700;display:block;padding:0 0 4px;text-align:right;text-shadow:none}#sharing_email form{margin:0}#sharing_email input[type=email],#sharing_email input[type=text]{width:100%;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;border:1px solid #ccc;margin-bottom:1em;background:#fff;font-size:12px;color:#333;max-width:none;padding:1px 3px}#jetpack-source_f_name{display:none!important;position:absolute!important;right:-9000px}#sharing_email .sharing_cancel{padding:0 1em 0 0;font-size:12px;text-shadow:none}#sharing_email .recaptcha{width:312px;height:123px;margin:0 0 1em}.slideshow-window{background-color:#222;border:20px solid #222;border-radius:10px;height:0;margin-bottom:20px;overflow:hidden;padding-top:30px!important;padding-bottom:56.25%!important;position:relative;z-index:1}.slideshow-window.slideshow-white{background-color:#fff;border-color:#fff}.slideshow-window,.slideshow-window *{-moz-box-sizing:content-box;box-sizing:content-box}.slideshow-loading{height:100%;text-align:center;margin:auto}body div.slideshow-window * img{background-color:transparent!important;background-image:none!important;border-width:0!important;display:block;margin:0 auto;max-width:100%;max-height:100%;padding:0!important;position:relative;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);top:50%}.slideshow-loading img{vertical-align:middle}.slideshow-slide{display:none;height:100%!important;right:0;margin:auto;position:absolute;text-align:center;top:0;width:100%!important}.slideshow-slide img{vertical-align:middle}.slideshow-line-height-hack{overflow:hidden;width:0;font-size:0}.slideshow-slide-caption{font-size:13px;font-family:"Helvetica Neue",sans-serif;color:#f7f7f7;text-shadow:#222 -1px 1px 2px;line-height:25px;height:25px;position:absolute;bottom:5px;right:0;z-index:100;width:100%;text-align:center}.slideshow-controls{z-index:1000;position:absolute;bottom:30px;margin:auto;text-align:center;width:100%;-ms-filter:"alpha(Opacity=50)";opacity:.5;direction:rtl;-webkit-transition:300ms opacity ease-out;transition:300ms opacity ease-out}.slideshow-window:hover .slideshow-controls{-ms-filter:"alpha(Opacity=100)";opacity:1}body div div.slideshow-controls a,body div div.slideshow-controls a:hover{border:2px solid rgba(255,255,255,.1)!important;background-color:#000!important;background-color:rgba(0,0,0,.6)!important;background-image:url(../modules/shortcodes/img/slideshow-controls.png)!important;background-repeat:no-repeat;background-size:142px 16px!important;background-position:-34px 8px!important;color:#222!important;margin:0 5px!important;padding:0!important;display:inline-block!important;zoom:1;height:32px!important;width:32px!important;line-height:32px!important;text-align:center!important;-khtml-border-radius:10em!important;border-radius:10em!important;-webkit-transition:300ms border-color ease-out;transition:300ms border-color ease-out}@media only screen and (-webkit-min-device-pixel-ratio:1.5){body div div.slideshow-controls a,body div div.slideshow-controls a:hover{background-image:url(../modules/shortcodes/img/slideshow-controls-2x.png)!important}}body div div.slideshow-controls a:hover{border-color:rgba(255,255,255,1)!important}body div div.slideshow-controls a:first-child{background-position:-76px 8px!important}body div div.slideshow-controls a:last-child{background-position:-117px 8px!important}body div div.slideshow-controls a.running,body div div.slideshow-controls a:nth-child(2){background-position:-34px 8px!important}body div div.slideshow-controls a.paused{background-position:9px 8px!important}.slideshow-controls a img{border:50px dotted #f0f}body.presentation-wrapper-fullscreen-parent,html.presentation-wrapper-fullscreen-parent{overflow:hidden!important}.presentation-wrapper-fullscreen-parent #wpadminbar{display:none}.presentation-wrapper-fullscreen,.presentation-wrapper-fullscreen-parent{min-width:100%!important;min-height:100%!important;position:absolute!important;top:0!important;left:0!important;bottom:0!important;right:0!important;margin:0!important;padding:0!important;z-index:10000!important}.presentation-wrapper-fullscreen{background-color:gray;border:none!important}.presentation-wrapper-fullscreen .nav-arrow-left,.presentation-wrapper-fullscreen .nav-arrow-right{z-index:20001}.presentation-wrapper-fullscreen .nav-fullscreen-button{z-index:20002}.presentation-wrapper{margin:20px auto;border:1px solid #e5e5e5;overflow:hidden;line-height:normal}.presentation{position:relative;margin:0;overflow:hidden;outline:0}.presentation,.presentation .step{background-repeat:no-repeat;background-position:center;background-size:100% 100%}.presentation .step.fade:not(.active){opacity:0}.presentation .slide-content{padding:30px}.presentation .nav-arrow-left,.presentation .nav-arrow-right,.presentation .nav-fullscreen-button{position:absolute;width:34px;background-repeat:no-repeat;z-index:2;opacity:0;-webkit-transition:opacity .25s;transition:opacity .25s}.presentation .nav-arrow-left,.presentation .nav-arrow-right{height:100%;background-image:url(../modules/shortcodes/images/slide-nav.png);background-size:450% 61px}.presentation .nav-arrow-left{right:0;background-position:4px 50%}.presentation .nav-arrow-right{left:0;background-position:-120px 50%}.presentation .nav-fullscreen-button{width:32px;height:32px;margin:4px;bottom:0;left:0;z-index:3;background-image:url(../modules/shortcodes/images/expand.png);background-size:100% 100%}.presentation:hover .nav-arrow-left,.presentation:hover .nav-arrow-right{opacity:1}.presentation:hover .nav-fullscreen-button{opacity:.8}.presentation-wrapper-fullscreen .nav-fullscreen-button{background-image:url(../modules/shortcodes/images/collapse.png)}.presentation .autoplay-overlay{height:15%;width:80%;margin:30% 10%;position:relative;z-index:100;display:table;border-radius:50px;background-color:#e5e5e5;background-color:rgba(0,0,0,.75);-webkit-transition:opacity .5s;transition:opacity .5s}.presentation .autoplay-overlay .overlay-msg{position:relative;display:table-cell;text-align:center;vertical-align:middle;color:#fff}.presentation .will-fade{opacity:0}.presentation .do-fade{opacity:1;-webkit-transition:opacity .5s;transition:opacity .5s}#subscribe-email input{width:95%;padding:1px 2px}.comment-subscription-form .subscribe-label{display:inline!important}.jetpack-video-wrapper{margin-bottom:1.6em}.jetpack-video-wrapper>.wp-video,.jetpack-video-wrapper>embed,.jetpack-video-wrapper>iframe,.jetpack-video-wrapper>object{margin-bottom:0}.tiled-gallery{clear:both;margin:0 0 20px;overflow:hidden}.tiled-gallery img{margin:2px!important}.tiled-gallery .gallery-group{float:right;position:relative}.tiled-gallery .tiled-gallery-item{float:right;margin:0;position:relative;width:inherit}.tiled-gallery .gallery-row{overflow:hidden}.tiled-gallery .tiled-gallery-item a{background:0 0;border:none;color:inherit;margin:0;padding:0;text-decoration:none;width:auto}.tiled-gallery .tiled-gallery-item img,.tiled-gallery .tiled-gallery-item img:hover{background:0 0;border:none;box-shadow:none;max-width:100%;padding:0;vertical-align:middle}.tiled-gallery-caption{background:#eee;background:rgba(255,255,255,.8);color:#333;font-size:13px;font-weight:400;overflow:hidden;padding:10px 0;position:absolute;bottom:0;text-indent:10px;text-overflow:ellipsis;width:100%;white-space:nowrap}.tiled-gallery .tiled-gallery-item-small .tiled-gallery-caption{font-size:11px}.widget-gallery .tiled-gallery-unresized{visibility:hidden;height:0;overflow:hidden}.tiled-gallery .tiled-gallery-item img.grayscale{position:absolute;right:0;top:0}.tiled-gallery .tiled-gallery-item img.grayscale:hover{opacity:0}.tiled-gallery.type-circle .tiled-gallery-item img{border-radius:50%!important}.tiled-gallery.type-circle .tiled-gallery-caption{display:none;opacity:0}.jetpack-display-remote-posts{margin:5px 0 20px}.jetpack-display-remote-posts h4{font-size:90%;margin:5px 0;padding:0}.jetpack-display-remote-posts h4 a{text-decoration:none}.jetpack-display-remote-posts p{margin:0!important;padding:0;line-height:1.4em!important;font-size:90%}.jetpack-display-remote-posts img{max-width:100%}.widget-grofile h4{margin:1em 0 .5em}.widget-grofile ul.grofile-urls{margin-right:0;overflow:hidden}.widget-grofile ul.grofile-accounts li{list-style:none;display:inline}.widget-grofile ul.grofile-accounts li::before{content:""!important}.widget-grofile .grofile-accounts-logo{background-image:url(//0.gravatar.com/images/grav-share-sprite.png);background-repeat:no-repeat;width:16px;height:16px;float:right;margin-left:8px;margin-bottom:8px}.rtl .widget-grofile .grofile-accounts-logo{margin-right:8px;margin-left:0}.grofile-thumbnail{width:500px;max-width:100%}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){.widget-grofile .grofile-accounts-logo{background-image:url(//0.gravatar.com/images/grav-share-sprite-2x.png);background-size:16px 784px}}div[class^=gr_custom_container]{border:1px solid gray;border-radius:10px;padding:10px 5px;background-color:#FFF;color:#000}div[class^=gr_custom_container] a{color:#000}h2[class^=gr_custom_header]{display:none}div[class^=gr_custom_each_container]{width:100%;clear:both;margin-bottom:10px;overflow:auto;padding-bottom:4px;border-bottom:1px solid #aaa}div[class^=gr_custom_book_container]{float:left;overflow:hidden;height:60px;margin-right:4px;width:39px}div[class^=gr_custom_author]{font-size:10px}div[class^=gr_custom_tags]{font-size:10px;color:gray}div[class^=gr_custom_rating]{display:none}.widget_wpcom_social_media_icons_widget ul{list-style-type:none;margin-right:0}.widget_wpcom_social_media_icons_widget li{border:0;display:inline;margin-left:.5em}.widget_wpcom_social_media_icons_widget li a{border:0;text-decoration:none}.widget_wpcom_social_media_icons_widget .genericon{font-family:Genericons}.widget_wpcom_social_media_icons_widget .screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}.widget_wpcom_social_media_icons_widget .screen-reader-text:active,.widget_wpcom_social_media_icons_widget .screen-reader-text:focus,.widget_wpcom_social_media_icons_widget .screen-reader-text:hover{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.widgets-grid-layout{width:100%}.widgets-grid-layout:after,.widgets-grid-layout:before{content:" ";display:table}.widgets-grid-layout:after{clear:both}.widget-grid-view-image{float:right;max-width:50%}.widget-grid-view-image a{display:block;margin:0 0 4px 2px}.widget-grid-view-image:image:nth-child(even){float:left}.widget-grid-view-image:nth-child(even) a{margin:0 2px 4px 0}.widgets-grid-layout .widget-grid-view-image img{max-width:100%;height:auto}.widgets-multi-column-grid ul{overflow:hidden;padding:0;margin:0;list-style-type:none}.widgets-multi-column-grid ul li{background:0 0;clear:none;float:right;margin:0 0 -3px -5px;padding:0 0 6px 8px;border:none;list-style-type:none!important}.widgets-multi-column-grid ul li a{background:0 0;margin:0;padding:0;border:0}.widgets-multi-column-grid .avatar{vertical-align:middle}.widgets-list-layout{padding:0;margin:0;list-style-type:none}.widgets-list-layout li:after,.widgets-list-layout li:before{content:"";display:table}.widgets-list-layout li:after{clear:both}.widgets-list-layout li{zoom:1;margin-bottom:1em;list-style-type:none!important}.widgets-list-layout .widgets-list-layout-blavatar{float:right;width:21.276596%;max-width:40px;height:auto}.widgets-list-layout-links{float:left;width:73.404255%}.widgets-list-layout span{opacity:.5}.widgets-list-layout span:hover{opacity:.8}
css/jetpack.css CHANGED
@@ -1,4 +1,4 @@
1
  /*!
2
  * Do not modify this file directly. It is concatenated from individual module CSS files.
3
  */
4
- .jp-carousel-wrap *{line-height:inherit}.jp-carousel-overlay{background:#000}div.jp-carousel-fadeaway{position:fixed;bottom:0;z-index:2147483647;width:100%;height:15px}.jp-carousel-next-button span,.jp-carousel-previous-button span{background:url(../modules/carousel/images/arrows.png) center center/200px 126px no-repeat}.jp-carousel-msg{font-family:"Open Sans",sans-serif;font-style:normal;display:inline-block;line-height:19px;padding:11px 15px;font-size:14px;text-align:center;margin:25px 20px 0 2px;background-color:#fff;border-left:4px solid #ffba00;box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){.jp-carousel-next-button span,.jp-carousel-previous-button span{background-image:url(../modules/carousel/images/arrows-2x.png)}}.jp-carousel-wrap{font-family:"Helvetica Neue",sans-serif!important}.jp-carousel-info{position:absolute;bottom:0;text-align:left!important;-webkit-font-smoothing:subpixel-antialiased!important}.jp-carousel-info ::selection{background:#68c9e8;color:#fff}.jp-carousel-info ::-moz-selection{background:#68c9e8;color:#fff}.jp-carousel-photo-info{position:relative;left:25%;width:50%}.jp-carousel-transitions .jp-carousel-photo-info{transition:400ms ease-out}.jp-carousel-info h2{background:none!important;border:none!important;color:#999;display:block!important;font:400 13px/1.25em "Helvetica Neue",sans-serif!important;letter-spacing:0!important;margin:7px 0 0!important;padding:10px 0 0!important;overflow:hidden;text-align:left;text-shadow:none!important;text-transform:none!important;-webkit-font-smoothing:subpixel-antialiased}.jp-carousel-next-button,.jp-carousel-previous-button{text-indent:-9999px;overflow:hidden;cursor:pointer}.jp-carousel-next-button span,.jp-carousel-previous-button span{position:absolute;top:0;bottom:0;width:82px;zoom:1;filter:alpha(opacity=20);opacity:.2}.jp-carousel-transitions .jp-carousel-next-button span,.jp-carousel-transitions .jp-carousel-previous-button span{transition:500ms opacity ease-out}.jp-carousel-next-button:hover span,.jp-carousel-previous-button:hover span{filter:alpha(opacity=60);opacity:.6}.jp-carousel-next-button span{background-position:-110px center;right:0}.jp-carousel-previous-button span{background-position:-10px center;left:0}.jp-carousel-buttons{margin:-18px -20px 15px;padding:8px 10px;border-bottom:1px solid #222;background:#222;text-align:center}div.jp-carousel-buttons a{border:none!important;color:#999;font:400 11px/1.2em "Helvetica Neue",sans-serif!important;letter-spacing:0!important;padding:5px 2px 5px 0;text-decoration:none!important;text-shadow:none!important;vertical-align:middle;-webkit-font-smoothing:subpixel-antialiased}div.jp-carousel-buttons a:hover{color:#68c9e8;border:none!important}.jp-carousel-transitions div.jp-carousel-buttons a:hover{transition:none!important}.jp-carousel-next-button,.jp-carousel-previous-button,.jp-carousel-slide,.jp-carousel-slide img{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.jp-carousel-slide{position:fixed;width:0;bottom:0;background-color:#000;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px}.jp-carousel-slide.selected{position:absolute!important;filter:alpha(opacity=100);opacity:1}.jp-carousel-slide{filter:alpha(opacity=25);opacity:.25}.jp-carousel-slide img{display:block;width:100%!important;height:100%!important;max-width:100%!important;max-height:100%!important;background:none!important;border:none!important;padding:0!important;box-shadow:0 2px 8px rgba(0,0,0,.1);zoom:1}.jp-carousel-transitions .jp-carousel-slide{transition:opacity 400ms linear}.jp-carousel-close-hint{color:#999;cursor:default;letter-spacing:0!important;padding:.35em 0 0;position:absolute;text-align:left;width:90%}.jp-carousel-transitions .jp-carousel-close-hint{transition:color 200ms linear}.jp-carousel-close-hint span{cursor:pointer;background-color:#000;background-color:rgba(0,0,0,.8);display:block;height:22px;font:400 24px/1 "Helvetica Neue",sans-serif!important;line-height:22px;margin:0 0 0 .4em;text-align:center;vertical-align:middle;width:22px;border-radius:4px}.jp-carousel-transitions .jp-carousel-close-hint span{transition:border-color 200ms linear}.jp-carousel-close-hint:hover{cursor:default;color:#fff}.jp-carousel-close-hint:hover span{border-color:#fff}a.jp-carousel-image-download,div.jp-carousel-buttons a.jp-carousel-commentlink,div.jp-carousel-buttons a.jp-carousel-like,div.jp-carousel-buttons a.jp-carousel-reblog{background:url(../modules/carousel/images/carousel-sprite.png?5) 0 0/16px 200px no-repeat}div.jp-carousel-buttons a.jp-carousel-commentlink,div.jp-carousel-buttons a.jp-carousel-reblog{margin:0 14px 0 0!important}div.jp-carousel-buttons a.jp-carousel-like.liked,div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{background-color:#303030;padding-right:8px!important;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px}div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{margin:0 2px 0 -12px!important}div.jp-carousel-buttons a.jp-carousel-reblog,div.jp-carousel-buttons a.jp-carousel-reblog.reblogged:hover{background-position:6px -36px;padding-right:auto!important;padding-left:26px!important;color:#999}div.jp-carousel-buttons a.jp-carousel-commentlink{background-position:0 -156px;padding-left:19px!important}div.jp-carousel-buttons a.jp-carousel-reblog.reblogged:hover{cursor:default}div.jp-carousel-buttons a.jp-carousel-reblog:hover{background-position:6px -56px;color:#68c9e8}div.jp-carousel-buttons a.jp-carousel-like{background-position:5px 5px;padding-left:24px!important}div.jp-carousel-buttons a.jp-carousel-like:hover{background-position:5px -15px}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){a.jp-carousel-image-download,div.jp-carousel-buttons a.jp-carousel-commentlink,div.jp-carousel-buttons a.jp-carousel-like,div.jp-carousel-buttons a.jp-carousel-reblog{background-image:url(../modules/carousel/images/carousel-sprite-2x.png?5)}}div#carousel-reblog-box{background:#222;padding:3px 0 0;display:none;margin:5px auto 0;border-radius:2px;box-shadow:0 0 20px rgba(0,0,0,.9);height:74px;width:565px}#carousel-reblog-box textarea{background:#999;font:13px/1.4 "Helvetica Neue",sans-serif!important;color:#444;padding:3px 6px;width:370px;height:48px;float:left;margin:6px 9px 0;border:1px solid #666;box-shadow:inset 2px 2px 2px rgba(0,0,0,.2);border-radius:2px}#carousel-reblog-box textarea:focus{background:#ccc;color:#222}#carousel-reblog-box label{color:#aaa;font-size:11px;padding-right:2px;padding-left:2px;display:inline;font-weight:400}#carousel-reblog-box select{width:110px;padding:0;font-size:12px;font-family:"Helvetica Neue",sans-serif!important;background:#333;color:#eee;border:1px solid #444;margin-top:5px}#carousel-reblog-box .submit,#wrapper #carousel-reblog-box p.response{float:left;width:154px;padding-top:0;padding-left:1px;overflow:hidden;height:34px;margin:3px 0 0 2px!important}#wrapper #carousel-reblog-box p.response{font-size:13px;clear:none;padding-left:2px;height:34px;color:#aaa}#carousel-reblog-box input#carousel-reblog-submit,#jp-carousel-comment-form-button-submit{font:13px/24px "Helvetica Neue",sans-serif!important;margin-top:8px;padding:0 10px!important;border-radius:1em;height:24px;color:#333;cursor:pointer;font-weight:400;background:#aaa;border:1px solid #444}#carousel-reblog-box input#carousel-reblog-submit:hover,#jp-carousel-comment-form-button-submit:hover{background:#ccc}#carousel-reblog-box .canceltext{color:#aaa;font-size:11px;line-height:24px}#carousel-reblog-box .canceltext a{color:#fff}.jp-carousel-titleanddesc{border-top:1px solid #222;color:#999;font-size:15px;padding-top:24px;margin-bottom:20px;font-weight:400}.jp-carousel-titleanddesc-title{font:300 1.5em/1.1 "Helvetica Neue",sans-serif!important;text-transform:none!important;color:#fff;margin:0 0 15px;padding:0}.jp-carousel-titleanddesc-desc p{color:#999;line-height:1.4;margin-bottom:.75em}.jp-carousel-comments p a,.jp-carousel-info h2 a,.jp-carousel-titleanddesc p a{color:#fff!important;border:none!important;text-decoration:underline!important;font-weight:400!important;font-style:normal!important}.jp-carousel-titleanddesc p b,.jp-carousel-titleanddesc p strong{font-weight:700;color:#999}.jp-carousel-titleanddesc p em,.jp-carousel-titleanddesc p i{font-style:italic;color:#999}.jp-carousel-comments p a:hover,.jp-carousel-info h2 a:hover,.jp-carousel-titleanddesc p a:hover{color:#68c9e8!important}.jp-carousel-titleanddesc p:empty{display:none}.jp-carousel-left-column-wrapper h1:after,.jp-carousel-left-column-wrapper h1:before,.jp-carousel-photo-info h1:after,.jp-carousel-photo-info h1:before{content:none!important}.jp-carousel-image-meta{background:#111;border:1px solid #222;color:#fff;font:12px/1.4 "Helvetica Neue",sans-serif!important;overflow:hidden;padding:18px 20px;width:209px!important}.jp-carousel-image-meta h5,.jp-carousel-image-meta li{font-family:"Helvetica Neue",sans-serif!important;position:inherit!important;top:auto!important;right:auto!important;left:auto!important;bottom:auto!important;background:none!important;border:none!important;font-weight:400!important;line-height:1.3em!important}.jp-carousel-image-meta ul{margin:0!important;padding:0!important;list-style:none!important}.jp-carousel-image-meta li{width:48%!important;float:left!important;margin:0 2% 15px 0!important;color:#fff!important;font-size:13px!important}.jp-carousel-image-meta h5{color:#999!important;text-transform:uppercase!important;font-size:10px!important;margin:0 0 2px!important;letter-spacing:.1em!important}a.jp-carousel-image-download{padding-left:23px;display:inline-block;clear:both;color:#999;line-height:1;font-weight:400;font-size:13px;text-decoration:none;background-position:0 -82px}a.jp-carousel-image-download span.photo-size{font-size:11px;border-radius:1em;margin-left:2px;display:inline-block}a.jp-carousel-image-download span.photo-size-times{padding:0 1px 0 2px}a.jp-carousel-image-download:hover{background-position:0 -122px;color:#68c9e8;border:none!important}.jp-carousel-image-map{position:relative;margin:-20px -20px 20px;border-bottom:1px solid rgba(255,255,255,.17);height:154px}.jp-carousel-image-map img.gmap-main{border-top-left-radius:6px;border-right:1px solid rgba(255,255,255,.17)}.jp-carousel-image-map div.gmap-topright{width:94px;height:154px;position:absolute;top:0;right:0}.jp-carousel-image-map div.imgclip{overflow:hidden;border-top-right-radius:6px}.jp-carousel-image-map div.gmap-topright img{margin-left:-40px}.jp-carousel-image-map img.gmap-bottomright{position:absolute;top:96px;right:0}.jp-carousel-comments{font:15px/1.7 "Helvetica Neue",sans-serif!important;font-weight:400;background:none}.jp-carousel-comments p a:active,.jp-carousel-comments p a:focus,.jp-carousel-comments p a:hover{color:#68c9e8!important}.jp-carousel-comment{background:none;color:#999;margin-bottom:20px;clear:left;overflow:auto;width:100%}.jp-carousel-comment p{color:#999!important}.jp-carousel-comment .comment-author{font-size:13px;font-weight:400;padding:0;width:auto;display:inline;float:none;border:none;margin:0}.jp-carousel-comment .comment-author a{color:#fff}.jp-carousel-comment .comment-gravatar{float:left}.jp-carousel-comment .comment-content{border:none;margin-left:85px;padding:0}.jp-carousel-comment .avatar{margin:0 20px 0 0;border-radius:4px;border:none!important;padding:0!important;background-color:transparent!important}.jp-carousel-comment .comment-date{color:#999;margin-top:4px;font-size:11px;display:inline;float:right}#jp-carousel-comment-form{margin:0 0 10px!important;float:left;width:100%}textarea#jp-carousel-comment-form-comment-field{background:rgba(34,34,34,.9);border:1px solid #3a3a3a;color:#aaa;font:15px/1.4 "Helvetica Neue",sans-serif!important;width:100%;padding:10px 10px 5px;margin:0;float:none;height:147px;box-shadow:inset 2px 2px 2px rgba(0,0,0,.2);border-radius:3px;overflow:hidden;-moz-box-sizing:border-box;box-sizing:border-box}textarea#jp-carousel-comment-form-comment-field::-webkit-input-placeholder{color:#555}textarea#jp-carousel-comment-form-comment-field:focus{background:#ccc;color:#222}textarea#jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder{color:#aaa}#jp-carousel-comment-form-spinner{color:#fff;margin:22px 0 0 10px;display:block;width:20px;height:20px;float:left}#jp-carousel-comment-form-submit-and-info-wrapper{display:none;overflow:hidden;width:100%}#jp-carousel-comment-form-commenting-as input{background:rgba(34,34,34,.9);border:1px solid #3a3a3a;color:#aaa;font:13px/1.4 "Helvetica Neue",sans-serif!important;padding:3px 6px;float:left;box-shadow:inset 2px 2px 2px rgba(0,0,0,.2);border-radius:2px;width:285px}#jp-carousel-comment-form-commenting-as input:focus{background:#ccc;color:#222}#jp-carousel-comment-form-commenting-as p{font:400 13px/1.7 "Helvetica Neue",sans-serif!important;margin:22px 0 0;float:left}#jp-carousel-comment-form-commenting-as fieldset{float:left;border:none;margin:20px 0 0;padding:0;clear:both}#jp-carousel-comment-form-commenting-as label{font:400 13px/1.7 "Helvetica Neue",sans-serif!important;margin:0 20px 3px 0;float:left;width:100px}#jp-carousel-comment-form-button-submit{margin-top:20px;float:right}#jp-carousel-comment-form-container,#js-carousel-comment-form-container{margin-bottom:15px;overflow:auto;width:100%}#jp-carousel-comment-post-results{display:none;overflow:auto;width:100%}#jp-carousel-comment-post-results span{display:block;text-align:center;margin-top:20px;width:100%;overflow:auto;padding:1em 0;-moz-box-sizing:border-box;box-sizing:border-box;background:rgba(0,0,0,.7);border-radius:2px;font:13px/1.4 "Helvetica Neue",sans-serif!important;border:1px solid rgba(255,255,255,.17);box-shadow:inset 0 0 5px 5px rgba(0,0,0,1)}.jp-carousel-comment-post-error{color:#DF4926}#jp-carousel-comments-closed{display:none;color:#999}#jp-carousel-comments-loading{font:400 15px/1.7 "Helvetica Neue",sans-serif!important;display:none;color:#999;text-align:left;margin-bottom:20px}.jp-carousel-light .jp-carousel-overlay{background:#fff}.jp-carousel-light .jp-carousel-next-button:hover span,.jp-carousel-light .jp-carousel-previous-button:hover span{opacity:.8}.jp-carousel-light .jp-carousel-close-hint:hover,.jp-carousel-light .jp-carousel-titleanddesc div{color:#000!important}.jp-carousel-light .jp-carousel-comment .comment-author a,.jp-carousel-light .jp-carousel-comments p a,.jp-carousel-light .jp-carousel-info h2 a,.jp-carousel-light .jp-carousel-titleanddesc p a{color:#1e8cbe!important}.jp-carousel-light .jp-carousel-comment .comment-author a:hover,.jp-carousel-light .jp-carousel-comments p a:hover,.jp-carousel-light .jp-carousel-info h2 a:hover,.jp-carousel-light .jp-carousel-titleanddesc p a:hover{color:#f1831e!important}.jp-carousel-light .jp-carousel-comment,.jp-carousel-light .jp-carousel-comment p,.jp-carousel-light .jp-carousel-info h2,.jp-carousel-light .jp-carousel-titleanddesc,.jp-carousel-light .jp-carousel-titleanddesc p,.jp-carousel-light .jp-carousel-titleanddesc p b,.jp-carousel-light .jp-carousel-titleanddesc p em,.jp-carousel-light .jp-carousel-titleanddesc p i,.jp-carousel-light .jp-carousel-titleanddesc p strong,.jp-carousel-light div.jp-carousel-buttons a{color:#666}.jp-carousel-light .jp-carousel-buttons{border-bottom-color:#f0f0f0;background:#f5f5f5}.jp-carousel-light div.jp-carousel-buttons a:hover{text-decoration:none;color:#f1831e}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog,.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog:hover{background-position:4px -56px;padding-left:24px!important}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like.liked,.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{background-color:#2ea2cc;color:#fff}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-commentlink{background-position:0 -176px}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like,.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like:hover{background-position:5px -15px;padding-left:23px!important}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{background-position:5px -36px}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like.liked{background-position:5px 5px}.jp-carousel-light div#carousel-reblog-box{background:#eee;box-shadow:0 2px 10px rgba(0,0,0,.1);border:1px solid #ddd}.jp-carousel-light #carousel-reblog-box textarea{color:#666;border:1px solid #cfcfcf;background:#fff}.jp-carousel-light #carousel-reblog-box .canceltext{color:#888}.jp-carousel-light #carousel-reblog-box .canceltext a{color:#666}.jp-carousel-light #carousel-reblog-box select{background:#eee;color:#333;border:1px solid #aaa}#jp-carousel-comment-form-button-submit,.jp-carousel-light #carousel-reblog-box input#carousel-reblog-submit{color:#333;background:#fff;border:1px solid #aaa}.jp-carousel-light .jp-carousel-image-meta{background:#fafafa;border:1px solid #eee;border-top-color:#f5f5f5;border-left-color:#f5f5f5;color:#333}.jp-carousel-light .jp-carousel-image-meta li{color:#000!important}.jp-carousel-light .jp-carousel-close-hint{color:#ccc}.jp-carousel-light .jp-carousel-close-hint span{background-color:#fff;border-color:#ccc}.jp-carousel-light #jp-carousel-comment-form-comment-field::-webkit-input-placeholder{color:#aaa}.jp-carousel-light #jp-carousel-comment-form-comment-field:focus{color:#333}.jp-carousel-light #jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder{color:#ddd}.jp-carousel-light a.jp-carousel-image-download{background-position:0 -122px}.jp-carousel-light a.jp-carousel-image-download:hover{background-position:0 -122px;color:#f1831e}.jp-carousel-light textarea#jp-carousel-comment-form-comment-field{background:#fbfbfb;color:#333;border:1px solid #dfdfdf;box-shadow:inset 2px 2px 2px rgba(0,0,0,.1)}.jp-carousel-light #jp-carousel-comment-form-commenting-as input{background:#fbfbfb;border:1px solid #dfdfdf;color:#333;box-shadow:inset 2px 2px 2px rgba(0,0,0,.1)}.jp-carousel-light #jp-carousel-comment-form-commenting-as input:focus{background:#fbfbfb;color:#333}.jp-carousel-light #jp-carousel-comment-post-results span{background:#f7f7f7;border:1px solid #dfdfdf;box-shadow:inset 0 0 5px rgba(0,0,0,.05)}.jp-carousel-light .jp-carousel-slide{background-color:#fff}.jp-carousel-light .jp-carousel-titleanddesc{border-top:1px solid #eee}@media only screen and (max-width:760px){.jp-carousel-info{margin:0 10px!important}.jp-carousel-buttons,.jp-carousel-next-button,.jp-carousel-previous-button{display:none!important}.jp-carousel-image-meta{float:none!important;width:100%!important;-moz-box-sizing:border-box;box-sizing:border-box}.jp-carousel-close-hint{font-weight:800!important;font-size:26px!important;position:fixed!important;top:-10px}.jp-carousel-slide img{filter:alpha(opacity=100);opacity:1}.jp-carousel-wrap{background-color:#000}.jp-carousel-fadeaway{display:none}#jp-carousel-comment-form-container{display:none!important}.jp-carousel-titleanddesc{padding-top:0!important;border:none!important}.jp-carousel-titleanddesc-title{font-size:1em!important}.jp-carousel-left-column-wrapper{padding:0;width:100%!important}.jp-carousel-photo-info{left:0!important;width:100%!important}}.contact-form .clear-form{clear:both}.contact-form input[type=email],.contact-form input[type=text]{width:300px;max-width:98%;margin-bottom:13px}.contact-form select{margin-bottom:13px}.contact-form textarea{height:200px;width:80%;float:none;margin-bottom:13px}.contact-form input[type=checkbox],.contact-form input[type=radio]{float:none;margin-bottom:13px}.contact-form label{margin-bottom:3px;float:none;font-weight:700;display:block}.contact-form label.checkbox,.contact-form label.radio{margin-bottom:3px;float:none;font-weight:700;display:inline-block}.contact-form label span{color:#AAA;margin-left:4px;font-weight:400}.form-errors .form-error-message{color:red}.textwidget .contact-form input[type=email],.textwidget .contact-form input[type=text],.textwidget .contact-form textarea{width:250px;max-width:100%;-moz-box-sizing:border-box;box-sizing:border-box}#jetpack-check-feedback-spam{margin:1px 8px 0 0}.jetpack-check-feedback-spam-spinner{display:inline-block;margin-top:7px}.infinite-loader{color:#000;display:block;height:28px;text-indent:-9999px}#infinite-handle span{background:#333;border-radius:1px;color:#eee;cursor:pointer;font-size:13px;padding:6px 16px}#infinite-handle span button,#infinite-handle span button:focus,#infinite-handle span button:hover{display:inline;position:static;padding:0;margin:0;border:none;line-height:inherit;background:0 0;color:inherit;cursor:inherit;font-size:inherit;font-weight:inherit;font-family:inherit}#infinite-handle span button::-moz-focus-inner{margin:0;padding:0;border:none}@media (max-width:800px){#infinite-handle span:before{display:none}#infinite-handle span{display:block}}#infinite-footer{position:fixed;bottom:-50px;left:0;width:100%}#infinite-footer a{text-decoration:none}#infinite-footer .blog-credits a:hover,#infinite-footer .blog-info a:hover{color:#444;text-decoration:underline}#infinite-footer .container{background:rgba(255,255,255,.8);border-color:#ccc;border-color:rgba(0,0,0,.1);border-style:solid;border-width:1px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;margin:0 auto;overflow:hidden;padding:1px 20px;width:780px}#infinite-footer .blog-credits,#infinite-footer .blog-info{-moz-box-sizing:border-box;box-sizing:border-box;line-height:25px}#infinite-footer .blog-info{float:left;overflow:hidden;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:40%}#infinite-footer .blog-credits{font-weight:400;float:right;width:60%}#infinite-footer .blog-info a{color:#111;font-size:14px;font-weight:700}#infinite-footer .blog-credits{color:#888;font-size:12px;text-align:right}#infinite-footer .blog-credits a{color:#666}.infinity-end.neverending #infinite-footer{display:none}@media (max-width:640px){#infinite-footer .container{-moz-box-sizing:border-box;box-sizing:border-box;width:100%}#infinite-footer .blog-info{width:30%}#infinite-footer .blog-credits{width:70%}#infinite-footer .blog-credits,#infinite-footer .blog-info a{font-size:10px}}@media (max-width:640px){#infinite-footer{position:static}}#wpadminbar li#wp-admin-bar-admin-bar-likes-widget{width:61px;overflow:hidden}#wpadminbar iframe.admin-bar-likes-widget{width:61px;height:28px;min-height:28px;border-width:0;position:absolute;top:0}div.jetpack-likes-widget-wrapper{width:100%;min-height:50px;position:relative}div.jetpack-likes-widget-wrapper .sd-link-color{font-size:12px}div.jetpack-likes-widget-wrapper.slim-likes-widget{width:1px;min-height:0}#likes-other-gravatars{display:none;position:absolute;padding:10px 10px 12px;background-color:#2e4453;border-width:0;box-shadow:0 0 10px #2e4453;box-shadow:0 0 10px rgba(46,68,83,.6);min-width:130px;z-index:1000}#likes-other-gravatars *{line-height:normal}#likes-other-gravatars .likes-text{color:#fff;font-size:12px;padding-bottom:8px}#likes-other-gravatars li,#likes-other-gravatars ul{margin:0;padding:0;text-indent:0;list-style-type:none}#likes-other-gravatars li::before{content:""}#likes-other-gravatars ul.wpl-avatars{overflow:auto;display:block;max-height:190px}#likes-other-gravatars ul.wpl-avatars li{width:32px;height:32px;float:left;margin:0 5px 5px 0}#likes-other-gravatars ul.wpl-avatars li a{margin:0 2px 0 0;border-bottom:none!important;display:block}#likes-other-gravatars ul.wpl-avatars li a img{background:0 0;border:none;margin:0!important;padding:0!important;position:static}div.sd-box{border-top:1px solid #ddd;border-top:1px solid rgba(0,0,0,.13)}.comment-likes-widget,.entry-content .post-likes-widget,.post-likes-widget{margin:0;border-width:0;display:block}.post-likes-widget-placeholder{margin:0;border-width:0;position:relative}.post-likes-widget-placeholder .button{display:none}.post-likes-widget-placeholder .loading{color:#999;font-size:12px}.slim-likes-widget .post-likes-widget{width:auto;float:none}div.sharedaddy.sd-like-enabled .sd-like h3{display:none}div.sharedaddy.sd-like-enabled .sd-like .post-likes-widget{width:100%;float:none;position:absolute;top:0}.comment-likes-widget{width:100%}.pd-rating{display:block!important}.sd-gplus .sd-title{display:none}#jp-relatedposts{display:none;padding-top:1em;margin:1em 0;position:relative;clear:both}.jp-relatedposts:after{content:'';display:block;clear:both}#jp-relatedposts h3.jp-relatedposts-headline{margin:0 0 1em;display:inline-block;float:left;font-size:9pt;font-weight:700;font-family:inherit}#jp-relatedposts h3.jp-relatedposts-headline em:before{content:"";display:block;width:100%;min-width:30px;border-top:1px solid #ddd;border-top:1px solid rgba(0,0,0,.2);margin-bottom:1em}#jp-relatedposts h3.jp-relatedposts-headline em{font-style:normal;font-weight:700}#jp-relatedposts .jp-relatedposts-items{clear:left}#jp-relatedposts .jp-relatedposts-items-visual{margin-right:-20px}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{float:left;width:33%;margin:0 0 1em;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post{padding-right:20px;filter:alpha(opacity=80);-moz-opacity:.8;opacity:.8}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n+4),#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post:nth-child(3n+4){clear:both}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover .jp-relatedposts-post-title a{text-decoration:underline}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover{filter:alpha(opacity=100);-moz-opacity:1;opacity:1}#jp-relatedposts .jp-relatedposts-items p,#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title{font-size:14px;line-height:20px;margin:0}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs{position:relative}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs a.jp-relatedposts-post-aoverlay{position:absolute;top:0;bottom:0;left:0;right:0;display:block}#jp-relatedposts .jp-relatedposts-items p{margin-bottom:0}#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title{text-transform:none;margin:0;font-family:inherit;display:block;max-width:100%}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a{font-size:inherit;font-weight:400;text-decoration:none;filter:alpha(opacity=100);-moz-opacity:1;opacity:1}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a:hover{text-decoration:underline}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post img.jp-relatedposts-post-img,#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post span{display:block;max-width:90%;overflow:hidden;text-overflow:ellipsis}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post img.jp-relatedposts-post-img,#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post span{max-width:100%}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context,#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date{opacity:.6}#jp-relatedposts .jp-relatedposts-items-visual div.jp-relatedposts-post-thumbs p.jp-relatedposts-post-excerpt,.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date{display:none}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs p.jp-relatedposts-post-excerpt{overflow:hidden}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs span{margin-bottom:1em}@media only screen and (max-width:640px){#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{width:50%}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n){clear:left}#jp-relatedposts .jp-relatedposts-items-visual{margin-right:20px}}@media only screen and (max-width:320px){#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{width:100%;clear:both;margin:0 0 1em}}#jp-post-flair{padding-top:.5em}#content div.sharedaddy,#main div.sharedaddy,div.sharedaddy{clear:both}div.sharedaddy h3.sd-title{margin:0 0 1em;display:inline-block;line-height:1.2;font-size:9pt;font-weight:700}div.sharedaddy h3.sd-title:before{content:"";display:block;width:100%;min-width:30px;border-top:1px solid #ddd;margin-bottom:1em}body.highlander-light h3.sd-title:before{border-top:1px solid rgba(0,0,0,.2)}body.highlander-dark h3.sd-title:before{border-top:1px solid rgba(255,255,255,.4)}.sd-content ul{padding:0!important;margin:0 0 .7em!important;list-style:none!important}.sd-content ul li{display:inline-block}.sd-block.sd-gplus{margin:0 0 .5em}.sd-gplus .sd-content{font-size:12px}#sharing_email .sharing_send,.sd-content ul li .option a.share-ustom,.sd-content ul li a.sd-button,.sd-content ul li.advanced a.share-more,.sd-content ul li.preview-item div.option.option-smart-off a,.sd-social-icon .sd-content ul li a.sd-button,.sd-social-icon-text .sd-content ul li a.sd-button,.sd-social-official .sd-content>ul>li .digg_button >a,.sd-social-official .sd-content>ul>li>a.sd-button,.sd-social-text .sd-content ul li a.sd-button{text-decoration:none!important;display:inline-block;margin:0 5px 5px 0;font-size:12px;font-family:"Open Sans",sans-serif;font-weight:400;border-radius:3px;color:#777!important;background:#f8f8f8;border:1px solid #ccc;box-shadow:0 1px 0 rgba(0,0,0,.08);text-shadow:none;line-height:23px;padding:1px 8px 0 5px}.sd-content ul li .option a.share-ustom span,.sd-content ul li a.sd-button>span,.sd-content ul li.advanced a.share-more span,.sd-content ul li.preview-item div.option.option-smart-off a span,.sd-social-icon-text .sd-content ul li a.sd-button>span,.sd-social-official .sd-content>ul>li .digg_button >a span,.sd-social-official .sd-content>ul>li>a.sd-button span,.sd-social-text .sd-content ul li a.sd-button span{line-height:23px}.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a,.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button,.sd-social-official .sd-content>ul>li .digg_button>a,.sd-social-official .sd-content>ul>li>a.sd-button{line-height:17px;box-shadow:none;vertical-align:top}.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a:before,.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button:before,.sd-social-official .sd-content>ul>li .digg_button>a:before,.sd-social-official .sd-content>ul>li>a.sd-button:before{margin-bottom:-1px;top:0}.sd-social-icon .sd-content ul li a.sd-button:active,.sd-social-icon .sd-content ul li a.sd-button:hover,.sd-social-icon-text .sd-content ul li a.sd-button:active,.sd-social-icon-text .sd-content ul li a.sd-button:hover,.sd-social-official .sd-content>ul>li .digg_button>a:active,.sd-social-official .sd-content>ul>li .digg_button>a:hover,.sd-social-official .sd-content>ul>li>a.sd-button:active,.sd-social-official .sd-content>ul>li>a.sd-button:hover,.sd-social-text .sd-content ul li a.sd-button:active,.sd-social-text .sd-content ul li a.sd-button:hover{color:#555;background:#fafafa;border:1px solid #999}.sd-social-icon .sd-content ul li a.sd-button:active,.sd-social-icon-text .sd-content ul li a.sd-button:active,.sd-social-official .sd-content>ul>li .digg_button>a:active,.sd-social-official .sd-content>ul>li>a.sd-button:active,.sd-social-text .sd-content ul li a.sd-button:active{box-shadow:inset 0 1px 0 rgba(0,0,0,.16)}.sd-content ul li a.sd-button:before{display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font:400 16px/1 Genericons;vertical-align:top;position:relative;top:3px;text-align:center}.sd-content ul li{margin:0!important;padding:0}.sd-content ul li.preview-item a.sd-button span,.sd-social-icon-text .sd-content ul li a span,.sd-social-official .sd-content ul li a.sd-button span{margin-left:3px}.sd-content ul li.preview-item.no-icon a.sd-button span{margin-left:0}.sd-content ul li.no-icon a:before,.sd-social-text .sd-content ul li a:before{display:none}body .sd-content ul li.share-custom.no-icon a span,body .sd-social-text .sd-content ul li.share-custom a span{background-image:none;background-position:-500px -500px!important;background-repeat:no-repeat!important;padding-left:0;height:0;line-height:inherit}.sd-social-icon .sd-content ul li a.share-more{position:relative;top:2px}.sd-social-icon .sd-content ul li a.share-more span{margin-left:3px}.sd-content ul li.share-print div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-print a:before,.sd-social-icon-text .sd-content li.share-print a:before,.sd-social-official .sd-content li.share-print a:before,.sd-social-text .sd-content ul li.share-print a:before{content:'\f469'}.sd-content ul li.share-email div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-email a:before,.sd-social-icon-text .sd-content li.share-email a:before,.sd-social-official .sd-content li.share-email a:before,.sd-social-text .sd-content ul li.share-email a:before{content:'\f410'}.sd-content ul li.share-linkedin div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-linkedin a:before,.sd-social-icon-text .sd-content li.share-linkedin a:before,.sd-social-text .sd-content ul li.share-linkedin a:before{content:'\f207'}.sd-content ul li.share-twitter div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-twitter a:before,.sd-social-icon-text .sd-content li.share-twitter a:before,.sd-social-text .sd-content ul li.share-twitter a:before{content:'\f202'}.sd-content ul li.share-reddit div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-reddit a:before,.sd-social-icon-text .sd-content li.share-reddit a:before,.sd-social-text .sd-content ul li.share-reddit a:before{content:'\f222'}.sd-content ul li.share-tumblr div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-tumblr a:before,.sd-social-icon-text .sd-content li.share-tumblr a:before,.sd-social-text .sd-content ul li.share-tumblr a:before{content:'\f214'}.sd-content ul li.share-stumbleupon div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-stumbleupon a:before,.sd-social-icon-text .sd-content li.share-stumbleupon a:before,.sd-social-text .sd-content ul li.share-stumbleupon a:before{content:'\f223'}.sd-content ul li.share-pocket div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-pocket a:before,.sd-social-icon-text .sd-content li.share-pocket a:before,.sd-social-text .sd-content ul li.share-pocket a:before{content:'\f224'}.sd-content ul li.share-pinterest div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-pinterest a:before,.sd-social-icon-text .sd-content li.share-pinterest a:before,.sd-social-text .sd-content ul li.share-pinterest a:before{content:'\f209'}.sd-content ul li.share-google-plus-1 div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-google-plus-1 a:before,.sd-social-icon-text .sd-content li.share-google-plus-1 a:before,.sd-social-text .sd-content ul li.share-google-plus-1 a:before{content:'\f218'}.sd-content ul li.share-facebook div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-facebook a:before,.sd-social-icon-text .sd-content li.share-facebook a:before,.sd-social-text .sd-content ul li.share-facebook a:before{content:'\f204'}.sd-content ul li.share-press-this div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-press-this a:before,.sd-social-icon-text .sd-content li.share-press-this a:before,.sd-social-official .sd-content li.share-press-this a:before,.sd-social-text .sd-content ul li.share-press-this a:before{content:'\f205'}.sd-social-official .sd-content li.share-press-this a:before{color:#2ba1cb}.sd-content ul li.advanced a.share-more:before,.sd-social-icon .sd-content ul a.share-more:before,.sd-social-icon-text .sd-content a.share-more:before,.sd-social-official .sd-content a.share-more:before,.sd-social-text .sd-content ul a.share-more:before{content:'\f415'}.sd-social-official .sd-content a.share-more:before{color:#2ba1cb}.sd-social .sd-button .share-count{background:#2ea2cc;color:#fff;border-radius:10px;display:inline-block;text-align:center;font-size:10px;padding:1px 3px;line-height:1}.sd-social-official .sd-content ul,.sd-social-official .sd-content ul li{line-height:25px!important}.sd-social-official .sd-content>ul>li>a.sd-button span{line-height:1}.sd-social-official .sd-content ul:after{content:".";display:block;height:0;clear:both;visibility:hidden}.sd-social-official .sd-content li.share-press-this a{margin:0 0 5px}.sd-social-official .sd-content ul>li{display:block;float:left;margin:0 10px 5px 0!important;height:25px}.sd-social-official .fb-share-button>span{vertical-align:top!important}.sd-social-official .sd-content .pocket_button iframe{width:98px}.sd-social-official .sd-content .twitter_button iframe{width:96px}.reddit_button iframe,.stumbleupon_button iframe{margin-top:1px}.googleplus1_button iframe,.linkedin_button>span,.pinterest_button,.pocket_button iframe,.twitter_button{margin:0!important}body .sd-social-official li a.share-more,body .sd-social-official li.share-custom a,body .sd-social-official li.share-digg a,body .sd-social-official li.share-email a,body .sd-social-official li.share-press-this a,body .sd-social-official li.share-print{position:relative;top:0}body .sd-social-icon .sd-content li.share-custom>a{padding:2px 3px 0;position:relative;top:4px}body .sd-content ul li.share-custom a.share-icon span,body .sd-social-icon .sd-content li.share-custom a span,body .sd-social-icon-text .sd-content li.share-custom a span,body .sd-social-official .sd-content li.share-custom a span,body .sd-social-text .sd-content li.share-custom a span{background-size:16px 16px;background-repeat:no-repeat;margin-left:0;padding:0 0 0 19px;display:inline-block;height:16px;line-height:16px}body .sd-social-icon .sd-content li.share-custom a span{width:0}body .sd-social-icon .sd-content li.share-custom a span{padding-left:16px!important}.sharing-hidden .inner{position:absolute;z-index:2;border:1px solid #ccc;padding:10px;background:#fff;box-shadow:0 5px 20px rgba(0,0,0,.2);border-radius:2px;margin-top:5px;max-width:400px}.sharing-hidden .inner ul{margin:0!important}.sd-social-official .sd-content .sharing-hidden ul>li.share-end{clear:both;margin:0;height:0}.sharing-hidden .inner:after,.sharing-hidden .inner:before{position:absolute;z-index:1;top:-8px;left:20px;width:0;height:0;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:8px solid #ccc;content:"";display:block}.sharing-hidden .inner:after{z-index:2;top:-7px;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:8px solid #fff}.sharing-hidden ul{margin:0}.sd-social-icon .sd-content ul li[class*=share-] a,.sd-social-icon .sd-content ul li[class*=share-] a:hover,.sd-social-icon .sd-content ul li[class*=share-] div.option a{border-radius:50%;-webkit-border-radius:50%;border:0;box-shadow:none;padding:8px;position:relative;top:-2px;line-height:1;width:auto;height:auto;margin-bottom:0}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button>span,.sd-social-icon .sd-content ul li[class*=share-] div.option a span{line-height:1}.sd-social-icon .sd-content ul li[class*=share-] a:hover,.sd-social-icon .sd-content ul li[class*=share-] div.option a:hover{border:none;opacity:.6}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button:before{top:0}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button.share-custom{padding:8px 8px 6px;top:5px}.sd-social-icon .sd-content ul li a.sd-button.share-more{margin-left:10px}.sd-social-icon .sd-content ul li:first-child a.sd-button.share-more{margin-left:0}.sd-social-icon .sd-button span.share-count{position:absolute;bottom:0;right:0;border-radius:0;background:#555;font-size:9px}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button{background:#e9e9e9;margin-top:2px;text-indent:0}.sd-social-icon .sd-content ul li[class*=share-].share-tumblr a.sd-button{background:#2c4762;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-facebook a.sd-button{background:#3b5998;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-stumbleupon a.sd-button{background:#ea4b24;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-twitter a.sd-button{background:#00acee;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-pinterest a.sd-button{background:#ca1f27;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-digg a.sd-button{color:#555!important}.sd-social-icon .sd-content ul li[class*=share-].share-press-this a.sd-button{background:#1e8cbe;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-linkedin a.sd-button{background:#0077b5;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-google-plus-1 a.sd-button{background:#dd4b39;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-pocket a.sd-button{background:#ee4056;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-reddit a.sd-button{background:#cee3f8;color:#555!important}.sharing-screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}.sharing-screen-reader-text:active,.sharing-screen-reader-text:focus,.sharing-screen-reader-text:hover{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}#sharing_email{width:342px;position:absolute;z-index:1001;border:1px solid #ccc;padding:15px;background:#fff;box-shadow:0 5px 20px rgba(0,0,0,.2);text-align:left}div.sharedaddy.sharedaddy-dark #sharing_email{border-color:#fff}#sharing_email .errors{color:#fff;background-color:#771a09;font-size:12px;padding:5px 8px;line-height:1;margin:10px 0 0}#sharing_email label{font-size:12px;color:#333;font-weight:700;display:block;padding:0 0 4px;text-align:left;text-shadow:none}#sharing_email form{margin:0}#sharing_email input[type=email],#sharing_email input[type=text]{width:100%;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;border:1px solid #ccc;margin-bottom:1em;background:#fff;font-size:12px;color:#333;max-width:none;padding:1px 3px}#jetpack-source_f_name{display:none!important;position:absolute!important;left:-9000px}#sharing_email .sharing_cancel{padding:0 0 0 1em;font-size:12px;text-shadow:none}#sharing_email .recaptcha{width:312px;height:123px;margin:0 0 1em}.slideshow-window{background-color:#222;border:20px solid #222;border-radius:10px;height:0;margin-bottom:20px;overflow:hidden;padding-top:30px!important;padding-bottom:56.25%!important;position:relative;z-index:1}.slideshow-window.slideshow-white{background-color:#fff;border-color:#fff}.slideshow-window,.slideshow-window *{-moz-box-sizing:content-box;box-sizing:content-box}.slideshow-loading{height:100%;text-align:center;margin:auto}body div.slideshow-window * img{background-color:transparent!important;background-image:none!important;border-width:0!important;display:block;margin:0 auto;max-width:100%;max-height:100%;padding:0!important;position:relative;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);top:50%}.slideshow-loading img{vertical-align:middle}.slideshow-slide{display:none;height:100%!important;left:0;margin:auto;position:absolute;text-align:center;top:0;width:100%!important}.slideshow-slide img{vertical-align:middle}.slideshow-line-height-hack{overflow:hidden;width:0;font-size:0}.slideshow-slide-caption{font-size:13px;font-family:"Helvetica Neue",sans-serif;color:#f7f7f7;text-shadow:#222 1px 1px 2px;line-height:25px;height:25px;position:absolute;bottom:5px;left:0;z-index:100;width:100%;text-align:center}.slideshow-controls{z-index:1000;position:absolute;bottom:30px;margin:auto;text-align:center;width:100%;-ms-filter:"alpha(Opacity=50)";opacity:.5;direction:ltr;transition:300ms opacity ease-out}.slideshow-window:hover .slideshow-controls{-ms-filter:"alpha(Opacity=100)";opacity:1}body div div.slideshow-controls a,body div div.slideshow-controls a:hover{border:2px solid rgba(255,255,255,.1)!important;background-color:#000!important;background-color:rgba(0,0,0,.6)!important;background-image:url(../modules/shortcodes/img/slideshow-controls.png)!important;background-repeat:no-repeat;background-size:142px 16px!important;background-position:-34px 8px!important;color:#222!important;margin:0 5px!important;padding:0!important;display:inline-block!important;zoom:1;height:32px!important;width:32px!important;line-height:32px!important;text-align:center!important;-khtml-border-radius:10em!important;border-radius:10em!important;transition:300ms border-color ease-out}@media only screen and (-webkit-min-device-pixel-ratio:1.5){body div div.slideshow-controls a,body div div.slideshow-controls a:hover{background-image:url(../modules/shortcodes/img/slideshow-controls-2x.png)!important}}body div div.slideshow-controls a:hover{border-color:rgba(255,255,255,1)!important}body div div.slideshow-controls a:first-child{background-position:-76px 8px!important}body div div.slideshow-controls a:last-child{background-position:-117px 8px!important}body div div.slideshow-controls a.running,body div div.slideshow-controls a:nth-child(2){background-position:-34px 8px!important}body div div.slideshow-controls a.paused{background-position:9px 8px!important}.slideshow-controls a img{border:50px dotted #f0f}body.presentation-wrapper-fullscreen-parent,html.presentation-wrapper-fullscreen-parent{overflow:hidden!important}.presentation-wrapper-fullscreen-parent #wpadminbar{display:none}.presentation-wrapper-fullscreen,.presentation-wrapper-fullscreen-parent{min-width:100%!important;min-height:100%!important;position:absolute!important;top:0!important;right:0!important;bottom:0!important;left:0!important;margin:0!important;padding:0!important;z-index:10000!important}.presentation-wrapper-fullscreen{background-color:gray;border:none!important}.presentation-wrapper-fullscreen .nav-arrow-left,.presentation-wrapper-fullscreen .nav-arrow-right{z-index:20001}.presentation-wrapper-fullscreen .nav-fullscreen-button{z-index:20002}.presentation-wrapper{margin:20px auto;border:1px solid #e5e5e5;overflow:hidden;line-height:normal}.presentation{position:relative;margin:0;overflow:hidden;outline:0}.presentation,.presentation .step{background-repeat:no-repeat;background-position:center;background-size:100% 100%}.presentation .step.fade:not(.active){opacity:0}.presentation .slide-content{padding:30px}.presentation .nav-arrow-left,.presentation .nav-arrow-right,.presentation .nav-fullscreen-button{position:absolute;width:34px;background-repeat:no-repeat;z-index:2;opacity:0;transition:opacity .25s}.presentation .nav-arrow-left,.presentation .nav-arrow-right{height:100%;background-image:url(../modules/shortcodes/images/slide-nav.png);background-size:450% 61px}.presentation .nav-arrow-left{left:0;background-position:4px 50%}.presentation .nav-arrow-right{right:0;background-position:-120px 50%}.presentation .nav-fullscreen-button{width:32px;height:32px;margin:4px;bottom:0;right:0;z-index:3;background-image:url(../modules/shortcodes/images/expand.png);background-size:100% 100%}.presentation:hover .nav-arrow-left,.presentation:hover .nav-arrow-right{opacity:1}.presentation:hover .nav-fullscreen-button{opacity:.8}.presentation-wrapper-fullscreen .nav-fullscreen-button{background-image:url(../modules/shortcodes/images/collapse.png)}.presentation .autoplay-overlay{height:15%;width:80%;margin:30% 10%;position:relative;z-index:100;display:table;border-radius:50px;background-color:#e5e5e5;background-color:rgba(0,0,0,.75);transition:opacity .5s}.presentation .autoplay-overlay .overlay-msg{position:relative;display:table-cell;text-align:center;vertical-align:middle;color:#fff}.presentation .will-fade{opacity:0}.presentation .do-fade{opacity:1;transition:opacity .5s}#subscribe-email input{width:95%;padding:1px 2px}.comment-subscription-form .subscribe-label{display:inline!important}.jetpack-video-wrapper{margin-bottom:1.6em}.jetpack-video-wrapper>.wp-video,.jetpack-video-wrapper>embed,.jetpack-video-wrapper>iframe,.jetpack-video-wrapper>object{margin-bottom:0}.tiled-gallery{clear:both;margin:0 0 20px;overflow:hidden}.tiled-gallery img{margin:2px!important}.tiled-gallery .gallery-group{float:left;position:relative}.tiled-gallery .tiled-gallery-item{float:left;margin:0;position:relative;width:inherit}.tiled-gallery .gallery-row{overflow:hidden}.tiled-gallery .tiled-gallery-item a{background:0 0;border:none;color:none;margin:0;padding:0;text-decoration:none;width:auto}.tiled-gallery .tiled-gallery-item img,.tiled-gallery .tiled-gallery-item img:hover{background:0 0;border:none;box-shadow:none;max-width:100%;padding:0;vertical-align:middle}.tiled-gallery-caption{background:#eee;background:rgba(255,255,255,.8);color:#333;font-size:13px;font-weight:400;overflow:hidden;padding:10px 0;position:absolute;bottom:0;text-indent:10px;text-overflow:ellipsis;width:100%;white-space:nowrap}.tiled-gallery .tiled-gallery-item-small .tiled-gallery-caption{font-size:11px}.widget-gallery .tiled-gallery-unresized{visibility:hidden;height:0;overflow:hidden}.tiled-gallery .tiled-gallery-item img.grayscale{position:absolute;left:0;top:0}.tiled-gallery .tiled-gallery-item img.grayscale:hover{opacity:0}.tiled-gallery.type-circle .tiled-gallery-item img{border-radius:50%!important}.tiled-gallery.type-circle .tiled-gallery-caption{display:none;opacity:0}.jetpack-display-remote-posts{margin:5px 0 20px}.jetpack-display-remote-posts h4{font-size:90%;margin:5px 0;padding:0}.jetpack-display-remote-posts h4 a{text-decoration:none}.jetpack-display-remote-posts p{margin:0!important;padding:0;line-height:1.4em!important;font-size:90%}.jetpack-display-remote-posts img{max-width:100%}.widget-grofile h4{margin:1em 0 .5em}.widget-grofile ul.grofile-urls{margin-left:0;overflow:hidden}.widget-grofile ul.grofile-accounts li{list-style:none;display:inline}.wid
1
  /*!
2
  * Do not modify this file directly. It is concatenated from individual module CSS files.
3
  */