This commit is contained in:
connors 2014-02-08 23:49:22 -08:00
Родитель a643b15f5d
Коммит 060a99ca03
3 изменённых файлов: 25 добавлений и 3 удалений

5
dist/android-theme.css поставляемый
Просмотреть файл

@ -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;

Просмотреть файл

@ -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;

Просмотреть файл

@ -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;