travis-web/assets/styles/app/loading.sass
Piotr Sarnacki e6800c80c6 Refactor our layout handling
Layout handling in travis-web was implemented in a dynamic way, so we
could change a main layout from any of the routes. This needed a
`rerender` call which was making things harder and needed some hacks. It
also broke a few transitions when upgrading to 1.8.1.

After examining our usage of layouts I've noticed that we don't need to
change the entire layout dynamically and instead we can set layout on
root routes (like "index", "profile" and other root routes).
2014-12-29 18:16:14 +01:00

22 lines
466 B
Sass

@import "_mixins/all"
.loading
padding: 15px 25px 0 0
span
padding-right: 25px
font-size: $font-size-small
color: $color-text-lighter
background: inline-image('ui/spinner.svg') no-repeat right 4px
.loading
display: none
span.loading, span.saving
padding: 0 25px 0 0
font-size: $font-size-small
color: $color-text-lighter
background: inline-image('ui/spinner.svg') no-repeat right 4px
#profile #left .loading
padding-top: 30px