PluginProbe ʕ •ᴥ•ʔ
WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel / 1.2.2
WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel v1.2.2
trunk 0.9.0 0.9.1 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0 1.2.1 1.2.10 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 1.4.13 1.4.14 1.4.15 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5.0
wp-all-export / frontend / src / common.scss
wp-all-export / frontend / src Last commit date
advancedAttributes 7 years ago availabilityPrice 7 years ago basicInformation 7 years ago common 7 years ago detailedInformation 7 years ago productCategories 7 years ago shipping 7 years ago styles 7 years ago uniqueIdentifiers 7 years ago app.js 7 years ago common.scss 7 years ago styles.scss 7 years ago
common.scss
26 lines
1 $accent-color: #40acad;
2
3 @mixin flexbox() {
4 display: -webkit-box;
5 display: -moz-box;
6 display: -ms-flexbox;
7 display: -webkit-flex;
8 display: flex;
9 }
10
11 @mixin flex($values) {
12 -webkit-box-flex: $values;
13 -moz-box-flex: $values;
14 -webkit-flex: $values;
15 -ms-flex: $values;
16 flex: $values;
17 }
18
19 @mixin order($val) {
20 -webkit-box-ordinal-group: $val;
21 -moz-box-ordinal-group: $val;
22 -ms-flex-order: $val;
23 -webkit-order: $val;
24 order: $val;
25 }
26