Skip to content

Commit

Permalink
#16 hierapolis assets added under the vendor
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdilek committed Sep 5, 2013
1 parent d24d060 commit 740c66a
Show file tree
Hide file tree
Showing 24 changed files with 1,342 additions and 34 deletions.
1 change: 1 addition & 0 deletions app/assets/javascripts/application.js.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@
#= require jquery_ujs
#= require turbolinks
#= require bootstrap
#= require hierapolis
#= require_tree .
35 changes: 1 addition & 34 deletions app/assets/stylesheets/application.css.sass
Original file line number Diff line number Diff line change
Expand Up @@ -11,37 +11,4 @@
*= require_self
*= require_tree .
@import "compass"
@import "bootstrap"
@import "bootstrap-responsive"

body
padding-top: 20px
padding-bottom: 40px

/* Custom container
.container-narrow
margin: 0 auto
max-width: 700px
> hr
margin: 30px 0

/* Main marketing message and sign up button
.jumbotron
margin: 60px 0
text-align: center
h1
font-size: 72px
line-height: 1
.btn
font-size: 21px
padding: 14px 24px

/* Supporting marketing content
.marketing
margin: 60px 0
p + h4
margin-top: 28px
@import 'hierapolis'
Binary file not shown.
Binary file not shown.
175 changes: 175 additions & 0 deletions vendor/assets/fonts/glyphiconshalflings-regular.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added vendor/assets/images/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added vendor/assets/images/favicon.ico
Binary file not shown.
Binary file added vendor/assets/images/sprite.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions vendor/assets/javascripts/hierapolis.js.coffee
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#= require bootstrap
#= require_tree

$(document).ready ->

# Enable Tips & Popovers
$('[data-toggle=tooltip]').tooltip()
$('[data-toggle=popover]').popover()

# Eable Dropdowns
$('.dropdown-toggle').dropdown()
$('.dropdown.hover').hover (->
$(this).find('.dropdown-menu').stop(true, true).fadeIn()
), ->
$(this).find('.dropdown-menu').stop(true, true).delay(100).fadeOut()

# Dock dropdown fix
$('#dock li.launcher').each ->
$(this).find('.dropdown-menu').css 'top', $(this).position().top + 33

$('#toggle').click ->
$('#dock .launcher a').toggle()
$('#dock li.launcher').each ->
$(this).find('.dropdown-menu').css 'top', $(this).position().top + 33

# Enable toolbar tooltips
$('[data-toggle=toolbar-tooltip]').tooltip
placement: 'bottom'

# Enable knob inputs
$('.knob').knob()
8 changes: 8 additions & 0 deletions vendor/assets/javascripts/vendor/html5shiv.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 740c66a

Please sign in to comment.