diff --git a/public/css/ios7.less b/public/css/ios7.less index 513bbb9d97..595a9b41bd 100644 --- a/public/css/ios7.less +++ b/public/css/ios7.less @@ -237,7 +237,6 @@ label-info { > li { > a { color: #555; - border: 1px solid transparent; border-radius: 0; transition: all 0.3s; @@ -248,7 +247,6 @@ label-info { } } - // Active state, and it's :hover to override normal :hover &.active > a { &, &:hover, diff --git a/views/api/foursquare.jade b/views/api/foursquare.jade index 835770aee1..9bc04c5cbc 100644 --- a/views/api/foursquare.jade +++ b/views/api/foursquare.jade @@ -17,62 +17,52 @@ block content else h1 i.fa.fa-foursquare - | Foursquare APIs + | Foursquare APIs .btn-group.btn-group-justified - a.btn.btn-lg.btn-primary-outline(href='https://developer.foursquare.com/start', target='_blank') + a.btn.btn-lg.btn-primary(href='https://developer.foursquare.com/start', target='_blank') i.fa.fa-check-square-o | Getting Started - a.btn.btn-lg.btn-primary-outline(href='https://developer.foursquare.com/docs/explore', target='_blank') + a.btn.btn-lg.btn-primary(href='https://developer.foursquare.com/docs/explore', target='_blank') i.fa.fa-laptop | API Console - a.btn.btn-lg.btn-primary-outline(href='https://developer.foursquare.com/docs/', target='_blank') + a.btn.btn-lg.btn-primary(href='https://developer.foursquare.com/docs/', target='_blank') i.fa.fa-code-fork | API Endpoints - ul.nav.nav-tabs.nav-justified - li.active - a(href='#venues', data-toggle='tab') Venues - li - a(href='#users', data-toggle='tab') Users - .tab-content - #venues.tab-pane.fade.active.in - h3.text-primary Trending Venues + h3.text-primary Trending Venues + table.dataTable.table.table-striped.table-bordered + thead + tr + th Name + th.hidden-xs.hidden-sm Category + th.hidden-xs Checkins + th Here Now + tbody + for venue in trendingVenues.venues + tr + td= venue.name + td.hidden-xs.hidden-sm #{venue.categories[0].name} + td.hidden-xs #{venue.stats.checkinsCount} + td= venue.hereNow.count + h3.text-primary Venue Detail + p + img(src='#{venueDetail.venue.photos.groups[0].items[0].prefix}150x150#{venueDetail.venue.photos.groups[0].items[0].suffix}') + .label.label-primary #{venueDetail.venue.name} (#{venueDetail.venue.categories[0].shortName}) + .label.label-success #{venueDetail.venue.location.address}, #{venueDetail.venue.location.city}, #{venueDetail.venue.location.state} + .label.label-warning #{venueDetail.venue.likes.count} likes, #{venueDetail.venue.rating} rating - table.dataTable.table.table-striped.table-bordered - thead - tr - th Name - th.hidden-xs.hidden-sm Category - th.hidden-xs Checkins - th Here Now - tbody - for venue in trendingVenues.venues - tr - td= venue.name - td.hidden-xs.hidden-sm #{venue.categories[0].name} - td.hidden-xs #{venue.stats.checkinsCount} - td= venue.hereNow.count - p - h3.text-primary Venue Detail - p - img(src='#{venueDetail.venue.photos.groups[0].items[0].prefix}150x150#{venueDetail.venue.photos.groups[0].items[0].suffix}') - .label.label-primary #{venueDetail.venue.name} (#{venueDetail.venue.categories[0].shortName}) - .label.label-success #{venueDetail.venue.location.address}, #{venueDetail.venue.location.city}, #{venueDetail.venue.location.state} - .label.label-warning #{venueDetail.venue.likes.count} likes, #{venueDetail.venue.rating} rating - - #users.tab-pane.fade - h3.text-primary User Checkins - table.dataTable.table.table-bordered.table-hover - thead - tr - th Name - th Location - th Category - th Checkins - tbody - for checkin in userCheckins.checkins.items - tr - td= checkin.venue.name - td #{checkin.venue.location.address}, #{checkin.venue.location.city}, #{checkin.venue.location.state} - td= checkin.venue.categories[0].shortName - td= checkin.venue.stats.checkinsCount + h3.text-primary User Checkins + table.dataTable.table.table-bordered.table-hover + thead + tr + th Name + th Location + th Category + th Checkins + tbody + for checkin in userCheckins.checkins.items + tr + td= checkin.venue.name + td #{checkin.venue.location.address}, #{checkin.venue.location.city}, #{checkin.venue.location.state} + td= checkin.venue.categories[0].shortName + td= checkin.venue.stats.checkinsCount diff --git a/views/index.jade b/views/index.jade index 9b00859788..1d6f1ed608 100644 --- a/views/index.jade +++ b/views/index.jade @@ -10,12 +10,4 @@ block content if user .alert.alert-success.fade.in button.close(type='button', data-dismiss='alert', aria-hidden='true') × - | Congratulations, you are logged in! - - ul.nav.nav-tabs.nav-justified - li.active - a(href='#venues', data-toggle='tab') Venues - li - a(href='#users', data-toggle='tab') Users - .tab-content - h2 Demo \ No newline at end of file + | Congratulations, you are logged in! \ No newline at end of file