Browse Source

android nav color

pull/253/head
connors 11 years ago
parent
commit
060a99ca03
  1. 5
      dist/android-theme.css
  2. 5
      docs-assets/css/docs.css
  3. 14
      lib/sass/theme-android.scss

5
dist/android-theme.css vendored

@ -60,6 +60,11 @@ a {
.bar-tab .tab-item .icon { .bar-tab .tab-item .icon {
margin-top: 0; margin-top: 0;
} }
.bar-tab .tab-item.active .tab-label,
.bar-tab .tab-item.active .icon, .bar-tab .tab-item:active .tab-label,
.bar-tab .tab-item:active .icon {
color: #33b5e5;
}
.title { .title {
position: static; position: static;

5
docs-assets/css/docs.css

@ -1229,6 +1229,11 @@ hr {
.platform-android .bar-tab .tab-item .icon { .platform-android .bar-tab .tab-item .icon {
margin-top: 0; margin-top: 0;
} }
.platform-android .bar-tab .tab-item.active .tab-label,
.platform-android .bar-tab .tab-item.active .icon, .platform-android .bar-tab .tab-item:active .tab-label,
.platform-android .bar-tab .tab-item:active .icon {
color: #33b5e5;
}
.platform-android .title { .platform-android .title {
position: static; position: static;
padding-left: 15px; padding-left: 15px;

14
lib/sass/theme-android.scss

@ -98,10 +98,22 @@ a {
height: $bar-tab-height; height: $bar-tab-height;
border-top: 0; border-top: 0;
.tab-item .icon { .tab-item {
.icon {
margin-top: 0; margin-top: 0;
} }
// Active states for the tab bar
&.active,
&:active {
.tab-label,
.icon {
color: $primary-color;
} }
}
}
}
// Left aligned text in the .bar-nav // Left aligned text in the .bar-nav
.title { .title {
position: static; position: static;

Loading…
Cancel
Save