Browse Source

Fix deprecation warnings for Sass 3.3.

pull/478/head
XhmikosR 11 years ago
parent
commit
7f47cc278d
  1. 30
      sass/theme-android.scss
  2. 16
      sass/theme-ios.scss

30
sass/theme-android.scss

@ -11,31 +11,31 @@
// --------------------------------------------------
// Type
$font-family-default: 'Roboto', sans-serif;
$font-size-default: 18px;
$font-weight: 500;
$font-weight-light: 400;
$line-height-default: 22px;
$font-family-default: 'Roboto', sans-serif !global;
$font-size-default: 18px !global;
$font-weight: 500 !global;
$font-weight-light: 400 !global;
$line-height-default: 22px !global;
// Colors
//
// Main theme colors
$primary-color: #33b5e5;
$chrome-color: #dddddd;
$text-color: #222;
$primary-color: #33b5e5 !global;
$chrome-color: #dddddd !global;
$text-color: #222 !global;
// Action colors
$default-color: #999;
$positive-color: #99cc00;
$negative-color: #ff4444;
$default-color: #999 !global;
$positive-color: #99cc00 !global;
$negative-color: #ff4444 !global;
// Bars
$bar-base-height: 50px;
$bar-tab-height: 50px;
$bar-base-height: 50px !global;
$bar-tab-height: 50px !global;
// Borders
$border-default: 1px solid #b1b1b1;
$border-radius: 2px;
$border-default: 1px solid #b1b1b1 !global;
$border-radius: 2px !global;
// Base

16
sass/theme-ios.scss

@ -13,20 +13,20 @@
// Colors
//
// Main theme colors
$primary-color: #007aff;
$chrome-color: rgba(247,247,247,.98);
$primary-color: #007aff !global;
$chrome-color: rgba(247,247,247,.98) !global;
// Action colors
$default-color: #929292;
$positive-color: #4cd964;
$negative-color: #dd524d;
$default-color: #929292 !global;
$positive-color: #4cd964 !global;
$negative-color: #dd524d !global;
// Bars
$bar-base-height: 44px;
$bar-tab-height: 50px;
$bar-base-height: 44px !global;
$bar-tab-height: 50px !global;
// iOS style transitions
$timing-fuction: cubic-bezier(.1, .5, .1, 1); // Inspired by @c2prods
$timing-fuction: cubic-bezier(.1, .5, .1, 1) !global; // Inspired by @c2prods
// Base

Loading…
Cancel
Save