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

16
sass/theme-ios.scss

@ -13,20 +13,20 @@
// Colors // Colors
// //
// Main theme colors // Main theme colors
$primary-color: #007aff; $primary-color: #007aff !global;
$chrome-color: rgba(247,247,247,.98); $chrome-color: rgba(247,247,247,.98) !global;
// Action colors // Action colors
$default-color: #929292; $default-color: #929292 !global;
$positive-color: #4cd964; $positive-color: #4cd964 !global;
$negative-color: #dd524d; $negative-color: #dd524d !global;
// Bars // Bars
$bar-base-height: 44px; $bar-base-height: 44px !global;
$bar-tab-height: 50px; $bar-tab-height: 50px !global;
// iOS style transitions // 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 // Base

Loading…
Cancel
Save