Version Description
~ Fixed library metab-box
Download this release
Release Info
Developer | ThimPress |
Plugin | ![]() |
Version | 3.2.6.9 |
Comparing to | |
See all releases |
Code changes from version 3.2.6.7 to 3.2.6.9
- assets/css/admin/admin.css +3395 -3389
- assets/js/admin/utils.js +2 -1
- assets/js/admin/utils.min.js +1 -1
- inc/admin/class-lp-admin-ajax.php +90 -46
- inc/admin/class-lp-modal-search-items.php +8 -7
- inc/admin/helpers/class-lp-plugins-helper.php +5 -1
- inc/admin/lp-admin-functions.php +0 -83
- inc/admin/views/meta-boxes/order/order-item.php +3 -3
- inc/background-process/class-lp-background-query-items.php +1 -1
- inc/class-lp-helper.php +13 -0
- inc/class-lp-nonce-helper.php +84 -84
- inc/class-lp-page-controller.php +4 -4
- inc/class-lp-schedules.php +3 -3
- inc/course/abstract-course.php +4 -1
- inc/course/class-lp-course-item.php +6 -2
- inc/course/class-lp-course-section.php +3 -2
- inc/curds/class-lp-order-curd.php +64 -8
- inc/curds/class-lp-user-curd.php +55 -49
- inc/libraries/meta-box/css/autocomplete.css +14 -14
- inc/libraries/meta-box/css/background.css +17 -17
- inc/libraries/meta-box/css/button-group.css +68 -68
- inc/libraries/meta-box/css/color.css +8 -8
- inc/libraries/meta-box/css/datepicker.css +231 -231
- inc/libraries/meta-box/css/divider.css +7 -7
- inc/libraries/meta-box/css/fieldset-text.css +4 -4
- inc/libraries/meta-box/css/file-input.css +6 -6
- inc/libraries/meta-box/css/file.css +51 -51
- inc/libraries/meta-box/css/heading.css +12 -12
- inc/libraries/meta-box/css/image-advanced.css +52 -52
- inc/libraries/meta-box/css/image-select.css +21 -21
- inc/libraries/meta-box/css/image.css +66 -66
- inc/libraries/meta-box/css/input-list.css +20 -20
- inc/libraries/meta-box/css/jqueryui/jquery-ui-timepicker-addon.min.css +4 -4
- inc/libraries/meta-box/css/jqueryui/jquery.ui.core.css +38 -38
- inc/libraries/meta-box/css/jqueryui/jquery.ui.datepicker.css +67 -67
- inc/libraries/meta-box/css/jqueryui/jquery.ui.slider.css +23 -23
- inc/libraries/meta-box/css/jqueryui/jquery.ui.theme.css +248 -248
- inc/libraries/meta-box/css/map.css +49 -49
- inc/libraries/meta-box/css/media.css +50 -50
- inc/libraries/meta-box/css/oembed.css +11 -11
- inc/libraries/meta-box/css/osm.css +49 -49
- inc/libraries/meta-box/css/range.css +9 -9
- inc/libraries/meta-box/css/select-advanced.css +19 -19
- inc/libraries/meta-box/css/select-tree.css +7 -7
- inc/libraries/meta-box/css/select.css +11 -11
- inc/libraries/meta-box/css/select2/select2.css +484 -484
- inc/libraries/meta-box/css/slider.css +13 -13
- inc/libraries/meta-box/css/style-rtl.css +11 -11
- inc/libraries/meta-box/css/style.css +143 -143
- inc/libraries/meta-box/css/switch.css +94 -94
- inc/libraries/meta-box/css/text-list.css +19 -19
- inc/libraries/meta-box/css/upload.css +28 -28
- inc/libraries/meta-box/css/video.css +25 -25
- inc/libraries/meta-box/css/wysiwyg.css +6 -6
- inc/libraries/meta-box/inc/about/about.php +230 -230
- inc/libraries/meta-box/inc/about/css/about.css +219 -219
- inc/libraries/meta-box/inc/about/css/style.css +57 -57
- inc/libraries/meta-box/inc/about/images/meta-box.svg +5 -5
- inc/libraries/meta-box/inc/about/js/about.js +26 -26
- inc/libraries/meta-box/inc/about/js/script.js +22 -22
- inc/libraries/meta-box/inc/about/sections/extensions.php +351 -351
- inc/libraries/meta-box/inc/about/sections/getting-started.php +36 -36
- inc/libraries/meta-box/inc/about/sections/newsletter.php +16 -16
- inc/libraries/meta-box/inc/about/sections/support.php +35 -35
- inc/libraries/meta-box/inc/about/sections/tabs.php +14 -14
- inc/libraries/meta-box/inc/about/sections/upgrade.php +26 -26
- inc/libraries/meta-box/inc/about/sections/welcome.php +24 -24
- inc/libraries/meta-box/inc/autoloader.php +180 -180
- inc/libraries/meta-box/inc/clone.php +123 -123
- inc/libraries/meta-box/inc/core.php +117 -117
- inc/libraries/meta-box/inc/field-registry.php +64 -64
- inc/libraries/meta-box/inc/field.php +695 -695
- inc/libraries/meta-box/inc/fields/autocomplete.php +125 -125
- inc/libraries/meta-box/inc/fields/background.php +167 -167
- inc/libraries/meta-box/inc/fields/button-group.php +82 -82
- inc/libraries/meta-box/inc/fields/button.php +60 -60
- inc/libraries/meta-box/inc/fields/checkbox-list.php +24 -24
- inc/libraries/meta-box/inc/fields/checkbox.php +55 -55
- inc/libraries/meta-box/inc/fields/choice.php +78 -78
- inc/libraries/meta-box/inc/fields/color.php +96 -96
- inc/libraries/meta-box/inc/fields/custom-html.php +27 -27
- inc/libraries/meta-box/inc/fields/date.php +32 -32
- inc/libraries/meta-box/inc/fields/datetime.php +278 -278
- inc/libraries/meta-box/inc/fields/divider.php +43 -43
- inc/libraries/meta-box/inc/fields/fieldset-text.php +125 -125
- inc/libraries/meta-box/inc/fields/file-input.php +62 -62
- inc/libraries/meta-box/inc/fields/file-upload.php +54 -54
- inc/libraries/meta-box/inc/fields/file.php +369 -369
- inc/libraries/meta-box/inc/fields/heading.php +43 -43
- inc/libraries/meta-box/inc/fields/image-advanced.php +93 -93
- inc/libraries/meta-box/inc/fields/image-select.php +72 -72
- inc/libraries/meta-box/inc/fields/image-upload.php +40 -40
- inc/libraries/meta-box/inc/fields/image.php +144 -144
- inc/libraries/meta-box/inc/fields/input-list.php +96 -96
- inc/libraries/meta-box/inc/fields/input.php +97 -97
- inc/libraries/meta-box/inc/fields/key-value.php +154 -154
- inc/libraries/meta-box/inc/fields/map.php +228 -228
- inc/libraries/meta-box/inc/fields/media.php +190 -190
- inc/libraries/meta-box/inc/fields/multiple-values.php +49 -49
- inc/libraries/meta-box/inc/fields/number.php +54 -54
- inc/libraries/meta-box/inc/fields/object-choice.php +124 -124
- inc/libraries/meta-box/inc/fields/oembed.php +145 -145
- inc/libraries/meta-box/inc/fields/osm.php +175 -175
- inc/libraries/meta-box/inc/fields/password.php +25 -25
- inc/libraries/meta-box/inc/fields/post.php +135 -135
- inc/libraries/meta-box/inc/fields/radio.php +24 -24
- inc/libraries/meta-box/inc/fields/range.php +73 -73
- inc/libraries/meta-box/inc/fields/select-advanced.php +83 -83
- inc/libraries/meta-box/inc/fields/select-tree.php +63 -63
- inc/libraries/meta-box/inc/fields/select.php +96 -96
- inc/libraries/meta-box/inc/fields/sidebar.php +68 -68
- inc/libraries/meta-box/inc/fields/single-image.php +76 -76
- inc/libraries/meta-box/inc/fields/slider.php +78 -78
- inc/libraries/meta-box/inc/fields/switch.php +97 -97
- inc/libraries/meta-box/inc/fields/taxonomy-advanced.php +132 -132
- inc/libraries/meta-box/inc/fields/taxonomy.php +212 -212
- inc/libraries/meta-box/inc/fields/text-list.php +127 -127
- inc/libraries/meta-box/inc/fields/text.php +55 -55
- inc/libraries/meta-box/inc/fields/textarea.php +88 -88
- inc/libraries/meta-box/inc/fields/thickbox-image.php +80 -80
- inc/libraries/meta-box/inc/fields/time.php +32 -32
- inc/libraries/meta-box/inc/fields/user.php +80 -80
- inc/libraries/meta-box/inc/fields/video.php +147 -147
- inc/libraries/meta-box/inc/fields/wysiwyg.php +99 -99
- inc/libraries/meta-box/inc/functions.php +385 -385
- inc/libraries/meta-box/inc/interfaces/storage.php +22 -22
- inc/libraries/meta-box/inc/loader.php +108 -108
- inc/libraries/meta-box/inc/media-modal.php +127 -127
- inc/libraries/meta-box/inc/meta-box-registry.php +70 -70
- inc/libraries/meta-box/inc/meta-box.php +492 -492
- inc/libraries/meta-box/inc/sanitizer.php +64 -64
- inc/libraries/meta-box/inc/storage-registry.php +37 -37
- inc/libraries/meta-box/inc/storages/base.php +98 -98
- inc/libraries/meta-box/inc/storages/post.php +19 -19
- inc/libraries/meta-box/inc/templates/audio.php +40 -40
- inc/libraries/meta-box/inc/templates/image-advanced.php +31 -31
- inc/libraries/meta-box/inc/templates/media.php +51 -51
- inc/libraries/meta-box/inc/templates/upload.php +7 -7
- inc/libraries/meta-box/inc/templates/video.php +43 -43
- inc/libraries/meta-box/inc/validation.php +54 -54
- inc/libraries/meta-box/inc/walkers/base.php +42 -42
- inc/libraries/meta-box/inc/walkers/input-list.php +65 -65
- inc/libraries/meta-box/inc/walkers/select-tree.php +90 -90
- inc/libraries/meta-box/inc/walkers/select.php +35 -35
- inc/libraries/meta-box/inc/wpml.php +125 -125
- inc/libraries/meta-box/js/autocomplete.js +49 -49
- inc/libraries/meta-box/js/autosave.js +16 -16
- inc/libraries/meta-box/js/button-group.js +37 -37
- inc/libraries/meta-box/js/clone.js +260 -260
- inc/libraries/meta-box/js/color.js +35 -35
- inc/libraries/meta-box/js/date.js +64 -64
- inc/libraries/meta-box/js/datetime.js +69 -69
- inc/libraries/meta-box/js/file-input.js +43 -43
- inc/libraries/meta-box/js/file-upload.js +190 -190
- inc/libraries/meta-box/js/file.js +108 -108
- inc/libraries/meta-box/js/image-advanced.js +47 -47
- inc/libraries/meta-box/js/image-select.js +20 -20
- inc/libraries/meta-box/js/image-upload.js +31 -31
- inc/libraries/meta-box/js/input-list.js +29 -29
- inc/libraries/meta-box/js/jquery-validation/additional-methods.min.js +3 -3
- inc/libraries/meta-box/js/jquery-validation/jquery.validate.min.js +3 -3
- inc/libraries/meta-box/js/jqueryui/jquery-ui-timepicker-addon-i18n.min.js +3 -3
- inc/libraries/meta-box/js/jqueryui/jquery-ui-timepicker-addon.min.js +4 -4
- inc/libraries/meta-box/js/map-frontend.js +77 -77
- inc/libraries/meta-box/js/map.js +263 -263
- inc/libraries/meta-box/js/media.js +617 -617
- inc/libraries/meta-box/js/oembed.js +35 -35
- inc/libraries/meta-box/js/osm-frontend.js +49 -49
- inc/libraries/meta-box/js/osm.js +265 -265
- inc/libraries/meta-box/js/range.js +20 -20
- inc/libraries/meta-box/js/script.js +4 -4
- inc/libraries/meta-box/js/select-advanced.js +55 -55
- inc/libraries/meta-box/js/select-tree.js +20 -20
- inc/libraries/meta-box/js/select.js +51 -51
- inc/libraries/meta-box/js/select2/i18n/af.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/ar.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/az.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/bg.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/bs.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/ca.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/cs.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/da.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/de.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/dsb.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/el.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/en.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/es.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/et.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/eu.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/fa.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/fi.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/fr.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/gl.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/he.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/hi.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/hr.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/hsb.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/hu.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/hy.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/id.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/is.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/it.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/ja.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/km.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/ko.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/lt.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/lv.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/mk.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/ms.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/nb.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/nl.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/pl.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/ps.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/pt-BR.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/pt.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/ro.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/ru.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/sk.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/sl.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/sr-Cyrl.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/sr.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/sv.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/th.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/tr.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/uk.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/vi.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/zh-CN.js +2 -2
- inc/libraries/meta-box/js/select2/i18n/zh-TW.js +2 -2
- inc/libraries/meta-box/js/slider.js +35 -35
- inc/libraries/meta-box/js/thickbox-image.js +34 -34
- inc/libraries/meta-box/js/time.js +41 -41
- inc/libraries/meta-box/js/validate.js +53 -53
- inc/libraries/meta-box/js/video.js +46 -46
- inc/libraries/meta-box/js/wp-color-picker-alpha/wp-color-picker-alpha.min.js +12 -12
- inc/libraries/meta-box/js/wysiwyg.js +94 -94
- inc/libraries/meta-box/languages/default.pot +353 -353
- inc/libraries/meta-box/languages/meta-box-ar.po +122 -122
- inc/libraries/meta-box/languages/meta-box-fa_IR.po +184 -184
- inc/libraries/meta-box/languages/meta-box-fr_FR.po +217 -217
- inc/libraries/meta-box/languages/meta-box-it_IT.po +318 -318
- inc/libraries/meta-box/languages/meta-box-nb_NO.po +149 -149
- inc/libraries/meta-box/languages/meta-box-nl_NL.po +130 -130
- inc/libraries/meta-box/languages/meta-box-pl_PL.po +215 -215
- inc/libraries/meta-box/languages/meta-box-pt_BR.po +124 -124
- inc/libraries/meta-box/languages/meta-box-ru_RU.po +637 -637
- inc/libraries/meta-box/languages/meta-box-tr_TR.po +180 -180
- inc/libraries/meta-box/languages/meta-box-zh_CN.po +189 -189
- inc/libraries/meta-box/languages/readme.md +15 -15
- inc/libraries/meta-box/meta-box.php +40 -40
- inc/libraries/meta-box/readme.txt +170 -170
- inc/lp-core-functions.php +3388 -3388
- inc/lp-template-functions.php +3807 -3816
- inc/lp-template-hooks.php +1 -1
- inc/user-item/class-lp-user-item-quiz.php +10 -6
- inc/user/abstract-lp-user.php +70 -31
- inc/user/lp-user-functions.php +2 -2
- languages/learnpress.pot +3812 -4485
- learnpress.php +1 -1
- readme.txt +14 -2
assets/css/admin/admin.css
CHANGED
@@ -1,3389 +1,3395 @@
|
|
1 |
-
/**
|
2 |
-
* Mixin
|
3 |
-
*/
|
4 |
-
@-webkit-keyframes rotating4 /* Safari and Chrome */ {
|
5 |
-
from {
|
6 |
-
-webkit-transform: rotate(0deg);
|
7 |
-
-o-transform: rotate(0deg);
|
8 |
-
transform: rotate(0deg); }
|
9 |
-
to {
|
10 |
-
-webkit-transform: rotate(360deg);
|
11 |
-
-o-transform: rotate(360deg);
|
12 |
-
transform: rotate(360deg); } }
|
13 |
-
|
14 |
-
@keyframes rotating4 {
|
15 |
-
from {
|
16 |
-
-ms-transform: rotate(0deg);
|
17 |
-
-moz-transform: rotate(0deg);
|
18 |
-
-webkit-transform: rotate(0deg);
|
19 |
-
-o-transform: rotate(0deg);
|
20 |
-
transform: rotate(0deg); }
|
21 |
-
to {
|
22 |
-
-ms-transform: rotate(360deg);
|
23 |
-
-moz-transform: rotate(360deg);
|
24 |
-
-webkit-transform: rotate(360deg);
|
25 |
-
-o-transform: rotate(360deg);
|
26 |
-
transform: rotate(360deg); } }
|
27 |
-
|
28 |
-
@-webkit-keyframes animation4 /* Safari and Chrome */ {
|
29 |
-
from {
|
30 |
-
left: -40%;
|
31 |
-
width: 40%; }
|
32 |
-
to {
|
33 |
-
left: 100%;
|
34 |
-
width: 10%; } }
|
35 |
-
|
36 |
-
@keyframes animation4 {
|
37 |
-
from {
|
38 |
-
left: -40%;
|
39 |
-
width: 40%; }
|
40 |
-
to {
|
41 |
-
left: 100%;
|
42 |
-
width: 10%; } }
|
43 |
-
|
44 |
-
/**
|
45 |
-
* Styles for displaying list of table
|
46 |
-
*/
|
47 |
-
.lp-toolbar-buttons {
|
48 |
-
position: relative;
|
49 |
-
z-index: 10;
|
50 |
-
height: 50px; }
|
51 |
-
.lp-toolbar-buttons .lp-toolbar-btn {
|
52 |
-
width: 30px;
|
53 |
-
height: 30px;
|
54 |
-
padding: 0;
|
55 |
-
text-align: center;
|
56 |
-
position: relative;
|
57 |
-
vertical-align: middle;
|
58 |
-
cursor: pointer;
|
59 |
-
_background: #FFF;
|
60 |
-
display: inline-block;
|
61 |
-
margin: 0; }
|
62 |
-
.lp-toolbar-buttons .lp-toolbar-btn a, .lp-toolbar-buttons .lp-toolbar-btn span {
|
63 |
-
color: #999;
|
64 |
-
box-shadow: none;
|
65 |
-
outline: none; }
|
66 |
-
.lp-toolbar-buttons .lp-toolbar-btn .lp-btn-icon {
|
67 |
-
width: 30px;
|
68 |
-
height: 30px;
|
69 |
-
text-align: center;
|
70 |
-
position: absolute;
|
71 |
-
top: 50%;
|
72 |
-
margin-top: -15px;
|
73 |
-
left: 50%;
|
74 |
-
margin-left: -15px;
|
75 |
-
line-height: 30px; }
|
76 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-btn-move {
|
77 |
-
cursor: ns-resize; }
|
78 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-btn-move a, .lp-toolbar-buttons .lp-toolbar-btn.lp-btn-move span {
|
79 |
-
cursor: ns-resize; }
|
80 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-btn-move:hover a, .lp-toolbar-buttons .lp-toolbar-btn.lp-btn-move span {
|
81 |
-
color: #0085ba; }
|
82 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-btn-remove {
|
83 |
-
cursor: pointer; }
|
84 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-btn-remove:hover a, .lp-toolbar-buttons .lp-toolbar-btn.lp-btn-remove:hover span {
|
85 |
-
color: #d05d5d; }
|
86 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-btn-toggle .dashicons-arrow-down,
|
87 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-btn-toggle .dashicons-arrow-down-alt2 {
|
88 |
-
display: none; }
|
89 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-btn-toggle.closed .dashicons-arrow-up,
|
90 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-btn-toggle.closed .dashicons-arrow-up-alt2 {
|
91 |
-
display: none; }
|
92 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-btn-toggle.closed .dashicons-arrow-down,
|
93 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-btn-toggle.closed .dashicons-arrow-down-alt2 {
|
94 |
-
display: inline-block; }
|
95 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-toolbar-btn-dropdown {
|
96 |
-
color: #000; }
|
97 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-toolbar-btn-dropdown ul {
|
98 |
-
position: absolute;
|
99 |
-
top: 100%;
|
100 |
-
right: 0;
|
101 |
-
background: #fdfeff;
|
102 |
-
margin: 0px 0;
|
103 |
-
border: 1px solid #DDD;
|
104 |
-
display: none; }
|
105 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-toolbar-btn-dropdown ul li {
|
106 |
-
list-style: none;
|
107 |
-
margin: 0; }
|
108 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-toolbar-btn-dropdown ul li a {
|
109 |
-
display: block;
|
110 |
-
white-space: nowrap;
|
111 |
-
text-decoration: none;
|
112 |
-
padding: 3px 8px;
|
113 |
-
font-size: 12px;
|
114 |
-
text-align: right;
|
115 |
-
color: #0073aa;
|
116 |
-
margin: 0; }
|
117 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-toolbar-btn-dropdown ul li a:hover {
|
118 |
-
background: #dbf5ff; }
|
119 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-toolbar-btn-dropdown ul li.active a {
|
120 |
-
background: #dbf5ff; }
|
121 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-btn-disabled, .lp-toolbar-buttons .lp-toolbar-btn.lp-btn-disabled:hover {
|
122 |
-
_background: #F5F5F5; }
|
123 |
-
.lp-toolbar-buttons .lp-toolbar-btn.lp-btn-disabled .lp-btn-icon, .lp-toolbar-buttons .lp-toolbar-btn.lp-btn-disabled:hover .lp-btn-icon {
|
124 |
-
color: #DDD; }
|
125 |
-
.lp-toolbar-buttons .lp-toolbar-btn:hover {
|
126 |
-
background: #dbf5ff;
|
127 |
-
display: inline-block; }
|
128 |
-
.lp-toolbar-buttons .lp-toolbar-btn:hover .lp-btn-icon {
|
129 |
-
color: #00a0d2; }
|
130 |
-
.lp-toolbar-buttons .lp-toolbar-btn:hover ul {
|
131 |
-
display: block; }
|
132 |
-
.lp-toolbar-buttons .lp-toolbar-btn:hover ul:hover {
|
133 |
-
display: block; }
|
134 |
-
|
135 |
-
.column-content-actions.lp-toolbar-buttons {
|
136 |
-
white-space: nowrap;
|
137 |
-
width: 30px;
|
138 |
-
padding: 0; }
|
139 |
-
|
140 |
-
.learn-press-box-data {
|
141 |
-
border: 1px solid #DDD;
|
142 |
-
margin: 20px 0 0 0;
|
143 |
-
position: relative; }
|
144 |
-
.learn-press-box-data .lp-box-data-head {
|
145 |
-
padding: 10px 15px;
|
146 |
-
background: #FFF; }
|
147 |
-
.learn-press-box-data .lp-box-data-head h3 {
|
148 |
-
font-size: 18px;
|
149 |
-
padding: 15px;
|
150 |
-
margin: 0; }
|
151 |
-
.learn-press-box-data .lp-box-data-head .lp-box-data-actions {
|
152 |
-
float: right;
|
153 |
-
position: relative;
|
154 |
-
z-index: 10; }
|
155 |
-
.learn-press-box-data .lp-box-data-head .lp-box-data-actions .lp-btn {
|
156 |
-
display: inline-block;
|
157 |
-
width: 30px;
|
158 |
-
text-align: center;
|
159 |
-
height: 50px;
|
160 |
-
line-height: 46px;
|
161 |
-
vertical-align: middle; }
|
162 |
-
.learn-press-box-data .lp-box-data-head .lp-box-data-actions:after {
|
163 |
-
clear: both;
|
164 |
-
display: block;
|
165 |
-
content: ''; }
|
166 |
-
.learn-press-box-data .lp-box-data-head:after {
|
167 |
-
clear: both;
|
168 |
-
display: block;
|
169 |
-
content: ''; }
|
170 |
-
.learn-press-box-data .lp-box-data-content {
|
171 |
-
padding: 15px;
|
172 |
-
border-top: 1px solid #DDD;
|
173 |
-
background: #FFF; }
|
174 |
-
.learn-press-box-data .lp-box-data-foot {
|
175 |
-
padding: 15px; }
|
176 |
-
.learn-press-box-data.closed .lp-btn-toggle .dashicons-arrow-up,
|
177 |
-
.learn-press-box-data.closed .lp-btn-toggle .dashicons-arrow-up-alt2 {
|
178 |
-
display: none; }
|
179 |
-
.learn-press-box-data.closed .lp-btn-toggle .dashicons-arrow-down,
|
180 |
-
.learn-press-box-data.closed .lp-btn-toggle .dashicons-arrow-down-alt2 {
|
181 |
-
display: inline-block; }
|
182 |
-
.learn-press-box-data.closed .lp-box-data-content {
|
183 |
-
display: none; }
|
184 |
-
|
185 |
-
.lp-list-options {
|
186 |
-
width: 100%;
|
187 |
-
border-collapse: collapse; }
|
188 |
-
.lp-list-options th, .lp-list-options td {
|
189 |
-
padding: 10px 15px;
|
190 |
-
background: #F5F5F5;
|
191 |
-
border-top: 1px solid #DDD; }
|
192 |
-
.lp-list-options thead th {
|
193 |
-
text-align: left; }
|
194 |
-
.lp-list-options tbody tr td {
|
195 |
-
background: #f4fcff;
|
196 |
-
padding: 0 15px; }
|
197 |
-
.lp-list-options tbody tr td.lp-toolbar-buttons {
|
198 |
-
width: 30px;
|
199 |
-
white-space: nowrap;
|
200 |
-
position: relative;
|
201 |
-
height: 42px;
|
202 |
-
_overflow: hidden; }
|
203 |
-
.lp-list-options tbody tr td.lp-toolbar-buttons .lp-toolbar-btn {
|
204 |
-
height: 43px;
|
205 |
-
position: relative;
|
206 |
-
margin-bottom: -4px;
|
207 |
-
margin-top: -4px;
|
208 |
-
visibility: hidden; }
|
209 |
-
.lp-list-options tbody tr:nth-child(odd) td {
|
210 |
-
background: #FFF; }
|
211 |
-
.lp-list-options tbody tr:hover td.lp-toolbar-buttons .lp-toolbar-btn {
|
212 |
-
visibility: visible; }
|
213 |
-
.lp-list-options tbody td {
|
214 |
-
text-align: left; }
|
215 |
-
.lp-list-options tbody td input[type="text"] {
|
216 |
-
width: 100%; }
|
217 |
-
.lp-list-options tbody td input[type="text"][value=""] {
|
218 |
-
font-style: italic; }
|
219 |
-
.lp-list-options tbody td.column-content-answer_correct {
|
220 |
-
width: 125px; }
|
221 |
-
.lp-list-options tbody td.lp-remove-list-option, .lp-list-options tbody td.lp-move-list-option {
|
222 |
-
width: 20px;
|
223 |
-
padding: 0;
|
224 |
-
text-align: center; }
|
225 |
-
.lp-list-options tbody td.lp-remove-list-option a, .lp-list-options tbody td.lp-move-list-option a {
|
226 |
-
visibility: hidden;
|
227 |
-
color: #999; }
|
228 |
-
.lp-list-options tbody td.lp-remove-list-option:hover, .lp-list-options tbody td.lp-move-list-option:hover {
|
229 |
-
background: #dbf5ff; }
|
230 |
-
.lp-list-options tbody td.lp-move-list-option {
|
231 |
-
cursor: ns-resize; }
|
232 |
-
.lp-list-options tbody td.lp-move-list-option a {
|
233 |
-
cursor: ns-resize; }
|
234 |
-
.lp-list-options tbody td.lp-move-list-option:hover a {
|
235 |
-
color: #0085ba; }
|
236 |
-
.lp-list-options tbody td.lp-remove-list-option {
|
237 |
-
cursor: pointer; }
|
238 |
-
.lp-list-options tbody td.lp-remove-list-option:hover a {
|
239 |
-
color: #d05d5d; }
|
240 |
-
|
241 |
-
.lp-animation {
|
242 |
-
-webkit-animation: spin 4s linear infinite;
|
243 |
-
-moz-animation: spin 4s linear infinite;
|
244 |
-
animation: spin 4s linear infinite; }
|
245 |
-
|
246 |
-
.lp-ajax-search {
|
247 |
-
position: relative;
|
248 |
-
display: inline-block;
|
249 |
-
z-index: 999999; }
|
250 |
-
.lp-ajax-search .lp-search-term {
|
251 |
-
height: 28px;
|
252 |
-
min-width: 300px;
|
253 |
-
margin: 0;
|
254 |
-
-webkit-box-shadow: none;
|
255 |
-
-moz-box-shadow: none;
|
256 |
-
box-shadow: none;
|
257 |
-
outline: none; }
|
258 |
-
.lp-ajax-search .lp-search-term:focus {
|
259 |
-
-webkit-box-shadow: none;
|
260 |
-
-moz-box-shadow: none;
|
261 |
-
box-shadow: none; }
|
262 |
-
.lp-ajax-search .lp-search-term:focus {
|
263 |
-
-webkit-box-shadow: none;
|
264 |
-
-moz-box-shadow: none;
|
265 |
-
box-shadow: none;
|
266 |
-
outline: none; }
|
267 |
-
.lp-ajax-search .lp-search-term:focus:focus {
|
268 |
-
-webkit-box-shadow: none;
|
269 |
-
-moz-box-shadow: none;
|
270 |
-
box-shadow: none; }
|
271 |
-
.lp-ajax-search .lp-search-results {
|
272 |
-
position: absolute;
|
273 |
-
background: #FFF;
|
274 |
-
border: 1px solid #DDD;
|
275 |
-
top: 100%;
|
276 |
-
width: 100%;
|
277 |
-
margin: -1px 0 0 0;
|
278 |
-
-webkit-box-sizing: border-box;
|
279 |
-
-moz-box-sizing: border-box;
|
280 |
-
box-sizing: border-box; }
|
281 |
-
.lp-ajax-search .lp-search-results .lp-search-items {
|
282 |
-
margin: 0;
|
283 |
-
max-height: 300px;
|
284 |
-
overflow: auto; }
|
285 |
-
.lp-ajax-search .lp-search-results .lp-search-items li {
|
286 |
-
margin: 0; }
|
287 |
-
.lp-ajax-search .lp-search-results .lp-search-items li label {
|
288 |
-
display: block;
|
289 |
-
padding: 8px 10px;
|
290 |
-
border-bottom: 1px solid #f3f3f3; }
|
291 |
-
.lp-ajax-search .lp-search-results .lp-search-items li label input {
|
292 |
-
float: left;
|
293 |
-
margin-right: -100%;
|
294 |
-
margin-top: 1px; }
|
295 |
-
.lp-ajax-search .lp-search-results .lp-search-items li label span {
|
296 |
-
margin-left: 25px;
|
297 |
-
display: inline-block; }
|
298 |
-
.lp-ajax-search .lp-search-results .lp-search-items li label span a.lp-add-item {
|
299 |
-
visibility: hidden;
|
300 |
-
margin-left: 10px; }
|
301 |
-
.lp-ajax-search .lp-search-results .lp-search-items li.active {
|
302 |
-
background: #dbf5ff; }
|
303 |
-
.lp-ajax-search .lp-search-results .lp-search-items li:hover {
|
304 |
-
background: #0085ba;
|
305 |
-
color: #FFF; }
|
306 |
-
.lp-ajax-search .lp-search-results .lp-search-items li:hover a.lp-add-item {
|
307 |
-
visibility: visible; }
|
308 |
-
.lp-ajax-search .lp-search-results .lp-search-actions {
|
309 |
-
border-top: 1px solid #DDD;
|
310 |
-
padding: 10px;
|
311 |
-
margin: 0; }
|
312 |
-
|
313 |
-
#learn-press-ajax-search-overlay {
|
314 |
-
position: fixed;
|
315 |
-
top: 0;
|
316 |
-
left: 0;
|
317 |
-
width: 100%;
|
318 |
-
height: 100%;
|
319 |
-
opacity: 0;
|
320 |
-
z-index: 99999;
|
321 |
-
display: none; }
|
322 |
-
|
323 |
-
.update-overlay {
|
324 |
-
position: fixed;
|
325 |
-
top: 0;
|
326 |
-
left: 0;
|
327 |
-
width: 100%;
|
328 |
-
height: 100%;
|
329 |
-
z-index: 99999;
|
330 |
-
background: rgba(255, 255, 255, 0.5); }
|
331 |
-
|
332 |
-
#course-editor.ajax-search #learn-press-ajax-search-overlay {
|
333 |
-
display: block; }
|
334 |
-
|
335 |
-
#course-editor.ajax-search .lp-ajax-search {
|
336 |
-
z-index: 100000; }
|
337 |
-
|
338 |
-
.advanced-list {
|
339 |
-
list-style: none; }
|
340 |
-
.advanced-list li {
|
341 |
-
display: inline-block;
|
342 |
-
background: #EEE;
|
343 |
-
padding: 3px 8px;
|
344 |
-
-webkit-border-radius: 2px;
|
345 |
-
-moz-border-radius: 2px;
|
346 |
-
border-radius: 2px; }
|
347 |
-
.advanced-list li .remove-item {
|
348 |
-
display: inline-block;
|
349 |
-
text-decoration: none;
|
350 |
-
line-height: 1;
|
351 |
-
vertical-align: middle;
|
352 |
-
margin-right: 5px;
|
353 |
-
cursor: pointer; }
|
354 |
-
.advanced-list li .remove-item:hover {
|
355 |
-
color: #0085ba; }
|
356 |
-
.advanced-list li .remove-item:before {
|
357 |
-
font-family: dashicons;
|
358 |
-
content: "\f335";
|
359 |
-
text-decoration: none; }
|
360 |
-
.advanced-list li span {
|
361 |
-
display: inline-block; }
|
362 |
-
.advanced-list.locked .remove-item {
|
363 |
-
display: none; }
|
364 |
-
|
365 |
-
.lp-label-counter {
|
366 |
-
border-radius: 20px;
|
367 |
-
display: inline-block;
|
368 |
-
height: 20px;
|
369 |
-
padding: 0 10px;
|
370 |
-
background: #2196F3;
|
371 |
-
line-height: 20px;
|
372 |
-
color: #FFF;
|
373 |
-
font-weight: bold; }
|
374 |
-
.lp-label-counter.disabled {
|
375 |
-
background: #DDD; }
|
376 |
-
|
377 |
-
@-moz-keyframes spin {
|
378 |
-
100% {
|
379 |
-
-moz-transform: rotate(360deg); } }
|
380 |
-
|
381 |
-
@-webkit-keyframes spin {
|
382 |
-
100% {
|
383 |
-
-webkit-transform: rotate(360deg); } }
|
384 |
-
|
385 |
-
@keyframes spin {
|
386 |
-
100% {
|
387 |
-
-webkit-transform: rotate(360deg);
|
388 |
-
transform: rotate(360deg); } }
|
389 |
-
|
390 |
-
.rwmb-duration {
|
391 |
-
border: 1px solid #ddd; }
|
392 |
-
|
393 |
-
ul .clearfix {
|
394 |
-
clear: both;
|
395 |
-
height: 0;
|
396 |
-
opacity: 0; }
|
397 |
-
|
398 |
-
.clearfix-after:after {
|
399 |
-
clear: both;
|
400 |
-
height: 0;
|
401 |
-
opacity: 0;
|
402 |
-
display: block;
|
403 |
-
content: ''; }
|
404 |
-
|
405 |
-
@-moz-keyframes lp-spinner {
|
406 |
-
100% {
|
407 |
-
-moz-transform: rotate(360deg); } }
|
408 |
-
|
409 |
-
@-webkit-keyframes lp-spinner {
|
410 |
-
100% {
|
411 |
-
-webkit-transform: rotate(360deg); } }
|
412 |
-
|
413 |
-
@keyframes lp-spinner {
|
414 |
-
100% {
|
415 |
-
-webkit-transform: rotate(360deg);
|
416 |
-
transform: rotate(360deg); } }
|
417 |
-
|
418 |
-
.lp-modal-choose-items-open {
|
419 |
-
overflow: hidden; }
|
420 |
-
|
421 |
-
.lp-modal-search {
|
422 |
-
background-color: red;
|
423 |
-
color: #777;
|
424 |
-
padding: 20px;
|
425 |
-
height: 100%; }
|
426 |
-
.lp-modal-search li.selected {
|
427 |
-
display: none; }
|
428 |
-
|
429 |
-
/* message box */
|
430 |
-
#learn-press-message-box-block {
|
431 |
-
position: fixed;
|
432 |
-
top: 0;
|
433 |
-
left: 0;
|
434 |
-
right: 0;
|
435 |
-
bottom: 0;
|
436 |
-
background-color: #000;
|
437 |
-
z-index: 99999;
|
438 |
-
opacity: 0.8; }
|
439 |
-
|
440 |
-
#learn-press-message-box-window {
|
441 |
-
position: fixed;
|
442 |
-
top: 0;
|
443 |
-
bottom: 0;
|
444 |
-
left: 0;
|
445 |
-
right: 0;
|
446 |
-
z-index: 100000;
|
447 |
-
color: #FFF;
|
448 |
-
text-align: center; }
|
449 |
-
|
450 |
-
#message-box-wrap {
|
451 |
-
margin: 0 auto;
|
452 |
-
/* text-align: center; */
|
453 |
-
display: inline-block;
|
454 |
-
text-align: left;
|
455 |
-
max-width: 70%; }
|
456 |
-
|
457 |
-
.message-box-title {
|
458 |
-
color: #FFF;
|
459 |
-
margin: 0 0 40px 0;
|
460 |
-
font-size: 34px; }
|
461 |
-
|
462 |
-
.message-box-content {
|
463 |
-
font-size: 16px;
|
464 |
-
line-height: 1.5; }
|
465 |
-
|
466 |
-
.message-box-animation {
|
467 |
-
background-image: url("../../images/animation.gif");
|
468 |
-
width: 220px;
|
469 |
-
height: 20px;
|
470 |
-
margin: 20px 0 0; }
|
471 |
-
|
472 |
-
.message-box-buttons {
|
473 |
-
margin: 20px 0 0;
|
474 |
-
border-top: 1px solid #929292;
|
475 |
-
padding-top: 20px; }
|
476 |
-
|
477 |
-
.message-box-button {
|
478 |
-
margin-right: 10px !important; }
|
479 |
-
|
480 |
-
.tipsy {
|
481 |
-
position: absolute; }
|
482 |
-
|
483 |
-
.learnpress a, .learnpress a:active {
|
484 |
-
outline: none;
|
485 |
-
box-shadow: none; }
|
486 |
-
|
487 |
-
.learnpress .lp-install-sample-data-options {
|
488 |
-
border: 1px solid #DDD;
|
489 |
-
padding: 0 20px 10px 20px; }
|
490 |
-
.learnpress .lp-install-sample-data-options legend {
|
491 |
-
font-size: 16px; }
|
492 |
-
|
493 |
-
/* Metabox email template field */
|
494 |
-
.lp-email-templates {
|
495 |
-
overflow: hidden;
|
496 |
-
margin-top: 5px; }
|
497 |
-
|
498 |
-
.learn-press-email-variables {
|
499 |
-
list-style: none;
|
500 |
-
padding: 0;
|
501 |
-
margin: 20px 0 0; }
|
502 |
-
.learn-press-email-variables li {
|
503 |
-
display: inline-block;
|
504 |
-
cursor: pointer; }
|
505 |
-
|
506 |
-
/* Metabox dropdown pages field */
|
507 |
-
.learn-press-dropdown-pages input[type="text"] {
|
508 |
-
min-width: 300px;
|
509 |
-
height: 29px;
|
510 |
-
vertical-align: top;
|
511 |
-
margin: 0; }
|
512 |
-
|
513 |
-
.learn-press-dropdown-pages .select2-selection__rendered {
|
514 |
-
line-height: 26px !important; }
|
515 |
-
|
516 |
-
.learn-press-dropdown-pages .quick-add-page-inline {
|
517 |
-
margin-top: 0; }
|
518 |
-
|
519 |
-
/* Tooltip */
|
520 |
-
.learn-press-tooltip {
|
521 |
-
display: inline-block;
|
522 |
-
font-size: 17px;
|
523 |
-
vertical-align: middle;
|
524 |
-
margin: 0 5px;
|
525 |
-
color: #999; }
|
526 |
-
.learn-press-tooltip.icon:after {
|
527 |
-
font-family: Dashicons;
|
528 |
-
content: "\f223"; }
|
529 |
-
.learn-press-tooltip:hover {
|
530 |
-
color: #0073aa;
|
531 |
-
opacity: 1; }
|
532 |
-
|
533 |
-
/* Metabox payment order field */
|
534 |
-
.rwmb-payment-order-wrapper .rwmb-label {
|
535 |
-
margin-bottom: 20px !important; }
|
536 |
-
|
537 |
-
.rwmb-payment-order-wrapper .rwmb-input {
|
538 |
-
margin-left: 0 !important; }
|
539 |
-
|
540 |
-
.learn-press-payments,
|
541 |
-
.learn-press-emails {
|
542 |
-
border-collapse: collapse;
|
543 |
-
border: 1px solid #DDD;
|
544 |
-
width: 100%;
|
545 |
-
font-size: 14px; }
|
546 |
-
.learn-press-payments th, .learn-press-payments td,
|
547 |
-
.learn-press-emails th,
|
548 |
-
.learn-press-emails td {
|
549 |
-
padding: 10px; }
|
550 |
-
.learn-press-payments .order,
|
551 |
-
.learn-press-emails .order {
|
552 |
-
width: 30px;
|
553 |
-
text-align: center;
|
554 |
-
padding-right: 0;
|
555 |
-
cursor: not-allowed;
|
556 |
-
color: #DDD; }
|
557 |
-
.learn-press-payments .name,
|
558 |
-
.learn-press-emails .name {
|
559 |
-
font-weight: normal;
|
560 |
-
text-transform: capitalize;
|
561 |
-
min-width: 250px; }
|
562 |
-
.learn-press-payments .name a,
|
563 |
-
.learn-press-emails .name a {
|
564 |
-
text-decoration: none; }
|
565 |
-
.learn-press-payments .status,
|
566 |
-
.learn-press-emails .status {
|
567 |
-
width: 100px;
|
568 |
-
text-align: center;
|
569 |
-
cursor: pointer; }
|
570 |
-
.learn-press-payments .status .dashicons,
|
571 |
-
.learn-press-emails .status .dashicons {
|
572 |
-
background: #DDD;
|
573 |
-
border-radius: 50%;
|
574 |
-
color: #FFF; }
|
575 |
-
.learn-press-payments .status a,
|
576 |
-
.learn-press-emails .status a {
|
577 |
-
display: block;
|
578 |
-
font-size: 12px;
|
579 |
-
text-decoration: none;
|
580 |
-
margin-top: 5px; }
|
581 |
-
.learn-press-payments .status.enabled .dashicons,
|
582 |
-
.learn-press-emails .status.enabled .dashicons {
|
583 |
-
background: #0085ba; }
|
584 |
-
.learn-press-payments thead th,
|
585 |
-
.learn-press-emails thead th {
|
586 |
-
text-align: left;
|
587 |
-
border-bottom: 1px solid #DDD; }
|
588 |
-
.learn-press-payments tbody tr:nth-child(even) td,
|
589 |
-
.learn-press-emails tbody tr:nth-child(even) td {
|
590 |
-
background: #FFF; }
|
591 |
-
.learn-press-payments tbody tr:nth-child(odd) td,
|
592 |
-
.learn-press-emails tbody tr:nth-child(odd) td {
|
593 |
-
background: #F5F5F5; }
|
594 |
-
.learn-press-payments tbody td,
|
595 |
-
.learn-press-emails tbody td {
|
596 |
-
border-bottom: 1px solid #EEE; }
|
597 |
-
.learn-press-payments tbody .ui-sortable-helper,
|
598 |
-
.learn-press-emails tbody .ui-sortable-helper {
|
599 |
-
border: 1px solid #DDD;
|
600 |
-
margin-left: -1px; }
|
601 |
-
.learn-press-payments tbody .ui-sortable-placeholder,
|
602 |
-
.learn-press-emails tbody .ui-sortable-placeholder {
|
603 |
-
visibility: visible !important;
|
604 |
-
border: 1px solid #DDD; }
|
605 |
-
.learn-press-payments tbody .ui-sortable-placeholder td,
|
606 |
-
.learn-press-emails tbody .ui-sortable-placeholder td {
|
607 |
-
background: #F7F7F7;
|
608 |
-
height: 35px;
|
609 |
-
padding: 0; }
|
610 |
-
.learn-press-payments ~ .email-actions,
|
611 |
-
.learn-press-emails ~ .email-actions {
|
612 |
-
text-align: right; }
|
613 |
-
.learn-press-payments.sortable .order:hover,
|
614 |
-
.learn-press-emails.sortable .order:hover {
|
615 |
-
cursor: ns-resize;
|
616 |
-
color: #0073aa; }
|
617 |
-
|
618 |
-
/* Submenu tools/templates */
|
619 |
-
.lp-template-overrides {
|
620 |
-
margin-top: 20px; }
|
621 |
-
.lp-template-overrides thead th h4 {
|
622 |
-
margin: 0; }
|
623 |
-
.lp-template-overrides tbody th {
|
624 |
-
font-weight: bold; }
|
625 |
-
.lp-template-overrides tbody th p {
|
626 |
-
margin: 0 0 0 10px;
|
627 |
-
display: inline-block; }
|
628 |
-
.lp-template-overrides tbody th p a {
|
629 |
-
font-weight: normal;
|
630 |
-
outline: none;
|
631 |
-
border: none;
|
632 |
-
box-shadow: none;
|
633 |
-
margin: 0;
|
634 |
-
padding: 2px 8px;
|
635 |
-
border-radius: 3px; }
|
636 |
-
.lp-template-overrides tbody th p a.current {
|
637 |
-
background: #00aadc;
|
638 |
-
color: #FFF; }
|
639 |
-
.lp-template-overrides .template-row.outdated code:before, .lp-template-overrides .template-row.up-to-date code:before {
|
640 |
-
font-family: Dashicons;
|
641 |
-
vertical-align: middle;
|
642 |
-
margin-top: -2px;
|
643 |
-
display: inline-block;
|
644 |
-
margin-right: 3px; }
|
645 |
-
.lp-template-overrides .template-row.outdated .template-version {
|
646 |
-
color: #FF0000; }
|
647 |
-
.lp-template-overrides .template-row.outdated .template-file code:before {
|
648 |
-
content: "\f534";
|
649 |
-
color: #FF0000; }
|
650 |
-
.lp-template-overrides .template-row.up-to-date .template-version {
|
651 |
-
color: #1859ff; }
|
652 |
-
.lp-template-overrides .template-row.up-to-date .template-file code:before {
|
653 |
-
content: "\f147";
|
654 |
-
color: #0085ba; }
|
655 |
-
.lp-template-overrides .template-version, .lp-template-overrides .core-version {
|
656 |
-
width: 100px; }
|
657 |
-
.lp-template-overrides #learn-press-no-templates td p {
|
658 |
-
color: #0073aa; }
|
659 |
-
|
660 |
-
/* General */
|
661 |
-
.description code {
|
662 |
-
font-size: smaller; }
|
663 |
-
|
664 |
-
#field-_lp_course_result input[name="_lp_course_result"] ~ #passing-condition-quiz-result {
|
665 |
-
display: none;
|
666 |
-
background: #F5F5F5;
|
667 |
-
padding: 10px; }
|
668 |
-
#field-_lp_course_result input[name="_lp_course_result"] ~ #passing-condition-quiz-result input {
|
669 |
-
width: 80px;
|
670 |
-
margin: 0;
|
671 |
-
-webkit-box-sizing: border-box;
|
672 |
-
-moz-box-sizing: border-box;
|
673 |
-
box-sizing: border-box; }
|
674 |
-
#field-_lp_course_result input[name="_lp_course_result"] ~ #passing-condition-quiz-result p {
|
675 |
-
margin: 7px 0 0;
|
676 |
-
color: #777;
|
677 |
-
font-style: italic; }
|
678 |
-
|
679 |
-
#field-_lp_course_result input[name="_lp_course_result"]:checked ~ #passing-condition-quiz-result {
|
680 |
-
display: block; }
|
681 |
-
|
682 |
-
.widget .widget-content .rwmb-field:not(:last-of-type) {
|
683 |
-
margin: 0 0 10px; }
|
684 |
-
.widget .widget-content .rwmb-field:not(:last-of-type):first-child {
|
685 |
-
margin-top: 10px; }
|
686 |
-
|
687 |
-
.widget .widget-content .rwmb-field:last-child {
|
688 |
-
margin-bottom: 10px; }
|
689 |
-
|
690 |
-
.widget .widget-content .rwmb-field .rwmb-label, .widget .widget-content .rwmb-field .rwmb-input {
|
691 |
-
width: 100%; }
|
692 |
-
|
693 |
-
.widget .widget-content .rwmb-field .rwmb-label {
|
694 |
-
margin-bottom: 2px; }
|
695 |
-
.widget .widget-content .rwmb-field .rwmb-label label {
|
696 |
-
font-weight: 400; }
|
697 |
-
|
698 |
-
.widget .widget-content .rwmb-field .rwmb-input input[type="text"] {
|
699 |
-
width: 100%; }
|
700 |
-
|
701 |
-
.course-attributes {
|
702 |
-
margin: 20px 0; }
|
703 |
-
.course-attributes .learn-press-attribute {
|
704 |
-
border: 1px solid #DDD;
|
705 |
-
margin-top: -1px;
|
706 |
-
margin-bottom: 0; }
|
707 |
-
.course-attributes .learn-press-attribute > h4 {
|
708 |
-
padding: 10px 15px;
|
709 |
-
margin: 0;
|
710 |
-
background: #F5F5F5; }
|
711 |
-
.course-attributes .learn-press-attribute .learn-press-attribute-data {
|
712 |
-
padding: 15px;
|
713 |
-
border-top: 1px solid #DDD; }
|
714 |
-
|
715 |
-
#wpfooter {
|
716 |
-
z-index: 20; }
|
717 |
-
|
718 |
-
.learn-press-advertisement-slider {
|
719 |
-
margin: 50px 20px 0 0;
|
720 |
-
position: relative;
|
721 |
-
overflow: hidden;
|
722 |
-
box-sizing: border-box;
|
723 |
-
z-index: 10; }
|
724 |
-
.learn-press-advertisement-slider .slider-items:after {
|
725 |
-
clear: both;
|
726 |
-
display: block;
|
727 |
-
content: ''; }
|
728 |
-
.learn-press-advertisement-slider .slide-item {
|
729 |
-
position: relative;
|
730 |
-
float: left;
|
731 |
-
width: 100%;
|
732 |
-
margin-right: -100%;
|
733 |
-
padding: 20px;
|
734 |
-
opacity: 0;
|
735 |
-
background: #FFF;
|
736 |
-
-webkit-box-sizing: border-box;
|
737 |
-
-moz-box-sizing: border-box;
|
738 |
-
box-sizing: border-box;
|
739 |
-
-webkit-transition: opacity 0.5s linear;
|
740 |
-
transition: opacity 0.5s linear; }
|
741 |
-
.learn-press-advertisement-slider .slide-item .slide-thumbnail {
|
742 |
-
float: left;
|
743 |
-
width: 35%; }
|
744 |
-
.learn-press-advertisement-slider .slide-item .slide-thumbnail a {
|
745 |
-
display: block;
|
746 |
-
line-height: 1;
|
747 |
-
margin-bottom: 0; }
|
748 |
-
.learn-press-advertisement-slider .slide-item .slide-thumbnail img {
|
749 |
-
max-width: 100%; }
|
750 |
-
.learn-press-advertisement-slider .slide-item .slide-detail {
|
751 |
-
margin-left: 35%;
|
752 |
-
padding-left: 20px; }
|
753 |
-
.learn-press-advertisement-slider .slide-item .slide-detail h2 {
|
754 |
-
margin-top: 0; }
|
755 |
-
.learn-press-advertisement-slider .slide-item .slide-detail .description-short {
|
756 |
-
display: none; }
|
757 |
-
.learn-press-advertisement-slider .slide-item.slide-active {
|
758 |
-
opacity: 1; }
|
759 |
-
.learn-press-advertisement-slider .slider-controls {
|
760 |
-
position: absolute;
|
761 |
-
bottom: 20px;
|
762 |
-
right: 20px; }
|
763 |
-
.learn-press-advertisement-slider .slider-controls .next-item,
|
764 |
-
.learn-press-advertisement-slider .slider-controls .prev-item {
|
765 |
-
font-family: 'dashicons';
|
766 |
-
width: 40px;
|
767 |
-
height: 40px;
|
768 |
-
border: 1px solid #DDD;
|
769 |
-
line-height: 40px;
|
770 |
-
font-size: 16px;
|
771 |
-
cursor: pointer;
|
772 |
-
float: left;
|
773 |
-
margin-left: 10px;
|
774 |
-
text-align: center;
|
775 |
-
color: #DDD; }
|
776 |
-
.learn-press-advertisement-slider .slider-controls .next-item:hover,
|
777 |
-
.learn-press-advertisement-slider .slider-controls .prev-item:hover {
|
778 |
-
border-color: #0085ba; }
|
779 |
-
.learn-press-advertisement-slider .slider-controls .next-item:hover:before,
|
780 |
-
.learn-press-advertisement-slider .slider-controls .prev-item:hover:before {
|
781 |
-
color: #0085ba; }
|
782 |
-
.learn-press-advertisement-slider .slider-controls .next-item:before {
|
783 |
-
content: "\f345"; }
|
784 |
-
.learn-press-advertisement-slider .slider-controls .prev-item:before {
|
785 |
-
content: "\f341"; }
|
786 |
-
|
787 |
-
@media only screen and (max-width: 1200px) {
|
788 |
-
.learn-press-advertisement-slider .slide-item .slide-thumbnail {
|
789 |
-
width: 50%; }
|
790 |
-
.learn-press-advertisement-slider .slide-item .slide-detail {
|
791 |
-
margin-left: 50%; }
|
792 |
-
.learn-press-advertisement-slider .slide-item .slide-detail .description-short {
|
793 |
-
display: block; }
|
794 |
-
.learn-press-advertisement-slider .slide-item .slide-detail .description-full {
|
795 |
-
display: none; } }
|
796 |
-
|
797 |
-
@media only screen and (max-width: 960px) {
|
798 |
-
.learn-press-advertisement-slider {
|
799 |
-
margin-left: 56px; }
|
800 |
-
.learn-press-advertisement-slider .slide-item .slide-thumbnail {
|
801 |
-
width: 100%;
|
802 |
-
float: none; }
|
803 |
-
.learn-press-advertisement-slider .slide-item .slide-thumbnail img {
|
804 |
-
width: 100%; }
|
805 |
-
.learn-press-advertisement-slider .slide-item .slide-detail {
|
806 |
-
margin-left: 0;
|
807 |
-
padding-left: 0; }
|
808 |
-
.learn-press-advertisement-slider .slide-item .slide-detail h2 {
|
809 |
-
padding-top: 20px; }
|
810 |
-
.learn-press-advertisement-slider .slide-item .slide-detail .description-short {
|
811 |
-
display: block; }
|
812 |
-
.learn-press-advertisement-slider .slide-item .slide-detail .description-full {
|
813 |
-
display: none; }
|
814 |
-
.learn-press-advertisement-slider .slide-item .slide-detail .slide-controls {
|
815 |
-
margin-bottom: 0; }
|
816 |
-
.learn-press-advertisement-slider .slide-item .slide-detail .slide-controls .button {
|
817 |
-
margin-bottom: 0; }
|
818 |
-
.wp-responsive-open .learn-press-advertisement-slider {
|
819 |
-
margin-left: 56px; }
|
820 |
-
.wp-responsive-open .learn-press-advertisement-slider .slide-item .slide-thumbnail {
|
821 |
-
width: 100%;
|
822 |
-
float: none; }
|
823 |
-
.wp-responsive-open .learn-press-advertisement-slider .slide-item .slide-thumbnail img {
|
824 |
-
width: 100%; }
|
825 |
-
.wp-responsive-open .learn-press-advertisement-slider .slide-item .slide-detail {
|
826 |
-
margin-left: 0;
|
827 |
-
padding-left: 0; }
|
828 |
-
.wp-responsive-open .learn-press-advertisement-slider .slide-item .slide-detail h2 {
|
829 |
-
padding-top: 20px; }
|
830 |
-
.wp-responsive-open .learn-press-advertisement-slider .slide-item .slide-detail .description-short {
|
831 |
-
display: block; }
|
832 |
-
.wp-responsive-open .learn-press-advertisement-slider .slide-item .slide-detail .description-full {
|
833 |
-
display: none; }
|
834 |
-
.wp-responsive-open .learn-press-advertisement-slider .slide-item .slide-detail .slide-controls {
|
835 |
-
margin-bottom: 0; }
|
836 |
-
.wp-responsive-open .learn-press-advertisement-slider .slide-item .slide-detail .slide-controls .button {
|
837 |
-
margin-bottom: 0; } }
|
838 |
-
|
839 |
-
/*
|
840 |
-
.learn-press-advertisement-slider > .slide-item {
|
841 |
-
display: none;
|
842 |
-
}
|
843 |
-
.learn-press-advertisement-slider > .slide-item:first-child {
|
844 |
-
display: block;
|
845 |
-
}
|
846 |
-
.learn-press-advertisement-slider .lp-wrap-items {
|
847 |
-
position: relative;
|
848 |
-
overflow: hidden;
|
849 |
-
-webkit-transition: visibility 1s, opacity 1s;
|
850 |
-
transition: visibility 1s, opacity 1s;
|
851 |
-
padding: 20px;
|
852 |
-
background-color: #fff;
|
853 |
-
border: 1px solid #ddd;
|
854 |
-
margin-bottom: 30px;
|
855 |
-
}
|
856 |
-
.learn-press-advertisement-slider .theme-thumbnail {
|
857 |
-
float: left;
|
858 |
-
width: 35%;
|
859 |
-
}
|
860 |
-
.learn-press-advertisement-slider .theme-detail {
|
861 |
-
margin-left: 35%;
|
862 |
-
padding-left: 20px;
|
863 |
-
}
|
864 |
-
.learn-press-advertisement-slider .lp-item {
|
865 |
-
position: relative;
|
866 |
-
float: left;
|
867 |
-
margin-right: -100%;
|
868 |
-
width: 100%;
|
869 |
-
box-sizing: border-box;
|
870 |
-
visibility: hidden;
|
871 |
-
opacity: 0;
|
872 |
-
-webkit-transition: visibility 0.5s linear, opacity 0.5s linear;
|
873 |
-
transition: visibility 0.5s linear, opacity 0.5s linear;
|
874 |
-
}
|
875 |
-
.learn-press-advertisement-slider img {
|
876 |
-
width: 100%;
|
877 |
-
height: auto;
|
878 |
-
float: none;
|
879 |
-
}
|
880 |
-
.learn-press-advertisement-slider .lp-active {
|
881 |
-
visibility: visible;
|
882 |
-
opacity: 1;
|
883 |
-
}
|
884 |
-
.learn-press-advertisement-slider .slider-controls {
|
885 |
-
position: absolute;
|
886 |
-
bottom: 30px;
|
887 |
-
right: 0;
|
888 |
-
height: 50px;
|
889 |
-
-ms-transform: translateY(-50%);
|
890 |
-
-webkit-transform: translateY(-50%);
|
891 |
-
transform: translateY(-50%);
|
892 |
-
}
|
893 |
-
.learn-press-advertisement-slider .slider-controls:after {
|
894 |
-
content: '';
|
895 |
-
clear: both;
|
896 |
-
display: block;
|
897 |
-
}
|
898 |
-
.learn-press-advertisement-slider .slider-controls .prev-item,
|
899 |
-
.learn-press-advertisement-slider .slider-controls .next-item {
|
900 |
-
position: absolute;
|
901 |
-
top: 0;
|
902 |
-
font-family: 'dashicons';
|
903 |
-
width: 40px;
|
904 |
-
height: 40px;
|
905 |
-
border: 1px solid #000;
|
906 |
-
line-height: 40px;
|
907 |
-
font-size: 16px;
|
908 |
-
color: #000;
|
909 |
-
cursor: pointer;
|
910 |
-
}
|
911 |
-
.learn-press-advertisement-slider .slider-controls .prev-item {
|
912 |
-
right: 95px;
|
913 |
-
}
|
914 |
-
.learn-press-advertisement-slider .slider-controls .prev-item:before {
|
915 |
-
content: "\f341";
|
916 |
-
display: block;
|
917 |
-
text-align: center;
|
918 |
-
}
|
919 |
-
.learn-press-advertisement-slider .slider-controls .next-item {
|
920 |
-
right: 45px;
|
921 |
-
}
|
922 |
-
.learn-press-advertisement-slider .slider-controls .next-item:before {
|
923 |
-
content: "\f345";
|
924 |
-
display: block;
|
925 |
-
text-align: center;
|
926 |
-
}
|
927 |
-
@media only screen and (max-width: 1200px) {
|
928 |
-
.learn-press-advertisement-slider .theme-thumbnail {
|
929 |
-
width: 50%;
|
930 |
-
}
|
931 |
-
.learn-press-advertisement-slider .theme-detail {
|
932 |
-
margin-left: 50%;
|
933 |
-
}
|
934 |
-
}
|
935 |
-
@media only screen and (max-width: 960px) {
|
936 |
-
.learn-press-advertisement-slider {
|
937 |
-
margin-left: 36px;
|
938 |
-
}
|
939 |
-
.learn-press-advertisement-slider .theme-thumbnail {
|
940 |
-
float: none;
|
941 |
-
width: 100%;
|
942 |
-
}
|
943 |
-
.learn-press-advertisement-slider .theme-detail {
|
944 |
-
margin-top: 20px;
|
945 |
-
margin-left: 0;
|
946 |
-
padding-left: 0;
|
947 |
-
}
|
948 |
-
}
|
949 |
-
@media screen and (max-width: 782px) {
|
950 |
-
.learn-press-advertisement-slider {
|
951 |
-
margin-left: 0;
|
952 |
-
}
|
953 |
-
}
|
954 |
-
*/
|
955 |
-
.lp-admin-tabs {
|
956 |
-
position: relative;
|
957 |
-
margin-top: 20px; }
|
958 |
-
.lp-admin-tabs .lp-admin-tab-navs {
|
959 |
-
margin: 0 -250px 0 0;
|
960 |
-
width: 250px;
|
961 |
-
float: left;
|
962 |
-
padding: 10px 0px;
|
963 |
-
position: relative;
|
964 |
-
z-index: 5;
|
965 |
-
display: none;
|
966 |
-
-webkit-box-sizing: border-box;
|
967 |
-
-moz-box-sizing: border-box;
|
968 |
-
box-sizing: border-box; }
|
969 |
-
.lp-admin-tabs .lp-admin-tab-navs .nav-section {
|
970 |
-
margin: 0; }
|
971 |
-
.lp-admin-tabs .lp-admin-tab-navs .nav-section > a, .lp-admin-tabs .lp-admin-tab-navs .nav-section > span {
|
972 |
-
display: block;
|
973 |
-
padding: 8px 20px;
|
974 |
-
outline: none;
|
975 |
-
box-shadow: none;
|
976 |
-
text-decoration: none;
|
977 |
-
text-transform: capitalize; }
|
978 |
-
.lp-admin-tabs .lp-admin-tab-navs .nav-section .learn-press-tooltip {
|
979 |
-
float: right;
|
980 |
-
margin-right: 0; }
|
981 |
-
.lp-admin-tabs .lp-admin-tab-navs .nav-section.nav-section-active, .lp-admin-tabs .lp-admin-tab-navs .nav-section:hover {
|
982 |
-
border-left: 2px solid #563d7c;
|
983 |
-
color: #563d7c; }
|
984 |
-
.lp-admin-tabs .lp-admin-tab-navs .nav-section.nav-section-active > a, .lp-admin-tabs .lp-admin-tab-navs .nav-section.nav-section-active > span, .lp-admin-tabs .lp-admin-tab-navs .nav-section:hover > a, .lp-admin-tabs .lp-admin-tab-navs .nav-section:hover > span {
|
985 |
-
padding-left: 18px; }
|
986 |
-
.lp-admin-tabs.has-sections .lp-admin-tab-navs {
|
987 |
-
display: block; }
|
988 |
-
.lp-admin-tabs.has-sections .lp-admin-tab-content {
|
989 |
-
padding-left: 271px !important;
|
990 |
-
float: left;
|
991 |
-
width: 100%;
|
992 |
-
z-index: 0;
|
993 |
-
position: relative;
|
994 |
-
-webkit-box-sizing: border-box;
|
995 |
-
-moz-box-sizing: border-box;
|
996 |
-
box-sizing: border-box; }
|
997 |
-
.lp-admin-tabs.has-sections:before {
|
998 |
-
position: absolute;
|
999 |
-
top: 0;
|
1000 |
-
bottom: 0;
|
1001 |
-
left: 250px;
|
1002 |
-
border-left: 1px solid #DDD;
|
1003 |
-
content: '';
|
1004 |
-
z-index: 10; }
|
1005 |
-
.lp-admin-tabs:after {
|
1006 |
-
clear: both;
|
1007 |
-
display: block;
|
1008 |
-
content: '';
|
1009 |
-
z-index: 10; }
|
1010 |
-
|
1011 |
-
.wrap.learn-press-settings .lp-admin-tab-content {
|
1012 |
-
background: #FFF;
|
1013 |
-
padding: 18px; }
|
1014 |
-
.wrap.learn-press-settings .lp-admin-tab-content .subsubsub {
|
1015 |
-
float: none;
|
1016 |
-
margin: 0 0 20px 0;
|
1017 |
-
border-bottom: 1px solid #DDD;
|
1018 |
-
padding-bottom: 20px; }
|
1019 |
-
.wrap.learn-press-settings .lp-admin-tab-content .subsubsub .active {
|
1020 |
-
font-weight: bold; }
|
1021 |
-
.wrap.learn-press-settings .lp-admin-tab-content .subsubsub li {
|
1022 |
-
text-transform: capitalize; }
|
1023 |
-
.wrap.learn-press-settings .lp-admin-tab-content .subsubsub li:after {
|
1024 |
-
content: '|';
|
1025 |
-
display: inline-block;
|
1026 |
-
padding: 0 10px; }
|
1027 |
-
.wrap.learn-press-settings .lp-admin-tab-content .subsubsub li:last-child:after {
|
1028 |
-
content: ''; }
|
1029 |
-
|
1030 |
-
.wrap #learn-press-uninstall-sample-data {
|
1031 |
-
float: right;
|
1032 |
-
opacity: 0.5; }
|
1033 |
-
.wrap #learn-press-uninstall-sample-data:hover {
|
1034 |
-
opacity: 1; }
|
1035 |
-
|
1036 |
-
.learnpress .rwmb-field {
|
1037 |
-
margin-bottom: 20px;
|
1038 |
-
position: relative; }
|
1039 |
-
.learnpress .rwmb-field .rwmb-label {
|
1040 |
-
display: block;
|
1041 |
-
margin-bottom: 5px;
|
1042 |
-
float: left;
|
1043 |
-
width: 190px;
|
1044 |
-
font-size: 14px;
|
1045 |
-
text-transform: capitalize; }
|
1046 |
-
.learnpress .rwmb-field .rwmb-input {
|
1047 |
-
margin-left: 190px;
|
1048 |
-
float: none;
|
1049 |
-
width: auto; }
|
1050 |
-
.learnpress .rwmb-field .description {
|
1051 |
-
margin-top: 8px;
|
1052 |
-
color: #888; }
|
1053 |
-
.learnpress .rwmb-field .rwmb-input-list {
|
1054 |
-
margin-left: 0; }
|
1055 |
-
.learnpress .rwmb-field.rwmb-heading-wrapper h4 {
|
1056 |
-
font-size: 15px;
|
1057 |
-
margin: 0 0 5px 0;
|
1058 |
-
padding: 0 0 0;
|
1059 |
-
border-bottom: 2px solid #563d7c;
|
1060 |
-
display: inline-block;
|
1061 |
-
text-transform: initial; }
|
1062 |
-
.learnpress .rwmb-field.disabled .field-overlay {
|
1063 |
-
content: '';
|
1064 |
-
position: absolute;
|
1065 |
-
width: 100%;
|
1066 |
-
height: 100%;
|
1067 |
-
left: 0;
|
1068 |
-
top: 0;
|
1069 |
-
z-index: 10;
|
1070 |
-
background: #FFF;
|
1071 |
-
opacity: 0.6; }
|
1072 |
-
.learnpress .rwmb-field.rwmb-text-wrapper .rwmb-text {
|
1073 |
-
width: 50%;
|
1074 |
-
min-width: 200px; }
|
1075 |
-
.learnpress .rwmb-field.rwmb-duration-wrapper .rwmb-input select, .learnpress .rwmb-field.rwmb-duration-wrapper .rwmb-input input {
|
1076 |
-
vertical-align: top; }
|
1077 |
-
|
1078 |
-
.learnpress .lp-course-sale_start-field.hide, .learnpress .lp-course-sale_end-field.hide {
|
1079 |
-
display: none; }
|
1080 |
-
|
1081 |
-
.learnpress.lp-submenu-settings .lp-admin-settings-buttons {
|
1082 |
-
border-top: 1px solid #DDD;
|
1083 |
-
padding-top: 20px;
|
1084 |
-
margin-bottom: 0; }
|
1085 |
-
.learnpress.lp-submenu-settings .lp-admin-settings-buttons #learn-press-reset-settings {
|
1086 |
-
float: right; }
|
1087 |
-
|
1088 |
-
.learnpress.lp-submenu-settings .rwmb-input {
|
1089 |
-
color: #000;
|
1090 |
-
margin-left: 270px;
|
1091 |
-
float: none;
|
1092 |
-
width: auto; }
|
1093 |
-
|
1094 |
-
.learnpress .rwmb-google-fonts-wrapper .rwmb-input label {
|
1095 |
-
font-weight: bold;
|
1096 |
-
display: block;
|
1097 |
-
margin-bottom: 5px; }
|
1098 |
-
|
1099 |
-
.learnpress .rwmb-google-fonts-wrapper .rwmb-input input {
|
1100 |
-
width: 90%; }
|
1101 |
-
|
1102 |
-
.learnpress #learn-press-toggle-course-results {
|
1103 |
-
display: block; }
|
1104 |
-
|
1105 |
-
.learnpress #postbox-container-2 .inside .rwmb-meta-box {
|
1106 |
-
margin: 20px 0 0; }
|
1107 |
-
|
1108 |
-
.learnpress .lp-item-assigned {
|
1109 |
-
font-size: 14px; }
|
1110 |
-
.learnpress .lp-item-assigned a {
|
1111 |
-
text-decoration: none; }
|
1112 |
-
.learnpress .lp-item-assigned ul {
|
1113 |
-
margin-bottom: 0; }
|
1114 |
-
.learnpress .lp-item-assigned ul ul strong {
|
1115 |
-
font-weight: normal; }
|
1116 |
-
.learnpress .lp-item-assigned li {
|
1117 |
-
margin: 0; }
|
1118 |
-
.learnpress .lp-item-assigned li a {
|
1119 |
-
margin-bottom: 10px;
|
1120 |
-
display: inline-block; }
|
1121 |
-
|
1122 |
-
@media screen and (max-width: 1280px) {
|
1123 |
-
.learnpress #meta-box-tab-course_settings .rwmb-field .rwmb-label {
|
1124 |
-
width: auto;
|
1125 |
-
float: none; }
|
1126 |
-
.learnpress #meta-box-tab-course_settings .rwmb-field .rwmb-input {
|
1127 |
-
margin-left: 0;
|
1128 |
-
width: 100%;
|
1129 |
-
float: left; } }
|
1130 |
-
|
1131 |
-
.learn-press-tabs.vertical .tabs-heading {
|
1132 |
-
background: #FFF;
|
1133 |
-
border: 1px solid #DDD; }
|
1134 |
-
.learn-press-tabs.vertical .tabs-heading h4 {
|
1135 |
-
padding: 15px;
|
1136 |
-
margin: 0; }
|
1137 |
-
|
1138 |
-
.learn-press-tabs.vertical .tabs-nav {
|
1139 |
-
float: left;
|
1140 |
-
width: 220px;
|
1141 |
-
margin: 10px 0;
|
1142 |
-
background: #F5F5F5;
|
1143 |
-
position: relative;
|
1144 |
-
z-index: 100; }
|
1145 |
-
.learn-press-tabs.vertical .tabs-nav li {
|
1146 |
-
margin: 0;
|
1147 |
-
position: relative; }
|
1148 |
-
.learn-press-tabs.vertical .tabs-nav li a {
|
1149 |
-
display: block;
|
1150 |
-
padding: 10px 15px;
|
1151 |
-
text-decoration: none;
|
1152 |
-
background: #F5F5F5;
|
1153 |
-
box-shadow: none;
|
1154 |
-
box-sizing: border-box;
|
1155 |
-
border-top: 1px solid transparent;
|
1156 |
-
border-bottom: 1px solid transparent;
|
1157 |
-
text-transform: capitalize; }
|
1158 |
-
.learn-press-tabs.vertical .tabs-nav li.icon a:before {
|
1159 |
-
font-family: dashicons;
|
1160 |
-
font-size: 18px;
|
1161 |
-
vertical-align: top;
|
1162 |
-
margin-right: 8px; }
|
1163 |
-
.learn-press-tabs.vertical .tabs-nav li.active a {
|
1164 |
-
background: #FFF;
|
1165 |
-
font-weight: bold;
|
1166 |
-
width: 221px;
|
1167 |
-
border-color: #DDD; }
|
1168 |
-
|
1169 |
-
.learn-press-tabs.vertical .tabs-container {
|
1170 |
-
overflow: hidden;
|
1171 |
-
background: #F5F5F5;
|
1172 |
-
border: 1px solid #DDD;
|
1173 |
-
border-top: none;
|
1174 |
-
position: relative; }
|
1175 |
-
.learn-press-tabs.vertical .tabs-container .tabs-content-container {
|
1176 |
-
margin: 0 0 0 220px; }
|
1177 |
-
.learn-press-tabs.vertical .tabs-container .tabs-content-container > li {
|
1178 |
-
padding: 20px;
|
1179 |
-
float: left;
|
1180 |
-
width: 100%;
|
1181 |
-
margin-right: -100%;
|
1182 |
-
background: #FFF;
|
1183 |
-
border-left: 1px solid #DDD;
|
1184 |
-
margin-bottom: 0;
|
1185 |
-
display: none;
|
1186 |
-
-webkit-box-sizing: border-box;
|
1187 |
-
-moz-box-sizing: border-box;
|
1188 |
-
box-sizing: border-box; }
|
1189 |
-
|
1190 |
-
.learn-press-tabs.vertical:after {
|
1191 |
-
clear: both;
|
1192 |
-
display: block;
|
1193 |
-
content: ''; }
|
1194 |
-
|
1195 |
-
@media screen and (max-width: 1280px) {
|
1196 |
-
.learnpress .rwmb-field .rwmb-label {
|
1197 |
-
float: none; }
|
1198 |
-
.learnpress .rwmb-field .rwmb-input {
|
1199 |
-
margin-left: 0; } }
|
1200 |
-
|
1201 |
-
.learn-press-addons .lp-search-addon {
|
1202 |
-
margin: 0;
|
1203 |
-
width: 280px;
|
1204 |
-
font-size: 16px;
|
1205 |
-
font-weight: 300;
|
1206 |
-
line-height: 1.5;
|
1207 |
-
padding: 3px 5px;
|
1208 |
-
height: 32px; }
|
1209 |
-
|
1210 |
-
.learn-press-addons .addons-browse {
|
1211 |
-
margin: 20px 0 0; }
|
1212 |
-
.learn-press-addons .addons-browse .lp-addon-hidden {
|
1213 |
-
display: none !important; }
|
1214 |
-
.learn-press-addons .addons-browse .lp-active:nth-of-type(2n+1) {
|
1215 |
-
clear: none;
|
1216 |
-
margin-right: 0;
|
1217 |
-
margin-left: 8px; }
|
1218 |
-
.learn-press-addons .addons-browse .lp-active:nth-of-type(2n) {
|
1219 |
-
clear: both;
|
1220 |
-
margin-right: 8px;
|
1221 |
-
margin-left: 0; }
|
1222 |
-
.learn-press-addons .addons-browse .plugin-icon img {
|
1223 |
-
max-width: 100%; }
|
1224 |
-
.learn-press-addons .addons-browse .plugin-card .column-description p:not(.authors) {
|
1225 |
-
overflow: hidden;
|
1226 |
-
text-overflow: ellipsis;
|
1227 |
-
display: -webkit-box;
|
1228 |
-
-webkit-box-orient: vertical;
|
1229 |
-
-webkit-line-clamp: 3;
|
1230 |
-
line-height: 1.6;
|
1231 |
-
max-height: 4.8;
|
1232 |
-
min-height: 4.8;
|
1233 |
-
color: #777; }
|
1234 |
-
.learn-press-addons .addons-browse .plugin-card .search-highlight {
|
1235 |
-
text-decoration: underline; }
|
1236 |
-
.learn-press-addons .addons-browse .plugin-card-top h3 {
|
1237 |
-
overflow: hidden;
|
1238 |
-
text-overflow: ellipsis;
|
1239 |
-
display: -webkit-box;
|
1240 |
-
-webkit-box-orient: vertical;
|
1241 |
-
-webkit-line-clamp: 2;
|
1242 |
-
line-height: 1.3em;
|
1243 |
-
max-height: 2.6em;
|
1244 |
-
min-height: 2.6em; }
|
1245 |
-
.learn-press-addons .addons-browse .plugin-card-top .desc {
|
1246 |
-
min-height: 90px;
|
1247 |
-
margin-right: 0; }
|
1248 |
-
.learn-press-addons .addons-browse .plugin-card-top .button.activate-plugin, .learn-press-addons .addons-browse .plugin-card-top .button.install-now, .learn-press-addons .addons-browse .plugin-card-top .button.enable-now {
|
1249 |
-
background: #0085ba;
|
1250 |
-
border-color: #0073aa #006799 #006799;
|
1251 |
-
-webkit-box-shadow: 0 1px 0 #006799;
|
1252 |
-
box-shadow: 0 1px 0 #006799;
|
1253 |
-
color: #fff;
|
1254 |
-
text-decoration: none;
|
1255 |
-
text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799; }
|
1256 |
-
.learn-press-addons .addons-browse .plugin-card-top .button.button-working {
|
1257 |
-
padding-right: 4px; }
|
1258 |
-
.learn-press-addons .addons-browse .plugin-card-top .button.button-working span {
|
1259 |
-
display: none; }
|
1260 |
-
.learn-press-addons .addons-browse .plugin-card-bottom .plugin-version {
|
1261 |
-
display: inline-block; }
|
1262 |
-
.learn-press-addons .addons-browse.premium .column-description p:not(.authors) {
|
1263 |
-
margin: 0;
|
1264 |
-
line-height: inherit; }
|
1265 |
-
.learn-press-addons .addons-browse:after {
|
1266 |
-
clear: both;
|
1267 |
-
display: block;
|
1268 |
-
content: ''; }
|
1269 |
-
|
1270 |
-
.related-themes .plugin-card-top {
|
1271 |
-
padding-bottom: 0; }
|
1272 |
-
|
1273 |
-
.related-themes .theme-content {
|
1274 |
-
position: relative; }
|
1275 |
-
|
1276 |
-
.related-themes .image-thumbnail img {
|
1277 |
-
width: 100%; }
|
1278 |
-
|
1279 |
-
.related-themes .theme-description {
|
1280 |
-
margin: 0 0 25px 0;
|
1281 |
-
overflow: hidden;
|
1282 |
-
text-overflow: ellipsis;
|
1283 |
-
display: -webkit-box;
|
1284 |
-
-webkit-box-orient: vertical;
|
1285 |
-
-webkit-line-clamp: 5;
|
1286 |
-
line-height: 1.6em;
|
1287 |
-
max-height: 8em;
|
1288 |
-
min-height: 8em;
|
1289 |
-
color: #777; }
|
1290 |
-
|
1291 |
-
.related-themes .theme-title {
|
1292 |
-
margin-right: 100px;
|
1293 |
-
font-size: 1.2em;
|
1294 |
-
line-height: 1.3em;
|
1295 |
-
margin-bottom: 0;
|
1296 |
-
min-height: 3.2em; }
|
1297 |
-
|
1298 |
-
.related-themes .theme-title a {
|
1299 |
-
color: #545454; }
|
1300 |
-
|
1301 |
-
.related-themes .theme-rating {
|
1302 |
-
float: right;
|
1303 |
-
display: inline-block; }
|
1304 |
-
|
1305 |
-
.related-themes .star-rating {
|
1306 |
-
display: inline-block; }
|
1307 |
-
|
1308 |
-
.related-themes .count-rating {
|
1309 |
-
font-size: 15px;
|
1310 |
-
position: relative;
|
1311 |
-
top: 2px; }
|
1312 |
-
|
1313 |
-
.related-themes .theme-detail {
|
1314 |
-
position: absolute;
|
1315 |
-
right: 3px;
|
1316 |
-
top: -3px;
|
1317 |
-
text-align: right;
|
1318 |
-
line-height: 1.6em; }
|
1319 |
-
.related-themes .theme-detail:after {
|
1320 |
-
content: '';
|
1321 |
-
display: block;
|
1322 |
-
clear: both; }
|
1323 |
-
.related-themes .theme-detail .theme-price {
|
1324 |
-
display: inline-block;
|
1325 |
-
font-size: 24px;
|
1326 |
-
color: #545454;
|
1327 |
-
font-weight: 700;
|
1328 |
-
line-height: 1.3em; }
|
1329 |
-
|
1330 |
-
.related-themes .theme-footer {
|
1331 |
-
clear: both;
|
1332 |
-
margin-left: -20px;
|
1333 |
-
margin-right: -20px;
|
1334 |
-
padding: 20px;
|
1335 |
-
background-color: #fafafa;
|
1336 |
-
border-top: 1px solid #ddd;
|
1337 |
-
overflow: hidden; }
|
1338 |
-
|
1339 |
-
@media screen and (min-width: 1600px) {
|
1340 |
-
.plugin-card:not(.hide-if-js):nth-child(even) {
|
1341 |
-
margin-right: 8px; }
|
1342 |
-
.plugin-card:not(.hide-if-js):nth-child(3n) {
|
1343 |
-
margin-right: 0; } }
|
1344 |
-
|
1345 |
-
/**
|
1346 |
-
* Order
|
1347 |
-
*/
|
1348 |
-
.post-type-lp_order .wp-list-table .column-order_status {
|
1349 |
-
width: 100px; }
|
1350 |
-
|
1351 |
-
.post-type-lp_order .wp-list-table .order_status span {
|
1352 |
-
display: inline-block; }
|
1353 |
-
.post-type-lp_order .wp-list-table .order_status span:after {
|
1354 |
-
font-family: fontawesome;
|
1355 |
-
display: inline-block;
|
1356 |
-
font-size: 20px;
|
1357 |
-
color: #FFF;
|
1358 |
-
text-align: center;
|
1359 |
-
line-height: 20px;
|
1360 |
-
width: 20px;
|
1361 |
-
height: 20px; }
|
1362 |
-
.post-type-lp_order .wp-list-table .order_status span.completed:after {
|
1363 |
-
content: "\f00c";
|
1364 |
-
color: #0085ba; }
|
1365 |
-
.post-type-lp_order .wp-list-table .order_status span.processing:after {
|
1366 |
-
content: "\f251";
|
1367 |
-
color: #563F7A; }
|
1368 |
-
.post-type-lp_order .wp-list-table .order_status span.pending:after {
|
1369 |
-
content: "\f017";
|
1370 |
-
color: #AAA; }
|
1371 |
-
.post-type-lp_order .wp-list-table .order_status span.cancelled:after {
|
1372 |
-
content: "\f057";
|
1373 |
-
color: #FF0000; }
|
1374 |
-
.post-type-lp_order .wp-list-table .order_status span.draft:after {
|
1375 |
-
content: "\f223";
|
1376 |
-
color: #69b391; }
|
1377 |
-
|
1378 |
-
.post-type-lp_order .wp-list-table .column-title,
|
1379 |
-
.post-type-lp_order .wp-list-table .column-order_total,
|
1380 |
-
.post-type-lp_order .wp-list-table .column-order_date {
|
1381 |
-
width: 150px; }
|
1382 |
-
|
1383 |
-
.post-type-lp_order .wp-list-table .column-order_items ol {
|
1384 |
-
margin: 0;
|
1385 |
-
padding: 0;
|
1386 |
-
list-style-position: inside; }
|
1387 |
-
|
1388 |
-
.post-type-lp_course .column-price .origin-price {
|
1389 |
-
font-size: 12px;
|
1390 |
-
text-decoration: line-through;
|
1391 |
-
margin-right: 10px;
|
1392 |
-
color: #FF0000; }
|
1393 |
-
|
1394 |
-
.wp-list-table .column-preview {
|
1395 |
-
text-align: left;
|
1396 |
-
float: none; }
|
1397 |
-
.wp-list-table .column-preview input[type="checkbox"] {
|
1398 |
-
border: none;
|
1399 |
-
width: 30px;
|
1400 |
-
height: auto;
|
1401 |
-
box-shadow: none;
|
1402 |
-
margin: 0;
|
1403 |
-
text-align: center;
|
1404 |
-
background: transparent;
|
1405 |
-
-webkit-transform: rotate(-180deg);
|
1406 |
-
-moz-transform: rotate(-180deg);
|
1407 |
-
-ms-transform: rotate(-180deg);
|
1408 |
-
-o-transform: rotate(-180deg);
|
1409 |
-
transform: rotate(-180deg); }
|
1410 |
-
.wp-list-table .column-preview input[type="checkbox"]:before, .wp-list-table .column-preview input[type="checkbox"]:checked:before {
|
1411 |
-
font: 400 21px/1 fontawesome;
|
1412 |
-
content: "\f205";
|
1413 |
-
font-size: 24px;
|
1414 |
-
width: 30px;
|
1415 |
-
margin: 0;
|
1416 |
-
text-align: center; }
|
1417 |
-
.wp-list-table .column-preview input[type="checkbox"]:checked {
|
1418 |
-
-webkit-transform: rotate(0deg);
|
1419 |
-
-moz-transform: rotate(0deg);
|
1420 |
-
-ms-transform: rotate(0deg);
|
1421 |
-
-o-transform: rotate(0deg);
|
1422 |
-
transform: rotate(0deg); }
|
1423 |
-
.wp-list-table .column-preview input[type="checkbox"]:checked:before {
|
1424 |
-
margin-top: -1px; }
|
1425 |
-
|
1426 |
-
.post-type-page .column-lp-page {
|
1427 |
-
width: 200px; }
|
1428 |
-
|
1429 |
-
.post-type-page .for-plugin-page {
|
1430 |
-
color: #FF0000;
|
1431 |
-
font-size: 11px;
|
1432 |
-
margin: 0; }
|
1433 |
-
|
1434 |
-
#learn-press-box-edit-slug {
|
1435 |
-
background: #FFF;
|
1436 |
-
padding: 10px;
|
1437 |
-
border: 1px solid #DDD;
|
1438 |
-
margin: 0 -10px;
|
1439 |
-
overflow: hidden;
|
1440 |
-
color: #b79186; }
|
1441 |
-
#learn-press-box-edit-slug .button {
|
1442 |
-
float: right;
|
1443 |
-
height: 24px;
|
1444 |
-
line-height: 22px; }
|
1445 |
-
|
1446 |
-
.learn-press-modal {
|
1447 |
-
position: fixed;
|
1448 |
-
z-index: 1000000;
|
1449 |
-
width: 100%;
|
1450 |
-
height: 100%;
|
1451 |
-
top: 0;
|
1452 |
-
display: table; }
|
1453 |
-
.learn-press-modal .modal-overlay {
|
1454 |
-
position: fixed;
|
1455 |
-
z-index: 1000000;
|
1456 |
-
background: #000;
|
1457 |
-
opacity: 0.5;
|
1458 |
-
width: 100%;
|
1459 |
-
height: 100%;
|
1460 |
-
top: 0; }
|
1461 |
-
.learn-press-modal .modal-wrapper {
|
1462 |
-
display: table-cell;
|
1463 |
-
vertical-align: middle;
|
1464 |
-
z-index: 1000010;
|
1465 |
-
position: relative; }
|
1466 |
-
.learn-press-modal .modal-wrapper .modal-container {
|
1467 |
-
max-width: 800px;
|
1468 |
-
width: 90%;
|
1469 |
-
margin: 0px auto;
|
1470 |
-
background-color: #fff;
|
1471 |
-
border-radius: 2px;
|
1472 |
-
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
|
1473 |
-
transition: all .3s ease;
|
1474 |
-
overflow: hidden;
|
1475 |
-
-webkit-box-sizing: border-box;
|
1476 |
-
-moz-box-sizing: border-box;
|
1477 |
-
box-sizing: border-box; }
|
1478 |
-
.learn-press-modal .modal-wrapper header {
|
1479 |
-
font-size: 16px;
|
1480 |
-
padding: 15px 20px;
|
1481 |
-
border-bottom: 1px solid #DDD; }
|
1482 |
-
.learn-press-modal .modal-wrapper article {
|
1483 |
-
margin: 45px 20px; }
|
1484 |
-
.learn-press-modal .modal-wrapper article input[name="search"] {
|
1485 |
-
width: 100%;
|
1486 |
-
font-size: 16px;
|
1487 |
-
box-sizing: border-box;
|
1488 |
-
margin: 0;
|
1489 |
-
box-shadow: none;
|
1490 |
-
color: #999;
|
1491 |
-
padding: 8px 10px;
|
1492 |
-
border-radius: 2px;
|
1493 |
-
border-color: #e4e4e4;
|
1494 |
-
font-weight: lighter; }
|
1495 |
-
.learn-press-modal .modal-wrapper article .search-results li > label {
|
1496 |
-
display: block; }
|
1497 |
-
.learn-press-modal .modal-wrapper footer {
|
1498 |
-
padding: 15px 20px;
|
1499 |
-
overflow: hidden;
|
1500 |
-
border: 1px solid #eee; }
|
1501 |
-
.learn-press-modal .modal-wrapper footer .search-nav {
|
1502 |
-
float: left; }
|
1503 |
-
.learn-press-modal .modal-wrapper footer .search-nav a, .learn-press-modal .modal-wrapper footer .search-nav span {
|
1504 |
-
display: inline-block;
|
1505 |
-
line-height: 26px;
|
1506 |
-
height: 28px;
|
1507 |
-
margin: 0;
|
1508 |
-
padding: 0 10px 1px; }
|
1509 |
-
.learn-press-modal .modal-wrapper footer button {
|
1510 |
-
float: right;
|
1511 |
-
margin-left: 3px; }
|
1512 |
-
|
1513 |
-
#modal-search-items.loading .search-results:before {
|
1514 |
-
position: absolute;
|
1515 |
-
top: 75px;
|
1516 |
-
left: 0;
|
1517 |
-
right: 0;
|
1518 |
-
bottom: 0;
|
1519 |
-
display: block;
|
1520 |
-
content: '';
|
1521 |
-
z-index: 9;
|
1522 |
-
background: url("../../images/spinner.gif") no-repeat center center; }
|
1523 |
-
|
1524 |
-
.modal-search {
|
1525 |
-
position: relative;
|
1526 |
-
display: inline-block;
|
1527 |
-
min-width: 300px; }
|
1528 |
-
.modal-search .search-input {
|
1529 |
-
border: 1px solid #DDD;
|
1530 |
-
width: 100%;
|
1531 |
-
margin: 0;
|
1532 |
-
padding: 5px 10px;
|
1533 |
-
-webkit-box-shadow: none;
|
1534 |
-
-moz-box-shadow: none;
|
1535 |
-
box-shadow: none; }
|
1536 |
-
.modal-search .search-input:focus {
|
1537 |
-
-webkit-box-shadow: none;
|
1538 |
-
-moz-box-shadow: none;
|
1539 |
-
box-shadow: none; }
|
1540 |
-
.modal-search .search-input:focus {
|
1541 |
-
border-color: #DDD; }
|
1542 |
-
.modal-search .search-results-content {
|
1543 |
-
position: absolute;
|
1544 |
-
top: 100%;
|
1545 |
-
width: 100%;
|
1546 |
-
left: 0;
|
1547 |
-
background: #FFF;
|
1548 |
-
border: 1px solid #DDD;
|
1549 |
-
border-top: none;
|
1550 |
-
z-index: 1000;
|
1551 |
-
margin-top: -1px;
|
1552 |
-
-webkit-box-sizing: border-box;
|
1553 |
-
-moz-box-sizing: border-box;
|
1554 |
-
box-sizing: border-box; }
|
1555 |
-
.modal-search .search-results-content .search-results {
|
1556 |
-
margin: 0; }
|
1557 |
-
.modal-search .search-results-content .search-results .result-item {
|
1558 |
-
margin: 0;
|
1559 |
-
padding: 0;
|
1560 |
-
list-style: none; }
|
1561 |
-
.modal-search .search-results-content .search-results .result-item label {
|
1562 |
-
display: block;
|
1563 |
-
padding: 6px 10px;
|
1564 |
-
text-decoration: none;
|
1565 |
-
cursor: pointer;
|
1566 |
-
white-space: nowrap;
|
1567 |
-
overflow: hidden;
|
1568 |
-
text-overflow: ellipsis; }
|
1569 |
-
.modal-search .search-results-content .search-results .result-item:hover {
|
1570 |
-
background: #f4fcff; }
|
1571 |
-
.modal-search .has-items .search-input {
|
1572 |
-
border-bottom-color: transparent; }
|
1573 |
-
.modal-search .has-items .search-results-content {
|
1574 |
-
border-top: none; }
|
1575 |
-
.modal-search .checked-items {
|
1576 |
-
text-align: center; }
|
1577 |
-
.modal-search .checked-items .button {
|
1578 |
-
font-size: 12px;
|
1579 |
-
height: 20px;
|
1580 |
-
line-height: 20px; }
|
1581 |
-
.modal-search .checked-items .disabled {
|
1582 |
-
color: #777; }
|
1583 |
-
.modal-search .search-navigator {
|
1584 |
-
margin: 5px 0;
|
1585 |
-
text-align: center; }
|
1586 |
-
.modal-search .search-navigator .page-numbers {
|
1587 |
-
display: inline-block;
|
1588 |
-
padding: 2px 5px;
|
1589 |
-
text-decoration: none;
|
1590 |
-
line-height: 1; }
|
1591 |
-
.modal-search .search-navigator .page-numbers.next, .modal-search .search-navigator .page-numbers.prev {
|
1592 |
-
display: none; }
|
1593 |
-
|
1594 |
-
.lp-order-statuses {
|
1595 |
-
margin: 0; }
|
1596 |
-
.lp-order-statuses li {
|
1597 |
-
float: left;
|
1598 |
-
width: 100%;
|
1599 |
-
background: #FFF;
|
1600 |
-
margin: 0; }
|
1601 |
-
.lp-order-statuses li strong {
|
1602 |
-
font-size: 20px;
|
1603 |
-
font-weight: normal;
|
1604 |
-
color: #0073aa;
|
1605 |
-
margin-bottom: 5px;
|
1606 |
-
display: block; }
|
1607 |
-
.lp-order-statuses li strong:before {
|
1608 |
-
display: inline-block;
|
1609 |
-
width: 25px;
|
1610 |
-
height: 25px;
|
1611 |
-
font-family: dashicons;
|
1612 |
-
font-size: 25px;
|
1613 |
-
line-height: 25px;
|
1614 |
-
vertical-align: middle;
|
1615 |
-
content: ''; }
|
1616 |
-
.lp-order-statuses li p {
|
1617 |
-
font-size: 12px;
|
1618 |
-
color: #adadad;
|
1619 |
-
padding: 0;
|
1620 |
-
margin: 0; }
|
1621 |
-
.lp-order-statuses li.counter-number {
|
1622 |
-
padding: 10px 0 0;
|
1623 |
-
text-align: center;
|
1624 |
-
width: 50%; }
|
1625 |
-
.lp-order-statuses li.counter-number .counter-inner {
|
1626 |
-
margin: 0 5px;
|
1627 |
-
background: #F9F9F9;
|
1628 |
-
padding: 10px 0;
|
1629 |
-
border: 1px solid #f3f3f3; }
|
1630 |
-
.lp-order-statuses li.counter-number .counter-inner p {
|
1631 |
-
text-transform: lowercase; }
|
1632 |
-
.lp-order-statuses li.counter-number.order-completed strong:before {
|
1633 |
-
content: '\f502';
|
1634 |
-
color: #0085ba; }
|
1635 |
-
.lp-order-statuses li.counter-number.order-processing strong:before {
|
1636 |
-
content: "\f321";
|
1637 |
-
color: #563F7A;
|
1638 |
-
margin-left: -1px; }
|
1639 |
-
.lp-order-statuses li.counter-number.order-pending strong:before {
|
1640 |
-
content: "\f534";
|
1641 |
-
color: #AAA; }
|
1642 |
-
.lp-order-statuses li.counter-number.order-cancelled strong:before {
|
1643 |
-
content: "\f153";
|
1644 |
-
color: #FF0000; }
|
1645 |
-
.lp-order-statuses li.clear {
|
1646 |
-
float: none; }
|
1647 |
-
.lp-order-statuses li.featured-theme {
|
1648 |
-
margin: 12px -12px 0 -12px;
|
1649 |
-
border-top: 1px solid #EEE;
|
1650 |
-
float: none;
|
1651 |
-
clear: both;
|
1652 |
-
width: auto;
|
1653 |
-
padding: 8px 12px 0 12px; }
|
1654 |
-
.lp-order-statuses li.featured-theme .star-rating {
|
1655 |
-
display: inline-block;
|
1656 |
-
line-height: 14px;
|
1657 |
-
vertical-align: middle; }
|
1658 |
-
.lp-order-statuses li.featured-theme .star-rating .star {
|
1659 |
-
font-size: 14px;
|
1660 |
-
width: 14px;
|
1661 |
-
height: 14px; }
|
1662 |
-
.lp-order-statuses li.featured-theme > div {
|
1663 |
-
margin-bottom: 3px; }
|
1664 |
-
.lp-order-statuses li.featured-theme > div span {
|
1665 |
-
font-size: 12px;
|
1666 |
-
vertical-align: middle;
|
1667 |
-
color: #999; }
|
1668 |
-
.lp-order-statuses li:nth-child(even) .counter-inner {
|
1669 |
-
margin-left: 0; }
|
1670 |
-
.lp-order-statuses li:nth-child(odd) .counter-inner {
|
1671 |
-
margin-right: 0; }
|
1672 |
-
.lp-order-statuses li.total-raised {
|
1673 |
-
text-align: center;
|
1674 |
-
background: #F9F9F9;
|
1675 |
-
border: 1px solid #F3F3F3;
|
1676 |
-
padding: 10px 0;
|
1677 |
-
box-sizing: border-box; }
|
1678 |
-
.lp-order-statuses li.total-raised strong {
|
1679 |
-
margin-bottom: 10px;
|
1680 |
-
font-size: 26px; }
|
1681 |
-
.lp-order-statuses li.total-raised strong:before {
|
1682 |
-
content: '\f185';
|
1683 |
-
font-size: 30px;
|
1684 |
-
width: 30px;
|
1685 |
-
height: 30px;
|
1686 |
-
line-height: 30px;
|
1687 |
-
margin-right: 7px;
|
1688 |
-
margin-top: -3px; }
|
1689 |
-
.lp-order-statuses:after {
|
1690 |
-
clear: both;
|
1691 |
-
display: block;
|
1692 |
-
content: ''; }
|
1693 |
-
|
1694 |
-
.lp-place-holder {
|
1695 |
-
background: #fff;
|
1696 |
-
padding: 10px;
|
1697 |
-
display: block;
|
1698 |
-
margin: 0 auto;
|
1699 |
-
box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
|
1700 |
-
border-radius: 3px; }
|
1701 |
-
.lp-place-holder [class*="line-"] {
|
1702 |
-
height: 6px;
|
1703 |
-
width: 400px;
|
1704 |
-
background: #f6f7f9;
|
1705 |
-
margin-bottom: 13px;
|
1706 |
-
margin-right: 5px; }
|
1707 |
-
.lp-place-holder .thumbnail {
|
1708 |
-
height: 40px;
|
1709 |
-
width: 40px;
|
1710 |
-
float: left;
|
1711 |
-
margin-right: 20px;
|
1712 |
-
display: inline-block; }
|
1713 |
-
.lp-place-holder .line-heading {
|
1714 |
-
width: 80%;
|
1715 |
-
height: 20px; }
|
1716 |
-
.lp-place-holder .line-sm {
|
1717 |
-
width: 30%;
|
1718 |
-
margin-top: 10px; }
|
1719 |
-
.lp-place-holder .line-xs {
|
1720 |
-
width: 50%; }
|
1721 |
-
.lp-place-holder .line-df {
|
1722 |
-
margin-top: 30px;
|
1723 |
-
width: 380px; }
|
1724 |
-
.lp-place-holder .line-lg {
|
1725 |
-
width: 200px; }
|
1726 |
-
.lp-place-holder .line-lgx {
|
1727 |
-
width: 450px; }
|
1728 |
-
.lp-place-holder [class*="line"],
|
1729 |
-
.lp-place-holder .thumbnail {
|
1730 |
-
animation: lpTimeLine;
|
1731 |
-
animation-duration: 1s;
|
1732 |
-
animation-timing-function: linear;
|
1733 |
-
animation-iteration-count: infinite;
|
1734 |
-
background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
|
1735 |
-
background-size: 800px auto;
|
1736 |
-
background-position: 100px 0; }
|
1737 |
-
|
1738 |
-
@keyframes lpTimeLine {
|
1739 |
-
0% {
|
1740 |
-
background-position: -350px 0; }
|
1741 |
-
100% {
|
1742 |
-
background-position: 400px 0; } }
|
1743 |
-
|
1744 |
-
.post-type-lp_order #post-body-content {
|
1745 |
-
display: none; }
|
1746 |
-
|
1747 |
-
.post-type-lp_order #order_details .hndle, .post-type-lp_order #order_details .handlediv {
|
1748 |
-
display: none; }
|
1749 |
-
|
1750 |
-
.post-type-lp_order #order_details .inside {
|
1751 |
-
padding: 30px 30px;
|
1752 |
-
margin: 0; }
|
1753 |
-
|
1754 |
-
.post-type-lp_order #order_details .order-data-field {
|
1755 |
-
margin-bottom: 20px; }
|
1756 |
-
.post-type-lp_order #order_details .order-data-field label {
|
1757 |
-
display: block;
|
1758 |
-
margin-bottom: 5px;
|
1759 |
-
font-weight: bold; }
|
1760 |
-
|
1761 |
-
.post-type-lp_order #order_details .order-data-number {
|
1762 |
-
margin: 0 0 10px;
|
1763 |
-
font-size: 24px;
|
1764 |
-
font-weight: lighter; }
|
1765 |
-
|
1766 |
-
.post-type-lp_order #order_details .order-data-heading {
|
1767 |
-
margin-top: 40px; }
|
1768 |
-
|
1769 |
-
.post-type-lp_order #order_details .order-users {
|
1770 |
-
display: inline-block; }
|
1771 |
-
|
1772 |
-
.post-type-lp_order #order_details .order-data-date .order-date {
|
1773 |
-
width: 100px; }
|
1774 |
-
|
1775 |
-
.post-type-lp_order #order_details .order-data-date .order-hour, .post-type-lp_order #order_details .order-data-date .order-minute {
|
1776 |
-
width: 50px; }
|
1777 |
-
|
1778 |
-
.post-type-lp_order #order_details .order-items {
|
1779 |
-
margin: 0 -30px;
|
1780 |
-
border-top: 2px solid #DDD;
|
1781 |
-
padding: 0 30px; }
|
1782 |
-
.post-type-lp_order #order_details .order-items table {
|
1783 |
-
border-collapse: collapse;
|
1784 |
-
width: 100%; }
|
1785 |
-
.post-type-lp_order #order_details .order-items table thead th {
|
1786 |
-
border-bottom: 1px solid #DDD;
|
1787 |
-
text-align: left;
|
1788 |
-
padding: 12px 10px;
|
1789 |
-
font-size: 16px;
|
1790 |
-
font-weight: lighter; }
|
1791 |
-
.post-type-lp_order #order_details .order-items table tbody td, .post-type-lp_order #order_details .order-items table tfoot td {
|
1792 |
-
border-bottom: 1px solid #DDD;
|
1793 |
-
text-align: left;
|
1794 |
-
padding: 10px; }
|
1795 |
-
.post-type-lp_order #order_details .order-items table tbody tr:nth-child(odd) td {
|
1796 |
-
background: #F5F5F5; }
|
1797 |
-
.post-type-lp_order #order_details .order-items table tfoot td {
|
1798 |
-
border: none;
|
1799 |
-
padding-bottom: 0;
|
1800 |
-
text-align: right;
|
1801 |
-
font-size: 14px; }
|
1802 |
-
.post-type-lp_order #order_details .order-items table .column-price,
|
1803 |
-
.post-type-lp_order #order_details .order-items table .column-total,
|
1804 |
-
.post-type-lp_order #order_details .order-items table .column-quantity {
|
1805 |
-
text-align: right;
|
1806 |
-
width: 150px; }
|
1807 |
-
.post-type-lp_order #order_details .order-items table .row-subtotal td {
|
1808 |
-
padding-top: 20px; }
|
1809 |
-
.post-type-lp_order #order_details .order-items table .remove-order-item {
|
1810 |
-
text-decoration: none;
|
1811 |
-
outline: none;
|
1812 |
-
color: #CCC; }
|
1813 |
-
.post-type-lp_order #order_details .order-items table .remove-order-item .dashicons {
|
1814 |
-
font-size: 18px; }
|
1815 |
-
.post-type-lp_order #order_details .order-items table .remove-order-item:hover {
|
1816 |
-
color: #FF0000; }
|
1817 |
-
.post-type-lp_order #order_details .order-items table .order-item-row:hover .remove-order-item {
|
1818 |
-
display: inline-block; }
|
1819 |
-
|
1820 |
-
.color-schemas {
|
1821 |
-
margin: 0 20px 20px 0;
|
1822 |
-
float: left; }
|
1823 |
-
.color-schemas .wp-color-picker {
|
1824 |
-
width: 80px;
|
1825 |
-
height: 24px;
|
1826 |
-
vertical-align: top;
|
1827 |
-
margin: 0; }
|
1828 |
-
.color-schemas .wp-picker-holder {
|
1829 |
-
position: absolute; }
|
1830 |
-
.color-schemas .buttons {
|
1831 |
-
display: none; }
|
1832 |
-
.color-schemas table {
|
1833 |
-
border-collapse: collapse;
|
1834 |
-
position: relative; }
|
1835 |
-
.color-schemas table td, .color-schemas table th {
|
1836 |
-
padding: 10px 10px; }
|
1837 |
-
.color-schemas table tbody {
|
1838 |
-
border: 1px solid transparent;
|
1839 |
-
position: relative; }
|
1840 |
-
.color-schemas table tbody td, .color-schemas table tbody th {
|
1841 |
-
text-align: left;
|
1842 |
-
background: #F5F5F5; }
|
1843 |
-
.color-schemas table tbody tr:first-child td, .color-schemas table tbody tr:first-child th {
|
1844 |
-
padding-bottom: 0; }
|
1845 |
-
.color-schemas table:after {
|
1846 |
-
content: '';
|
1847 |
-
position: absolute;
|
1848 |
-
top: 0;
|
1849 |
-
left: 0;
|
1850 |
-
right: 0;
|
1851 |
-
bottom: 0;
|
1852 |
-
background: rgba(255, 255, 255, 0.7); }
|
1853 |
-
.color-schemas tfoot td, .color-schemas tfoot th {
|
1854 |
-
padding-left: 0;
|
1855 |
-
padding-right: 0; }
|
1856 |
-
.color-schemas .remove-schema {
|
1857 |
-
float: right;
|
1858 |
-
color: #FF0000; }
|
1859 |
-
.color-schemas .wp-color-result {
|
1860 |
-
margin: 0; }
|
1861 |
-
.color-schemas .clone-schema {
|
1862 |
-
display: none; }
|
1863 |
-
.color-schemas:first-child .remove-schema,
|
1864 |
-
.color-schemas:first-child .apply-schema {
|
1865 |
-
display: none; }
|
1866 |
-
.color-schemas:nth-child(2) {
|
1867 |
-
clear: both; }
|
1868 |
-
.color-schemas:hover tbody {
|
1869 |
-
opacity: 1; }
|
1870 |
-
.color-schemas.current tbody {
|
1871 |
-
border-color: #DDD; }
|
1872 |
-
.color-schemas.current tbody td, .color-schemas.current tbody th {
|
1873 |
-
background: rgba(5, 215, 255, 0.26); }
|
1874 |
-
.color-schemas.current table:after {
|
1875 |
-
display: none; }
|
1876 |
-
.color-schemas.current .clone-schema {
|
1877 |
-
display: inline-block; }
|
1878 |
-
|
1879 |
-
/**
|
1880 |
-
* General style for admin editor.
|
1881 |
-
*/
|
1882 |
-
.lp-admin-editor {
|
1883 |
-
background-color: #fff;
|
1884 |
-
border: 1px solid #ddd;
|
1885 |
-
margin: 20px 0 0 0;
|
1886 |
-
position: relative; }
|
1887 |
-
.lp-admin-editor .heading,
|
1888 |
-
.lp-admin-editor .lp-box-data-content {
|
1889 |
-
padding: 0; }
|
1890 |
-
|
1891 |
-
#learn-press-admin-editor-metabox-settings {
|
1892 |
-
margin-top: 20px; }
|
1893 |
-
|
1894 |
-
/**
|
1895 |
-
* Course admin editor.
|
1896 |
-
*/
|
1897 |
-
#admin-editor-lp_course .lp-course-curriculum .heading {
|
1898 |
-
padding: 12px 10px;
|
1899 |
-
position: relative; }
|
1900 |
-
#admin-editor-lp_course .lp-course-curriculum .heading h4 {
|
1901 |
-
margin: 0;
|
1902 |
-
font-size: 18px; }
|
1903 |
-
#admin-editor-lp_course .lp-course-curriculum .heading .collapse-sections {
|
1904 |
-
font-family: Dashicons;
|
1905 |
-
position: absolute;
|
1906 |
-
top: 0;
|
1907 |
-
right: 0;
|
1908 |
-
bottom: 0;
|
1909 |
-
font-size: 30px;
|
1910 |
-
display: flex;
|
1911 |
-
justify-content: center;
|
1912 |
-
align-items: center;
|
1913 |
-
cursor: pointer;
|
1914 |
-
width: 40px;
|
1915 |
-
color: #999; }
|
1916 |
-
#admin-editor-lp_course .lp-course-curriculum .heading .collapse-sections.close:before {
|
1917 |
-
content: '\f140'; }
|
1918 |
-
#admin-editor-lp_course .lp-course-curriculum .heading .collapse-sections.open:before {
|
1919 |
-
content: '\f142'; }
|
1920 |
-
#admin-editor-lp_course .lp-course-curriculum .heading .status {
|
1921 |
-
font-family: Dashicons;
|
1922 |
-
font-size: 20px;
|
1923 |
-
position: relative;
|
1924 |
-
top: 5px;
|
1925 |
-
margin-left: 10px;
|
1926 |
-
visibility: hidden; }
|
1927 |
-
#admin-editor-lp_course .lp-course-curriculum .heading .status:before {
|
1928 |
-
content: "\f463"; }
|
1929 |
-
#admin-editor-lp_course .lp-course-curriculum .heading .status.loading {
|
1930 |
-
visibility: visible;
|
1931 |
-
animation: rotation 2s infinite linear;
|
1932 |
-
display: inline-block; }
|
1933 |
-
|
1934 |
-
#admin-editor-lp_course .lp-course-curriculum .curriculum-sections {
|
1935 |
-
margin: 0;
|
1936 |
-
border-top: 1px solid #ddd; }
|
1937 |
-
|
1938 |
-
#admin-editor-lp_course .lp-course-curriculum .section {
|
1939 |
-
border: 1px solid #e5e5e5;
|
1940 |
-
opacity: 1;
|
1941 |
-
background: #FFF;
|
1942 |
-
border-left: 0;
|
1943 |
-
border-right: 0;
|
1944 |
-
margin-bottom: -1px; }
|
1945 |
-
|
1946 |
-
|
1947 |
-
|
1948 |
-
|
1949 |
-
|
1950 |
-
|
1951 |
-
|
1952 |
-
|
1953 |
-
|
1954 |
-
|
1955 |
-
|
1956 |
-
|
1957 |
-
|
1958 |
-
|
1959 |
-
|
1960 |
-
|
1961 |
-
|
1962 |
-
|
1963 |
-
|
1964 |
-
|
1965 |
-
|
1966 |
-
|
1967 |
-
|
1968 |
-
|
1969 |
-
|
1970 |
-
|
1971 |
-
|
1972 |
-
|
1973 |
-
|
1974 |
-
|
1975 |
-
|
1976 |
-
|
1977 |
-
|
1978 |
-
|
1979 |
-
|
1980 |
-
|
1981 |
-
|
1982 |
-
|
1983 |
-
|
1984 |
-
|
1985 |
-
|
1986 |
-
|
1987 |
-
|
1988 |
-
|
1989 |
-
|
1990 |
-
|
1991 |
-
|
1992 |
-
|
1993 |
-
|
1994 |
-
|
1995 |
-
|
1996 |
-
|
1997 |
-
|
1998 |
-
|
1999 |
-
|
2000 |
-
|
2001 |
-
|
2002 |
-
|
2003 |
-
|
2004 |
-
|
2005 |
-
|
2006 |
-
|
2007 |
-
#admin-editor-lp_course .lp-course-curriculum .section .section-head .
|
2008 |
-
|
2009 |
-
|
2010 |
-
|
2011 |
-
|
2012 |
-
|
2013 |
-
|
2014 |
-
|
2015 |
-
|
2016 |
-
|
2017 |
-
|
2018 |
-
|
2019 |
-
|
2020 |
-
|
2021 |
-
display: inline-block;
|
2022 |
-
|
2023 |
-
|
2024 |
-
|
2025 |
-
|
2026 |
-
|
2027 |
-
|
2028 |
-
|
2029 |
-
|
2030 |
-
|
2031 |
-
|
2032 |
-
|
2033 |
-
|
2034 |
-
|
2035 |
-
|
2036 |
-
|
2037 |
-
|
2038 |
-
|
2039 |
-
|
2040 |
-
|
2041 |
-
|
2042 |
-
|
2043 |
-
|
2044 |
-
|
2045 |
-
|
2046 |
-
|
2047 |
-
|
2048 |
-
|
2049 |
-
|
2050 |
-
|
2051 |
-
|
2052 |
-
|
2053 |
-
#admin-editor-lp_course .lp-course-curriculum .section .
|
2054 |
-
|
2055 |
-
|
2056 |
-
|
2057 |
-
|
2058 |
-
|
2059 |
-
|
2060 |
-
|
2061 |
-
|
2062 |
-
|
2063 |
-
|
2064 |
-
|
2065 |
-
|
2066 |
-
|
2067 |
-
|
2068 |
-
|
2069 |
-
|
2070 |
-
|
2071 |
-
|
2072 |
-
|
2073 |
-
margin: 0;
|
2074 |
-
|
2075 |
-
|
2076 |
-
|
2077 |
-
|
2078 |
-
|
2079 |
-
|
2080 |
-
|
2081 |
-
|
2082 |
-
|
2083 |
-
|
2084 |
-
|
2085 |
-
|
2086 |
-
|
2087 |
-
|
2088 |
-
|
2089 |
-
|
2090 |
-
|
2091 |
-
|
2092 |
-
|
2093 |
-
|
2094 |
-
|
2095 |
-
|
2096 |
-
|
2097 |
-
|
2098 |
-
|
2099 |
-
|
2100 |
-
|
2101 |
-
|
2102 |
-
|
2103 |
-
|
2104 |
-
|
2105 |
-
|
2106 |
-
|
2107 |
-
|
2108 |
-
|
2109 |
-
|
2110 |
-
|
2111 |
-
|
2112 |
-
|
2113 |
-
|
2114 |
-
|
2115 |
-
|
2116 |
-
|
2117 |
-
|
2118 |
-
|
2119 |
-
|
2120 |
-
|
2121 |
-
|
2122 |
-
|
2123 |
-
|
2124 |
-
|
2125 |
-
|
2126 |
-
|
2127 |
-
|
2128 |
-
|
2129 |
-
|
2130 |
-
|
2131 |
-
|
2132 |
-
|
2133 |
-
|
2134 |
-
|
2135 |
-
|
2136 |
-
|
2137 |
-
|
2138 |
-
|
2139 |
-
|
2140 |
-
|
2141 |
-
|
2142 |
-
|
2143 |
-
|
2144 |
-
|
2145 |
-
|
2146 |
-
|
2147 |
-
#admin-editor-lp_course .lp-course-curriculum .section-list-items .new-section-item .
|
2148 |
-
|
2149 |
-
|
2150 |
-
|
2151 |
-
|
2152 |
-
|
2153 |
-
|
2154 |
-
|
2155 |
-
|
2156 |
-
color: #
|
2157 |
-
#admin-editor-lp_course .lp-course-curriculum .section-list-items .new-section-item .types .type
|
2158 |
-
display:
|
2159 |
-
|
2160 |
-
|
2161 |
-
|
2162 |
-
|
2163 |
-
|
2164 |
-
|
2165 |
-
|
2166 |
-
|
2167 |
-
|
2168 |
-
|
2169 |
-
|
2170 |
-
|
2171 |
-
|
2172 |
-
|
2173 |
-
|
2174 |
-
|
2175 |
-
|
2176 |
-
|
2177 |
-
|
2178 |
-
|
2179 |
-
|
2180 |
-
|
2181 |
-
|
2182 |
-
|
2183 |
-
|
2184 |
-
|
2185 |
-
|
2186 |
-
|
2187 |
-
|
2188 |
-
|
2189 |
-
|
2190 |
-
|
2191 |
-
|
2192 |
-
|
2193 |
-
|
2194 |
-
|
2195 |
-
|
2196 |
-
|
2197 |
-
|
2198 |
-
|
2199 |
-
|
2200 |
-
|
2201 |
-
|
2202 |
-
|
2203 |
-
|
2204 |
-
#
|
2205 |
-
|
2206 |
-
|
2207 |
-
|
2208 |
-
|
2209 |
-
|
2210 |
-
|
2211 |
-
|
2212 |
-
|
2213 |
-
|
2214 |
-
|
2215 |
-
|
2216 |
-
|
2217 |
-
|
2218 |
-
|
2219 |
-
|
2220 |
-
|
2221 |
-
|
2222 |
-
|
2223 |
-
|
2224 |
-
|
2225 |
-
|
2226 |
-
|
2227 |
-
|
2228 |
-
|
2229 |
-
|
2230 |
-
|
2231 |
-
|
2232 |
-
|
2233 |
-
|
2234 |
-
|
2235 |
-
|
2236 |
-
|
2237 |
-
|
2238 |
-
|
2239 |
-
|
2240 |
-
|
2241 |
-
|
2242 |
-
|
2243 |
-
|
2244 |
-
|
2245 |
-
|
2246 |
-
|
2247 |
-
|
2248 |
-
|
2249 |
-
|
2250 |
-
|
2251 |
-
|
2252 |
-
|
2253 |
-
|
2254 |
-
|
2255 |
-
|
2256 |
-
|
2257 |
-
|
2258 |
-
|
2259 |
-
|
2260 |
-
|
2261 |
-
#admin-editor-lp_course .lp-course-curriculum .section-
|
2262 |
-
|
2263 |
-
|
2264 |
-
|
2265 |
-
|
2266 |
-
|
2267 |
-
|
2268 |
-
|
2269 |
-
|
2270 |
-
|
2271 |
-
|
2272 |
-
|
2273 |
-
|
2274 |
-
#admin-editor-lp_course .lp-course-curriculum .section-actions .remove
|
2275 |
-
display:
|
2276 |
-
|
2277 |
-
|
2278 |
-
|
2279 |
-
|
2280 |
-
|
2281 |
-
|
2282 |
-
|
2283 |
-
|
2284 |
-
|
2285 |
-
|
2286 |
-
|
2287 |
-
|
2288 |
-
|
2289 |
-
|
2290 |
-
|
2291 |
-
|
2292 |
-
|
2293 |
-
|
2294 |
-
.
|
2295 |
-
|
2296 |
-
|
2297 |
-
|
2298 |
-
|
2299 |
-
|
2300 |
-
|
2301 |
-
|
2302 |
-
|
2303 |
-
|
2304 |
-
|
2305 |
-
|
2306 |
-
|
2307 |
-
|
2308 |
-
|
2309 |
-
|
2310 |
-
|
2311 |
-
|
2312 |
-
|
2313 |
-
|
2314 |
-
|
2315 |
-
|
2316 |
-
|
2317 |
-
|
2318 |
-
|
2319 |
-
|
2320 |
-
|
2321 |
-
|
2322 |
-
|
2323 |
-
|
2324 |
-
|
2325 |
-
|
2326 |
-
|
2327 |
-
|
2328 |
-
|
2329 |
-
|
2330 |
-
|
2331 |
-
|
2332 |
-
|
2333 |
-
|
2334 |
-
|
2335 |
-
|
2336 |
-
|
2337 |
-
|
2338 |
-
|
2339 |
-
|
2340 |
-
|
2341 |
-
|
2342 |
-
|
2343 |
-
|
2344 |
-
|
2345 |
-
|
2346 |
-
|
2347 |
-
|
2348 |
-
|
2349 |
-
|
2350 |
-
|
2351 |
-
|
2352 |
-
|
2353 |
-
|
2354 |
-
|
2355 |
-
|
2356 |
-
|
2357 |
-
|
2358 |
-
|
2359 |
-
|
2360 |
-
|
2361 |
-
|
2362 |
-
|
2363 |
-
|
2364 |
-
|
2365 |
-
|
2366 |
-
|
2367 |
-
|
2368 |
-
|
2369 |
-
|
2370 |
-
|
2371 |
-
#admin-editor-lp_quiz .lp-box-data-content .lp-list-questions .table-row
|
2372 |
-
|
2373 |
-
#admin-editor-lp_quiz .lp-box-data-content .lp-list-questions .table-row
|
2374 |
-
|
2375 |
-
|
2376 |
-
|
2377 |
-
|
2378 |
-
|
2379 |
-
|
2380 |
-
|
2381 |
-
|
2382 |
-
|
2383 |
-
|
2384 |
-
|
2385 |
-
|
2386 |
-
|
2387 |
-
|
2388 |
-
|
2389 |
-
|
2390 |
-
|
2391 |
-
|
2392 |
-
|
2393 |
-
|
2394 |
-
|
2395 |
-
|
2396 |
-
|
2397 |
-
|
2398 |
-
|
2399 |
-
|
2400 |
-
|
2401 |
-
|
2402 |
-
|
2403 |
-
|
2404 |
-
|
2405 |
-
|
2406 |
-
|
2407 |
-
|
2408 |
-
|
2409 |
-
#admin-editor-lp_quiz .lp-box-data-content .lp-list-questions .main .question-settings .quiz-question-data table.lp-list-options .
|
2410 |
-
width:
|
2411 |
-
|
2412 |
-
|
2413 |
-
|
2414 |
-
width:
|
2415 |
-
|
2416 |
-
|
2417 |
-
|
2418 |
-
|
2419 |
-
|
2420 |
-
|
2421 |
-
|
2422 |
-
|
2423 |
-
|
2424 |
-
|
2425 |
-
|
2426 |
-
|
2427 |
-
|
2428 |
-
|
2429 |
-
|
2430 |
-
|
2431 |
-
#
|
2432 |
-
|
2433 |
-
|
2434 |
-
|
2435 |
-
|
2436 |
-
|
2437 |
-
|
2438 |
-
|
2439 |
-
|
2440 |
-
|
2441 |
-
|
2442 |
-
|
2443 |
-
|
2444 |
-
|
2445 |
-
|
2446 |
-
|
2447 |
-
|
2448 |
-
|
2449 |
-
|
2450 |
-
|
2451 |
-
|
2452 |
-
|
2453 |
-
|
2454 |
-
|
2455 |
-
#admin-editor-lp_quiz .lp-box-data-content .lp-list-questions .main .question-settings .quiz-question-data table.lp-list-options tbody tr.ui-sortable-
|
2456 |
-
|
2457 |
-
#
|
2458 |
-
|
2459 |
-
|
2460 |
-
|
2461 |
-
|
2462 |
-
|
2463 |
-
|
2464 |
-
|
2465 |
-
|
2466 |
-
|
2467 |
-
|
2468 |
-
|
2469 |
-
|
2470 |
-
|
2471 |
-
-
|
2472 |
-
|
2473 |
-
|
2474 |
-
|
2475 |
-
|
2476 |
-
|
2477 |
-
|
2478 |
-
|
2479 |
-
|
2480 |
-
|
2481 |
-
|
2482 |
-
|
2483 |
-
|
2484 |
-
|
2485 |
-
|
2486 |
-
|
2487 |
-
|
2488 |
-
|
2489 |
-
|
2490 |
-
|
2491 |
-
|
2492 |
-
|
2493 |
-
|
2494 |
-
|
2495 |
-
|
2496 |
-
|
2497 |
-
|
2498 |
-
|
2499 |
-
|
2500 |
-
|
2501 |
-
#
|
2502 |
-
|
2503 |
-
|
2504 |
-
|
2505 |
-
|
2506 |
-
|
2507 |
-
|
2508 |
-
|
2509 |
-
|
2510 |
-
|
2511 |
-
|
2512 |
-
|
2513 |
-
|
2514 |
-
|
2515 |
-
|
2516 |
-
|
2517 |
-
|
2518 |
-
|
2519 |
-
-
|
2520 |
-
|
2521 |
-
-
|
2522 |
-
|
2523 |
-
|
2524 |
-
|
2525 |
-
|
2526 |
-
|
2527 |
-
|
2528 |
-
|
2529 |
-
|
2530 |
-
|
2531 |
-
|
2532 |
-
|
2533 |
-
|
2534 |
-
|
2535 |
-
|
2536 |
-
|
2537 |
-
|
2538 |
-
|
2539 |
-
|
2540 |
-
|
2541 |
|