_mixins.scss in Virtue/Ascend/Pinnacle Toolkit 4.9.12.2, at cmb/css/sass/partials/_mixins.scss
| 1 | //-------------------------------------------------------------- |
| 2 | // Mixins |
| 3 | //-------------------------------------------------------------- |
| 4 | |
| 5 | @mixin fullth() { |
| 6 | font-size: 1.2em; |
| 7 | @include _fullth; |
| 8 | } |
| 9 | |
| 10 | @mixin fullth_side() { |
| 11 | |
| 12 | @include _fullth; |
| 13 | |
| 14 | label { |
| 15 | font-size: $font-size; |
| 16 | line-height: 1.4em; |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | @mixin _fullth() { |
| 21 | display: block; |
| 22 | float: none; |
| 23 | padding-bottom: 1em; |
| 24 | text-align: left; |
| 25 | width: 100%; |
| 26 | |
| 27 | label { |
| 28 | display: block; |
| 29 | margin-top: 0; |
| 30 | margin-bottom: 0.5em; |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | @mixin pseudo-dashicons( $glyph: "\f333" ) { |
| 35 | content: $glyph; |
| 36 | font-family: 'Dashicons'; |
| 37 | speak: none; |
| 38 | font-weight: normal; |
| 39 | font-variant: normal; |
| 40 | text-transform: none; |
| 41 | line-height: 1; |
| 42 | -webkit-font-smoothing: antialiased; |
| 43 | margin: 0; |
| 44 | text-indent: 0; |
| 45 | position: absolute; |
| 46 | top: 0; |
| 47 | left: 0; |
| 48 | width: 100%; |
| 49 | height: 100%; |
| 50 | text-align: center; |
| 51 | } |
| 52 |