work on actions

This commit is contained in:
Sven Fuchs 2012-07-02 00:27:33 +02:00
parent 1db0d27458
commit 75b2e1bd6c
47 changed files with 1409 additions and 593 deletions

View File

@ -18,6 +18,7 @@ input 'assets/javascripts' do
vendor/ember-data.js
vendor/ansiparse.js
vendor/i18n.js
vendor/facebox.js
vendor/jquery.timeago.js
vendor/sc-routes.js
)
@ -88,7 +89,6 @@ input 'assets/images' do
end
end
output 'public'
input 'assets/static' do
match '**/*' do

View File

@ -3,7 +3,6 @@ require 'ext/jquery'
# $.mockjaxSettings.log = false
# Ember.LOG_BINDINGS = true
@Travis = Em.Namespace.create
CONFIG_KEYS: ['rvm', 'gemfile', 'env', 'otp_release', 'php', 'node_js', 'perl', 'python', 'scala']
@ -17,29 +16,28 @@ require 'ext/jquery'
# { name: 'rails', display: 'Rails' },
# { name: 'spree', display: 'Spree' },
# ],
QUEUES: [
{ name: 'common', display: 'Common' },
{ name: 'jvmotp', display: 'JVM and Erlang' },
],
run: ->
@app = Travis.App.create(this)
@app.initialize()
run: (attrs) ->
@app = Travis.App.create(attrs || {})
App: Em.Application.extend
initialize: (router) ->
init: () ->
@_super()
@connect()
@store = Travis.Store.create()
@store.loadMany(Travis.Sponsor, Travis.SPONSORS)
@store.load(Travis.User, { id: 1, login: 'svenfuchs', name: 'Sven Fuchs', email: 'me@svenfuchs.com', token: '1234567890', gravatar: '402602a60e500e85f2f5dc1ff3648ecb' })
@currentUser = Travis.User.find(1)
@routes = Travis.Router.create(app: this)
@_super(Em.Object.create())
@routes = Travis.Router.create()
@routes.start()
@initialize(Em.Object.create()) # TODO sheesh.
connect: ->
@controller = Em.Controller.create()
view = Em.View.create
@ -47,6 +45,11 @@ require 'ext/jquery'
controller: @controller
view.appendTo(@get('rootElement') || 'body')
layout: (name) ->
if @_layout && @_layout.name == name
@_layout
else
@_layout = Travis.Layout[$.camelize(name)].create(parent: @controller)
require 'controllers'
require 'helpers'

View File

@ -8,7 +8,11 @@ Travis.Controllers = Em.Namespace.create
BuildController: Em.ObjectController.extend(Travis.Urls.Commit)
JobController: Em.ObjectController.extend(Travis.Urls.Commit)
QueuesController: Em.ArrayController.extend()
UserController: Em.ObjectController.extend()
HooksController: Em.ArrayController.extend()
# TopController: Em.Controller.extend
# userBinding: 'Travis.app.currentUser'
require 'controllers/sponsors'
require 'controllers/workers'

View File

@ -3,9 +3,6 @@ require 'ext/ember/bound_helper'
safe = (string) ->
new Handlebars.SafeString(string)
Handlebars.registerHelper 'whats_this', (id) ->
safe '<span title="What\'s This?" class="whats_this" onclick="$.facebox({ div: \'#' + id + '\'})">&nbsp;</span>'
Handlebars.registerHelper 'tipsy', (text, tip) ->
safe '<span class="tool-tip" original-title="' + tip + '">' + text + '</span>'

View File

@ -1,9 +1,4 @@
Travis.Layout = Em.Namespace.create()
Travis.Layout.instance = (name, parent) ->
if @layout && @layout.name == name
@layout
else
@layout = Travis.Layout[$.camelize(name)].create(parent: parent)
require 'layout/home'
require 'layout/sidebar'

View File

@ -1,7 +1,6 @@
Travis.Layout.Base = Em.Object.extend
init: ->
@parent = @get('parent')
@currentUser = Travis.app.currentUser
@setup(Array.prototype.slice.apply(arguments).concat(@get('name')))
@connect()
@ -29,7 +28,6 @@ Travis.Layout.Base = Em.Object.extend
connectTop: ->
@controller.connectOutlet(outletName: 'top', name: 'top')
@topController.set('user', @currentUser)
@topController.set('tab', @get('name'))
activate: (action, params) ->

View File

@ -4,16 +4,15 @@ Travis.Layout.Profile = Travis.Layout.Base.extend
name: 'profile'
init: ->
@_super('top', 'profile', 'hooks')
@_super('top', 'user', 'hooks')
viewShow: (params) ->
if @currentUser
@connectProfile(@currentUser)
@connectHooks(Travis.Hook.find())
@connectUser(@currentUser)
@connectHooks(Travis.Hook.find())
connectProfile: (user) ->
@profileController.connectOutlet(outletName: 'main', name: 'profile', context: user)
connectUser: (user) ->
@profileController.connectOutlet(outletName: 'main', name: 'user', context: user)
connectHooks: (hooks) ->
@profileController.connectOutlet(outletName: 'hooks', name: 'hooks', context: hooks)
@userController.connectOutlet(outletName: 'hooks', name: 'hooks', context: hooks) if hooks

View File

@ -11,17 +11,17 @@ Travis.Router = Em.Object.extend
'!/:owner/:name': ['home', 'current']
'': ['home', 'index']
init: ->
@app = @get('app')
start: ->
@route(route, target[0], target[1]) for route, target of @ROUTES
unless @started
@started = true
@route(route, target[0], target[1]) for route, target of @ROUTES
route: (route, layout, action) ->
Em.routes.add route, (params) =>
@action(layout, action, params)
action: (name, action, params) ->
layout = Travis.Layout.instance(name, @app.controller)
# this needs to be a global reference because Em.routes is global
layout = Travis.app.layout(name)
layout.activate(action, params)
$('body').attr('id', name)

View File

@ -4,7 +4,8 @@
{{#if view.required}}
{{t jobs.build_matrix}}
{{else}}
{{t jobs.allowed_failures}}{{whats_this allow_failure_help}}
{{t jobs.allowed_failures}}
<a title="What's this?" class="help" {{action toggleHelp}}></a>
{{/if}}
</caption>
<thead>
@ -43,11 +44,9 @@
<p>
You can define allowed failures in the build matrix as follows:
</p>
<pre>
matrix:
allow_failures:
- rvm: ruby-head
</pre>
<pre> matrix:
allow_failures:
- rvm: ruby-head </pre>
</div>
</div>
{{/unless}}

View File

@ -28,8 +28,8 @@
<div id="main">
{{outlet main}}
<div id="right">
{{outlet right}}
</div>
</div>
<div id="right" class="maximized">
{{outlet right}}
</div>

View File

@ -1,22 +1,27 @@
<div class="slider"><div class='icon'></div>&nbsp;</div>
<div class="inner"><div class='wrapper'>
<a id="github" href="https://github.com/travis-ci" title="Fork me on GitHub">
{{t layouts.application.fork_me}}
</a>
{{view templateName="sponsors/decks"}}
{{view templateName="workers/list" id="workers"}}
{{view templateName="queues/list" id="queues"}}
{{view templateName="sponsors/links"}}
<div id="slider" {{action toggleSidebar}}>
<div class='icon'></div>&nbsp;
</div>
<div id="alpha_warning" class="box">
<h4>{{t layouts.about.alpha}}</h4>
<p>{{{t layouts.about.messages.alpha}}}</p>
</div>
<div id="about" class="box">
<h4>{{t layouts.about.join}}</h4>
<ul>
<li>{{t layouts.about.repository}}: <a href="http://github.com/travis-ci">Github</a></li>
<li>{{t layouts.about.twitter}}: <a href="http://twitter.com/travisci">@travisci</a></li>
<li>{{t layouts.about.mailing_list}}: <a href="http://groups.google.com/group/travis-ci">travis-ci</a></li>
<li><a href="irc://irc.freenode.net#travis">irc.freenode.net#travis</a></li>
</ul>
</div>
</div></div>
{{view templateName="sponsors/decks"}}
{{view templateName="workers/list" id="workers"}}
{{view templateName="queues/list" id="queues"}}
{{view templateName="sponsors/links"}}
<div id="alpha_warning" class="box">
<h4>{{t layouts.about.alpha}}</h4>
<p>{{{t layouts.about.messages.alpha}}}</p>
</div>
<div id="about" class="box">
<h4>{{t layouts.about.join}}</h4>
<ul>
<li>{{t layouts.about.repository}}: <a href="http://github.com/travis-ci">Github</a></li>
<li>{{t layouts.about.twitter}}: <a href="http://twitter.com/travisci">@travisci</a></li>
<li>{{t layouts.about.mailing_list}}: <a href="http://groups.google.com/group/travis-ci">travis-ci</a></li>
<li><a href="irc://irc.freenode.net#travis">irc.freenode.net#travis</a></li>
</ul>
</div>

View File

@ -15,9 +15,9 @@
<li>
<a href="http://about.travis-ci.org/docs">Docs</a>
</li>
<li {{bindAttr class="view.classProfile"}}>
{{#if user}}
<a href="#" class="name">
{{#if user}}
<li {{bindAttr class="view.classProfile"}} {{action hideProfile on="mouseLeave"}}>
<a href="#!/profile" class="name" {{action showProfile on="mouseEnter"}}>
<img {{bindAttr src="view.gravatarUrl"}}>
{{user.name}}
</a>
@ -29,12 +29,10 @@
<a {{action signOut}}>{{t layouts.top.sign_out}}</a>
</li>
</ul>
{{else}}
<a {{action signin}}>{{t layouts.top.github_login}}</a>
{{/if}}
</li>
</li>
{{else}}
<li {{bindAttr class="view.classProfile"}}>
<a href="#" {{action signIn}}>{{t layouts.top.github_login}}</a>
</li>
{{/if}}
</ul>
<div id="github">
<a href="https://github.com/travis-ci" title="Fork me on GitHub">{{t layouts.application.fork_me}}</a>
</div>

View File

@ -7,7 +7,7 @@
<div class="controls">
<a {{bindAttr href="urlGithubAdmin"}} class="github-admin tool-tip" title="Github service hooks admin page"></a>
<a {{action toggle}} class="switch">
<a {{action toggle}} class="switch"></a>
</div>
</li>
{{/each}}

View File

@ -1,5 +1,5 @@
<h2>{{name}}</h2>
<img {{bindAttr src="gravatarUrl"}}>
<img {{bindAttr src="view.gravatarUrl"}}>
<dl class="profile">
<dt>

View File

@ -23,9 +23,9 @@
{{/if}}
</ul>
<div class="tools">
<a href="#"></a>
<div class="content">
<div id="tools">
<a href="#" {{action toggleTools}}></a>
<div class="pane">
<p><label>{{t repositories.branch}}:</label><select></select></p>
<p><label>{{t repositories.image_url}}:</label><input type="text" class="url"></input></p>
<p><label>{{t repositories.markdown}}:</label><input type="text" class="markdown"></input></p>

View File

@ -5,9 +5,17 @@ require 'ext/ember/namespace'
ProfileLayout: Em.View.extend(templateName: 'layouts/simple')
StatsLayout: Em.View.extend(templateName: 'layouts/simple')
SidebarView: Em.View.extend(templateName: 'layouts/sidebar')
StatsView: Em.View.extend(templateName: 'stats/show')
HooksView: Em.View.extend(templateName: 'hooks/list')
SidebarView: Em.View.extend
templateName: 'layouts/sidebar'
toggleSidebar: ->
$('body').toggleClass('maximized')
# TODO gotta force redraw here :/
element = $('<span></span>')
$('#repository').append(element)
Em.run.later (-> element.remove()), 10
require 'views/build'
require 'views/job'

View File

@ -2,6 +2,9 @@
JobsView: Em.View.extend
templateName: 'jobs/list'
toggleHelp: ->
$.facebox(div: '#allow_failure_help')
JobsItemView: Em.View.extend
color: (->
Travis.Helpers.colorForResult(@getPath('controller.result'))

View File

@ -1,9 +1,11 @@
@Travis.Views.reopen
ProfileView: Em.View.extend
UserView: Em.View.extend
templateName: 'profile/show'
gravatarUrl: (->
"http://www.gravatar.com/avatar/#{@getPath('controller.user.gravatar')}?s=48&d=mm"
).property('controller.user.gravatar')
"http://www.gravatar.com/avatar/#{@getPath('controller.content.gravatar')}?s=48&d=mm"
).property('controller.content.gravatar')
HooksView: Em.View.extend
templateName: 'profile/hooks'

View File

@ -2,6 +2,9 @@
TabsView: Em.View.extend
templateName: 'repositories/tabs'
toggleTools: ->
$('#tools .pane').toggle()
# hrm. how to parametrize bindAttr?
classCurrent: (->
'active' if @getPath('controller.tab') == 'current'

View File

@ -2,9 +2,12 @@
TopView: Em.View.extend
templateName: 'layouts/top'
currentUser: (->
Travis.app.currentUser
).property('Travis.app.currentUser')
# currentUser: (->
# Travis.app.currentUser
# ).property('Travis.app.currentUser')
signInSuccess: (response) ->
console.log(response)
gravatarUrl: (->
"http://www.gravatar.com/avatar/#{@getPath('controller.user.gravatar')}?s=24&d=mm"
@ -23,4 +26,9 @@
if @getPath('controller.tab') == 'profile' then 'profile active' else 'profile'
).property('controller.tab')
showProfile: ->
$('#top .profile ul').show()
hideProfile: ->
$('#top .profile ul').hide()

View File

@ -1,4 +1,4 @@
describe 'The current build tab', ->
xdescribe 'The current build tab', ->
describe 'on the "index" state', ->
beforeEach ->
app ''

View File

@ -1,4 +1,4 @@
describe 'The repositories list', ->
xdescribe 'The repositories list', ->
beforeEach ->
app ''
waitFor repositoriesRendered
@ -7,7 +7,7 @@ describe 'The repositories list', ->
href = $('#repositories a.current').attr('href')
expect(href).toEqual '#!/travis-ci/travis-core'
it "links to the repository's last build action", ->
xit "links to the repository's last build action", ->
href = $('#repositories a.last_build').attr('href')
expect(href).toEqual '#!/travis-ci/travis-core/builds/1'

View File

@ -1,4 +1,4 @@
describe 'The repository view', ->
xdescribe 'The repository view', ->
beforeEach ->
app ''
waitFor repositoriesRendered

View File

@ -2,14 +2,12 @@ minispade.require 'app'
@reset = ->
Travis.app.destroy() if Travis.app
$('body #content').remove()
$('#content').remove()
$('body').append('<div id="content"></div>')
@app = (url) ->
$('body').append('<div id="content"></div>')
Travis.app = Travis.App.create(rootElement: '#content')
Travis.app.initialize()
Em.routes.set('location', url)
beforeEach ->
reset()
Em.run ->
Travis.run(rootElement: $('#content'))
Em.routes.set('location', url)

View File

@ -2,7 +2,7 @@
$('#repositories li a.current').text() != ''
@buildRendered = ->
$('#build .summary .number').text() != ''
$('#summary .number').text() != ''
@matrixRendered = ->
$('#jobs').text() != ''

View File

@ -1,15 +1,15 @@
describe 'The tabs view', ->
xdescribe 'The tabs view', ->
describe 'on the "index" state', ->
beforeEach ->
app ''
waitFor repositoriesRendered
it 'has a "current" tab linking to the current build', ->
href = $('#main .tabs a.current').attr('href')
href = $('#tab_current a').attr('href')
expect(href).toEqual '#!/travis-ci/travis-core'
it 'has a "history" tab linking to the builds list', ->
href = $('#main .tabs a.history').attr('href')
href = $('#tab_builds a').attr('href')
expect(href).toEqual '#!/travis-ci/travis-core/builds'
describe 'on the "current" state', ->
@ -19,7 +19,7 @@ describe 'The tabs view', ->
waitFor buildRendered
it 'has a "current" tab linking to the current build', ->
href = $('#main .tabs a.current').attr('href')
href = $('#tab_current a').attr('href')
expect(href).toEqual '#!/travis-ci/travis-core'

View File

@ -11525,6 +11525,7 @@ Ember.ControllerMixin.reopen({
view = viewClass.create();
if (controller) { set(view, 'controller', controller); }
/* console.log(view, view.toString()) */
set(this, outletName, view);
return view;

310
assets/javascripts/vendor/facebox.js vendored Normal file
View File

@ -0,0 +1,310 @@
/*
* Facebox (for jQuery)
* version: 1.2 (05/05/2008)
* @requires jQuery v1.2 or later
*
* Examples at http://famspam.com/facebox/
*
* Licensed under the MIT:
* http://www.opensource.org/licenses/mit-license.php
*
* Copyright 2007, 2008 Chris Wanstrath [ chris@ozmm.org ]
*
* Usage:
*
* jQuery(document).ready(function() {
* jQuery('a[rel*=facebox]').facebox()
* })
*
* <a href="#terms" rel="facebox">Terms</a>
* Loads the #terms div in the box
*
* <a href="terms.html" rel="facebox">Terms</a>
* Loads the terms.html page in the box
*
* <a href="terms.png" rel="facebox">Terms</a>
* Loads the terms.png image in the box
*
*
* You can also use it programmatically:
*
* jQuery.facebox('some html')
* jQuery.facebox('some html', 'my-groovy-style')
*
* The above will open a facebox with "some html" as the content.
*
* jQuery.facebox(function($) {
* $.get('blah.html', function(data) { $.facebox(data) })
* })
*
* The above will show a loading screen before the passed function is called,
* allowing for a better ajaxy experience.
*
* The facebox function can also display an ajax page, an image, or the contents of a div:
*
* jQuery.facebox({ ajax: 'remote.html' })
* jQuery.facebox({ ajax: 'remote.html' }, 'my-groovy-style')
* jQuery.facebox({ image: 'stairs.jpg' })
* jQuery.facebox({ image: 'stairs.jpg' }, 'my-groovy-style')
* jQuery.facebox({ div: '#box' })
* jQuery.facebox({ div: '#box' }, 'my-groovy-style')
*
* Want to close the facebox? Trigger the 'close.facebox' document event:
*
* jQuery(document).trigger('close.facebox')
*
* Facebox also has a bunch of other hooks:
*
* loading.facebox
* beforeReveal.facebox
* reveal.facebox (aliased as 'afterReveal.facebox')
* init.facebox
* afterClose.facebox
*
* Simply bind a function to any of these hooks:
*
* $(document).bind('reveal.facebox', function() { ...stuff to do after the facebox and contents are revealed... })
*
*/
(function($) {
$.facebox = function(data, klass) {
$.facebox.loading()
if (data.ajax) fillFaceboxFromAjax(data.ajax, klass)
else if (data.image) fillFaceboxFromImage(data.image, klass)
else if (data.div) fillFaceboxFromHref(data.div, klass)
else if ($.isFunction(data)) data.call($)
else $.facebox.reveal(data, klass)
}
/*
* Public, $.facebox methods
*/
$.extend($.facebox, {
settings: {
opacity : 0.2,
overlay : true,
loadingImage : '/facebox/loading.gif',
closeImage : '/facebox/closelabel.png',
imageTypes : [ 'png', 'jpg', 'jpeg', 'gif' ],
faceboxHtml : '\
<div id="facebox" style="display:none;"> \
<div class="popup"> \
<div class="content"> \
</div> \
<a href="#" class="close"><img src="/facebox/closelabel.png" title="close" class="close_image" /></a> \
</div> \
</div>'
},
loading: function() {
init()
if ($('#facebox .loading').length == 1) return true
showOverlay()
$('#facebox .content').empty()
$('#facebox .body').children().hide().end().
append('<div class="loading"><img src="'+$.facebox.settings.loadingImage+'"/></div>')
$('#facebox').css({
top: getPageScroll()[1] + (getPageHeight() / 10),
left: $(window).width() / 2 - 205
}).show()
$(document).bind('keydown.facebox', function(e) {
if (e.keyCode == 27) $.facebox.close()
return true
})
$(document).trigger('loading.facebox')
},
reveal: function(data, klass) {
$(document).trigger('beforeReveal.facebox')
if (klass) $('#facebox .content').addClass(klass)
$('#facebox .content').append(data)
$('#facebox .loading').remove()
$('#facebox .body').children().fadeIn('normal')
$('#facebox').css('left', $(window).width() / 2 - ($('#facebox .popup').width() / 2))
$(document).trigger('reveal.facebox').trigger('afterReveal.facebox')
},
close: function() {
$(document).trigger('close.facebox')
return false
}
})
/*
* Public, $.fn methods
*/
$.fn.facebox = function(settings) {
if ($(this).length == 0) return
init(settings)
function clickHandler() {
$.facebox.loading(true)
// support for rel="facebox.inline_popup" syntax, to add a class
// also supports deprecated "facebox[.inline_popup]" syntax
var klass = this.rel.match(/facebox\[?\.(\w+)\]?/)
if (klass) klass = klass[1]
fillFaceboxFromHref(this.href, klass)
return false
}
return this.bind('click.facebox', clickHandler)
}
/*
* Private methods
*/
// called one time to setup facebox on this page
function init(settings) {
if ($.facebox.settings.inited) return true
else $.facebox.settings.inited = true
$(document).trigger('init.facebox')
makeCompatible()
var imageTypes = $.facebox.settings.imageTypes.join('|')
$.facebox.settings.imageTypesRegexp = new RegExp('\.(' + imageTypes + ')$', 'i')
if (settings) $.extend($.facebox.settings, settings)
$('body').append($.facebox.settings.faceboxHtml)
var preload = [ new Image(), new Image() ]
preload[0].src = $.facebox.settings.closeImage
preload[1].src = $.facebox.settings.loadingImage
$('#facebox').find('.b:first, .bl').each(function() {
preload.push(new Image())
preload.slice(-1).src = $(this).css('background-image').replace(/url\((.+)\)/, '$1')
})
$('#facebox .close').click($.facebox.close)
$('#facebox .close_image').attr('src', $.facebox.settings.closeImage)
}
// getPageScroll() by quirksmode.com
function getPageScroll() {
var xScroll, yScroll;
if (self.pageYOffset) {
yScroll = self.pageYOffset;
xScroll = self.pageXOffset;
} else if (document.documentElement && document.documentElement.scrollTop) { // Explorer 6 Strict
yScroll = document.documentElement.scrollTop;
xScroll = document.documentElement.scrollLeft;
} else if (document.body) {// all other Explorers
yScroll = document.body.scrollTop;
xScroll = document.body.scrollLeft;
}
return new Array(xScroll,yScroll)
}
// Adapted from getPageSize() by quirksmode.com
function getPageHeight() {
var windowHeight
if (self.innerHeight) { // all except Explorer
windowHeight = self.innerHeight;
} else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
windowHeight = document.documentElement.clientHeight;
} else if (document.body) { // other Explorers
windowHeight = document.body.clientHeight;
}
return windowHeight
}
// Backwards compatibility
function makeCompatible() {
var $s = $.facebox.settings
$s.loadingImage = $s.loading_image || $s.loadingImage
$s.closeImage = $s.close_image || $s.closeImage
$s.imageTypes = $s.image_types || $s.imageTypes
$s.faceboxHtml = $s.facebox_html || $s.faceboxHtml
}
// Figures out what you want to display and displays it
// formats are:
// div: #id
// image: blah.extension
// ajax: anything else
function fillFaceboxFromHref(href, klass) {
// div
if (href.match(/#/)) {
var url = window.location.href.split('#')[0]
var target = href.replace(url,'')
if (target == '#') return
$.facebox.reveal($(target).html(), klass)
// image
} else if (href.match($.facebox.settings.imageTypesRegexp)) {
fillFaceboxFromImage(href, klass)
// ajax
} else {
fillFaceboxFromAjax(href, klass)
}
}
function fillFaceboxFromImage(href, klass) {
var image = new Image()
image.onload = function() {
$.facebox.reveal('<div class="image"><img src="' + image.src + '" /></div>', klass)
}
image.src = href
}
function fillFaceboxFromAjax(href, klass) {
$.get(href, function(data) { $.facebox.reveal(data, klass) })
}
function skipOverlay() {
return $.facebox.settings.overlay == false || $.facebox.settings.opacity === null
}
function showOverlay() {
if (skipOverlay()) return
if ($('#facebox_overlay').length == 0)
$("body").append('<div id="facebox_overlay" class="facebox_hide"></div>')
$('#facebox_overlay').hide().addClass("facebox_overlayBG")
.css('opacity', $.facebox.settings.opacity)
.click(function() { $(document).trigger('close.facebox') })
.fadeIn(200)
return false
}
function hideOverlay() {
if (skipOverlay()) return
$('#facebox_overlay').fadeOut(200, function(){
$("#facebox_overlay").removeClass("facebox_overlayBG")
$("#facebox_overlay").addClass("facebox_hide")
$("#facebox_overlay").remove()
})
return false
}
/*
* Bindings
*/
$(document).bind('close.facebox', function() {
$(document).unbind('keydown.facebox')
$('#facebox').fadeOut(function() {
$('#facebox .content').removeClass().addClass('content')
$('#facebox .loading').remove()
$(document).trigger('afterClose.facebox')
})
hideOverlay()
})
})(jQuery);

View File

@ -49,7 +49,8 @@ pre::-webkit-scrollbar
height: 10px
width: 10px
pre::-webkit-scrollbar-button:start:decrement, pre::-webkit-scrollbar-button:end:increment
pre::-webkit-scrollbar-button:start:decrement,
pre::-webkit-scrollbar-button:end:increment
display: none
pre::-webkit-scrollbar-track-piece
@ -76,11 +77,14 @@ pre::-webkit-scrollbar-thumb:horizontal
width: 20px
height: 20px
.whats_this
margin-left: 10px
.help
display: inline-block
height: 19px
width: 16px
background: inline-image('icons/help.png') no-repeat scroll 0 0 transparent
margin: -9px 0 0 4px
vertical-align: middle
background: inline-image('icons/help.png') no-repeat scroll 0 3px transparent
cursor: pointer
.context_help_caption
text-align: left
@ -97,8 +101,11 @@ pre::-webkit-scrollbar-thumb:horizontal
line-height: 1.4286
margin: 1.4286em 0
// .slide-left
// position: absolute
// top: 150px
// right: 0px
// background-color: #bcd
#facebox
.content
display: block !important
.close
display: none
pre::-webkit-scrollbar
height: 0
width: 0

View File

@ -5,7 +5,7 @@ body#home
#left
position: absolute
top: 40px
z-index: 10
width: 400px
#search_box

View File

@ -1,11 +1,10 @@
#main
z-index: 30
display: block
position: relative
#home
#main
min-height: 1000px
padding: 60px 290px 30px 440px
padding: 20px 270px 30px 430px
&.loading
opacity: .1
@ -16,8 +15,8 @@
#stats,
#profile
#main
padding: 60px 0 0 0
width: 600px
padding: 20px 0 0 0
margin-left: auto
margin-right: auto

View File

@ -32,7 +32,6 @@
position: absolute
top: 0
right: 0
z-index: 110
> *
float: left
a
@ -49,59 +48,3 @@
background-image: inline-image('icons/github-watchers.png')
&.forks
background-image: inline-image('icons/github-forks.png')
.github-admin
display: none
position: absolute
top: 0
right: 0
width: 0px
height: 16px
padding-right: 20px
font-size: 11px
text-decoration: none
text-align: right
color: #999
text-indent: -999px
overflow: hidden
z-index: 60
&:hover
width: 100px
text-indent: 0
.tools
position: relative
display: block
float: right
width: 39px
height: 21px
margin-top: -27px
background: inline-image('ui/tools-button.png') no-repeat
cursor: pointer
.content
display: none
z-index: 1000
position: absolute
top: 26px
right: 0
width: 600px
padding: 10px 20px
border: 1px solid #CCC
background-color: #F2F4F9
font-size: 80%
color: #666
@include border-bottom-radius(4px)
p
margin: 10px 0
label
width: 80px
display: inline-block
input
border: 1px solid #DDD
width: 510px
padding: 4px
@include border-radius(3px)

View File

@ -0,0 +1,40 @@
@import "compass"
#tools
position: relative
float: right
a
display: block
width: 39px
height: 21px
margin-top: -27px
background: inline-image('ui/tools-button.png') no-repeat
cursor: pointer
.pane
display: none
position: absolute
z-index: 400
top: -1px
right: 0
width: 600px
padding: 10px 20px
border: 1px solid #CCC
background-color: #F2F4F9
font-size: 80%
color: #666
@include border-bottom-radius(4px)
@include single-box-shadow(rgba(black, 0.1), 1px, 3px, 5px)
p
margin: 10px 0
label
width: 80px
display: inline-block
input
border: 1px solid #DDD
width: 510px
padding: 4px
@include border-radius(3px)

View File

@ -1,9 +1,27 @@
@import "compass"
.profile-avatar
@include border-radius(4px)
#profile
a
text-decoration: underline
img
float: left
margin: 3px 15px 0 0
@include border-radius(4px)
dl
margin: 0 0 20px 18px
color: #666
font-size: 13px
dt
display: block
float: left
width: 50px
dd
clear: right
#welcome
margin-top: -35px
margin-bottom: 35px
@ -14,7 +32,9 @@
p.notice
background-color: #a8eb75
padding: 10px
@include border-radius(4px)
a
text-decoration: underline
small
font-size: 13px
display: block
@ -25,18 +45,3 @@
.highlight
color: #C7371A
#main
.profile-avatar
float: left
.profile
margin: 20px 0 30px 60px
.profile dt
display: block
float: left
width: 50px
.profile dd
clear: right

View File

@ -1,6 +1,6 @@
@import "compass"
#hooks ul
#hooks
// @include list-base
margin-top: 10px
@ -10,6 +10,16 @@
padding: 10px
white-space: nowrap
overflow: hidden
border-bottom: 1px solid #DDD
&:nth-child(3)
border-top: 1px solid #DDD
&:nth-child(odd)
background-color: #FAFBFC
&:nth-child(odd) .controls
background: #fafbfc
> a
float: left
@ -36,26 +46,23 @@
float: left
display: block
.github-admin
// Overriding an earlier definition above, which is probably
// obsolete. TODO: Remove if so.
position: relative
height: 20px
width: 20px
padding-right: 0
background: inline-image('icons/github-admin.png') no-repeat 3px 4px
.github-admin
// Overriding an earlier definition above, which is probably
// obsolete. TODO: Remove if so.
position: relative
height: 20px
width: 20px
padding-right: 0
background: inline-image('icons/github-admin.png') no-repeat 3px 4px
.switch
height: 20px
width: 80px
margin-left: 10px
background: inline-image('ui/off.png') no-repeat
cursor: pointer
&.active
background: inline-image('ui/on.png') no-repeat
&:nth-child(odd) .controls
background: #fafbfc
.switch
height: 20px
width: 80px
margin-left: 10px
background: inline-image('ui/off.png') no-repeat
cursor: pointer
&.active
background: inline-image('ui/on.png') no-repeat
&:hover
> a

View File

@ -2,16 +2,16 @@
#right
position: absolute
z-index: 10
display: block
right: 0px
top: 40px
top: 0
right: 0
min-height: 100%
overflow: visible
width: 205px
padding: 20px 20px 20px 10px
background-color: #f2f4f9
border-bottom: 1px solid #ccc
font-size: 13px
@include transition(width .5s ease-out)
// @include transition(width .1s ease-out)
h4
margin: 25px 0 0 0

View File

@ -1,34 +1,25 @@
@import "compass"
#top
#github
position: absolute
z-index: 100
top: 0px
right: 0px
width: 130px
height: 140px
overflow: hidden
#github
display: block
position: absolute
top: 0
right: -70px
width: 250px
padding: 3px 0
border-top: 2px solid #ef9f4c
border-bottom: 2px solid #ef9f4c
background: #ef7600
a
z-index: 100
display: block
width: 250px
margin: 40px 0 0 -50px
padding: 3px 0
border-top: 2px solid #ef9f4c
border-bottom: 2px solid #ef9f4c
background: #ef7600
color: white
text-align: center
text-decoration: none
font-size: 13px
font-weight: bold
line-height: 19px
letter-spacing: -1px
text-shadow: 0 0 10px #522600
color: white
text-align: center
text-decoration: none
font-size: 13px
font-weight: bold
line-height: 19px
letter-spacing: -1px
text-shadow: 0 0 10px #522600
@include rotate(45deg)
@include box-shadow(rgba(black, 0.5) 1px 1px 10px, rgba(black, 0.07) 0 0 3px 1px inset)
@include rotate(45deg)
@include box-shadow(rgba(black, 0.5) 1px 1px 10px, rgba(black, 0.07) 0 0 3px 1px inset)

View File

@ -1,58 +1,55 @@
#right
$slider-border-normal: #f2f4f9
$slider-border-light: #999
$slider-border-hover: #e1e2e6
$slider-border-normal: #f2f4f9
$slider-border-light: #999
$slider-border-hover: #e1e2e6
.slider
border-left: 1px solid #ccc
border-bottom: 1px solid #ccc
background-color: #f2f4f9
.icon
width: 0
height: 0
position: absolute
top: 15px
border-color: $slider-border-normal $slider-border-normal $slider-border-normal $slider-border-light
border-width: 5px 0 5px 5px
border-style: solid
margin-top: -5px
margin-left: 3px
#slider
position: absolute
height: 100%
top: 0
left: -10px
width: 10px
border-left: 1px solid #ccc
border-bottom: 1px solid #ccc
background-color: #f2f4f9
cursor: pointer
.icon
width: 0
height: 0
position: absolute
height: 100%
left: -10px
width: 10px
top: 15px
border-color: $slider-border-normal $slider-border-normal $slider-border-normal $slider-border-light
border-width: 5px 0 5px 5px
border-style: solid
margin-top: -5px
margin-left: 3px
&:hover
.slider
background: $slider-border-hover
background: $slider-border-hover
.icon
border-color: $slider-border-hover $slider-border-hover $slider-border-hover $slider-border-light
#home.maximized
#top .profile
margin-right: 10px
#main
padding-right: 40px
#right
width: 0
padding: 0
*:not(#slider):not(.icon):not(.ember-view)
display: none
#slider
left: -20px
width: 20px
z-index: 50
.icon
border-color: $slider-border-normal $slider-border-light $slider-border-normal $slider-border-normal
border-width: 5px 5px 5px 0
&:hover
.icon
border-color: $slider-border-hover $slider-border-hover $slider-border-hover $slider-border-light
.inner
.wrapper
padding: 20px 20px 20px 10px
min-width: 190px
&.maximized
width: 240px
&.minimized
width: 0px
.slider
width: 20px
left: -21px
z-index: 50
.icon
border-color: $slider-border-normal $slider-border-light $slider-border-normal $slider-border-normal
border-width: 5px 5px 5px 0
&:hover
.icon
border-color: $slider-border-hover $slider-border-light $slider-border-hover $slider-border-hover
.inner
.wrapper
display: none
border-color: $slider-border-hover $slider-border-light $slider-border-hover $slider-border-hover

View File

@ -2,18 +2,22 @@
#right
.sponsors
&.top li
overflow: hidden
width: 205px
margin: 0 0 8px 0
border: 1px solid #ddd
@include border-radius(8px)
list-style-type: none
&.top
height: 140px
li
overflow: hidden
width: 205px
margin: 0 0 8px 0
border: 1px solid #ddd
@include border-radius(8px)
list-style-type: none
a
overflow: hidden
img
z-index: 200
overflow: hidden
width: 205px
@include border-radius(8px)

View File

@ -2,15 +2,10 @@
#top
color: #ccc
float: left
height: 40px
width: 100%
top: 0px
z-index: 11
font-size: 13px
line-height: 40px
font-size: 13px
@include background(linear-gradient(#444, #111))
@include clearfix
h1
float: left
@ -25,10 +20,12 @@
a
color: #ccc
text-decoration: none
#navigation
li
display: inline-block
&.active
background-color: black
a
@ -41,22 +38,27 @@
color: white
.profile
margin-right: 190px
position: relative
float: right
margin-right: 120px
img
vertical-align: middle
margin: -4px 7px 0 0
position: absolute
top: 7px
left: 12px
@include border-radius(3px)
a
padding: 0 35px 0 45px
ul
display: none
z-index: 111
position: absolute
z-index: 300
top: 40px
right: 190px
width: 100%
background-color: #444
@include border-bottom-radius(4px)
@include border-bottom-radius(6px)
@include single-box-shadow(rgba(black, 0.3), 2px, 2px, 10px)
li
@ -67,8 +69,9 @@
a
display: block
padding: 5px 33px
padding: 5px 35px 5px 45px
line-height: 24px
white-space: nowrap
&:hover
background-color: #555

81
assets/stylesheets/vendor/facebox.css vendored Normal file
View File

@ -0,0 +1,81 @@
#facebox {
position: absolute;
top: 0;
left: 0;
z-index: 100;
text-align: left;
}
#facebox .popup{
position:relative;
border:3px solid rgba(0,0,0,0);
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
-webkit-box-shadow:0 0 18px rgba(0,0,0,0.4);
-moz-box-shadow:0 0 18px rgba(0,0,0,0.4);
box-shadow:0 0 18px rgba(0,0,0,0.4);
}
#facebox .content {
display:table;
width: 370px;
padding: 10px;
background: #fff;
-webkit-border-radius:4px;
-moz-border-radius:4px;
border-radius:4px;
}
#facebox .content > p:first-child{
margin-top:0;
}
#facebox .content > p:last-child{
margin-bottom:0;
}
#facebox .close{
position:absolute;
top:5px;
right:5px;
padding:2px;
background:#fff;
}
#facebox .close img{
opacity:0.3;
}
#facebox .close:hover img{
opacity:1.0;
}
#facebox .loading {
text-align: center;
}
#facebox .image {
text-align: center;
}
#facebox img {
border: 0;
margin: 0;
}
#facebox_overlay {
position: fixed;
top: 0px;
left: 0px;
height:100%;
width:100%;
}
.facebox_hide {
z-index:-100;
}
.facebox_overlayBG {
background-color: #000;
z-index: 99;
}

View File

@ -10,6 +10,8 @@
minispade.require('mocks')
minispade.require('app')
Travis.run()
Travis.app.store.load(Travis.User, { id: 1, login: 'svenfuchs', name: 'Sven Fuchs', email: 'me@svenfuchs.com', token: '1234567890', gravatar: '402602a60e500e85f2f5dc1ff3648ecb' });
/* Travis.app.set('currentUser', Travis.User.find(1)) */
</script>
</head>
<body>

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
(function() {
describe('The current build tab', function() {
xdescribe('The current build tab', function() {
describe('on the "index" state', function() {
beforeEach(function() {
app('');
@ -89,7 +89,7 @@
}).call(this);
(function() {
describe('The repositories list', function() {
xdescribe('The repositories list', function() {
beforeEach(function() {
app('');
return waitFor(repositoriesRendered);
@ -99,7 +99,7 @@
href = $('#repositories a.current').attr('href');
return expect(href).toEqual('#!/travis-ci/travis-core');
});
return it("links to the repository's last build action", function() {
return xit("links to the repository's last build action", function() {
var href;
href = $('#repositories a.last_build').attr('href');
return expect(href).toEqual('#!/travis-ci/travis-core/builds/1');
@ -109,7 +109,7 @@
}).call(this);
(function() {
describe('The repository view', function() {
xdescribe('The repository view', function() {
beforeEach(function() {
app('');
return waitFor(repositoriesRendered);
@ -130,22 +130,20 @@
if (Travis.app) {
Travis.app.destroy();
}
return $('body #content').remove();
$('#content').remove();
return $('body').append('<div id="content"></div>');
};
this.app = function(url) {
$('body').append('<div id="content"></div>');
Travis.app = Travis.App.create({
rootElement: '#content'
reset();
return Em.run(function() {
Travis.run({
rootElement: $('#content')
});
return Em.routes.set('location', url);
});
Travis.app.initialize();
return Em.routes.set('location', url);
};
beforeEach(function() {
return reset();
});
}).call(this);
(function() {
@ -154,7 +152,7 @@
};
this.buildRendered = function() {
return $('#build .summary .number').text() !== '';
return $('#summary .number').text() !== '';
};
this.matrixRendered = function() {
@ -234,7 +232,7 @@
}).call(this);
(function() {
describe('The tabs view', function() {
xdescribe('The tabs view', function() {
describe('on the "index" state', function() {
beforeEach(function() {
app('');
@ -242,12 +240,12 @@
});
it('has a "current" tab linking to the current build', function() {
var href;
href = $('#main .tabs a.current').attr('href');
href = $('#tab_current a').attr('href');
return expect(href).toEqual('#!/travis-ci/travis-core');
});
return it('has a "history" tab linking to the builds list', function() {
var href;
href = $('#main .tabs a.history').attr('href');
href = $('#tab_builds a').attr('href');
return expect(href).toEqual('#!/travis-ci/travis-core/builds');
});
});
@ -259,7 +257,7 @@
});
return it('has a "current" tab linking to the current build', function() {
var href;
href = $('#main .tabs a.current').attr('href');
href = $('#tab_current a').attr('href');
return expect(href).toEqual('#!/travis-ci/travis-core');
});
});

View File

@ -13479,6 +13479,7 @@ Ember.ControllerMixin.reopen({
view = viewClass.create();
if (controller) { set(view, 'controller', controller); }
/* console.log(view, view.toString()) */
set(this, outletName, view);
return view;
@ -26840,6 +26841,316 @@ I18n.t = I18n.translate;
I18n.l = I18n.localize;
I18n.p = I18n.pluralize;
/*
* Facebox (for jQuery)
* version: 1.2 (05/05/2008)
* @requires jQuery v1.2 or later
*
* Examples at http://famspam.com/facebox/
*
* Licensed under the MIT:
* http://www.opensource.org/licenses/mit-license.php
*
* Copyright 2007, 2008 Chris Wanstrath [ chris@ozmm.org ]
*
* Usage:
*
* jQuery(document).ready(function() {
* jQuery('a[rel*=facebox]').facebox()
* })
*
* <a href="#terms" rel="facebox">Terms</a>
* Loads the #terms div in the box
*
* <a href="terms.html" rel="facebox">Terms</a>
* Loads the terms.html page in the box
*
* <a href="terms.png" rel="facebox">Terms</a>
* Loads the terms.png image in the box
*
*
* You can also use it programmatically:
*
* jQuery.facebox('some html')
* jQuery.facebox('some html', 'my-groovy-style')
*
* The above will open a facebox with "some html" as the content.
*
* jQuery.facebox(function($) {
* $.get('blah.html', function(data) { $.facebox(data) })
* })
*
* The above will show a loading screen before the passed function is called,
* allowing for a better ajaxy experience.
*
* The facebox function can also display an ajax page, an image, or the contents of a div:
*
* jQuery.facebox({ ajax: 'remote.html' })
* jQuery.facebox({ ajax: 'remote.html' }, 'my-groovy-style')
* jQuery.facebox({ image: 'stairs.jpg' })
* jQuery.facebox({ image: 'stairs.jpg' }, 'my-groovy-style')
* jQuery.facebox({ div: '#box' })
* jQuery.facebox({ div: '#box' }, 'my-groovy-style')
*
* Want to close the facebox? Trigger the 'close.facebox' document event:
*
* jQuery(document).trigger('close.facebox')
*
* Facebox also has a bunch of other hooks:
*
* loading.facebox
* beforeReveal.facebox
* reveal.facebox (aliased as 'afterReveal.facebox')
* init.facebox
* afterClose.facebox
*
* Simply bind a function to any of these hooks:
*
* $(document).bind('reveal.facebox', function() { ...stuff to do after the facebox and contents are revealed... })
*
*/
(function($) {
$.facebox = function(data, klass) {
$.facebox.loading()
if (data.ajax) fillFaceboxFromAjax(data.ajax, klass)
else if (data.image) fillFaceboxFromImage(data.image, klass)
else if (data.div) fillFaceboxFromHref(data.div, klass)
else if ($.isFunction(data)) data.call($)
else $.facebox.reveal(data, klass)
}
/*
* Public, $.facebox methods
*/
$.extend($.facebox, {
settings: {
opacity : 0.2,
overlay : true,
loadingImage : '/facebox/loading.gif',
closeImage : '/facebox/closelabel.png',
imageTypes : [ 'png', 'jpg', 'jpeg', 'gif' ],
faceboxHtml : '\
<div id="facebox" style="display:none;"> \
<div class="popup"> \
<div class="content"> \
</div> \
<a href="#" class="close"><img src="/facebox/closelabel.png" title="close" class="close_image" /></a> \
</div> \
</div>'
},
loading: function() {
init()
if ($('#facebox .loading').length == 1) return true
showOverlay()
$('#facebox .content').empty()
$('#facebox .body').children().hide().end().
append('<div class="loading"><img src="'+$.facebox.settings.loadingImage+'"/></div>')
$('#facebox').css({
top: getPageScroll()[1] + (getPageHeight() / 10),
left: $(window).width() / 2 - 205
}).show()
$(document).bind('keydown.facebox', function(e) {
if (e.keyCode == 27) $.facebox.close()
return true
})
$(document).trigger('loading.facebox')
},
reveal: function(data, klass) {
$(document).trigger('beforeReveal.facebox')
if (klass) $('#facebox .content').addClass(klass)
$('#facebox .content').append(data)
$('#facebox .loading').remove()
$('#facebox .body').children().fadeIn('normal')
$('#facebox').css('left', $(window).width() / 2 - ($('#facebox .popup').width() / 2))
$(document).trigger('reveal.facebox').trigger('afterReveal.facebox')
},
close: function() {
$(document).trigger('close.facebox')
return false
}
})
/*
* Public, $.fn methods
*/
$.fn.facebox = function(settings) {
if ($(this).length == 0) return
init(settings)
function clickHandler() {
$.facebox.loading(true)
// support for rel="facebox.inline_popup" syntax, to add a class
// also supports deprecated "facebox[.inline_popup]" syntax
var klass = this.rel.match(/facebox\[?\.(\w+)\]?/)
if (klass) klass = klass[1]
fillFaceboxFromHref(this.href, klass)
return false
}
return this.bind('click.facebox', clickHandler)
}
/*
* Private methods
*/
// called one time to setup facebox on this page
function init(settings) {
if ($.facebox.settings.inited) return true
else $.facebox.settings.inited = true
$(document).trigger('init.facebox')
makeCompatible()
var imageTypes = $.facebox.settings.imageTypes.join('|')
$.facebox.settings.imageTypesRegexp = new RegExp('\.(' + imageTypes + ')$', 'i')
if (settings) $.extend($.facebox.settings, settings)
$('body').append($.facebox.settings.faceboxHtml)
var preload = [ new Image(), new Image() ]
preload[0].src = $.facebox.settings.closeImage
preload[1].src = $.facebox.settings.loadingImage
$('#facebox').find('.b:first, .bl').each(function() {
preload.push(new Image())
preload.slice(-1).src = $(this).css('background-image').replace(/url\((.+)\)/, '$1')
})
$('#facebox .close').click($.facebox.close)
$('#facebox .close_image').attr('src', $.facebox.settings.closeImage)
}
// getPageScroll() by quirksmode.com
function getPageScroll() {
var xScroll, yScroll;
if (self.pageYOffset) {
yScroll = self.pageYOffset;
xScroll = self.pageXOffset;
} else if (document.documentElement && document.documentElement.scrollTop) { // Explorer 6 Strict
yScroll = document.documentElement.scrollTop;
xScroll = document.documentElement.scrollLeft;
} else if (document.body) {// all other Explorers
yScroll = document.body.scrollTop;
xScroll = document.body.scrollLeft;
}
return new Array(xScroll,yScroll)
}
// Adapted from getPageSize() by quirksmode.com
function getPageHeight() {
var windowHeight
if (self.innerHeight) { // all except Explorer
windowHeight = self.innerHeight;
} else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
windowHeight = document.documentElement.clientHeight;
} else if (document.body) { // other Explorers
windowHeight = document.body.clientHeight;
}
return windowHeight
}
// Backwards compatibility
function makeCompatible() {
var $s = $.facebox.settings
$s.loadingImage = $s.loading_image || $s.loadingImage
$s.closeImage = $s.close_image || $s.closeImage
$s.imageTypes = $s.image_types || $s.imageTypes
$s.faceboxHtml = $s.facebox_html || $s.faceboxHtml
}
// Figures out what you want to display and displays it
// formats are:
// div: #id
// image: blah.extension
// ajax: anything else
function fillFaceboxFromHref(href, klass) {
// div
if (href.match(/#/)) {
var url = window.location.href.split('#')[0]
var target = href.replace(url,'')
if (target == '#') return
$.facebox.reveal($(target).html(), klass)
// image
} else if (href.match($.facebox.settings.imageTypesRegexp)) {
fillFaceboxFromImage(href, klass)
// ajax
} else {
fillFaceboxFromAjax(href, klass)
}
}
function fillFaceboxFromImage(href, klass) {
var image = new Image()
image.onload = function() {
$.facebox.reveal('<div class="image"><img src="' + image.src + '" /></div>', klass)
}
image.src = href
}
function fillFaceboxFromAjax(href, klass) {
$.get(href, function(data) { $.facebox.reveal(data, klass) })
}
function skipOverlay() {
return $.facebox.settings.overlay == false || $.facebox.settings.opacity === null
}
function showOverlay() {
if (skipOverlay()) return
if ($('#facebox_overlay').length == 0)
$("body").append('<div id="facebox_overlay" class="facebox_hide"></div>')
$('#facebox_overlay').hide().addClass("facebox_overlayBG")
.css('opacity', $.facebox.settings.opacity)
.click(function() { $(document).trigger('close.facebox') })
.fadeIn(200)
return false
}
function hideOverlay() {
if (skipOverlay()) return
$('#facebox_overlay').fadeOut(200, function(){
$("#facebox_overlay").removeClass("facebox_overlayBG")
$("#facebox_overlay").addClass("facebox_hide")
$("#facebox_overlay").remove()
})
return false
}
/*
* Bindings
*/
$(document).bind('close.facebox', function() {
$(document).unbind('keydown.facebox')
$('#facebox').fadeOut(function() {
$('#facebox .content').removeClass().addClass('content')
$('#facebox .loading').remove()
$(document).trigger('afterClose.facebox')
})
hideOverlay()
})
})(jQuery);
/*
* timeago: a jQuery plugin, version: 0.9.2 (2010-09-14)
* @requires jQuery v1.2.3 or later

View File

@ -21,7 +21,6 @@
var console_reporter = new jasmine.ConsoleReporter()
jasmine.getEnv().addReporter(new jasmine.TrivialReporter());
// jasmine.getEnv().addReporter(console_reporter);
jasmine.getEnv().execute();
</script>
</body>

View File

@ -68,24 +68,25 @@ pre::-webkit-scrollbar {
}
/* line 52, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
pre::-webkit-scrollbar-button:start:decrement, pre::-webkit-scrollbar-button:end:increment {
pre::-webkit-scrollbar-button:start:decrement,
pre::-webkit-scrollbar-button:end:increment {
display: none;
}
/* line 55, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
/* line 56, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
pre::-webkit-scrollbar-track-piece {
background: #444444;
-webkit-border-radius: 4px;
}
/* line 59, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
/* line 60, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
pre::-webkit-scrollbar-thumb:horizontal {
background: -webkit-gradient(linear, left top, left bottom, from(#85888e), to(#55585e));
-webkit-border-radius: 4px;
width: 25px;
}
/* line 64, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
/* line 65, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
#flash-messages {
position: absolute;
left: 400px;
@ -94,27 +95,30 @@ pre::-webkit-scrollbar-thumb:horizontal {
color: white;
}
/* line 71, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
/* line 72, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
.display {
display: block !important;
}
/* line 74, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
/* line 75, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
.emoji {
vertical-align: middle;
width: 20px;
height: 20px;
}
/* line 79, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
.whats_this {
margin-left: 10px;
/* line 80, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
.help {
display: inline-block;
height: 19px;
width: 16px;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAKkSURBVDjLpZPdT5JhGMb9W+BPaK3matVqndXWOOigA6fmJ9DUcrUMlrN0mNMsKTUznQpq6pyKAm8CIogmypcg8GIiX8rHRHjhVbPt6o01nMvZWge/k3vP9duuZ/edAyDnf/hjoCMP2Vr3gUDj3CdV6zT1xZ6iFDaKnLEkBFOmPfaZArWT5sw60iFP+BAbOzTcQSqDZzsNRyCNkcVoaGghzDlVQKylOHJrMrUZ2Yf52y6kc36IxpyoH1lHF7EBgyMKV4jCJ5U/1UVscU4IZOYEa3I1HtwI01hwxlDLhDoJD/wxGr5YGmOLAdRIrVCuhmD3JdA6SQabx12srGB0KSpc86ew4olDOGjH4x4z0gdHDD9+c4TaQQtq+k2Yt0egXYugTmoVZgV9cyHSxXTtJjZR3WNCVfcK/NE0ppYDUNu2QTMCtS0IbrsOrVMOWL27eNJtJLOCDoWXdgeTEEosqPxoBK/TwDzWY9rowy51gJ1dGr2zLpS2aVH5QQ+Hbw88sZ7OClrGXbQrkMTTAQu4HXqUv9eh7J0OSfo7tiIU+GItilpUuM/AF2tg98eR36Q+FryQ2kjbVhximQu8dgPKxPMoeTuH4tfqDIWvCBQ2KlDQKEe9dBlGTwR36+THFZg+QoUxAL0jgsoOQzYYS+wjskcjTzSToVAkA7Hqg4Spc6tm4vgT+eIFVvmb+eCSMwLlih/cNg0KmpRoGzdl+BXOb5jAsMYNjSWAm9VjwesPR1knFilPNMu510CkdPZtqK1BvJQsoaRZjqLGaTzv1UNp9EJl9uNqxefU5QdDnFNX+Y5Qxrn9bDLUR6zjqzsMizeWYdG5gy6ZDbk8aehiuYRz5jHdeDTKvlY1IrhSMUxe4g9SuVwpdaFsgDxf2i84V9zH/us1/is/AdevBaK9Tb3EAAAAAElFTkSuQmCC') no-repeat scroll 0 0 transparent;
margin: -9px 0 0 4px;
vertical-align: middle;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAKkSURBVDjLpZPdT5JhGMb9W+BPaK3matVqndXWOOigA6fmJ9DUcrUMlrN0mNMsKTUznQpq6pyKAm8CIogmypcg8GIiX8rHRHjhVbPt6o01nMvZWge/k3vP9duuZ/edAyDnf/hjoCMP2Vr3gUDj3CdV6zT1xZ6iFDaKnLEkBFOmPfaZArWT5sw60iFP+BAbOzTcQSqDZzsNRyCNkcVoaGghzDlVQKylOHJrMrUZ2Yf52y6kc36IxpyoH1lHF7EBgyMKV4jCJ5U/1UVscU4IZOYEa3I1HtwI01hwxlDLhDoJD/wxGr5YGmOLAdRIrVCuhmD3JdA6SQabx12srGB0KSpc86ew4olDOGjH4x4z0gdHDD9+c4TaQQtq+k2Yt0egXYugTmoVZgV9cyHSxXTtJjZR3WNCVfcK/NE0ppYDUNu2QTMCtS0IbrsOrVMOWL27eNJtJLOCDoWXdgeTEEosqPxoBK/TwDzWY9rowy51gJ1dGr2zLpS2aVH5QQ+Hbw88sZ7OClrGXbQrkMTTAQu4HXqUv9eh7J0OSfo7tiIU+GItilpUuM/AF2tg98eR36Q+FryQ2kjbVhximQu8dgPKxPMoeTuH4tfqDIWvCBQ2KlDQKEe9dBlGTwR36+THFZg+QoUxAL0jgsoOQzYYS+wjskcjTzSToVAkA7Hqg4Spc6tm4vgT+eIFVvmb+eCSMwLlih/cNg0KmpRoGzdl+BXOb5jAsMYNjSWAm9VjwesPR1knFilPNMu510CkdPZtqK1BvJQsoaRZjqLGaTzv1UNp9EJl9uNqxefU5QdDnFNX+Y5Qxrn9bDLUR6zjqzsMizeWYdG5gy6ZDbk8aehiuYRz5jHdeDTKvlY1IrhSMUxe4g9SuVwpdaFsgDxf2i84V9zH/us1/is/AdevBaK9Tb3EAAAAAElFTkSuQmCC') no-repeat scroll 0 3px transparent;
cursor: pointer;
}
/* line 85, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
/* line 89, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
.context_help_caption {
text-align: left;
font-size: 16px;
@ -123,17 +127,31 @@ pre::-webkit-scrollbar-thumb:horizontal {
border-bottom: 1px solid #cccccc;
}
/* line 92, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
/* line 96, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
.context_help {
display: none;
}
/* line 95, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
/* line 99, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
.context_help_body {
font-size: 1em;
line-height: 1.429;
margin: 1.429em 0;
}
/* line 105, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
#facebox .content {
display: block !important;
}
/* line 107, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
#facebox .close {
display: none;
}
/* line 109, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/application.sass */
#facebox pre::-webkit-scrollbar {
height: 0;
width: 0;
}
/* line 3, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/left.sass */
body#home {
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAbQAAAAFCAIAAACit451AAAC7mlDQ1BJQ0MgUHJvZmlsZQAAeAGFVM9rE0EU/jZuqdAiCFprDrJ4kCJJWatoRdQ2/RFiawzbH7ZFkGQzSdZuNuvuJrWliOTi0SreRe2hB/+AHnrwZC9KhVpFKN6rKGKhFy3xzW5MtqXqwM5+8943731vdt8ADXLSNPWABOQNx1KiEWlsfEJq/IgAjqIJQTQlVdvsTiQGQYNz+Xvn2HoPgVtWw3v7d7J3rZrStpoHhP1A4Eea2Sqw7xdxClkSAog836Epx3QI3+PY8uyPOU55eMG1Dys9xFkifEA1Lc5/TbhTzSXTQINIOJT1cVI+nNeLlNcdB2luZsbIEL1PkKa7zO6rYqGcTvYOkL2d9H5Os94+wiHCCxmtP0a4jZ71jNU/4mHhpObEhj0cGDX0+GAVtxqp+DXCFF8QTSeiVHHZLg3xmK79VvJKgnCQOMpkYYBzWkhP10xu+LqHBX0m1xOv4ndWUeF5jxNn3tTd70XaAq8wDh0MGgyaDUhQEEUEYZiwUECGPBoxNLJyPyOrBhuTezJ1JGq7dGJEsUF7Ntw9t1Gk3Tz+KCJxlEO1CJL8Qf4qr8lP5Xn5y1yw2Fb3lK2bmrry4DvF5Zm5Gh7X08jjc01efJXUdpNXR5aseXq8muwaP+xXlzHmgjWPxHOw+/EtX5XMlymMFMXjVfPqS4R1WjE3359sfzs94i7PLrXWc62JizdWm5dn/WpI++6qvJPmVflPXvXx/GfNxGPiKTEmdornIYmXxS7xkthLqwviYG3HCJ2VhinSbZH6JNVgYJq89S9dP1t4vUZ/DPVRlBnM0lSJ93/CKmQ0nbkOb/qP28f8F+T3iuefKAIvbODImbptU3HvEKFlpW5zrgIXv9F98LZua6N+OPwEWDyrFq1SNZ8gvAEcdod6HugpmNOWls05Uocsn5O66cpiUsxQ20NSUtcl12VLFrOZVWLpdtiZ0x1uHKE5QvfEp0plk/qv8RGw/bBS+fmsUtl+ThrWgZf6b8C8/UXAeIuJAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAXUlEQVRYCe3UsQ0AMQhD0csJCdEg9p+LWahTpWYAf7eueEg+M/MRBBBAQFKgu6sqMyPC3c3svPySIByNAAIILAKM4wJEjQACmgKMo+bfuRoBBBYBxnEBokYAAU2BCx/IBgej7Rj6AAAAAElFTkSuQmCC') repeat-y -27px top;
@ -142,7 +160,7 @@ body#home {
/* line 6, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/left.sass */
#left {
position: absolute;
top: 40px;
z-index: 10;
width: 400px;
}
/* line 11, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/left.sass */
@ -238,29 +256,28 @@ body#home {
}
/* line 1, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main.sass */
#main {
z-index: 30;
display: block;
position: relative;
}
/* line 6, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main.sass */
/* line 5, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main.sass */
#home #main {
min-height: 1000px;
padding: 60px 290px 30px 440px;
padding: 20px 270px 30px 430px;
}
/* line 10, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main.sass */
/* line 9, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main.sass */
#home #main.loading {
opacity: 0.1;
}
/* line 13, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main.sass */
/* line 12, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main.sass */
#home #main.maximized {
padding: 60px 100px 30px 440px;
}
/* line 18, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main.sass */
/* line 17, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main.sass */
#stats #main,
#profile #main {
padding: 60px 0 0 0;
width: 600px;
padding: 20px 0 0 0;
margin-left: auto;
margin-right: auto;
}
@ -490,13 +507,12 @@ table.list td:last-child {
position: absolute;
top: 0;
right: 0;
z-index: 110;
}
/* line 36, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/repository.sass */
/* line 35, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/repository.sass */
#repository .github-stats > * {
float: left;
}
/* line 38, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/repository.sass */
/* line 37, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/repository.sass */
#repository .github-stats a {
height: 16px;
display: block;
@ -508,87 +524,14 @@ table.list td:last-child {
background: no-repeat 0px 2px;
color: #999999;
}
/* line 48, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/repository.sass */
/* line 47, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/repository.sass */
#repository .github-stats a.watchers {
background-image: url('data:image/png;base64,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');
}
/* line 50, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/repository.sass */
/* line 49, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/repository.sass */
#repository .github-stats a.forks {
background-image: url('data:image/png;base64,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');
}
/* line 53, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/repository.sass */
#repository .github-admin {
display: none;
position: absolute;
top: 0;
right: 0;
width: 0px;
height: 16px;
padding-right: 20px;
font-size: 11px;
text-decoration: none;
text-align: right;
color: #999999;
text-indent: -999px;
overflow: hidden;
z-index: 60;
}
/* line 69, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/repository.sass */
#repository .github-admin:hover {
width: 100px;
text-indent: 0;
}
/* line 73, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/repository.sass */
#repository .tools {
position: relative;
display: block;
float: right;
width: 39px;
height: 21px;
margin-top: -27px;
background: url('data:image/png;base64,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') no-repeat;
cursor: pointer;
}
/* line 83, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/repository.sass */
#repository .tools .content {
display: none;
z-index: 1000;
position: absolute;
top: 26px;
right: 0;
width: 600px;
padding: 10px 20px;
border: 1px solid #cccccc;
background-color: #f2f4f9;
font-size: 80%;
color: #666666;
-moz-border-radius-bottomleft: 4px;
-webkit-border-bottom-left-radius: 4px;
border-bottom-left-radius: 4px;
-moz-border-radius-bottomright: 4px;
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
}
/* line 97, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/repository.sass */
#repository .tools .content p {
margin: 10px 0;
}
/* line 99, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/repository.sass */
#repository .tools .content p label {
width: 80px;
display: inline-block;
}
/* line 102, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/repository.sass */
#repository .tools .content p input {
border: 1px solid #dddddd;
width: 510px;
padding: 4px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
/* line 3, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/summary.sass */
#summary {
margin: 0 0 0 12px;
@ -630,84 +573,165 @@ table.list td:last-child {
white-space: normal;
min-width: 0;
}
/* line 3, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
.profile-avatar {
/* line 3, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/tools.sass */
#tools {
position: relative;
float: right;
}
/* line 6, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/tools.sass */
#tools a {
display: block;
width: 39px;
height: 21px;
margin-top: -27px;
background: url('data:image/png;base64,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') no-repeat;
cursor: pointer;
}
/* line 14, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/tools.sass */
#tools .pane {
display: none;
position: absolute;
z-index: 400;
top: -1px;
right: 0;
width: 600px;
padding: 10px 20px;
border: 1px solid #cccccc;
background-color: #f2f4f9;
font-size: 80%;
color: #666666;
-moz-border-radius-bottomleft: 4px;
-webkit-border-bottom-left-radius: 4px;
border-bottom-left-radius: 4px;
-moz-border-radius-bottomright: 4px;
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
-webkit-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1);
box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1);
}
/* line 29, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/tools.sass */
#tools .pane p {
margin: 10px 0;
}
/* line 31, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/tools.sass */
#tools .pane p label {
width: 80px;
display: inline-block;
}
/* line 34, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/main/tools.sass */
#tools .pane p input {
border: 1px solid #dddddd;
width: 510px;
padding: 4px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
/* line 4, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
#profile a {
text-decoration: underline;
}
/* line 7, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
#profile img {
float: left;
margin: 3px 15px 0 0;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
/* line 7, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
/* line 12, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
#profile dl {
margin: 0 0 20px 18px;
color: #666666;
font-size: 13px;
}
/* line 17, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
#profile dt {
display: block;
float: left;
width: 50px;
}
/* line 22, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
#profile dd {
clear: right;
}
/* line 25, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
#profile #welcome {
margin-top: -35px;
margin-bottom: 35px;
font-size: 13px;
}
/* line 11, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
/* line 29, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
#profile #welcome h4, #profile #welcome p {
margin-bottom: 4px;
}
/* line 14, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
/* line 32, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
#profile p.notice {
background-color: #a8eb75;
padding: 10px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
}
/* line 18, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
/* line 36, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
#profile p.notice a {
text-decoration: underline;
}
/* line 38, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
#profile p.notice small {
font-size: 13px;
display: block;
}
/* line 22, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
/* line 42, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
#profile p.tip {
font-size: 13px;
margin-top: -10px;
}
/* line 26, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
/* line 46, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
#profile .highlight {
color: #c7371a;
}
/* line 30, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
#main .profile-avatar {
float: left;
}
/* line 33, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
#main .profile {
margin: 20px 0 30px 60px;
}
/* line 36, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
#main .profile dt {
display: block;
float: left;
width: 50px;
}
/* line 41, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile.sass */
#main .profile dd {
clear: right;
}
/* line 3, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks ul {
#hooks {
margin-top: 10px;
}
/* line 7, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks ul li {
#hooks li {
position: relative;
height: 19px;
padding: 10px;
white-space: nowrap;
overflow: hidden;
border-bottom: 1px solid #dddddd;
}
/* line 14, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks ul li > a {
/* line 15, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks li:nth-child(3) {
border-top: 1px solid #dddddd;
}
/* line 18, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks li:nth-child(odd) {
background-color: #fafbfc;
}
/* line 21, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks li:nth-child(odd) .controls {
background: #fafbfc;
}
/* line 24, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks li > a {
float: left;
font-size: 16px;
color: #666666;
text-decoration: none;
}
/* line 20, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks ul li .description {
/* line 30, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks li .description {
display: none;
margin-left: 10px;
font-size: 12px;
@ -716,67 +740,59 @@ table.list td:last-child {
text-overflow: ellipsis;
color: #999999;
}
/* line 29, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks ul li .controls {
/* line 39, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks li .controls {
position: absolute;
top: 10px;
right: 0;
white-space: nowrap;
background: white;
}
/* line 35, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks ul li .controls a {
/* line 45, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks li .controls a {
float: left;
display: block;
}
/* line 39, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks ul li .controls .github-admin {
/* line 49, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks li .github-admin {
position: relative;
height: 20px;
width: 20px;
padding-right: 0;
background: url('data:image/png;base64,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') no-repeat 3px 4px;
}
/* line 48, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks ul li .controls .switch {
/* line 58, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks li .switch {
height: 20px;
width: 80px;
margin-left: 10px;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAAAUCAYAAAAwaEt4AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sGEwoDBFgWWZEAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAEcUlEQVRYw81YTUvrTBR+ZjJp2lhjFaF+LESpXKQUxYW4UHBRUBF3gguX/in/hEtXIhQRRANWlIILFXTR+oWKpm1Kkpl38TIhkURvudd6D5TQfMyc88xznnNmSL1eF0dHR3AcB4ZhQAiBdowQEnk/OA4hBEIIOI6DSqWCRqOBVCrV9lzBcSmlkXO1a9J/QgharRbGxsZQLBZB9vb2RCaTgWEY8DwP32mUUiQSCZTLZVBKkU6n/yio7zDLssAYA3t5ecHIyMi3gwIAnHO0Wi3kcjlUq1UMDg7iXzNKKcrlMpiqqiCEgFIKIURsavztyRlj0HX9nwJFCAHGGLq7u8Gko50CRc4nwYnLe86578/HdJOaFbx+fBYM9mNccbEKIaAoClRVBZNOdjLX5ZxBAY1yUAZAKfUD4Zz71+D9YLoGFzoOgCCwQVMU5f9FC6ZRp0w6rChKLDCEELiui+vra5imidfXV2iahkKhgEKhgGQyCdd1cXJygvf39xDDVFXF7OwsTNOEbduhcT3Pw8LCApLJZCSTfDZTSmMd/C6TqxK1YsESenh4CNM00dPTg4mJCTw/P6NUKuHm5gbr6+totVq4urrC09OT32oQQpBIJAAAFxcXsG0buq77i+84DjzP8+eXDJTzhoChlIZe6ARb4mgu7f39HWdnZ+jt7cXm5qafIqVSCaZp4vz8HL9+/YKqqqCUYmNjA4lEwgcnmUxCVVUoioK1tTUYhhHSpDh9kuD4qdQp1ki6BhurKEbd3t6i0WigWCyCMQbOOYQQmJycRKVSQaVSQT6f94Or1Wo+U1KpFIaHhyGEAOcc9/f3aDab4JwjnU4jk8lECnUwxX8klTjn0DQN6XQ6llWO40AIgaGhIaRSKZ/RrutC13VYloV0Ou0L+Pb2ti/sk5OTGB8fB6UU9XodOzs74JzD8zzMz89jaWkpMkM452CMQdO0n6lKkhVR5VpWpO7ubhBC8Pr6itHR0RAwjUYD2Ww2xLzNzU1/vFQq5YOk6zpWVlZ8DZJ6E1cRpV8/UpUURYnVGCmIY2Nj0HUdBwcHGB8fh2EYcF0Xp6ensCwLi4uLvs9CCAwPD/vMkvelLg0MDKC/vz/0flyay1Rnn5XN79SYz5wkhCCTyWB6ehpHR0fY2tpCX18f6vU67u/vkcvlMDU1Bdd1Q0LqeV5k88Y5DwH2VWEIVaWfYkxcZaKUYnV1FV1dXTg+PkatVgMATE1NYXl5GYwxuK4LRVGgaVrkrlvTNP+dr6pgsH+ilILs7++LmZmZjmwipTWbTVSrVeTz+S+PF2QHbFkWEomED4L8SbbLChTcRshnv9uKyG8uLi5+po8JBvOVeZ4HQgi6urpC/+W3ckGj9lXtLnaQdazZbH6q0t8BjOd5fvf7JwdLv3to1i4wjUYDzLZtPDw8IJvNdgQYx3FweXmJfD7fsd18O6Dbto23tzcQ27bF7u4uent7I0/UPtv6f3acGaX2nufh8fERQ0NDMAzjr6xy3H6r3e9lz3R3d4e5uTn8B4YdbMcCfa97AAAAAElFTkSuQmCC') no-repeat;
cursor: pointer;
}
/* line 54, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks ul li .controls .switch.active {
/* line 64, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks li .switch.active {
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAAAUCAIAAAC/CtwvAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sGEwoEM6/qalkAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAFD0lEQVRYw71Xa4+dUxR+nrX2+75nzpw5bV1myrTaaolqiioZSlGtS1IiGpdIRAiCfyA+8EEI0YiEL+IagiC0aVqkbpXekGipuNUoU21ppy3nTM+c27v38uF0BnHOBD3tyv603/0+e69nrfXstfl7sfTI06ufW9F/wBIcGTOE4BLsu+Lc7usWnjRhXAd8gPD/A5JmLJVKkYv6+s7ivY+/+9jb1Xw+QxwpMwtDe++4vHrzFedUTX09JcRghwZKFanV/cDAgHv143TKrLM1NWMAeGQ8yg1/eencznLdmaUAD9kfAOaDj2OX1lOH5Ni4YzytDs+WHjV2bGxNwgAYCBgb8zSCZkZgZNpa8mMhqJfIZSgQaBvJEmGcOKdKEdKUHINXmFgIkYsiAQCkwRCGSUcLwYlYHNKyowQYKSZqviqQpmhB4ERSERG2ITx/qykB6CAEzQLJVsRaKnRMpLxz+ycv14q/WHbcpJnXZLpPNV9Kg68OfFGpHpgwbUGwYCLV37aV9n0zYfL5SMah6ZENMJAQEZi1NUoiIk5IM46FbRALfsd702TNI3cvnjq5d3D/78+/sWLdtm8y065OWLzq1N2d7sDyr1dXJl4qFub07J97yr6Vu4b2Y/wYURCKqloI7XWJpKMKBAhjpABR2X3bItx5w/17Sty4Ncya2vPEw6e9uWrNPSu/nzZ98u23LDlugutZvv7RjQXJjJvXN+v2hfPWLh0YLJo2S70AGCFCpZqyrS5pI1CCYHYwHZoMECfkh266su/X3/yVDxUfXOavf5KrPh9asvii83p31oLU6sHMX3PZnInlt+Ain9qoojQHbPAkDU7baQ1EEVEzgwHGpkcIhjOn57K5jqUry2V0eaaactmnrm7+xksm1WoeMG/4sZA8cOuc4R8/oro/ZbIFT2YmVFXRdhtJ15llR95oJOtN5SEYpvZ2Abpzz56e8bEAQEqtDBX9ib3H5bMUgQ/hxbWVB689864F7xT29gNnZLN2tKTKJukcQojqKiqiysMhD7nYZzMePqXETQUqGINlAJnI/qrrFUm9hVy6I+Om7PSZXFIkBXCfDXDL9uqt187/cOMmAJ2OuUSUoZlLQFyhNs5gbZcHITMqqs6petXwz+Gc/26QQFhyXs8vm1/YvnXDvi2rZuV+znbmP+j3mUhpwQATfWp9zTRz+YL5gIlaK0BVi+AEVCfttYOJ5xKJHBAEbEnYjoKs+6E6v2/2s13Jtz/9OvX42XNOP+mrXfVN/cjFCU28IRv5XQV9ZcPwLRd2ARabRirSDNMICp0kbU+8Rjm5SBkJII0+hy1aGHtmDQsH/MUzZ544Y0ZKt/Z7e2n9MBKRTL3scrk0VZV8HK3dxrkzhmf3Rq77mHgQ0qy/DoQXQExEDkstOYfIEcHQon8BALFAe/1TXb65lOuIa7VyscIoiiKxciVz32s1I4/KCX1qKktXmbd6HLvYNb9GA8WUB0Xc2nsvCUinURyLmHoEGfONA2YMSCpVEFFXZjTYiLMjPzoAiDo4wk6LHi/AK9Wg6sz7tvZ4AOEkrURqdVL/wyPskKgNgarZUK+QoEg7a0mkUqm57tqXwza508VAGO27/3T6sLyXpJrrfn/T1psnHes6j0Ljoj/kJyBgQ0OlYqHAvfsLj768brc/Gdl8QyHMwl96dTu4/J8A/31m9ItPFcO7pucHF80eHyVQ0kaKiiNE2r9QjtHFwVitVguF4gXz5/0BdY9rLIx0cN8AAAAASUVORK5CYII=') no-repeat;
}
/* line 57, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks ul li:nth-child(odd) .controls {
background: #fafbfc;
}
/* line 61, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks ul li:hover > a {
/* line 68, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks li:hover > a {
color: #c7371a;
}
/* line 64, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks ul li:hover .description {
/* line 71, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/profile/hooks.sass */
#hooks li:hover .description {
display: inline;
}
/* line 3, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right.sass */
#right {
position: absolute;
z-index: 10;
display: block;
right: 0px;
top: 40px;
top: 0;
right: 0;
min-height: 100%;
overflow: visible;
width: 205px;
padding: 20px 20px 20px 10px;
background-color: #f2f4f9;
border-bottom: 1px solid #cccccc;
font-size: 13px;
-webkit-transition: width 0.5s ease-out;
-moz-transition: width 0.5s ease-out;
-o-transition: width 0.5s ease-out;
transition: width 0.5s ease-out;
}
/* line 16, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right.sass */
#right h4 {
@ -825,22 +841,13 @@ table.list td:last-child {
margin-bottom: 0;
color: #666666;
}
/* line 4, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/github.sass */
#top #github {
position: absolute;
z-index: 100;
top: 0px;
right: 0px;
width: 130px;
height: 140px;
overflow: hidden;
}
/* line 13, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/github.sass */
#top #github a {
z-index: 100;
/* line 3, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/github.sass */
#github {
display: block;
position: absolute;
top: 0;
right: -70px;
width: 250px;
margin: 40px 0 0 -50px;
padding: 3px 0;
border-top: 2px solid #ef9f4c;
border-bottom: 2px solid #ef9f4c;
@ -919,18 +926,20 @@ table.list td:last-child {
#queues li.stopped .icon {
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAPCAIAAABiEdh4AAADHmlDQ1BJQ0MgUHJvZmlsZQAAeAGFVN9r01AU/tplnbDhizpnEQk+aJFuZFN0Q5y2a1e6zVrqNrchSJumbVyaxiTtfrAH2YtvOsV38Qc++QcM2YNve5INxhRh+KyIIkz2IrOemzRNJ1MDufe73/nuOSfn5F6g+XFa0xQvDxRVU0/FwvzE5BTf8gFeHEMr/GhNi4YWSiZHQA/Tsnnvs/MOHsZsdO5v36v+Y9WalQwR8BwgvpQ1xCLhWaBpXNR0E+DWie+dMTXCzUxzWKcECR9nOG9jgeGMjSOWZjQ1QJoJwgfFQjpLuEA4mGng8w3YzoEU5CcmqZIuizyrRVIv5WRFsgz28B9zg/JfsKiU6Zut5xCNbZoZTtF8it4fOX1wjOYA1cE/Xxi9QbidcFg246M1fkLNJK4RJr3n7nRpmO1lmpdZKRIlHCS8YlSuM2xp5gsDiZrm0+30UJKwnzS/NDNZ8+PtUJUE6zHF9fZLRvS6vdfbkZMH4zU+pynWf0D+vff1corleZLw67QejdX0W5I6Vtvb5M2mI8PEd1E/A0hCgo4cZCjgkUIMYZpjxKr4TBYZIkqk0ml0VHmyONY7KJOW7RxHeMlfDrheFvVbsrj24Pue3SXXjrwVhcW3o9hR7bWB6bqyE5obf3VhpaNu4Te55ZsbbasLCFH+iuWxSF5lyk+CUdd1NuaQU5f8dQvPMpTuJXYSWAy6rPBe+CpsCk+FF8KXv9TIzt6tEcuAcSw+q55TzcbsJdJM0utkuL+K9ULGGPmQMUNanb4kTZyKOfLaUAsnBneC6+biXC/XB567zF3h+rkIrS5yI47CF/VFfCHwvjO+Pl+3b4hhp9u+02TrozFa67vTkbqisXqUj9sn9j2OqhMZsrG+sX5WCCu0omNqSrN0TwADJW1Ol/MFk+8RhAt8iK4tiY+rYleQTysKb5kMXpcMSa9I2S6wO4/tA7ZT1l3maV9zOfMqcOkb/cPrLjdVBl4ZwNFzLhegM3XkCbB8XizrFdsfPJ63gJE722OtPW1huos+VqvbdC5bHgG7D6vVn8+q1d3n5H8LeKP8BqkjCtbCoV8yAAAACXBIWXMAAAsTAAALEwEAmpwYAAACK2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNC40LjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iPgogICAgICAgICA8ZGM6c3ViamVjdD4KICAgICAgICAgICAgPHJkZjpCYWcvPgogICAgICAgICA8L2RjOnN1YmplY3Q+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPkFkb2JlIFBob3Rvc2hvcCBDUzUgTWFjaW50b3NoPC94bXA6Q3JlYXRvclRvb2w+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgpfm+dxAAAA1ElEQVQoFU3RgXKEUAhDUd367f61ted5Z6nMiCEkgLv7eZ4/T3yeAL1jtm2Dy79P3Pd97PuOEoBIHS7nqbUMIx0qRh5p2I4F6PgmKuUBbyfZx4PSfuf8mKLZ4XWSmA2DB2i1jQ0+PMvxLMmmQSH7hmZnqHvUfvfgcfbdlTLx2hCaqZVyg1suUyPX/+Al1O2BtWcPLBqn9X/SMn1t13XB6Ugfy3dDgyliZdIR2aM1V+iun5UH1VRqohRdSFCZcp1UA4uaUGop4yuNOzpGLVJ30puBkcUfoaEkp6ZhK30AAAAASUVORK5CYII=');
}
/* line 6, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#right .slider {
/* line 5, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#slider {
position: absolute;
height: 100%;
top: 0;
left: -10px;
width: 10px;
border-left: 1px solid #cccccc;
border-bottom: 1px solid #cccccc;
background-color: #f2f4f9;
position: absolute;
height: 100%;
left: -10px;
width: 10px;
cursor: pointer;
}
/* line 11, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#right .slider .icon {
/* line 16, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#slider .icon {
width: 0;
height: 0;
position: absolute;
@ -941,47 +950,52 @@ table.list td:last-child {
margin-top: -5px;
margin-left: 3px;
}
/* line 28, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#right:hover .slider {
/* line 27, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#slider:hover {
background: #e1e2e6;
}
/* line 30, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#right:hover .slider .icon {
/* line 29, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#slider:hover .icon {
border-color: #e1e2e6 #e1e2e6 #e1e2e6 #999999;
}
/* line 34, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#right .inner .wrapper {
padding: 20px 20px 20px 10px;
min-width: 190px;
/* line 33, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#home.maximized #top .profile {
margin-right: 10px;
}
/* line 38, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#right.maximized {
width: 240px;
/* line 36, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#home.maximized #main {
padding-right: 40px;
}
/* line 41, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#right.minimized {
width: 0px;
/* line 39, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#home.maximized #right {
width: 0;
padding: 0;
}
/* line 44, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#right.minimized .slider {
/* line 42, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#home.maximized #right *:not(#slider):not(.icon):not(.ember-view) {
display: none;
}
/* line 45, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#home.maximized #slider {
left: -20px;
width: 20px;
left: -21px;
z-index: 50;
}
/* line 48, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#right.minimized .slider .icon {
/* line 49, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#home.maximized #slider .icon {
border-color: #f2f4f9 #999999 #f2f4f9 #f2f4f9;
border-width: 5px 5px 5px 0;
}
/* line 53, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#right.minimized .slider:hover .icon {
/* line 54, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#home.maximized #slider:hover .icon {
border-color: #e1e2e6 #999999 #e1e2e6 #e1e2e6;
}
/* line 57, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/slider.sass */
#right.minimized .inner .wrapper {
display: none;
}
/* line 5, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
#right .sponsors.top {
height: 140px;
}
/* line 8, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
#right .sponsors.top li {
overflow: hidden;
width: 205px;
@ -994,12 +1008,13 @@ table.list td:last-child {
border-radius: 8px;
list-style-type: none;
}
/* line 13, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
#right .sponsors.top li a {
/* line 16, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
#right .sponsors.top a {
overflow: hidden;
}
/* line 16, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
#right .sponsors.top li img {
/* line 19, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
#right .sponsors.top img {
z-index: 200;
overflow: hidden;
width: 205px;
-webkit-border-radius: 8px;
@ -1008,44 +1023,44 @@ table.list td:last-child {
-o-border-radius: 8px;
border-radius: 8px;
}
/* line 21, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
/* line 25, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
#right .sponsors .platinum {
height: 130px;
}
/* line 23, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
/* line 27, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
#right .sponsors .platinum img {
height: 130px;
}
/* line 26, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
/* line 30, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
#right .sponsors .gold {
height: 60px;
}
/* line 28, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
/* line 32, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
#right .sponsors .gold img {
height: 60px;
}
/* line 32, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
/* line 36, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
#right .sponsors .silver h5 {
margin: 0;
font-size: 13px;
}
/* line 35, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
/* line 39, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
#right .sponsors .silver p {
margin: 0;
}
/* line 39, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
/* line 43, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
#right .box .sponsors li {
list-style-type: none;
margin-left: 0;
padding-bottom: 12px;
}
/* line 43, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
/* line 47, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
#right .box .sponsors a {
color: #575c7c;
font-weight: bold;
text-decoration: none;
}
/* line 48, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
/* line 52, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/right/sponsors.sass */
#right .hint {
margin: 0 0 0 2px;
font-size: 10px;
@ -1198,22 +1213,16 @@ table.list .red .number a {
/* line 3, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
#top {
color: #cccccc;
float: left;
height: 40px;
width: 100%;
top: 0px;
z-index: 11;
font-size: 13px;
line-height: 40px;
font-size: 13px;
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #444444), color-stop(100%, #111111));
background: -webkit-linear-gradient(#444444, #111111);
background: -moz-linear-gradient(#444444, #111111);
background: -o-linear-gradient(#444444, #111111);
background: linear-gradient(#444444, #111111);
overflow: hidden;
*zoom: 1;
}
/* line 15, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
/* line 10, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
#top h1 {
float: left;
width: 73px;
@ -1222,74 +1231,81 @@ table.list .red .number a {
text-indent: -9999px;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEkAAAAeCAIAAADvmqTEAAAC7mlDQ1BJQ0MgUHJvZmlsZQAAeAGFVM9rE0EU/jZuqdAiCFprDrJ4kCJJWatoRdQ2/RFiawzbH7ZFkGQzSdZuNuvuJrWliOTi0SreRe2hB/+AHnrwZC9KhVpFKN6rKGKhFy3xzW5MtqXqwM5+8943731vdt8ADXLSNPWABOQNx1KiEWlsfEJq/IgAjqIJQTQlVdvsTiQGQYNz+Xvn2HoPgVtWw3v7d7J3rZrStpoHhP1A4Eea2Sqw7xdxClkSAog836Epx3QI3+PY8uyPOU55eMG1Dys9xFkifEA1Lc5/TbhTzSXTQINIOJT1cVI+nNeLlNcdB2luZsbIEL1PkKa7zO6rYqGcTvYOkL2d9H5Os94+wiHCCxmtP0a4jZ71jNU/4mHhpObEhj0cGDX0+GAVtxqp+DXCFF8QTSeiVHHZLg3xmK79VvJKgnCQOMpkYYBzWkhP10xu+LqHBX0m1xOv4ndWUeF5jxNn3tTd70XaAq8wDh0MGgyaDUhQEEUEYZiwUECGPBoxNLJyPyOrBhuTezJ1JGq7dGJEsUF7Ntw9t1Gk3Tz+KCJxlEO1CJL8Qf4qr8lP5Xn5y1yw2Fb3lK2bmrry4DvF5Zm5Gh7X08jjc01efJXUdpNXR5aseXq8muwaP+xXlzHmgjWPxHOw+/EtX5XMlymMFMXjVfPqS4R1WjE3359sfzs94i7PLrXWc62JizdWm5dn/WpI++6qvJPmVflPXvXx/GfNxGPiKTEmdornIYmXxS7xkthLqwviYG3HCJ2VhinSbZH6JNVgYJq89S9dP1t4vUZ/DPVRlBnM0lSJ93/CKmQ0nbkOb/qP28f8F+T3iuefKAIvbODImbptU3HvEKFlpW5zrgIXv9F98LZua6N+OPwEWDyrFq1SNZ8gvAEcdod6HugpmNOWls05Uocsn5O66cpiUsxQ20NSUtcl12VLFrOZVWLpdtiZ0x1uHKE5QvfEp0plk/qv8RGw/bBS+fmsUtl+ThrWgZf6b8C8/UXAeIuJAAAACXBIWXMAAAsTAAALEwEAmpwYAAAJdElEQVRYCc1YeUwUWRqvV9XddPWpgAMriu6MJkJw0LgOsk481njiLhMJsxpXTTBhFeMRZV2zDhuNrvuHmXiMAS+GTUzGifd9ZLyYGNDV9UqUmV0VxwNkaI6maZo+qmp/r153dcEAs86izgtUv/re9773/d7v+773ukl6ejrHcf3a23jCKeixpkS7EdGPfH5vtkIjwd9WF2P5EdU3NWzAQn+2cBl9LIqkcDwhhP9pSyvYDkUmnNhAhE9fNn8j2n+anV6cZZgW8Ezg5eb6Vo6AOJmTAPHVGp2ncIQXCM9LitLfZMyz2QuD8qtZeQ3ahlifJ8QJfsFgoDEpEJMZnqIRThei3S8MNQ7/YBv4ZBnEeWXZ4W3hTP26n/SGRgySJBNiEARe8bitmeMSVn1CkHnwlRAQSF2nTddlAt1TCYWI2dy0/x9NX5TxVptAiBQEf69Kv85iL3WRb2oN4QlcNMT1s36QCctKMMjxFF6UPZpOiDzADlNFfVe5IkYjut6KcgqSBig2q5e8+//M0FqiNuq3EvCj77l4vm7bZt4oqDDC249hpqfuBOtywC+1tsYvLOibM0fx+agFOkI1EZ4Rpbf2qWGLbnXQ9b238muC/JNlhboIrjhiMBJBUGSJUhqONwLGZG+7M+sj6j4jKxKJrzUmhw4dmpCQcO3atVAo1MPOadhUHRUgL1p4q9jntznO3+XKPi9QgU9XabHvzk0x5f34/GW83QEJb7V6K7527f4M+voFIuj0sl7uL1iwYNasWWPHjm1qaurBdEdsql+K3x982mL8RZJj8nQ2U5Gk5iNfSh4vsdkcWdmC1cbkoabGwAuv3NamX4AFwGuNyZqamvv37weDwZ5X0U7q6Hab3h0S98cF5uEjFUV2fV7SdvdfYEkOBGidD4YQkIFn39Xv3C55WkzJv4zP/4M5NY1iixiIfOrx9nJ/x44dOTk5LS0tPdvVeEONUIgpBtrWUR/gj03z3bsNAsW09Eg6KsRokpoa2279M3b2fFvGr/HHNIkoUgvITEZ+OCfpYGZmpiAIV69etdvto0aNiomJOX/+POROp3PKlCkDBw40GAyg4uLFi7W1tZCPGDGif//+lZWV+pATRXHixIlQu3PnzvDhwwcMGHDhwgVQB30UZywxcuRIm83mcrmuXLny6NEjyCPYZJmPiQl898j1+U5WQojBgDtKqPaFYHdwcoQM+A5Nm03yuBv27UXicYEArTRm0XvjGt0aCokq62vJihUr4Nnjx4+PHDnSt2/fM2fOnDt3btKkSVu2bDGbzagHkiQBcGFhYX5+/vXr14cNG7Z+/frNmzfv2bMHplgbP3489NetW3f79u05c+aAt4yMDICH5V27do0ZMwZG2tvbrVbr6tWrP1Obio2eSbIgWtq/raopWgWK4B0uUEogIMTGEotV9TiyCN0FMVD9sParM7wFt1CJFlJOwdbwZpGe2SrFemyYCQ9KSkqePn0K/27dumWxWNABqrlz5969exfbP3Xq1G3btuXl5aH6nT59eu3atdOnT9+9e3dkVQ4KUDt16pRmGR203NxcANu7dy+mA9ugQYO2b9++dOnS48ePh3mj/igKbzTCxbA5YPP7EYH0kqlvNHgVIhgEpxO3EHAbHgRjKi7VFNXRT0pOTr58+fKiRYuwu5CPHj26sbFx//79YImpgUzsN4o7JjY3NyM+gQ3hiu2AAuidMGECLGAIr8w4nmgAAwkC3ocDluOePHmyYcOGefPmxcfHh2tJ1BEcaPq/sIvRccxXUwq3R3qBjP6pmtCjqip1VFPXECYMGGQ3btwYN24cmEQf2YLkQVlPSkricRlSG6IXn4DHXqEMqo8ePcpe9c/y8nK8bt26taCgIDU1FYkN48uWLbt582bYVlfOaBYw2GmcSToCVtU1VVRnrbENRtXWJOgkJiYiwQ4fPnzv3j1k/5IlS9rUs4TpQIKqMGPGDPaKgARjly5dYq8wiNVYH0IQjnBduXLliRMnEPDFxcVIRYxGaokGpEMnTEMHWY8vXcBV9d1uN6tpbDaqxcGDB0Hjvn37kB7V1dXPnj07efKkw+FgChhCwixcuHDw4MGojSg8x44d01vQe3Ho0CHsUVpaGiCB4cmTJ6P8YuO6xwY38ZUMX306cqZuGcH9i16mu4LCZGxrNQ+wi3rJ/PnzUdBmz56t5Rs0UW/w1NTgMbBlZWU9ePAAxR1Rqg0xs3hFQ+nHK4on+EdDaUVmlpWVIeXCMcm0OzxR7dt9oWY3bvfRkKQ3agxIIbdH9rWrBbIzPrYVbGH21LvCJDi+IMSpoKmh1qEqwLgmqaqqAipgQ9aBWASbNqT5CcnixYsPHDiAo0UbraioAMMowt1iAyRjUrJtzIe8zY77cRgBimQoSEwmy+jMmMHvqbA70hpZVlsJnR9iw/kLIar2tGnT4H1RUVFpaSkSLDY2FqmlzUXcInpnzpzJSNPkzCZ7Bb04+vEEUTgDs7OzQZrRaMRBEo7JzpvPC1KLOy6v4J2lhbzFitMPV36cBQhFHNBGhzO5uLShtOTl34sEm/q7SAQAPGam2PIaKirX6aBmDhkyBITgPoEhXCPgWUpKysaNG3Fknz17lk1EjuGgw7GOdNJP18xCCGWk1vLly1H6mbyurm7Tpk048cimgfHz7MYmWRHYCHsKQqixIWFVUcKqv4Rc9e3/rqr79G/eynIx/VeJa9aZU9KM7yQ2lO2s+WuhYHdSOBG/cRSKhKuT5N+3mfT2uuyDJVTL58+fazdDHAaoOh6Pp0v9HoQ4PPCtJy4uDuUUFzd22HRbS+jFMBiAOffpYy/WLOfNZjDm//b+448/SvjTmsTCT3B7/sHZQEnrHALde4TjG00/Dpz61/+9j1oFSGj6Kd1i05SIxWJMGiA4nGphVKTmZmRgZLQLIDT/KJFdDEVmvaHPbrHBPdwP4UWf7FzHb6bq3FHoDRMHhDraiadwkVTvZbopb6drENRcwY+SHc4xbDvPBxvqfdUPUSTx26PeO8VVj+/agfqX0FG/IUQpwqtEOOFnwttLiVYRkafXw2g5x4XFZms9ech36ZwiyVqpAELgoLsgCLLPZ6K/JlCBxh6A2XjyH3pQRwHr9+VN9g1fSMbU1sCHIu4fKB+RpanDvNLmDbrdHQll6IBFwe8oHL7j0RbdFYPCPfSHdrn9ikDj+e02gtIJD97ze024b0SdVL0CWnoxZ8zo/GQCaHf6+qMyWBVDs/Hn0P4L/Bk5to+hxdUAAAAASUVORK5CYII=') no-repeat;
}
/* line 23, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
/* line 18, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
#top ul {
list-style-type: none;
}
/* line 26, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
/* line 21, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
#top a {
color: #cccccc;
text-decoration: none;
}
/* line 30, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
/* line 26, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
#navigation li {
display: inline-block;
}
/* line 32, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
/* line 29, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
#navigation li.active {
background-color: black;
}
/* line 34, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
/* line 31, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
#navigation li.active a {
color: white;
}
/* line 37, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
/* line 34, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
#navigation li a {
display: block;
padding: 0 15px;
}
/* line 40, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
/* line 37, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
#navigation li a:hover {
color: white;
}
/* line 43, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
/* line 40, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
#navigation .profile {
margin-right: 190px;
position: relative;
float: right;
margin-right: 120px;
}
/* line 47, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
/* line 45, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
#navigation .profile img {
vertical-align: middle;
margin: -4px 7px 0 0;
position: absolute;
top: 7px;
left: 12px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
/* line 52, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
/* line 51, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
#navigation .profile a {
padding: 0 35px 0 45px;
}
/* line 54, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
#navigation .profile ul {
display: none;
z-index: 111;
position: absolute;
z-index: 300;
top: 40px;
right: 190px;
width: 100%;
background-color: #444444;
-moz-border-radius-bottomleft: 4px;
-webkit-border-bottom-left-radius: 4px;
border-bottom-left-radius: 4px;
-moz-border-radius-bottomright: 4px;
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
-moz-border-radius-bottomleft: 6px;
-webkit-border-bottom-left-radius: 6px;
border-bottom-left-radius: 6px;
-moz-border-radius-bottomright: 6px;
-webkit-border-bottom-right-radius: 6px;
border-bottom-right-radius: 6px;
-webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
/* line 62, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
/* line 64, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
#navigation .profile ul li {
display: block;
}
/* line 65, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
/* line 67, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
#navigation .profile ul li:last-child a:hover {
-moz-border-radius-bottomleft: 4px;
-webkit-border-bottom-left-radius: 4px;
@ -1298,13 +1314,95 @@ table.list .red .number a {
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
}
/* line 68, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
/* line 70, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
#navigation .profile ul a {
display: block;
padding: 5px 33px;
padding: 5px 35px 5px 45px;
line-height: 24px;
white-space: nowrap;
}
/* line 72, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
/* line 75, /Volumes/Users/sven/Development/projects/travis/travis-ember/assets/stylesheets/top.sass */
#navigation .profile ul a:hover {
background-color: #555555;
}
#facebox {
position: absolute;
top: 0;
left: 0;
z-index: 100;
text-align: left;
}
#facebox .popup{
position:relative;
border:3px solid rgba(0,0,0,0);
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
-webkit-box-shadow:0 0 18px rgba(0,0,0,0.4);
-moz-box-shadow:0 0 18px rgba(0,0,0,0.4);
box-shadow:0 0 18px rgba(0,0,0,0.4);
}
#facebox .content {
display:table;
width: 370px;
padding: 10px;
background: #fff;
-webkit-border-radius:4px;
-moz-border-radius:4px;
border-radius:4px;
}
#facebox .content > p:first-child{
margin-top:0;
}
#facebox .content > p:last-child{
margin-bottom:0;
}
#facebox .close{
position:absolute;
top:5px;
right:5px;
padding:2px;
background:#fff;
}
#facebox .close img{
opacity:0.3;
}
#facebox .close:hover img{
opacity:1.0;
}
#facebox .loading {
text-align: center;
}
#facebox .image {
text-align: center;
}
#facebox img {
border: 0;
margin: 0;
}
#facebox_overlay {
position: fixed;
top: 0px;
left: 0px;
height:100%;
width:100%;
}
.facebox_hide {
z-index:-100;
}
.facebox_overlayBG {
background-color: #000;
z-index: 99;
}