Sha256: c79e7d77011854e3ce5b2356354e1846480637933b49e27a41ae103ce2c4c43d
Contents?: true
Size: 1.74 KB
Versions: 15
Compression:
Stored size: 1.74 KB
Contents
/** * Includes default message box styles. * * @member Ext.MessageBox */ @mixin sencha-msgbox { .x-msgbox { min-width: 15em; max-width: 20em; padding: 0.8em; margin: .5em; -webkit-box-shadow: rgba(#000, .4) 0 .1em .5em; @if $include-border-radius { @include border-radius($panel-border-radius); } border: .15em solid $base-color; .x-icon { margin-left: 1.3em; } .x-title { font-size: .9em; line-height: 1.4em; } .x-body { background:transparent !important; } .x-toolbar { background: transparent none; -webkit-box-shadow: none; &.x-docked-top { border-bottom: 0; height: 1.3em; } &.x-docked-bottom { border-top: 0; } } .x-field { min-height:2em; background: #fff; @if $include-border-radius { @include border-radius(.2em); } } .x-form-field { min-height:1.5em; padding-right: 0 !important; -webkit-appearance: none; } .x-field-input { padding-right: 2.2em; } } .x-msgbox-text { text-align: center; padding: 6px 0; line-height: 1.4em; } .x-msgbox-buttons { padding: 0.4em 0; height: auto; .x-button { min-width: 4.5em; } .x-button-normal span { opacity: .7; } } // TODO: Refactor along with Sheet @include msgbox-ui('dark'); } @mixin msgbox-ui($ui-label) { .x-msgbox-#{$ui-label} { .x-msgbox-text { @include color-by-background($sheet-bg-color, 80%); @include bevel-by-background($sheet-bg-color); } .x-msgbox-input { @include background-gradient(lighten($sheet-bg-color, 80%), 'recessed'); border: .1em solid lighten($sheet-bg-color, 40%); } } }
Version data entries
15 entries across 15 versions & 1 rubygems