From de819933614a94e66603f1609f4d81e4dc2517a6 Mon Sep 17 00:00:00 2001 From: connors Date: Sun, 22 Sep 2013 22:59:34 -0700 Subject: [PATCH] changing bar-title to bar-nav --- dist/ratchet.css | 70 ++++++++++++------------ dist/theme-classic.css | 2 +- examples/app-classic/checkout.html | 2 +- examples/app-classic/choose-movie.html | 2 +- examples/app-classic/choose-theater.html | 2 +- examples/app-classic/index.html | 2 +- examples/app-classic/settings.html | 2 +- examples/app-classic/theaters.html | 2 +- examples/app-default/checkout.html | 2 +- examples/app-default/choose-movie.html | 2 +- examples/app-default/choose-theater.html | 2 +- examples/app-default/index.html | 2 +- examples/app-default/settings.html | 2 +- examples/app-default/theaters.html | 2 +- examples/components/classic/index.html | 20 +++---- examples/components/classic/modals.html | 4 +- examples/components/default/index.html | 20 +++---- examples/components/default/modals.html | 4 +- index.html | 36 ++++++------ lib/sass/bars.scss | 8 +-- lib/sass/base.scss | 2 +- lib/sass/buttons.scss | 2 +- lib/sass/segmented-controllers.scss | 2 +- lib/sass/theme-classic.scss | 2 +- one.html | 2 +- two.html | 2 +- 26 files changed, 100 insertions(+), 100 deletions(-) diff --git a/dist/ratchet.css b/dist/ratchet.css index b38f510..a5d9cb6 100644 --- a/dist/ratchet.css +++ b/dist/ratchet.css @@ -304,7 +304,7 @@ strong { box-shadow: 0 0 1px rgba(0, 0, 0, 0.85); } -.bar-title { +.bar-nav { top: 0; display: -webkit-box; display: box; @@ -380,14 +380,14 @@ strong { color: #007aff; } -.popover .bar-title { +.popover .bar-nav { padding-right: 15px; padding-left: 15px; border-bottom: 1px solid rgba(0, 0, 0, 0.15); border-radius: 12px 12px 0 0; box-shadow: none; } -.popover .bar-title .title + [class*="button"]:last-child { +.popover .bar-nav .title + [class*="button"]:last-child { right: 15px; } @@ -658,7 +658,7 @@ select { font-size: 16px; } -.bar-title [class*="button"] { +.bar-nav [class*="button"] { position: relative; z-index: 10; padding: 0; @@ -673,32 +673,32 @@ select { -webkit-box-flex: 0; box-flex: 0; } -.bar-title .title + [class*="button"]:last-child, -.bar-title .button + [class*="button"]:last-child, -.bar-title [class*="button"].pull-right { +.bar-nav .title + [class*="button"]:last-child, +.bar-nav .button + [class*="button"]:last-child, +.bar-nav [class*="button"].pull-right { position: absolute; top: 5px; right: 10px; } -.bar-title .button:active, -.bar-title .button.active, -.bar-title .button-prev:active, -.bar-title .button-prev.active, -.bar-title .button-next:active, -.bar-title .button-next.active, -.bar-title .button-primary:active, -.bar-title .button-primary.active { +.bar-nav .button:active, +.bar-nav .button.active, +.bar-nav .button-prev:active, +.bar-nav .button-prev.active, +.bar-nav .button-next:active, +.bar-nav .button-next.active, +.bar-nav .button-primary:active, +.bar-nav .button-primary.active { color: #007aff; background-color: transparent; opacity: .3; } -.bar-title .button-primary { +.bar-nav .button-primary { font-weight: 500; } -.bar-title .button-prev:before, -.bar-title .button-prev:after, -.bar-title .button-next:before, -.bar-title .button-next:after { +.bar-nav .button-prev:before, +.bar-nav .button-prev:after, +.bar-nav .button-next:before, +.bar-nav .button-next:after { position: absolute; display: block; width: 15px; @@ -706,37 +706,37 @@ select { background-color: #007aff; content: ''; } -.bar-title .button-prev { +.bar-nav .button-prev { padding-left: 20px; margin-left: -5px; } -.bar-title .button-next { +.bar-nav .button-next { padding-right: 20px; margin-right: -5px; } -.bar-title .button-prev:before, -.bar-title .button-prev:after { +.bar-nav .button-prev:before, +.bar-nav .button-prev:after { left: 0; } -.bar-title .button-next:before, -.bar-title .button-next:after { +.bar-nav .button-next:before, +.bar-nav .button-next:after { right: 0; } -.bar-title .button-prev:before, -.bar-title .button-next:before { +.bar-nav .button-prev:before, +.bar-nav .button-next:before { top: 16px; } -.bar-title .button-prev:after, -.bar-title .button-next:after { +.bar-nav .button-prev:after, +.bar-nav .button-next:after { top: 25px; } -.bar-title .button-prev:before, -.bar-title .button-next:after { +.bar-nav .button-prev:before, +.bar-nav .button-next:after { -webkit-transform: rotate(-45deg); transform: rotate(-45deg); } -.bar-title .button-prev:after, -.bar-title .button-next:before { +.bar-nav .button-prev:after, +.bar-nav .button-next:before { -webkit-transform: rotate(45deg); transform: rotate(45deg); } @@ -890,7 +890,7 @@ input[type="button"] { box-flex: 1; } -.bar-title .segmented-controller { +.bar-nav .segmented-controller { margin-bottom: 4px; } diff --git a/dist/theme-classic.css b/dist/theme-classic.css index d13bcca..a31f390 100644 --- a/dist/theme-classic.css +++ b/dist/theme-classic.css @@ -19,7 +19,7 @@ background-color: rgba(245, 245, 245, 0.98); } -.bar-title { +.bar-nav { top: 20px; box-shadow: 0 -20px 0 rgba(30, 176, 233, 0.98), 0 0 1px rgba(0, 0, 0, 0.85); } diff --git a/examples/app-classic/checkout.html b/examples/app-classic/checkout.html index b8a8a79..c984995 100644 --- a/examples/app-classic/checkout.html +++ b/examples/app-classic/checkout.html @@ -18,7 +18,7 @@ -
+
Back diff --git a/examples/app-classic/choose-movie.html b/examples/app-classic/choose-movie.html index 16bd3b2..0366b8e 100644 --- a/examples/app-classic/choose-movie.html +++ b/examples/app-classic/choose-movie.html @@ -19,7 +19,7 @@ -
+
Back diff --git a/examples/app-classic/choose-theater.html b/examples/app-classic/choose-theater.html index 0a24098..42f7150 100644 --- a/examples/app-classic/choose-theater.html +++ b/examples/app-classic/choose-theater.html @@ -19,7 +19,7 @@ -
+
Back diff --git a/examples/app-classic/index.html b/examples/app-classic/index.html index 5f726a2..6d6fcee 100644 --- a/examples/app-classic/index.html +++ b/examples/app-classic/index.html @@ -19,7 +19,7 @@ -
+

Movie finder