Changeset 1710669
- Timestamp:
- 08/09/2017 01:17:35 AM (9 years ago)
- Location:
- weather-press/trunk
- Files:
-
- 11 edited
-
README.txt (modified) (3 diffs)
-
includes/class-weather-press-fetcher.php (modified) (1 diff)
-
includes/class-weather-press-widget.php (modified) (9 diffs)
-
includes/class-weather-press.php (modified) (4 diffs)
-
public/class-weather-press-public.php (modified) (6 diffs)
-
public/css/weather-press-public-min.css (modified) (1 diff)
-
public/css/weather-press-public.css (modified) (2 diffs)
-
public/images/container-bg.png (modified) (previous)
-
public/js/weather-press-public-min.js (modified) (1 diff)
-
public/js/weather-press-public.js (modified) (2 diffs)
-
weather-press.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
weather-press/trunk/README.txt
r1697235 r1710669 5 5 Requires at least: 3.3 6 6 Tested up to: 4.8 7 Stable tag: 4. 27 Stable tag: 4.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 180 180 == Changelog == 181 181 182 = 4.3 = 183 * bugs correction 184 182 185 = 4.2 = 183 186 * wordpress transients introduction … … 219 222 == Upgrade Notice == 220 223 221 = 4. 2=222 important update, worpress transients !224 = 4.3 = 225 important update, worpress transients, bugs correction ! -
weather-press/trunk/includes/class-weather-press-fetcher.php
r1697235 r1710669 71 71 public function __construct() { 72 72 73 //$this->appid = '7bce84a2818930d59eab65440656a817';74 73 $this->appid = '80c0790d1b594ea812167776d6215ecd';// since 4.0 rises 75 74 -
weather-press/trunk/includes/class-weather-press-widget.php
r1697235 r1710669 10 10 * The Widget Class 11 11 * 12 * @link https://www.weather-press.com 12 * @link https://www.weather-press.com/founder 13 13 * @since 2.4 14 14 * 15 * @package Weather_Press16 * @subpackage Weather_Press/includes15 * @package weather-press 16 * @subpackage weather-press/includes 17 17 * @author Zied Bouzidi <geagoir@gmail.com> 18 18 */ … … 44 44 45 45 parent::__construct( 46 46 47 $this->get_widget_slug(), 47 48 __( 'weather Press', $this->get_widget_slug() ), … … 68 69 */ 69 70 public function get_widget_slug() { 71 70 72 return $this->widget_slug; 71 73 } … … 100 102 $widget_string = $before_widget; 101 103 102 // Here is where you manipulate your widget's values based on their input fields104 // Here is where we manipulate our widget's values based on their input fields 103 105 ob_start(); 104 106 … … 112 114 $widget_string .= $after_widget; 113 115 114 115 116 $cache[ $args['widget_id'] ] = $widget_string; 116 117 … … 119 120 print $widget_string; 120 121 121 } // end widget 122 122 } // end of widget() 123 123 124 124 public function flush_widget_cache() … … 142 142 return $instance; 143 143 144 } // end widget144 }// end widget 145 145 146 146 /** … … 156 156 ?> 157 157 <p> 158 159 158 <a href='admin.php?page=weather-press' title="<?php _e('Settings'); ?>"><?php _e('Settings'); ?></a> 160 161 159 </p> 162 160 163 161 <p> 164 165 162 <label for="<?php echo $this->get_field_id('title'); ?>"> 166 167 163 <?php _e('Title'); ?> 168 169 164 <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /> 170 171 165 </label> 172 173 166 </p> 174 167 <?php 175 176 168 } // end form 177 169 … … 189 181 } // end widget_textdomain 190 182 191 /** 192 * Fired when the plugin is activated. 193 * 194 * @param boolean $network_wide True if WPMU superadmin uses "Network Activate" action, false if WPMU is disabled or plugin is activated on an individual blog. 195 */ 196 public function activate( $network_wide ) { 197 // Define activation functionality here 198 199 } // end activate 200 201 /** 202 * Fired when the plugin is deactivated. 203 * 204 * @param boolean $network_wide True if WPMU superadmin uses "Network Activate" action, false if WPMU is disabled or plugin is activated on an individual blog 205 */ 206 public function deactivate( $network_wide ) { 207 // Define deactivation functionality here 208 } // end deactivate 209 210 /** 211 * Registers and enqueues admin-specific styles. 212 */ 213 public function register_admin_styles() { 214 215 216 } // end register_admin_styles 217 218 /** 219 * Registers and enqueues admin-specific JavaScript. 220 */ 221 public function register_admin_scripts() { 222 223 224 } // end register_admin_scripts 225 226 /** 227 * Registers and enqueues widget-specific styles. 228 */ 229 public function register_widget_styles() { 230 231 } // end register_widget_styles 232 233 /** 234 * Registers and enqueues widget-specific scripts. 235 */ 236 public function register_widget_scripts() { 237 238 } // end register_widget_scripts 239 240 } // End of the Class 241 242 add_action( 'widgets_init', create_function( '', 'register_widget("weather_Press_Widget");' ) ); 183 } -
weather-press/trunk/includes/class-weather-press.php
r1697235 r1710669 69 69 70 70 $this->plugin_name = 'weather-press'; 71 $this->version = '4. 2';71 $this->version = '4.3'; 72 72 73 73 $this->load_dependencies(); … … 107 107 */ 108 108 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-weather-press-i18n.php'; 109 110 /** 111 * The class responsible for defining the weather press widget. 112 */ 113 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-weather-press-widget.php'; 109 114 110 115 /** … … 166 171 // Add the weather press fav icon to the header of the control panel 167 172 $this->loader->add_action('admin_head-toplevel_page_weather-press', $plugin_admin, 'weather_press_add_favicon'); 173 174 // the weather press widget hook 175 add_action( 'widgets_init', create_function( '', 'register_widget("weather_Press_Widget");' ) ); 168 176 169 177 } … … 184 192 185 193 //Ajax calls for the public-facing functionality 186 //$this->loader->add_action( 'wp_ajax_nopriv_weather_press_public_ajaxCalls', $plugin_public, 'weather_press_public_ajaxCalls' );187 194 $this->loader->add_action( 'wp_ajax_weather_press_public_ajaxCalls', $plugin_public, 'weather_press_public_ajaxCalls' ); 188 195 -
weather-press/trunk/public/class-weather-press-public.php
r1697235 r1710669 207 207 * Daily forecasts 208 208 * 209 * @since 8.3Rises209 * @since 4.0 Rises 210 210 * 211 211 */ … … 215 215 require_once ABSPATH . 'wp-content/plugins/weather-press/includes/class-weather-press-fetcher.php'; 216 216 217 // Translate the outputed messages217 // Translate the outputed errors messages 218 218 require_once ABSPATH . 'wp-content/plugins/weather-press/includes/class-weather-press-translator.php'; 219 219 220 220 //the request target :: current weather, hourly forecast or daily forecast ? 221 if ( isset($_REQUEST['find']) ) { 222 223 $find = $_REQUEST['find']; 224 225 } else { 226 227 $find = 'current';// Fallback 228 } 221 $find = isset($_REQUEST['find']) ? $_REQUEST['find'] : 'current'; 229 222 230 223 //check if the data should be cached via the wordpress transients 231 224 //geolocation requests MUST NOT BE CACHED, as this will create too much transients entries in the database 232 225 //Also refresh requests should not get a cached value 233 if ( isset($_REQUEST['save']) ) { 234 235 $cacheable = $_REQUEST['save']; 236 237 } else { 238 239 $cacheable = 0;// Fallback 240 } 226 $cacheable = isset($_REQUEST['save']) ? $_REQUEST['save'] : 0; 241 227 242 228 // Get the city name 243 if ( isset($_REQUEST['city']) ) { 244 245 $city = $_REQUEST['city']; 246 247 } else { 248 249 $city = 'tunis';// Fallback 250 } 229 $city = isset($_REQUEST['city']) ? $_REQUEST['city'] : 'tunis'; 251 230 252 231 // Get the temperature unit 253 if ( isset($_REQUEST['unit']) ) { 254 255 $unit = $_REQUEST['unit']; 256 257 } else { 258 259 $unit = 'metric';// Fallback 260 } 232 $unit = isset($_REQUEST['unit']) ? $_REQUEST['unit'] : 'metric'; 261 233 262 234 // Get the forecast number of days 263 if ( isset($_REQUEST['nbrDays']) ) { 264 265 $nbrDays = $_REQUEST['nbrDays']; 266 267 } else { 268 269 $nbrDays = 3;// Fallback 270 } 235 $nbrDays = isset($_REQUEST['nbrDays']) ? $_REQUEST['nbrDays'] : 3; 271 236 272 237 // Get the current language 273 if ( isset($_REQUEST['language']) ) { 274 275 $language = $_REQUEST['language']; 276 277 } else { 278 279 $language = 'EN';// Fallback 280 } 238 $language = isset($_REQUEST['language']) ? $_REQUEST['language'] : 'EN'; 281 239 282 240 $weather_press_Translation_Object = new Weather_Press_Translator( $language ); 283 241 $weather_press_Translation = $weather_press_Translation_Object->weather_press_returned_Translation; 284 285 242 286 243 try { 287 244 288 $XML_doc = $this->weather_Press_xmlIni( ABSPATH . 'wp-content/plugins/weather-press/includes/weather-press-config.xml' ); 289 290 $xpath = new DOMXPath( $XML_doc ); 291 292 $weather_press_Cache = 20; 293 294 $weather_press_transient_name = str_replace( ' ', '_', $city ); 245 $weather_press_Cache = 20; 246 295 247 //we use encodeURIComponent(city) in the js file so: 296 $weather_press_transient_name = str_replace( '%20', '_', $city ); 248 $weather_press_transient_name = preg_replace('/%u([0-9a-f]{3,4})/i','&#x\\1;',urldecode($city)); 249 $weather_press_transient_name = html_entity_decode($weather_press_transient_name,null , 'UTF-8'); 250 //replace white spaces with underscore :: needed in some cases 251 $weather_press_transient_name = preg_replace('/[\s]+/', '_', $weather_press_transient_name); 297 252 298 253 $weather_press_content_fetcher = new weather_Press_Fetcher(); … … 305 260 if( $cacheable == 1 ) { 306 261 307 if( false === ( $weather_press_transient_response = get_transient( 'weather_press_'. $weather_press_transient_name .'_current_transient' ) ) ) { 262 // If the transient does not exist, does not have a value, or has expired 263 if( false === ( $weather_press_transient_response = get_transient( 'weather_press_'. $weather_press_transient_name .'_current_transient' ) ) ) { 308 264 309 265 $weather_press_transient_data = $weather_press_content_fetcher->getCurrentWeatherData( $city, $unit ); … … 329 285 if( $cacheable == 1 ) { 330 286 331 if( false === ( $weather_press_transient_response = get_transient( 'weather_press_'. $weather_press_transient_name .'_hourly_transient' ) ) ) { 287 // If the transient does not exist, does not have a value, or has expired 288 if( false === ( $weather_press_transient_response = get_transient( 'weather_press_'. $weather_press_transient_name .'_hourly_transient' ) ) ) { 332 289 333 290 $weather_press_transient_data = $weather_press_content_fetcher->getWeatherHourlyForecast( $city, $unit ); … … 353 310 if( $cacheable == 1 ) { 354 311 355 if( false === ( $weather_press_transient_response = get_transient( 'weather_press_'. $weather_press_transient_name .'_daily_transient' ) ) ) { 312 // If the transient does not exist, does not have a value, or has expired 313 if( false === ( $weather_press_transient_response = get_transient( 'weather_press_'. $weather_press_transient_name .'_daily_transient' ) ) ) { 356 314 357 315 $weather_press_transient_data = $weather_press_content_fetcher->getWeatherDailyForecast( $city, $unit, $nbrDays, $language ); … … 391 349 } 392 350 393 } 351 } 394 352 395 353 /** -
weather-press/trunk/public/css/weather-press-public-min.css
r1697235 r1710669 1 @import url(animation-min.css);@import url(chartist-min.css);#weather-press-layoutContainer a,#weather-press-layoutContainer a:hover{color:inherit;text-decoration:none}@font-face{font-family:norwester;src:url(fonts/norwester.ttf) format("truetype");src:url(fonts/norwester.otf) format("opentype")}@font-face{font-family:DroidKufi;src:url(fonts/DroidKufi-Bold.ttf) format("truetype")}@font-face{font-family:Twiddlestix;src:url(fonts/Twiddlestix.otf) format("opentype")}#weather-press-layoutContainer li,#weather-press-layoutContainer ul{list-style:none;position:relative}#weather-press-layoutContainer img{width:auto;height:auto;max-width:100%;vertical-align:middle;border:0;box-shadow:none;-ms-interpolation-mode:bicubic}#weather-press-layoutContainer svg:not(:root){overflow:hidden}#weather-press-layoutContainer div:after,#weather-press-layoutContainer div:before,#weather-press-layoutContainer li:after,#weather-press-layoutContainer li:before,#weather-press-layoutContainer span:after,#weather-press-layoutContainer span:before,#weather-press-layoutContainer ul:after,#weather-press-layoutContainer ul:before{content:'';content:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#weather-press-layoutContainer div,#weather-press-layoutContainer li,#weather-press-layoutContainer span,#weather-press-layoutContainer ul{position:relative;margin:0;padding:0;border:0;text-shadow:none;box-shadow:none;font-family:"Open Sans",DroidKufi,Arial,Helvetica,sans-serif;font-weight:700;vertical-align:baseline;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;direction:ltr;background-image:none;background-color:transparent}#weather-press-layoutContainer a:active,#weather-press-layoutContainer a:focus{outline:0!important;box-shadow:none!important}#weather-press-layoutContainer{all:revert;position:relative;display:inline-block;max-width:440px;min-width:221px;width:100%;text-align:center;border:1px solid #3F4040;background-color:#F5F6F7;box-shadow:0 0 0 2px rgba(255,255,255,.6) inset;z-index:111;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.weather-press-loader{position:absolute!important;top:0;left:0;height:100%;width:100%;text-align:right;background-image:url(../images/weather-press-loader.gif)!important;background-repeat:no-repeat;background-attachment:scroll;background-position:center bottom;background-size:123px auto;background-color:rgba(241,243,243,1)!important;z-index:118;-moz-transform:scale(0,0);-webkit-transform:scale(0,0);-o-transform:scale(0,0);-ms-transform:scale(0,0);transform:scale(0,0)}#weather-press-layoutContainer .weather-press-closeIcon,.weather-press-chart-loader{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:center center}.weather-press-chart-loader{position:absolute!important;top:0;bottom:0;right:0;left:0;margin:auto!important;height:33px;width:33px;background-image:url(../images/weather-press-chart-loader.svg);background-size:33px auto;z-index:112}#weather-press-layoutContainer .weather-press-closeIcon{display:inline-block;height:38px;width:38px;border-radius:50%;margin-top:8px!important;margin-right:8px!important;cursor:pointer;background-image:url(../images/close_icon.svg);background-size:22px auto;transition:all 150ms cubic-bezier(.68,-.55,.265,1.55);-moz-transition:all 150ms cubic-bezier(.68,-.55,.265,1.55);-ms-transition:all 150ms cubic-bezier(.68,-.55,.265,1.55);-o-transition:all 150ms cubic-bezier(.68,-.55,.265,1.55);-webkit-transition:all 150ms cubic-bezier(.68,-.55,.265,1.55)}#weather-press-layoutContainer .weather-press-closeIcon:hover{background-size:28px auto;box-shadow:0 0 8px 0 rgba(33,33,24,.2) inset!important}#weather-press-layoutContainer .weather-press-closeIcon:active,#weather-press-layoutContainer .weather-press-closeIcon:focus{background-size:18px auto;box-shadow:0 0 8px 0 rgba(33,33,24,.5) inset!important}#weather-press-layoutContainer .weather-press-signature{width:100%;min-height:80px;font-family:Twiddlestix,norwester,Oswald,Helvetica,sans-serif!important;line-height:1.2em;font-size:2.8em;text-align:center;color:#666;letter-spacing:2px;padding:10px!important;z-index:inherit}#weather-press-layoutContainer .weather-press-outputs{display:inline-block;padding:20px 20px 40px!important;text-align:left;font-size:18px;line-height:30px;background-color:rgba(241,243,243,1);color:#f41}#weather-press-layoutContainer .weather-press-outputs-content{display:inline-block;width:100%;text-align:inherit;font-size:inherit;line-height:inherit;color:inherit}#weather-press-layoutContainer .weather-press-outputs-notice{display:inline-block;width:100%;text-align:inherit;color:#888;font-size:11px}#weather-press-layoutContainer .weather-press-outputs-notice em{font-size:inherit;color:#f41;font-weight:700}#weather-press-layoutContainer .weather-press-outputs-toPremium{position:absolute!important;left:0;bottom:0;display:inline-block;width:100%;padding:18px 0 0 50px!important;background-color:rgba(241,243,243,1);text-align:inherit;font-size:15px;opacity:0}#weather-press-layoutContainer .weather-press-outputs-toPremium:before{position:absolute!important;content:""!important;top:18px;left:20px;height:28px;width:72px;font-size:inherit;background:url(../images/se_icn_green.png) left center no-repeat}#weather-press-layoutContainer .weather-press-outputs-toPremium a{color:#222!important;font-size:inherit;text-shadow:none}#weather-press-layoutContainer .weather-press-outputs-toPremium a:hover{color:#15C667!important;text-decoration:underline!important}#weather-press-layoutContainer .weather-press-bgLevel2Container{position:absolute!important;top:0;left:0;height:100%;width:100%;overflow:hidden;z-index:-2}#weather-press-layoutContainer .weather-press-bgLevel2{height:100%;width:100%;background-color:#F5F6F7;background-image:url(../images/container-bg.png);background-repeat:no-repeat;background-position:bottom center;background-size:cover}#weather-press-layoutContainer .weather-press-bgLevel3{position:absolute!important;top:0;left:0;height:40%;width:100%;background:-moz-linear-gradient(top,rgba(255,255,255,1) 0,rgba(255,255,255,. 4) 100%);background:-webkit-linear-gradient(top,rgba(255,255,255,1) 0,rgba(255,255,255,.4) 100%);background:linear-gradient(to bottom,rgba(255,255,255,1) 0,rgba(255,255,255,.4) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=0 );z-index:-1}#weather-press-layoutContainer .weather-press-mainListTop{padding:6px!important;min-height:174px}#weather-press-layoutContainer .weather-press-mainList{display:inline-block;width:100%}#weather-press-layoutContainer .weather-press-mainList>li{float:left}#weather-press-layoutContainer .weather-press-citiesListContainer{height:137px;width:60%;min-width:80px;background-color:rgba(251,249,249,.8);border-radius:6px;box-shadow:0 1px 2px rgba(0,0,0,.4) inset!important;overflow:hidden;z-index:inherit}#weather-press-layoutContainer .weather-press-mainListTop .weather-press-citiesListContainer>ul{margin-top:-4px;transition:all .3s cubic-bezier(.68,-.55,.265,1.55);-moz-transition:all .3s cubic-bezier(.68,-.55,.265,1.55);-ms-transition:all .3s cubic-bezier(.68,-.55,.265,1.55);-o-transition:all .3s cubic-bezier(.68,-.55,.265,1.55);-webkit-transition:all .3s cubic-bezier(.68,-.55,.265,1.55)}#weather-press-layoutContainer .weather-press-citiesListContainer>ul>li{float:none;width:100%;line-height:24px;height:23px;margin-bottom:6.3px!important;color:#555249;text-align:left;text-transform:uppercase;text-overflow:ellipsis;text-shadow:0 1px 0 #FFF!important;font-weight:700;white-space:nowrap;padding:3px 3px 3px 10px!important;overflow:hidden;cursor:pointer}#weather-press-layoutContainer .weather-press-citiesListContainer>ul>li a{display:block;width:100%;height:100%;line-height:inherit;color:inherit;text-align:inherit;text-transform:inherit;text-overflow:inherit;text-shadow:inherit;font-weight:inherit;white-space:inherit}#weather-press-layoutContainer .weather-press-deep1{font-size:10px;opacity:.3;color:#ACA9A9!important}#weather-press-layoutContainer .weather-press-citiesListContainer>ul>li.weather-press-deep2{font-size:12px;opacity:.6;padding-left:18px!important}#weather-press-layoutContainer .weather-press-citiesListContainer>ul>li.weather-press-centred{font-size:19px;opacity:0;color:transparent;padding-left:18px!important}#weather-press-layoutContainer .weather-press-citiesListContainer>ul>li:hover{opacity:1}#weather-press-layoutContainer .weather-press-citiesListContainer>ul>li.weather-press-centred:hover{opacity:0;color:transparent}#weather-press-layoutContainer .weather-press-navRectangle{position:absolute!important;left:-10px;top:54.5px;height:40px;width:70%;background-color:rgba(0,10,48,.1);background-repeat:no-repeat;background-position:right top;background-size:100% 100%;background-image:url(../images/widget-bg.png);border-radius:6px;border:1px solid #E1E1E1!important;box-shadow:0 0 0 2px rgba(255,255,255,.6) inset!important;z-index:112}#weather-press-navRectangle-mainLocation{display:block;float:left;height:100%;width:83%;line-height:39px;padding-left:33px!important;font-weight:700;text-align:left;color:#555249;text-shadow:0 1px 0 #fff!important;text-transform:uppercase;text-overflow:ellipsis;white-space:nowrap;font-size:19px;overflow:hidden;opacity:1;z-index:inherit;cursor:pointer}#weather-press-navRectangle-mainLocation:before{position:absolute!important;content:''!important;top:12px;left:18px;height:12px;width:12px;background:url(../images/marker.svg) center no-repeat;opacity:1}#weather-press-layoutContainer .weather-press-deep1:before,#weather-press-layoutContainer .weather-press-deep2:before{position:absolute!important;content:''!important;top:9px;left:3px;height:12px;width:12px;background:url(../images/marker.svg) center no-repeat;opacity:inherit}#weather-press-layoutContainer .weather-press-navRectangle>ul{display:block;height:38px;width:38px;float:right}#weather-press-layoutContainer .weather-press-navRectangle>ul>li{float:none;width:100%;height:50%;cursor:pointer;background-size:70%}#weather-press-layoutContainer .weather-press-navRectangle>ul>li:first-child{background:url(../images/nav-top.svg) center no-repeat}#weather-press-layoutContainer .weather-press-navRectangle>ul>li:last-child{background:url(../images/nav-bottom.svg) center no-repeat}#weather-press-layoutContainer .weather-press-navRectangle>ul>li:hover{background-size:80%}#weather-press-layoutContainer .weather-press-navRectangle>ul>li:active{background-size:100%}#weather-press-layoutContainer .weather-press-citiesListContainer>ul>li,#weather-press-layoutContainer .weather-press-navRectangle>ul>li{transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;-webkit-transition:all .3s ease}#weather-press-layoutContainer .weather-press-rightTopBlock{height:137px;width:40%;min-width:137px;z-index:inherit}#weather-press-layoutContainer .weather-press-rightTopBlock>ul{display:block;height:100%}#weather-press-layoutContainer .weather-press-rightTopBlock>ul>li{float:none;width:100%;height:50%;min-height:35px;line-height:35px;text-align:center;text-shadow:0 1px 0 #FFF!important;padding-left:18px!important;white-space:nowrap}#weather-press-layoutContainer .weather-press-icon{height:67px}#weather-press-layoutContainer .weather-press-icon img{position:absolute;top:0;right:0;margin:auto;height:145%!important;width:auto!important;z-index:0}#weather-press-layoutContainer .weather-press-currentTemp{color:#555249;font-size:3em;font-weight:700;font-family:norwester,Oswald,sans-serif!important}#weather-press-layoutContainer .weather-press-currentTempValue{position:absolute!important;top:28px;bottom:0;right:0;margin:auto;color:inherit;font-size:1.3em;line-height:normal;font-family:inherit!important;font-weight:inherit!important}#weather-press-layoutContainer .weather-press-currentTempUnit{position:absolute!important;bottom:0;left:46%;display:initial;font-size:12px;line-height:normal;font-family:inherit!important}#weather-press-layoutContainer .weather-press-fullWidthBlock{display:block;float:none!important;clear:both;width:100%;line-height:23px;font-size:15px;color:#555249;font-weight:400;text-shadow:0 1px 0 #FFF!important;padding:12px!important}#weather-press-layoutContainer .weather-press-conditionsBlock{text-align:left;color:#000;border-top:1px dotted #DEDEDE!important;border-bottom:1px dotted #DEDEDE!important;background-color:rgba(236,236,236,.9)}#weather-press-layoutContainer .weather-press-optionsBlock{height:36px;margin:0!important;padding:6px 0!important;background:url(../images/bottom-divider.png) bottom repeat-x rgba(63,64,64,1)}#weather-press-layoutContainer .weather-press-optionsBlock>ul{display:block;width:100%;height:24px;padding-left:6px!important}#weather-press-layoutContainer .weather-press-optionsBlock>ul>li{float:left}#weather-press-layoutContainer .weather-press-geoLoc,#weather-press-layoutContainer .weather-press-refrech{margin-right:4px!important;height:24px;width:24px;background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:center center;background-size:72%;cursor:pointer}#weather-press-layoutContainer .weather-press-geoLoc{background-image:url(../images/marker-gold.svg)}#weather-press-layoutContainer .weather-press-geoLoc-active{background-image:url(../images/marker-active.svg);background-size:100%}#weather-press-layoutContainer .weather-press-refrech{background-image:url(../images/refresh-white.svg)}#weather-press-layoutContainer .weather-press-geoLoc:hover,.weather-press-refrech:hover{background-size:80%}#weather-press-layoutContainer .weather-press-geoLoc:active,.weather-press-refrech:active{background-size:100%}#weather-press-layoutContainer .weather-press-forecasts{float:right!important}#weather-press-layoutContainer .weather-press-forecasts>ul>li{float:left;margin:5px 2px 0 0!important;width:16px;height:16px;cursor:pointer;background-image:url(../images/gold-dot.svg);background-color:transparent;background-position:center;background-repeat:no-repeat;background-attachment:scroll;background-size:66%}#weather-press-layoutContainer .weather-press-forecasts>ul>li.weather-press-forecasts-mainStatus{margin-right:14px!important}#weather-press-layoutContainer .weather-press-forecasts>ul>li.weather-press-forecast-active,#weather-press-layoutContainer .weather-press-forecasts>ul>li:hover{background-image:url(../images/gold-dot-active.svg);background-color:transparent;background-position:center;background-repeat:no-repeat;background-attachment:scroll;background-size:80%}#weather-press-layoutContainer .weather-press-forecasts>ul>li:active{background-size:100%}#weather-press-layoutContainer .weather-press-forecastBlock{height:180px;margin:0!important;background:-moz-linear-gradient(top,rgba(63,64,64,.3) 0,rgba(63,64,64,1) 67%);background:-webkit-linear-gradient(top,rgba(63,64,64,.3) 0,rgba(63,64,64,1) 67%);background:linear-gradient(to bottom,rgba(63,64,64,.3) 0,rgba(63,64,64,1) 67%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000', GradientType=0 )}#weather-press-layoutContainer .weather-press-forecastToolsList{display:block;background:url(../images/bottom-divider.png) top repeat-x rgba(63,64,64,1);padding:6px 10px!important;height:auto}#weather-press-layoutContainer .weather-press-forecastTools{width:100%;height:30px;text-align:center;background:0 0;z-index:inherit}#weather-press-layoutContainer .weather-press-forecastTools>ul>li{display:inline-block!important;width:30px;height:30px;color:#FFF;cursor:pointer;background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:center center;background-size:80%;opacity:1}#weather-press-layoutContainer .weather-press-forecastTools>ul>li:active{background-size:88%}#weather-press-layoutContainer .weather-press-tempTool{float:left;background-image:url(../images/temperature.svg)}#weather-press-layoutContainer .weather-press-tempTool:after{position:absolute!important;content:''!important;height:100%;width:2px;right:-10px;top:0;background:url(../images/tool-list-divider.png) center no-repeat}#weather-press-layoutContainer .weather-press-humidTool{display:inline-block;background-image:url(../images/humidity-gold.svg)}#weather-press-layoutContainer .weather-press-windTool{float:right;background-image:url(../images/wind-gold.svg)}#weather-press-layoutContainer .weather-press-windTool:after{position:absolute!important;content:''!important;height:100%;width:2px;left:-10px;top:0;background:url(../images/tool-list-divider.png) center no-repeat}#weather-press-layoutContainer .weather-press-forecastTools>ul>li.weather-press-tempTool-active{background-image:url(../images/temperature-active.svg);opacity:1;background-color:#4cb1ff;box-shadow:0 1px 0 hsla(0,0%,100%,.2) inset,0 0 0 1px hsla(0,0%,100%,.1) inset,0 1px 0 hsla(210,54%,20%,.03),0 0 4px hsla(206,100%,20%,.2);border-radius:50%}#weather-press-layoutContainer .weather-press-dailyForecast{position:absolute!important;width:100%;height:46%;left:0;bottom:0;z-index:113;background:#3E3F3F;overflow:hidden;-moz-transform:scale(0,0);-webkit-transform:scale(0,0);-o-transform:scale(0,0);-ms-transform:scale(0,0);transform:scale(0,0)}#weather-press-layoutContainer .weather-press-dailyForecast .weather-press-closeIcon{position:absolute!important;top:0;right:0;background-image:url(../images/close-icon-white.svg);z-index:inherit}#weather-press-layoutContainer .weather-press-dailyForecast li{display:flex;flex-direction:column;align-items:center;justify-content:center}#weather-press-layoutContainer .weather-press-dailyForecast>ul{display:block;height:100%;width:auto;color:#FFF;white-space:nowrap;text-align:left;direction:ltr;transition:all .3s cubic-bezier(.68,-.55,.265,1.55);-moz-transition:all .3s cubic-bezier(.68,-.55,.265,1.55);-ms-transition:all .3s cubic-bezier(.68,-.55,.265,1.55);-o-transition:all .3s cubic-bezier(.68,-.55,.265,1.55);-webkit-transition:all .3s cubic-bezier(.68,-.55,.265,1.55)}#weather-press-layoutContainer .weather-press-dailyForecast-mainItem{display:inline-block!important;height:100%;width:100%;margin-right:-4px!important}#weather-press-layoutContainer .weather-press-dailyForecast-mainItem ul{height:100%;width:100%;display:block}#weather-press-layoutContainer .weather-press-dailyForecast-mainItem>ul>li{float:none;width:100%;background:url(../images/bottom-divider.png) bottom repeat-x;padding:6px 11px!important}#weather-press-layoutContainer .weather-press-dailyForecast-mainItem .weather-press-forecastDate,#weather-press-layoutContainer .weather-press-dailyForecast-mainItem .weather-press-forecastDetails{height:25%;font-weight:700}#weather-press-layoutContainer .weather-press-dailyForecast-mainItem .weather-press-forecastDate{word-wrap:break-word;white-space:pre-wrap;color:#FCCF36}#weather-press-layoutContainer .weather-press-dailyForecast-mainItem .weather-press-forecastDetails{padding:0!important}#weather-press-layoutContainer .weather-press-forecastDetails-text{display:inline-block;color:inherit;font-size:inherit;word-wrap:break-word;white-space:pre-wrap;height:auto;width:100%;line-height:normal}#weather-press-layoutContainer .weather-press-forecastHumidityIcon,#weather-press-layoutContainer .weather-press-forecastMinmaxIcon,#weather-press-layoutContainer .weather-press-forecastWindIcon{position:absolute!important;top:-10px;height:20px;width:20px;opacity:.4}#weather-press-layoutContainer .weather-press-forecastMinmaxIcon{left:4px;background:url(../images/temperature-active.svg) center center no-repeat}#weather-press-layoutContainer .weather-press-forecastHumidityIcon{left:0;right:0;margin:auto!important;background:url(../images/humidity-active.svg) center center no-repeat}#weather-press-layoutContainer .weather-press-forecastWindIcon{right:4px;background:url(../images/wind-active.svg) center center no-repeat}#weather-press-layoutContainer .weather-press-dailyForecast-mainItem .weather-press-forecastIconTemp{height:50%}#weather-press-layoutContainer .weather-press-forecastIconTemp>ul>li{float:right;height:100%;width:50%;text-align:center}#weather-press-layoutContainer .weather-press-forecastIconTemp>ul>li:last-child{color:#FFF;padding:8%!important;font-size:3em;font-family:norwester,Oswald,sans-serif!important;font-weight:400}#weather-press-layoutContainer .weather-press-forecastIconTemp>ul>li img{display:inline-block;height:100%!important;width:auto!important}#weather-press-layoutContainer .weather-press-dailyForecast-mainItem .weather-press-forecastDetails>ul>li{float:left;width:33%;height:100%;text-align:center;word-wrap:break-word;background:url(../images/tool-list-divider.png) center right no-repeat}#weather-press-layoutContainer .weather-press-dailyForecast-mainItem .weather-press-forecastDetails>ul>li:last-child{background:0 0}1 @import url(animation-min.css);@import url(chartist-min.css);#weather-press-layoutContainer a,#weather-press-layoutContainer a:hover{color:inherit;text-decoration:none}@font-face{font-family:norwester;src:url(fonts/norwester.ttf) format("truetype");src:url(fonts/norwester.otf) format("opentype")}@font-face{font-family:DroidKufi;src:url(fonts/DroidKufi-Bold.ttf) format("truetype")}@font-face{font-family:Twiddlestix;src:url(fonts/Twiddlestix.otf) format("opentype")}#weather-press-layoutContainer li,#weather-press-layoutContainer ul{list-style:none;position:relative}#weather-press-layoutContainer img{width:auto;height:auto;max-width:100%;vertical-align:middle;border:0;box-shadow:none;-ms-interpolation-mode:bicubic}#weather-press-layoutContainer svg:not(:root){overflow:hidden}#weather-press-layoutContainer div:after,#weather-press-layoutContainer div:before,#weather-press-layoutContainer li:after,#weather-press-layoutContainer li:before,#weather-press-layoutContainer span:after,#weather-press-layoutContainer span:before,#weather-press-layoutContainer ul:after,#weather-press-layoutContainer ul:before{content:'';content:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#weather-press-layoutContainer div,#weather-press-layoutContainer li,#weather-press-layoutContainer span,#weather-press-layoutContainer ul{position:relative;margin:0;padding:0;border:0;text-shadow:none;box-shadow:none;font-family:"Open Sans",DroidKufi,Arial,Helvetica,sans-serif;font-weight:700;vertical-align:baseline;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;direction:ltr;background-image:none;background-color:transparent}#weather-press-layoutContainer a:active,#weather-press-layoutContainer a:focus{outline:0!important;box-shadow:none!important}#weather-press-layoutContainer{all:revert;position:relative;display:inline-block;max-width:440px;min-width:221px;width:100%;text-align:center;border:1px solid #3F4040;background-color:#F5F6F7;box-shadow:0 0 0 2px rgba(255,255,255,.6) inset;z-index:111;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.weather-press-loader{position:absolute!important;top:0;left:0;height:100%;width:100%;text-align:right;background-image:url(../images/weather-press-loader.gif)!important;background-repeat:no-repeat;background-attachment:scroll;background-position:center bottom;background-size:123px auto;background-color:rgba(241,243,243,1)!important;z-index:118;-moz-transform:scale(0,0);-webkit-transform:scale(0,0);-o-transform:scale(0,0);-ms-transform:scale(0,0);transform:scale(0,0)}#weather-press-layoutContainer .weather-press-closeIcon,.weather-press-chart-loader{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:center center}.weather-press-chart-loader{position:absolute!important;top:0;bottom:0;right:0;left:0;margin:auto!important;height:33px;width:33px;background-image:url(../images/weather-press-chart-loader.svg);background-size:33px auto;z-index:112}#weather-press-layoutContainer .weather-press-closeIcon{display:inline-block;height:38px;width:38px;border-radius:50%;margin-top:8px!important;margin-right:8px!important;cursor:pointer;background-image:url(../images/close_icon.svg);background-size:22px auto;transition:all 150ms cubic-bezier(.68,-.55,.265,1.55);-moz-transition:all 150ms cubic-bezier(.68,-.55,.265,1.55);-ms-transition:all 150ms cubic-bezier(.68,-.55,.265,1.55);-o-transition:all 150ms cubic-bezier(.68,-.55,.265,1.55);-webkit-transition:all 150ms cubic-bezier(.68,-.55,.265,1.55)}#weather-press-layoutContainer .weather-press-closeIcon:hover{background-size:28px auto;box-shadow:0 0 8px 0 rgba(33,33,24,.2) inset!important}#weather-press-layoutContainer .weather-press-closeIcon:active,#weather-press-layoutContainer .weather-press-closeIcon:focus{background-size:18px auto;box-shadow:0 0 8px 0 rgba(33,33,24,.5) inset!important}#weather-press-layoutContainer .weather-press-signature{width:100%;min-height:80px;font-family:Twiddlestix,norwester,Oswald,Helvetica,sans-serif!important;line-height:1.2em;font-size:2.8em;text-align:center;color:#666;letter-spacing:2px;padding:10px!important;z-index:inherit}#weather-press-layoutContainer .weather-press-outputs{display:inline-block;padding:20px 20px 40px!important;text-align:left;font-size:18px;line-height:30px;background-color:rgba(241,243,243,1);color:#f41}#weather-press-layoutContainer .weather-press-outputs-content{display:inline-block;width:100%;text-align:inherit;font-size:inherit;line-height:inherit;color:inherit}#weather-press-layoutContainer .weather-press-outputs-notice{display:inline-block;width:100%;text-align:inherit;color:#888;font-size:11px}#weather-press-layoutContainer .weather-press-outputs-notice em{font-size:inherit;color:#f41;font-weight:700}#weather-press-layoutContainer .weather-press-outputs-toPremium{position:absolute!important;left:0;bottom:0;display:inline-block;width:100%;padding:18px 0 0 50px!important;background-color:rgba(241,243,243,1);text-align:inherit;font-size:15px;opacity:0}#weather-press-layoutContainer .weather-press-outputs-toPremium:before{position:absolute!important;content:""!important;top:18px;left:20px;height:28px;width:72px;font-size:inherit;background:url(../images/se_icn_green.png) left center no-repeat}#weather-press-layoutContainer .weather-press-outputs-toPremium a{color:#222!important;font-size:inherit;text-shadow:none}#weather-press-layoutContainer .weather-press-outputs-toPremium a:hover{color:#15C667!important;text-decoration:underline!important}#weather-press-layoutContainer .weather-press-bgLevel2Container{position:absolute!important;top:0;left:0;height:100%;width:100%;overflow:hidden;z-index:-2}#weather-press-layoutContainer .weather-press-bgLevel2{height:100%;width:100%;background-color:#F5F6F7;background-image:url(../images/container-bg.png);background-repeat:no-repeat;background-position:bottom center;background-size:cover}#weather-press-layoutContainer .weather-press-bgLevel3{position:absolute!important;top:0;left:0;height:40%;width:100%;background:-moz-linear-gradient(top,rgba(255,255,255,1) 0,rgba(255,255,255,.7) 100%);background:-webkit-linear-gradient(top,rgba(255,255,255,1) 0,rgba(255,255,255,.7) 100%);background:linear-gradient(to bottom,rgba(255,255,255,1) 0,rgba(255,255,255,.7) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=0 );z-index:-1}#weather-press-layoutContainer .weather-press-mainListTop{padding:6px!important;min-height:174px}#weather-press-layoutContainer .weather-press-mainList{display:block;width:100%}#weather-press-layoutContainer .weather-press-mainList>li{float:left}#weather-press-layoutContainer .weather-press-citiesListContainer{height:137px;width:60%;min-width:80px;background-color:rgba(251,249,249,.8);border-radius:6px;box-shadow:0 1px 2px rgba(0,0,0,.4) inset!important;overflow:hidden;z-index:inherit}#weather-press-layoutContainer .weather-press-mainListTop .weather-press-citiesListContainer>ul{margin-top:-4px;transition:all .3s cubic-bezier(.68,-.55,.265,1.55);-moz-transition:all .3s cubic-bezier(.68,-.55,.265,1.55);-ms-transition:all .3s cubic-bezier(.68,-.55,.265,1.55);-o-transition:all .3s cubic-bezier(.68,-.55,.265,1.55);-webkit-transition:all .3s cubic-bezier(.68,-.55,.265,1.55)}#weather-press-layoutContainer .weather-press-citiesListContainer>ul>li{float:none;width:100%;line-height:24px;height:23px;margin-bottom:6.3px!important;color:#555249;text-align:left;text-transform:uppercase;text-overflow:ellipsis;text-shadow:0 1px 0 #FFF!important;font-weight:700;white-space:nowrap;padding:3px 3px 3px 10px!important;overflow:hidden;cursor:pointer}#weather-press-layoutContainer .weather-press-citiesListContainer>ul>li a{display:block;width:100%;height:100%;line-height:inherit;color:inherit;text-align:inherit;text-transform:inherit;text-overflow:inherit;text-shadow:inherit;font-weight:inherit;white-space:inherit}#weather-press-layoutContainer .weather-press-deep1{font-size:10px;opacity:.3;color:#ACA9A9!important}#weather-press-layoutContainer .weather-press-citiesListContainer>ul>li.weather-press-deep2{font-size:12px;opacity:.6;padding-left:18px!important}#weather-press-layoutContainer .weather-press-citiesListContainer>ul>li.weather-press-centred{font-size:19px;opacity:0;color:transparent;padding-left:18px!important}#weather-press-layoutContainer .weather-press-citiesListContainer>ul>li:hover{opacity:1}#weather-press-layoutContainer .weather-press-citiesListContainer>ul>li.weather-press-centred:hover{opacity:0;color:transparent}#weather-press-layoutContainer .weather-press-navRectangle{position:absolute!important;left:-10px;top:54.5px;height:40px;width:70%;background-color:rgba(0,10,48,.1);background-repeat:no-repeat;background-position:right top;background-size:100% 100%;background-image:url(../images/widget-bg.png);border-radius:6px;border:1px solid #E1E1E1!important;box-shadow:0 0 0 2px rgba(255,255,255,.6) inset!important;z-index:112}#weather-press-navRectangle-mainLocation{display:block;float:left;height:100%;width:83%;line-height:39px;padding-left:33px!important;font-weight:700;text-align:left;color:#555249;text-shadow:0 1px 0 #fff!important;text-transform:uppercase;text-overflow:ellipsis;white-space:nowrap;font-size:19px;overflow:hidden;opacity:1;z-index:inherit;cursor:pointer}#weather-press-navRectangle-mainLocation:before{position:absolute!important;content:''!important;top:12px;left:18px;height:12px;width:12px;background:url(../images/marker.svg) center no-repeat;opacity:1}#weather-press-layoutContainer .weather-press-deep1:before,#weather-press-layoutContainer .weather-press-deep2:before{position:absolute!important;content:''!important;top:9px;left:3px;height:12px;width:12px;background:url(../images/marker.svg) center no-repeat;opacity:inherit}#weather-press-layoutContainer .weather-press-navRectangle>ul{display:block;height:38px;width:38px;float:right}#weather-press-layoutContainer .weather-press-navRectangle>ul>li{float:none;width:100%;height:50%;cursor:pointer;background-size:70%}#weather-press-layoutContainer .weather-press-navRectangle>ul>li:first-child{background:url(../images/nav-top.svg) center no-repeat}#weather-press-layoutContainer .weather-press-navRectangle>ul>li:last-child{background:url(../images/nav-bottom.svg) center no-repeat}#weather-press-layoutContainer .weather-press-navRectangle>ul>li:hover{background-size:80%}#weather-press-layoutContainer .weather-press-navRectangle>ul>li:active{background-size:100%}#weather-press-layoutContainer .weather-press-citiesListContainer>ul>li,#weather-press-layoutContainer .weather-press-navRectangle>ul>li{transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;-webkit-transition:all .3s ease}#weather-press-layoutContainer .weather-press-rightTopBlock{height:137px;width:40%;min-width:137px;z-index:inherit}#weather-press-layoutContainer .weather-press-rightTopBlock>ul{display:block;height:100%}#weather-press-layoutContainer .weather-press-rightTopBlock>ul>li{float:none;width:100%;height:50%;min-height:35px;line-height:35px;text-align:center;text-shadow:0 1px 0 #FFF!important;padding-left:18px!important;white-space:nowrap}#weather-press-layoutContainer .weather-press-icon{height:67px}#weather-press-layoutContainer .weather-press-icon img{position:absolute;top:0;right:0;margin:auto;height:145%!important;width:auto!important;z-index:0}#weather-press-layoutContainer .weather-press-currentTemp{color:#555249;font-size:3em;font-weight:700;font-family:norwester,Oswald,sans-serif!important}#weather-press-layoutContainer .weather-press-currentTempValue{position:absolute!important;top:28px;bottom:0;right:0;margin:auto;color:inherit;font-size:1.3em;line-height:normal;font-family:inherit!important;font-weight:inherit!important}#weather-press-layoutContainer .weather-press-currentTempUnit{position:absolute!important;bottom:0;left:46%;display:initial;font-size:12px;line-height:normal;font-family:inherit!important}#weather-press-layoutContainer .weather-press-fullWidthBlock{display:block;float:none!important;clear:both;width:100%;line-height:23px;font-size:15px;color:#555249;font-weight:400;text-shadow:0 1px 0 #FFF!important;padding:12px!important}#weather-press-layoutContainer .weather-press-conditionsBlock{text-align:left;color:#000;border-top:1px dotted #DEDEDE!important;border-bottom:1px dotted #DEDEDE!important;background-color:rgba(236,236,236,.9)}#weather-press-layoutContainer .weather-press-optionsBlock{height:36px;margin:0!important;padding:6px 0!important;background:url(../images/bottom-divider.png) bottom repeat-x rgba(63,64,64,1)}#weather-press-layoutContainer .weather-press-optionsBlock>ul{display:block;width:100%;height:24px;padding-left:6px!important}#weather-press-layoutContainer .weather-press-optionsBlock>ul>li{float:left}#weather-press-layoutContainer .weather-press-geoLoc,#weather-press-layoutContainer .weather-press-refrech{margin-right:4px!important;height:24px;width:24px;background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:center center;background-size:72%;cursor:pointer}#weather-press-layoutContainer .weather-press-geoLoc{background-image:url(../images/marker-gold.svg)}#weather-press-layoutContainer .weather-press-geoLoc-active{background-image:url(../images/marker-active.svg);background-size:100%}#weather-press-layoutContainer .weather-press-refrech{background-image:url(../images/refresh-white.svg)}#weather-press-layoutContainer .weather-press-geoLoc:hover,.weather-press-refrech:hover{background-size:80%}#weather-press-layoutContainer .weather-press-geoLoc:active,.weather-press-refrech:active{background-size:100%}#weather-press-layoutContainer .weather-press-forecasts{float:right!important}#weather-press-layoutContainer .weather-press-forecasts>ul>li{float:left;margin:5px 2px 0 0!important;width:16px;height:16px;cursor:pointer;background-image:url(../images/gold-dot.svg);background-color:transparent;background-position:center;background-repeat:no-repeat;background-attachment:scroll;background-size:66%}#weather-press-layoutContainer .weather-press-forecasts>ul>li.weather-press-forecasts-mainStatus{margin-right:14px!important}#weather-press-layoutContainer .weather-press-forecasts>ul>li.weather-press-forecast-active,#weather-press-layoutContainer .weather-press-forecasts>ul>li:hover{background-image:url(../images/gold-dot-active.svg);background-color:transparent;background-position:center;background-repeat:no-repeat;background-attachment:scroll;background-size:80%}#weather-press-layoutContainer .weather-press-forecasts>ul>li:active{background-size:100%}#weather-press-layoutContainer .weather-press-forecastBlock{height:180px;margin:0!important;background:-moz-linear-gradient(top,rgba(63,64,64,.3) 0,rgba(63,64,64,1) 67%);background:-webkit-linear-gradient(top,rgba(63,64,64,.3) 0,rgba(63,64,64,1) 67%);background:linear-gradient(to bottom,rgba(63,64,64,.3) 0,rgba(63,64,64,1) 67%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000', GradientType=0 )}#weather-press-layoutContainer .weather-press-forecastToolsList{display:block;background:url(../images/bottom-divider.png) top repeat-x rgba(63,64,64,1);padding:6px 10px!important;height:auto}#weather-press-layoutContainer .weather-press-forecastTools{width:100%;height:30px;text-align:center;background:0 0;z-index:inherit}#weather-press-layoutContainer .weather-press-forecastTools>ul>li{display:inline-block!important;width:30px;height:30px;color:#FFF;cursor:pointer;background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:center center;background-size:80%;opacity:1}#weather-press-layoutContainer .weather-press-forecastTools>ul>li:active{background-size:88%}#weather-press-layoutContainer .weather-press-tempTool{float:left;background-image:url(../images/temperature.svg)}#weather-press-layoutContainer .weather-press-tempTool:after{position:absolute!important;content:''!important;height:100%;width:2px;right:-10px;top:0;background:url(../images/tool-list-divider.png) center no-repeat}#weather-press-layoutContainer .weather-press-humidTool{display:inline-block;background-image:url(../images/humidity-gold.svg)}#weather-press-layoutContainer .weather-press-windTool{float:right;background-image:url(../images/wind-gold.svg)}#weather-press-layoutContainer .weather-press-windTool:after{position:absolute!important;content:''!important;height:100%;width:2px;left:-10px;top:0;background:url(../images/tool-list-divider.png) center no-repeat}#weather-press-layoutContainer .weather-press-forecastTools>ul>li.weather-press-tempTool-active{background-image:url(../images/temperature-active.svg);opacity:1;background-color:#4cb1ff;box-shadow:0 1px 0 hsla(0,0%,100%,.2) inset,0 0 0 1px hsla(0,0%,100%,.1) inset,0 1px 0 hsla(210,54%,20%,.03),0 0 4px hsla(206,100%,20%,.2);border-radius:50%}#weather-press-layoutContainer .weather-press-dailyForecast{position:absolute!important;width:100%;height:46%;left:0;bottom:0;z-index:113;background:#3E3F3F;overflow:hidden;-moz-transform:scale(0,0);-webkit-transform:scale(0,0);-o-transform:scale(0,0);-ms-transform:scale(0,0);transform:scale(0,0)}#weather-press-layoutContainer .weather-press-dailyForecast .weather-press-closeIcon{position:absolute!important;top:0;right:0;background-image:url(../images/close-icon-white.svg);z-index:inherit}#weather-press-layoutContainer .weather-press-dailyForecast li{display:flex;flex-direction:column;align-items:center;justify-content:center}#weather-press-layoutContainer .weather-press-dailyForecast>ul{display:block;height:100%;width:auto;color:#FFF;white-space:nowrap;text-align:left;direction:ltr;transition:all .3s cubic-bezier(.68,-.55,.265,1.55);-moz-transition:all .3s cubic-bezier(.68,-.55,.265,1.55);-ms-transition:all .3s cubic-bezier(.68,-.55,.265,1.55);-o-transition:all .3s cubic-bezier(.68,-.55,.265,1.55);-webkit-transition:all .3s cubic-bezier(.68,-.55,.265,1.55)}#weather-press-layoutContainer .weather-press-dailyForecast-mainItem{display:inline-block!important;height:100%;width:100%;margin-right:-4px!important}#weather-press-layoutContainer .weather-press-dailyForecast-mainItem ul{height:100%;width:100%;display:block}#weather-press-layoutContainer .weather-press-dailyForecast-mainItem>ul>li{float:none;width:100%;background:url(../images/bottom-divider.png) bottom repeat-x;padding:6px 11px!important}#weather-press-layoutContainer .weather-press-dailyForecast-mainItem .weather-press-forecastDate,#weather-press-layoutContainer .weather-press-dailyForecast-mainItem .weather-press-forecastDetails{height:25%;font-weight:700}#weather-press-layoutContainer .weather-press-dailyForecast-mainItem .weather-press-forecastDate{word-wrap:break-word;white-space:pre-wrap;color:#FCCF36}#weather-press-layoutContainer .weather-press-dailyForecast-mainItem .weather-press-forecastDetails{padding:0!important}#weather-press-layoutContainer .weather-press-forecastDetails-text{display:inline-block;color:inherit;font-size:inherit;word-wrap:break-word;white-space:pre-wrap;height:auto;width:100%;line-height:normal}#weather-press-layoutContainer .weather-press-forecastHumidityIcon,#weather-press-layoutContainer .weather-press-forecastMinmaxIcon,#weather-press-layoutContainer .weather-press-forecastWindIcon{position:absolute!important;top:-10px;height:20px;width:20px;opacity:.4}#weather-press-layoutContainer .weather-press-forecastMinmaxIcon{left:4px;background:url(../images/temperature-active.svg) center center no-repeat}#weather-press-layoutContainer .weather-press-forecastHumidityIcon{left:0;right:0;margin:auto!important;background:url(../images/humidity-active.svg) center center no-repeat}#weather-press-layoutContainer .weather-press-forecastWindIcon{right:4px;background:url(../images/wind-active.svg) center center no-repeat}#weather-press-layoutContainer .weather-press-dailyForecast-mainItem .weather-press-forecastIconTemp{height:50%}#weather-press-layoutContainer .weather-press-forecastIconTemp>ul>li{float:right;height:100%;width:50%;text-align:center}#weather-press-layoutContainer .weather-press-forecastIconTemp>ul>li:last-child{color:#FFF;padding:8%!important;font-size:3em;font-family:norwester,Oswald,sans-serif!important;font-weight:400}#weather-press-layoutContainer .weather-press-forecastIconTemp>ul>li img{display:inline-block;height:100%!important;width:auto!important}#weather-press-layoutContainer .weather-press-dailyForecast-mainItem .weather-press-forecastDetails>ul>li{float:left;width:33%;height:100%;text-align:center;word-wrap:break-word;background:url(../images/tool-list-divider.png) center right no-repeat}#weather-press-layoutContainer .weather-press-dailyForecast-mainItem .weather-press-forecastDetails>ul>li:last-child{background:0 0} -
weather-press/trunk/public/css/weather-press-public.css
r1697235 r1710669 331 331 height:40%; 332 332 width:100%; 333 background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0. 4) 100%);334 background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0. 4) 100%);335 background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0. 4) 100%);333 background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 100%); 334 background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0.7) 100%); 335 background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0.7) 100%); 336 336 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); 337 337 z-index:-1; … … 346 346 #weather-press-layoutContainer .weather-press-mainList { 347 347 348 display: inline-block;348 display:block; 349 349 width:100%; 350 350 } -
weather-press/trunk/public/js/weather-press-public-min.js
r1697235 r1710669 1 !function(e){"use strict";e(document).ready(function(){if(e("#weather-press-layoutContainer").length){var s=null,t=e("#weather-press-layoutContainer").outerWidth(),r=e(".weather-press-dailyForecast").outerWidth();e(".weather-press-dailyForecast-mainItem").css("width",r),t<=356&&(e(".weather-press-citiesListContainer").css("width","100%"),e(".weather-press-rightTopBlock").css("width","100%"),e(".weather-press-navRectangle").css("width","107%"),e(".weather-press-bgLevel3").css("height","53%"),e(".weather-press-dailyForecast").css("height","37.2%"),e(".weather-press-currentTempValue").css("font-size","1. 8em"),e(".weather-press-icon").css("float","right"),e(".weather-press-icon").css("width","50%"),e(".weather-press-icon img").css("top","28px"),e(".weather-press-icon img").css("left","0"),e(".weather-press-currentTemp").css("float","left"),e(".weather-press-currentTemp").css("width","50%"),e(".weather-press-currentTemp").css("left","0"));var a,i,c,p={labels:["6am","9am","12pm","3pm"],series:[[{value:0,meta:"°"},{value:0,meta:"°"},{value:0,meta:"°"},{value:0,meta:"°"},{value:0,meta:"NO X COORDINATE"}]]},o={width:"100%",height:"100%",showArea:!0,fullWidth:!0,showLabel:!0,lineSmooth:Chartist.Interpolation.simple({divisor:2}),axisY:{showGrid:!1,showLabel:!1,offset:0,labelInterpolationFnc:function(e,s){return s%2!=0&&0!=s?e:null}},axisX:{showGrid:!1,showLabel:!0}},l=function(){(a=new Chartist.Line(".ct-chart",p,o)).on("draw",function(s){if("area"===s.type){var t=e(".ct-area").attr("d");t=(t=t.replace("M10","M0")).replace("L10","L0"),e(".ct-area").attr("d",t)}}),a.on("draw",function(s){var t;if("point"===s.type){s.series[s.index].value<12?t="ct-point-circle-cold":s.series[s.index].value>=12&&s.series[s.index].value<25?t="ct-point-circle-medium":s.series[s.index].value>=25&&(t="ct-point-circle-hot");var r=new Chartist.Svg("circle",{cx:s.x,cy:s.y,r:6,vtop:s.y-46,vleft:s.x-30,val:s.series[s.index].value,des:s.series[s.index].meta,class:t+" weather-press-forHoverPurpose"});s.element.replace(r),e(".weather-press-forHoverPurpose").on("click",function(){e(".weather-press-chartLabel").text(e(this).attr("val")+" "+e(this).attr("des")),e("#weather-press-chartLabel").css({top:e(this).attr("vtop")+"px",left:e(this).attr("vleft")+"px",display:"block"})})}}),a.on("created",function(s){var t=s.svg.elem("defs");t.elem("linearGradient",{id:"weatherPressFillGradArea",x1:"50%",y1:"100%",x2:"50%",y2:0}).elem("stop",{offset:0,style:"stop-color:rgb(37,168,250);stop-opacity:0"}).parent().elem("stop",{offset:"100%",style:"stop-color:rgb(209,93,208);stop-opacity:0.5"}),e(".ct-area").attr("fill","url(#weatherPressFillGradArea)"),t.elem("linearGradient",{id:"weatherPressFillGradLine",x1:0,y1:"50%",x2:"100%",y2:"50%"}).elem("stop",{offset:0,style:"stop-color:rgb(37,168,250);stop-opacity:1"}).parent().elem("stop",{offset:"100%",style:"stop-color:rgb(209,93,208);stop-opacity:1"}),e(".ct-line").attr("stroke","url(#weatherPressFillGradLine)"),e(".weather-press-forHoverPurpose:eq(1)").trigger("click"),e(".ct-label:first").css("text-indent","-4px"),e(".ct-label:last").css("text-indent","-25px")})};e(".weather-press-citiesList li").each(function(s,t){if(e(t).hasClass("weather-press-centred")&&0==e(t).attr("data-weatherpressads"))return i=s,c=e(t).position().top.toFixed(2)-4,e("#weather-press-navRectangle-mainLocation").text(e(t).text()),e("#weather-press-navRectangle-mainLocation").attr("title",e(t).text()),!1}),e(".weather-press-forecasts ul li").click(function(){if(!1===e(this).hasClass("weather-press-forecasts-mainStatus")){var s=e(this).attr("data-weatherpressforecastDays");e(".weather-press-dailyForecast-mainUl").css("margin-left",-1*s*r),e("#weather-press-chartLabel").css("opacity","0"),e(".weather-press-dailyForecast").removeClass("flipOutX"),e(".weather-press-dailyForecast").addClass("flipInX"),e(".weather-press-forecasts ul li").each(function(s,t){e(t).removeClass("weather-press-forecast-active")}),e(this).addClass("weather-press-forecast-active")}}),e(".weather-press-closeIcon").click(function(){var t=e(this).attr("data-weatherpressclose");e("."+t).removeClass("flipInX"),e("."+t).addClass("flipOutX"),"weather-press-dailyForecast"==t?e(".weather-press-forecasts ul li").each(function(s,t){e(t).removeClass("weather-press-forecast-active"),0==s&&e(t).addClass("weather-press-forecast-active")}):"weather-press-loader"==t&&(e(".weather-press-outputs-content").text("Loading ..."),e(".weather-press-outputs-toPremium").css("opacity","0"),null!=s&&s.abort()),e("#weather-press-chartLabel").css("opacity","1")}),e(".weather-press-forecasts-mainStatus").click(function(){!1===e(this).hasClass("weather-press-forecast-active")&&(e(".weather-press-forecasts ul li").each(function(s,t){e(t).removeClass("weather-press-forecast-active"),0==s&&e(t).addClass("weather-press-forecast-active")}),e(".weather-press-dailyForecast").removeClass("flipInX"),e(".weather-press-dailyForecast").addClass("flipOutX")),e("#weather-press-chartLabel").css("opacity","1")}),e(".weather-press-humidTool, .weather-press-windTool, .weather-press-geoLoc").click(function(){e(".weather-press-outputs-content").text("This is a premium weather press feature,"),e(".weather-press-outputs-toPremium").css("opacity","1"),h()}),e("#weather-press-citiesNavTop").click(function(){n(i+1)}),e("#weather-press-citiesNavBottom").click(function(){n(i-1)});var n=function(s){var t,r=e(".weather-press-citiesList li").length-1;e(".weather-press-citiesList li").each(function(a,p){if(a==s&&a<r&&a>0)return i=a,0==e(p).attr("data-weatherpressads")&&(e("#weather-press-navRectangle-mainLocation").text(e(p).text()),e("#weather-press-navRectangle-mainLocation").attr("title",e(p).text())),e(p).removeClass(),e(p).addClass("weather-press-centred"),t=e(p).position().top.toFixed(2),e(".weather-press-citiesList").css("margin-top",c-t),e(".weather-press-citiesList li:eq("+(a-1)+")").length&&(e(".weather-press-citiesList li:eq("+(a-1)+")").removeClass(),1==e(".weather-press-citiesList li:eq("+(a-1)+")").attr("data-weatherpressads")?e(".weather-press-citiesList li:eq("+(a-1)+")").addClass("weather-press-deep1"):e(".weather-press-citiesList li:eq("+(a-1)+")").addClass("weather-press-deep2")),e(".weather-press-citiesList li:eq("+(a-2)+")").length&&(e(".weather-press-citiesList li:eq("+(a-2)+")").removeClass(),e(".weather-press-citiesList li:eq("+(a-2)+")").addClass("weather-press-deep1")),e(".weather-press-citiesList li:eq("+(a+1)+")").length&&(e(".weather-press-citiesList li:eq("+(a+1)+")").removeClass(),1==e(".weather-press-citiesList li:eq("+(a+1)+")").attr("data-weatherpressads")?e(".weather-press-citiesList li:eq("+(a+1)+")").addClass("weather-press-deep1"):e(".weather-press-citiesList li:eq("+(a+1)+")").addClass("weather-press-deep2")),e(".weather-press-citiesList li:eq("+(a+2)+")").length&&(e(".weather-press-citiesList li:eq("+(a+2)+")").removeClass(),e(".weather-press-citiesList li:eq("+(a+2)+")").addClass("weather-press-deep1")),!1})},h=function(){e("#weather-press-loader").removeClass("flipOutX"),e("#weather-press-loader").addClass("flipInX"),e("#weather-press-chartLabel").css("opacity","0")},w=function(){e("#weather-press-loader").removeClass("flipInX"),e("#weather-press-loader").addClass("flipOutX"),e("#weather-press-chartLabel").css("opacity","1")};e(".weather-press-citiesList li[data-weatherpressads = 0]").click(function(){d(e(this),1),f(e(this),1)});var d=function(t,r){h(),s=e.ajax({type:"POST",url:weather_press_data_from_php.weather_press_ajax_url,data:{action:"weather_press_public_ajaxCalls",find:"current",save:r,city:encodeURIComponent(t.text().toLowerCase()),unit:weather_press_data_from_php.weather_press_Current_Unit,language:weather_press_data_from_php.weather_press_Current_Language},cache:!1,dataType:"json",success:function(s){e(".weather-press-currentTempValue").text(s.temp+"°"),e(".weather-press-icon img").attr("src",weather_press_data_from_php.weather_press_Plugin_Path+"/public/images/"+s.icon+".png"),n(t.index()),w()},error:function(s){var t=JSON.stringify(s.responseText).substring(1,JSON.stringify(s.responseText).length-1);e(".weather-press-outputs-content").text(t),e(".weather-press-outputs-toPremium").css("opacity","1")}})},u=function(e){switch(!0){case 0==e:return"12am";case e<12:return e+"am";case e>=12:return e+"pm"}},f=function(s,t){e("#weather-press-chart-loader").css("display","block"),e.ajax({type:"POST",url:weather_press_data_from_php.weather_press_ajax_url,data:{action:"weather_press_public_ajaxCalls",find:"hourly",save:t,city:encodeURIComponent(s.text().toLowerCase()),unit:weather_press_data_from_php.weather_press_Current_Unit,language:weather_press_data_from_php.weather_press_Current_Language},cache:!1,dataType:"json",success:function(s){var t=[],r=[];e.each(s,function(e,s){var a=s.date,i=s.temp;a&&(a=new Date(a),a=u(a.getHours()),i=Math.round(i),t[e]=a,r[e]=i)}),p={labels:[t[0],t[1],t[2],t[3]],series:[[{value:r[0],meta:"°"},{value:r[1],meta:"°"},{value:r[2],meta:"°"},{value:r[3],meta:"°"},{value:0,meta:"NO X COORDINATE"}]]},l(),e("#weather-press-chart-loader").css("display","none")},error:function(s){l(),e("#weather-press-chart-loader").css("display","none")}})};d(e(".weather-press-centred"),1),f(e(".weather-press-centred"),1),e(".weather-press-refrech, #weather-press-navRectangle-mainLocation").click(function(){d(e(".weather-press-centred"),0),f(e(".weather-press-centred"),0)})}})}(jQuery);1 !function(e){"use strict";e(document).ready(function(){if(e("#weather-press-layoutContainer").length){var s=null,t=e("#weather-press-layoutContainer").outerWidth(),r=e(".weather-press-dailyForecast").outerWidth();e(".weather-press-dailyForecast-mainItem").css("width",r),t<=356&&(e(".weather-press-citiesListContainer").css("width","100%"),e(".weather-press-rightTopBlock").css("width","100%"),e(".weather-press-navRectangle").css("width","107%"),e(".weather-press-bgLevel3").css("height","53%"),e(".weather-press-dailyForecast").css("height","37.2%"),e(".weather-press-currentTempValue").css("font-size","1.6em"),e(".weather-press-icon").css("float","right"),e(".weather-press-icon").css("width","50%"),e(".weather-press-icon img").css("top","28px"),e(".weather-press-icon img").css("left","0"),e(".weather-press-currentTemp").css("float","left"),e(".weather-press-currentTemp").css("width","50%"),e(".weather-press-currentTemp").css("left","0"));var a,i,c,p={labels:["6am","9am","12pm","3pm"],series:[[{value:0,meta:"°"},{value:0,meta:"°"},{value:0,meta:"°"},{value:0,meta:"°"},{value:0,meta:"NO X COORDINATE"}]]},o={width:"100%",height:"100%",showArea:!0,fullWidth:!0,showLabel:!0,lineSmooth:Chartist.Interpolation.simple({divisor:2}),axisY:{showGrid:!1,showLabel:!1,offset:0,labelInterpolationFnc:function(e,s){return s%2!=0&&0!=s?e:null}},axisX:{showGrid:!1,showLabel:!0}},l=function(){(a=new Chartist.Line(".ct-chart",p,o)).on("draw",function(s){if("area"===s.type){var t=e(".ct-area").attr("d");t=(t=t.replace("M10","M0")).replace("L10","L0"),e(".ct-area").attr("d",t)}}),a.on("draw",function(s){var t;if("point"===s.type){s.series[s.index].value<12?t="ct-point-circle-cold":s.series[s.index].value>=12&&s.series[s.index].value<25?t="ct-point-circle-medium":s.series[s.index].value>=25&&(t="ct-point-circle-hot");var r=new Chartist.Svg("circle",{cx:s.x,cy:s.y,r:6,vtop:s.y-46,vleft:s.x-30,val:s.series[s.index].value,des:s.series[s.index].meta,class:t+" weather-press-forHoverPurpose"});s.element.replace(r),e(".weather-press-forHoverPurpose").on("click",function(){e(".weather-press-chartLabel").text(e(this).attr("val")+" "+e(this).attr("des")),e("#weather-press-chartLabel").css({top:e(this).attr("vtop")+"px",left:e(this).attr("vleft")+"px",display:"block"})})}}),a.on("created",function(s){var t=s.svg.elem("defs");t.elem("linearGradient",{id:"weatherPressFillGradArea",x1:"50%",y1:"100%",x2:"50%",y2:0}).elem("stop",{offset:0,style:"stop-color:rgb(37,168,250);stop-opacity:0"}).parent().elem("stop",{offset:"100%",style:"stop-color:rgb(209,93,208);stop-opacity:0.5"}),e(".ct-area").attr("fill","url(#weatherPressFillGradArea)"),t.elem("linearGradient",{id:"weatherPressFillGradLine",x1:0,y1:"50%",x2:"100%",y2:"50%"}).elem("stop",{offset:0,style:"stop-color:rgb(37,168,250);stop-opacity:1"}).parent().elem("stop",{offset:"100%",style:"stop-color:rgb(209,93,208);stop-opacity:1"}),e(".ct-line").attr("stroke","url(#weatherPressFillGradLine)"),e(".weather-press-forHoverPurpose:eq(1)").trigger("click"),e(".ct-label:first").css("text-indent","-4px"),e(".ct-label:last").css("text-indent","-25px")})};e(".weather-press-citiesList li").each(function(s,t){if(e(t).hasClass("weather-press-centred")&&0==e(t).attr("data-weatherpressads"))return i=s,c=e(t).position().top.toFixed(2)-4,e("#weather-press-navRectangle-mainLocation").text(e(t).text()),e("#weather-press-navRectangle-mainLocation").attr("title",e(t).text()),!1}),e(".weather-press-forecasts ul li").click(function(){if(!1===e(this).hasClass("weather-press-forecasts-mainStatus")){var s=e(this).attr("data-weatherpressforecastDays");e(".weather-press-dailyForecast-mainUl").css("margin-left",-1*s*r),e("#weather-press-chartLabel").css("opacity","0"),e(".weather-press-dailyForecast").removeClass("flipOutX"),e(".weather-press-dailyForecast").addClass("flipInX"),e(".weather-press-forecasts ul li").each(function(s,t){e(t).removeClass("weather-press-forecast-active")}),e(this).addClass("weather-press-forecast-active")}}),e(".weather-press-closeIcon").click(function(){var t=e(this).attr("data-weatherpressclose");e("."+t).removeClass("flipInX"),e("."+t).addClass("flipOutX"),"weather-press-dailyForecast"==t?e(".weather-press-forecasts ul li").each(function(s,t){e(t).removeClass("weather-press-forecast-active"),0==s&&e(t).addClass("weather-press-forecast-active")}):"weather-press-loader"==t&&(e(".weather-press-outputs-content").text("Loading ..."),e(".weather-press-outputs-toPremium").css("opacity","0"),null!=s&&s.abort()),e("#weather-press-chartLabel").css("opacity","1")}),e(".weather-press-forecasts-mainStatus").click(function(){!1===e(this).hasClass("weather-press-forecast-active")&&(e(".weather-press-forecasts ul li").each(function(s,t){e(t).removeClass("weather-press-forecast-active"),0==s&&e(t).addClass("weather-press-forecast-active")}),e(".weather-press-dailyForecast").removeClass("flipInX"),e(".weather-press-dailyForecast").addClass("flipOutX")),e("#weather-press-chartLabel").css("opacity","1")}),e(".weather-press-humidTool, .weather-press-windTool, .weather-press-geoLoc").click(function(){e(".weather-press-outputs-content").text("This is a premium weather press feature,"),e(".weather-press-outputs-toPremium").css("opacity","1"),h()}),e("#weather-press-citiesNavTop").click(function(){n(i+1)}),e("#weather-press-citiesNavBottom").click(function(){n(i-1)});var n=function(s){var t,r=e(".weather-press-citiesList li").length-1;e(".weather-press-citiesList li").each(function(a,p){if(a==s&&a<r&&a>0)return i=a,0==e(p).attr("data-weatherpressads")&&(e("#weather-press-navRectangle-mainLocation").text(e(p).text()),e("#weather-press-navRectangle-mainLocation").attr("title",e(p).text())),e(p).removeClass(),e(p).addClass("weather-press-centred"),t=e(p).position().top.toFixed(2),e(".weather-press-citiesList").css("margin-top",c-t),e(".weather-press-citiesList li:eq("+(a-1)+")").length&&(e(".weather-press-citiesList li:eq("+(a-1)+")").removeClass(),1==e(".weather-press-citiesList li:eq("+(a-1)+")").attr("data-weatherpressads")?e(".weather-press-citiesList li:eq("+(a-1)+")").addClass("weather-press-deep1"):e(".weather-press-citiesList li:eq("+(a-1)+")").addClass("weather-press-deep2")),e(".weather-press-citiesList li:eq("+(a-2)+")").length&&(e(".weather-press-citiesList li:eq("+(a-2)+")").removeClass(),e(".weather-press-citiesList li:eq("+(a-2)+")").addClass("weather-press-deep1")),e(".weather-press-citiesList li:eq("+(a+1)+")").length&&(e(".weather-press-citiesList li:eq("+(a+1)+")").removeClass(),1==e(".weather-press-citiesList li:eq("+(a+1)+")").attr("data-weatherpressads")?e(".weather-press-citiesList li:eq("+(a+1)+")").addClass("weather-press-deep1"):e(".weather-press-citiesList li:eq("+(a+1)+")").addClass("weather-press-deep2")),e(".weather-press-citiesList li:eq("+(a+2)+")").length&&(e(".weather-press-citiesList li:eq("+(a+2)+")").removeClass(),e(".weather-press-citiesList li:eq("+(a+2)+")").addClass("weather-press-deep1")),!1})},h=function(){e("#weather-press-loader").removeClass("flipOutX"),e("#weather-press-loader").addClass("flipInX"),e("#weather-press-chartLabel").css("opacity","0")},w=function(){e("#weather-press-loader").removeClass("flipInX"),e("#weather-press-loader").addClass("flipOutX"),e("#weather-press-chartLabel").css("opacity","1")};e(".weather-press-citiesList li[data-weatherpressads = 0]").click(function(){d(e(this),1),f(e(this),1)});var d=function(t,r){h(),s=e.ajax({type:"POST",url:weather_press_data_from_php.weather_press_ajax_url,data:{action:"weather_press_public_ajaxCalls",find:"current",save:r,city:encodeURIComponent(t.text().toLowerCase()),unit:weather_press_data_from_php.weather_press_Current_Unit,language:weather_press_data_from_php.weather_press_Current_Language},cache:!1,dataType:"json",success:function(s){e(".weather-press-currentTempValue").text(s.temp+"°"),e(".weather-press-icon img").attr("src",weather_press_data_from_php.weather_press_Plugin_Path+"/public/images/"+s.icon+".png"),n(t.index()),w()},error:function(s,t,r){e(".weather-press-outputs-content").html(r+"<br><b>"+s.responseText+"</b></br>"),e(".weather-press-outputs-toPremium").css("opacity","1")}})},u=function(e){switch(!0){case 0==e:return"12am";case e<12:return e+"am";case e>=12:return e+"pm"}},f=function(s,t){e("#weather-press-chart-loader").css("display","block"),e.ajax({type:"POST",url:weather_press_data_from_php.weather_press_ajax_url,data:{action:"weather_press_public_ajaxCalls",find:"hourly",save:t,city:encodeURIComponent(s.text().toLowerCase()),unit:weather_press_data_from_php.weather_press_Current_Unit,language:weather_press_data_from_php.weather_press_Current_Language},cache:!1,dataType:"json",success:function(s){var t=[],r=[];e.each(s,function(e,s){var a=s.date,i=s.temp;a&&(a=new Date(a),a=u(a.getHours()),i=Math.round(i),t[e]=a,r[e]=i)}),p={labels:[t[0],t[1],t[2],t[3]],series:[[{value:r[0],meta:"°"},{value:r[1],meta:"°"},{value:r[2],meta:"°"},{value:r[3],meta:"°"},{value:0,meta:"NO X COORDINATE"}]]},l(),e("#weather-press-chart-loader").css("display","none")},error:function(s){l(),e("#weather-press-chart-loader").css("display","none")}})};d(e(".weather-press-centred"),1),f(e(".weather-press-centred"),1),e(".weather-press-refrech, #weather-press-navRectangle-mainLocation").click(function(){d(e(".weather-press-centred"),0),f(e(".weather-press-centred"),0)})}})}(jQuery); -
weather-press/trunk/public/js/weather-press-public.js
r1697235 r1710669 32 32 $('.weather-press-bgLevel3').css('height', '53%'); 33 33 $('.weather-press-dailyForecast').css('height', '37.2%'); 34 $('.weather-press-currentTempValue').css('font-size', '1. 8em');34 $('.weather-press-currentTempValue').css('font-size', '1.6em'); 35 35 //$('.weather-press-currentTempValue').css('top', '-77px'); 36 36 … … 452 452 weatherPressHideLoader(); 453 453 454 },error: function(response) { 455 456 var msg = JSON.stringify(response.responseText).substring(1, JSON.stringify(response.responseText).length-1); 457 $('.weather-press-outputs-content').text( msg ); // catch the php exception 454 },error: function(response, textStatus, errorThrown) { 455 456 $('.weather-press-outputs-content').html( errorThrown + '<br><b>' + response.responseText + '</b></br>' );// catch the weather press exceptions and server errors 458 457 $('.weather-press-outputs-toPremium').css('opacity', '1'); 459 458 } -
weather-press/trunk/weather-press.php
r1697235 r1710669 9 9 * Plugin URI: https://www.weather-press.com 10 10 * Description: You need an amazing wordpress weather plugin & widget ?? ...Weather Press offer you more ! 11 * Version: 4. 211 * Version: 4.3 12 12 * Author: Zied Bouzidi 13 * Author URI: https://www.weather-press.com 13 * Author URI: https://www.weather-press.com/founder 14 14 * License: GPL-2.0+ 15 15 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 54 54 require plugin_dir_path( __FILE__ ) . 'includes/class-weather-press.php'; 55 55 56 57 /**58 * Call the widget class that build the widget object59 */60 require plugin_dir_path( __FILE__ ) . 'includes/class-weather-press-widget.php';61 62 56 /** 63 57 * Begins execution of the plugin.
Note: See TracChangeset
for help on using the changeset viewer.