| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- /**
- * Stylesheet
- *
- * @namespace Lungo.Widgets
- * @class Notification
- *
- * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
- */
- LOADING = 104px
- WINDOW_WIDTH = 280px
- .notification
- position: relative
- top: 0
- left: 0
- width: 100%
- height: 100%
- z-index: 1980
- display: none
- &.show
- display-box()
- box-align(center)
- box-pack(center)
- &.push
- height: (HEADER_HEIGHT / 1.75)
- & .window
- position: relative
- opacity: 0
- text-align: center
- transition-duration (TRANSITION_TIME / 2)
- transition-timing-function DEFAULT_TRANSITION
- backface-visibility hidden
- &.show
- opacity: 1
- &:not(.push)
- transition-property opacity, margin-top
- margin-top: 100%
- &.show
- margin-top: 0%
- &.growl
- & > *
- position: absolute
- &, & > *:not(.loading)
- width: LOADING
- text-align: center
- &, & > .icon
- height: LOADING !important
- & > .icon
- left: 0px
- top: 0px
- font-size: 52px
- line-height: LOADING
- & > strong
- height: 18px
- top: (LOADING - 20px)
- padding: 0 0.5em
- overflow: hidden
- & > small
- display: none
- & > .loading
- top: 28px
- &.success, &.error, &.confirm, &.html
- width: WINDOW_WIDTH
- margin-top: 100%
- &.success, &.error, &.confirm
- padding-top: 16px
- & > .icon
- font-size: 5em
- line-height: 1.0em
- & > strong
- font-size: FONT_SIZE_BIG
- padding-top: 4px
- & small
- padding-top: 8px
- padding-bottom: 16px
- & > strong, & small
- padding-left: 16px
- padding-right: 16px
- &.html .title
- height: HEADER_HEIGHT
- line-height: HEADER_HEIGHT
- font-size: FONT_SIZE_LARGE
- &.push
- position: absolute
- text-align: left
- height: H = (HEADER_HEIGHT / 1.75)
- line-height: H
- padding: 0 8px
- width: 100%
- transition-property opacity, top
- top: -(H)
- &.show
- top: 0px
- & .icon
- font-size: FONT_SIZE_LARGE
- float: left
- display: inline
- margin-right: 6px
- & button, & .button
- display: block
- margin-bottom: 1px
- height: 48px
- line-height: 48px
- border: none
- font-size: FONT_SIZE_LARGE
- & strong, small
- display: block
|