PluginProbe
Virtue/Ascend/Pinnacle Toolkit / 4.9.12.2
Virtue/Ascend/Pinnacle Toolkit v4.9.12.2
4.9.12.2 trunk 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.9 3.0 3.1 3.2 3.3 3.4 3.7 All 48 releases
virtue-toolkit / cmb / css / sass / partials / _mixins.scss

_mixins.scss in Virtue/Ascend/Pinnacle Toolkit 4.9.12.2, at cmb/css/sass/partials/_mixins.scss

52 lines 834 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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