Browse Source

Derping on status bar stuff.

pull/214/head
connors 11 years ago
parent
commit
7f4bad4210
  1. 13
      dist/theme-classic.css
  2. 2
      examples/app-classic/checkout.html
  3. 2
      examples/app-classic/choose-movie.html
  4. 2
      examples/app-classic/choose-theater.html
  5. 2
      examples/app-classic/index.html
  6. 2
      examples/app-classic/settings.html
  7. 2
      examples/app-classic/theaters.html
  8. 14
      lib/sass/theme-classic.scss

13
dist/theme-classic.css vendored

@ -8,6 +8,10 @@
* =====================================================
*/
.bar-header-secondary ~ .content {
padding-top: 108px;
}
[class*="bar-"] {
background-color: rgba(30, 176, 233, 0.98);
}
@ -15,6 +19,15 @@
background-color: rgba(245, 245, 245, 0.98);
}
.bar-title {
top: 20px;
box-shadow: 0 -20px 0 rgba(30, 176, 233, 0.98), 0 0 1px rgba(0, 0, 0, 0.85);
}
[class*="bar-"].bar-header-secondary {
top: 64px;
}
.title {
color: #fff;
}

2
examples/app-classic/checkout.html

@ -5,7 +5,7 @@
<title>Movie finder</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/touch-icons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/touch-icons/apple-touch-icon-72x72.png">

2
examples/app-classic/choose-movie.html

@ -5,7 +5,7 @@
<title>Movie finder</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/touch-icons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/touch-icons/apple-touch-icon-72x72.png">

2
examples/app-classic/choose-theater.html

@ -5,7 +5,7 @@
<title>Movie finder</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/touch-icons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/touch-icons/apple-touch-icon-72x72.png">

2
examples/app-classic/index.html

@ -5,7 +5,7 @@
<title>Movie finder</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/touch-icons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/touch-icons/apple-touch-icon-72x72.png">

2
examples/app-classic/settings.html

@ -5,7 +5,7 @@
<title>Movie finder</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/touch-icons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/touch-icons/apple-touch-icon-72x72.png">

2
examples/app-classic/theaters.html

@ -5,7 +5,7 @@
<title>Movie finder</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/touch-icons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/touch-icons/apple-touch-icon-72x72.png">

14
lib/sass/theme-classic.scss

@ -14,6 +14,13 @@ $default-color: rgba(0, 0, 0, .3);
$positive-color: #34ba15;
$negative-color: #e71e1e;
// Global
// --------------------------------------------------
.bar-header-secondary ~ .content {
padding-top: 108px;
}
// Bars
// --------------------------------------------------
@ -25,6 +32,13 @@ $negative-color: #e71e1e;
background-color: rgba(245,245,245,.98);
}
}
.bar-title {
top: 20px;
box-shadow: 0 -20px 0 rgba(30,176,233,.98), 0 0 1px rgba(0, 0, 0, 0.85)
}
[class*="bar-"].bar-header-secondary {
top: 64px;
}
.title {
color: #fff;
}

Loading…
Cancel
Save