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. 18
      lib/sass/theme-android.scss

5
dist/android-theme.css vendored

@ -60,6 +60,11 @@ a {
.bar-tab .tab-item .icon {
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 {
position: static;

5
docs-assets/css/docs.css

@ -1229,6 +1229,11 @@ hr {
.platform-android .bar-tab .tab-item .icon {
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 {
position: static;
padding-left: 15px;

18
lib/sass/theme-android.scss

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

Loading…
Cancel
Save