Browse Source

twerkin

pull/245/head
connors 11 years ago
parent
commit
1cb9ce0aaa
  1. 24
      dist/android-theme.css
  2. 9
      dist/ios-theme.css
  3. 6
      dist/ratchet.css
  4. 6
      lib/sass/bars.scss
  5. 20
      lib/sass/theme-android.scss
  6. 23
      lib/sass/theme-ios.scss

24
dist/android-theme.css vendored

@ -10,12 +10,12 @@
.content {
background: #111111;
background: -moz-linear-gradient(top, #111111 0%, #222222 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #111111), color-stop(100%, #222222));
background: -webkit-linear-gradient(top, #111111 0%, #222222 100%);
background: -o-linear-gradient(top, #111111 0%, #222222 100%);
background: -ms-linear-gradient(top, #111111 0%, #222222 100%);
background: linear-gradient(to bottom, #111111 0%, #222222 100%);
background: -moz-linear-gradient(top, #111111 0%, #2b2b2b 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #111111), color-stop(100%, #2b2b2b));
background: -webkit-linear-gradient(top, #111111 0%, #2b2b2b 100%);
background: -o-linear-gradient(top, #111111 0%, #2b2b2b 100%);
background: -ms-linear-gradient(top, #111111 0%, #2b2b2b 100%);
background: linear-gradient(to bottom, #111111 0%, #2b2b2b 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$color-form', endColorstr='$color-to',GradientType=0 );
}
@ -24,10 +24,20 @@
background-color: #111111;
border-bottom: 1px solid #565656;
}
[class*="bar-"].bar-header-secondary {
top: 51px;
}
[class*="bar-"].bar-footer-secondary {
bottom: 51px;
}
[class*="bar-"].bar-footer-secondary-tab {
bottom: 71px;
}
.bar-tab {
height: 70px;
border-top: 1px solid #565656;
border-bottom: 0;
}
.title {
@ -38,7 +48,7 @@
}
.popover .bar-nav {
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
border-bottom: 1px solid #565656;
}
.table-view .table-view-cell {

9
dist/ios-theme.css vendored

@ -18,6 +18,15 @@
-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.85);
box-shadow: 0 0 1px rgba(0, 0, 0, 0.85);
}
[class*="bar-"].bar-header-secondary {
top: 44px;
}
[class*="bar-"].bar-footer-secondary {
bottom: 44px;
}
[class*="bar-"].bar-footer-secondary-tab {
bottom: 50px;
}
.bar-tab {
border-top: 0;

6
dist/ratchet.css vendored

@ -297,16 +297,16 @@ strong {
background-color: white;
}
[class*="bar-"].bar-header-secondary {
top: 44px;
top: 45px;
}
[class*="bar-"].bar-footer {
bottom: 0;
}
[class*="bar-"].bar-footer-secondary {
bottom: 44px;
bottom: 45px;
}
[class*="bar-"].bar-footer-secondary-tab {
bottom: 50px;
bottom: 51px;
}
.bar-nav {

6
lib/sass/bars.scss

@ -15,7 +15,7 @@
// Modifier class to dock any bar below .bar-nav
&.bar-header-secondary {
top: $bar-base-height;
top: $bar-base-height + 1;
}
// Modifier class to dock any bar to bottom of viewport
@ -25,12 +25,12 @@
// Modifier class to dock any bar above a standard bar
&.bar-footer-secondary {
bottom: $bar-base-height;
bottom: $bar-base-height + 1;
}
// Modifier class to dock any bar above a .bar-tab
&.bar-footer-secondary-tab {
bottom: $bar-tab-height;
bottom: $bar-tab-height + 1;
}
}

20
lib/sass/theme-android.scss

@ -40,7 +40,7 @@ $border-radius: 0;
// --------------------------------------------------
.content {
@include gradient($chrome-color,#222);
@include gradient($chrome-color,lighten($chrome-color, 10%));
}
// Bars
@ -50,10 +50,26 @@ $border-radius: 0;
height: $bar-base-height;
background-color: $chrome-color;
border-bottom: $border-default;
// Modifier class to dock any bar below .bar-nav
&.bar-header-secondary {
top: $bar-base-height + 1;
}
// Modifier class to dock any bar above a standard bar
&.bar-footer-secondary {
bottom: $bar-base-height + 1;
}
// Modifier class to dock any bar above a .bar-tab
&.bar-footer-secondary-tab {
bottom: $bar-tab-height + 1;
}
}
.bar-tab {
height: $bar-tab-height;
border-top: $border-default;
border-bottom: 0;
}
// Left aligned text in the .bar-nav
.title {
@ -68,7 +84,7 @@ $border-radius: 0;
// --------------------------------------------------
.popover .bar-nav {
border-bottom: 1px solid rgba(0,0,0,.15);
border-bottom: $border-default;
}

23
lib/sass/theme-ios.scss

@ -20,6 +20,10 @@ $default-color: #929292;
$positive-color: #4cd964;
$negative-color: #dd524d;
// Bars
$bar-base-height: 44px;
$bar-tab-height: 50px;
// iOS style transitions
$timing-fuction: cubic-bezier(.1, .5, .1, 1); // Inspired by @c2prods
@ -39,8 +43,25 @@ $timing-fuction: cubic-bezier(.1, .5, .1, 1); // Inspired by @c2prods
border-bottom: 0;
background-color: $chrome-color;
@include box-shadow(0 0 1px rgba(0,0,0,.85));
}
// Modifier class to dock any bar below .bar-nav
&.bar-header-secondary {
top: $bar-base-height;
}
// Modifier class to dock any bar above a standard bar
&.bar-footer-secondary {
bottom: $bar-base-height;
}
// Modifier class to dock any bar above a .bar-tab
&.bar-footer-secondary-tab {
bottom: $bar-tab-height;
}
}
.bar-nav {
display: block;
}
.bar-tab {
border-top: 0;
@include box-shadow(0 0 -1px rgba(0,0,0,.85));

Loading…
Cancel
Save