Skip to content

Instantly share code, notes, and snippets.

@felipecabargas
Created January 26, 2012 13:27
Show Gist options
  • Save felipecabargas/1682738 to your computer and use it in GitHub Desktop.
Save felipecabargas/1682738 to your computer and use it in GitHub Desktop.
jquery-mobile custom navbar theme
.ui-footer.ui-bar-footer {
-webkit-box-shadow: 0 1px 0 rgba(39,39,39,0.5) inset, 0 -1px 0 rgba(0,0,0,0) inset;
-moz-box-shadow: 0 1px 0 rgba(39,39,39,0.5) inset, 0 -1px 0 rgba(0,0,0,0) inset;
box-shadow: 0 1px 0 rgba(39,39,39,0.5) inset, 0 -1px 0 rgba(0,0,0,0) inset;
border: 0 none;
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #343434),
color-stop(0.5, #333333),
color-stop(1, #272727)
);
}
.ui-footer .ui-btn {
background: transparent;
}
.ui-footer .ui-btn-active {
-webkit-border-radius: 4px !important;
border-radius: 4px !important;
background: none rgba(255,255,255,0.14);
}
.ui-footer .ui-btn-inner {
border-color: #434343;
padding-top: 40px !important;
}
.ui-footer .ui-btn-text {
display: none;
}
.ui-footer .ui-icon {
width: 30px;
height: 30px;
margin-left: -16px;
}
.ui-footer .ui-icon-shadow {
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment