PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.4.8
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.4.8
4.4.8 4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 All 139 releases
← All changes | assets/css/edit-curriculum.css +73 -58 4.4.24.4.8 View file →
@@ -3,46 +3,16 @@
3 3 */
4 4 /**
5 5 * Mixin
6 6 */
7 -@-webkit-keyframes rotating4 {
8 - from {
9 - -webkit-transform: rotate(0deg);
10 - -o-transform: rotate(0deg);
11 - transform: rotate(0deg);
12 - }
13 - to {
14 - -webkit-transform: rotate(360deg);
15 - -o-transform: rotate(360deg);
16 - transform: rotate(360deg);
17 - }
18 -}
19 7 @keyframes rotating4 {
20 8 from {
21 - -ms-transform: rotate(0deg);
22 - -moz-transform: rotate(0deg);
23 - -webkit-transform: rotate(0deg);
24 - -o-transform: rotate(0deg);
25 9 transform: rotate(0deg);
26 10 }
27 11 to {
28 - -ms-transform: rotate(360deg);
29 - -moz-transform: rotate(360deg);
30 - -webkit-transform: rotate(360deg);
31 - -o-transform: rotate(360deg);
32 12 transform: rotate(360deg);
33 13 }
34 14 }
35 -@-webkit-keyframes animation4 {
36 - from {
37 - left: -40%;
38 - width: 40%;
39 - }
40 - to {
41 - left: 100%;
42 - width: 10%;
43 - }
44 -}
45 15 @keyframes animation4 {
46 16 from {
47 17 left: -40%;
48 18 width: 40%;
@@ -53,9 +23,9 @@
53 23 }
54 24 }
55 25 .learn-press-message {
56 26 position: relative;
57 - margin: 24px auto;
27 + margin: 0 !important;
58 28 padding: 10px 20px;
59 29 border-radius: var(--lp-border-radius, 5px);
60 30 background-color: #E5F7FF;
61 31 color: #007AFF;
@@ -63,8 +33,9 @@
63 33 }
64 34 .learn-press-message.error {
65 35 background-color: #FEE5E5;
66 36 color: #FF3B30;
37 + border-left: none;
67 38 }
68 39 .learn-press-message.warning {
69 40 background-color: #FEF7E6;
70 41 color: #FF9500;
@@ -143,8 +114,9 @@
143 114 font-size: 1rem;
144 115 /**
145 116 * Style for the buttons
146 117 */
118 + /* 5. Minimal Bottom Line */
147 119 }
148 120 .lp-popup-items-to-select .lp-btn-edit-primary {
149 121 border: none;
150 122 background: #135e96;
@@ -157,8 +129,32 @@
157 129 background: #135E96;
158 130 color: #fff;
159 131 opacity: 1;
160 132 }
133 +.lp-popup-items-to-select .btn-line::after {
134 + content: "";
135 + position: absolute;
136 + bottom: 0;
137 + left: 0;
138 + height: 4px;
139 + width: 0%;
140 + background-color: #38bdf8;
141 + animation: lineLoad 2s ease-in-out infinite;
142 +}
143 +@keyframes lineLoad {
144 + 0% {
145 + width: 0%;
146 + left: 0;
147 + }
148 + 50% {
149 + width: 100%;
150 + left: 0;
151 + }
152 + 100% {
153 + width: 0%;
154 + left: 100%;
155 + }
156 +}
161 157 .lp-popup-items-to-select .header {
162 158 position: relative;
163 159 }
164 160 .lp-popup-items-to-select .header .header-count-items-selected {
@@ -227,18 +223,23 @@
227 223 }
228 224 .lp-popup-items-to-select .list-items, .lp-popup-items-to-select .list-items-selected {
229 225 display: flex;
230 226 flex-direction: column;
231 - gap: 10px;
232 227 overflow-y: auto;
233 228 min-height: 260px;
234 - max-height: 460px;
229 + max-height: 50vh;
235 230 margin: 0;
236 231 }
237 232 .lp-popup-items-to-select .list-items li, .lp-popup-items-to-select .list-items-selected li {
238 233 margin: 0;
239 234 cursor: pointer;
235 + padding: 10px;
236 + border: 1px solid white;
240 237 }
238 +.lp-popup-items-to-select .list-items li:hover, .lp-popup-items-to-select .list-items-selected li:hover {
239 + background-color: #eff6ff;
240 + border-color: #e2eefe;
241 +}
241 242 .lp-popup-items-to-select .list-items-selected li {
242 243 display: flex;
243 244 gap: 5px;
244 245 align-items: center;
@@ -265,11 +266,21 @@
265 266 }
266 267 .lp-popup-items-to-select .pagination {
267 268 display: flex;
268 269 flex-wrap: wrap;
269 - margin: 10px 0 -10px -10px;
270 + margin: 10px 0 -10px 0;
270 271 align-items: center;
272 + flex-direction: column;
273 + gap: 10px;
271 274 }
275 +.lp-popup-items-to-select .pagination::before {
276 + content: "";
277 + display: block;
278 + width: 100%;
279 + height: 1px;
280 + background-color: #ececec;
281 + position: relative;
282 +}
272 283 .lp-popup-items-to-select .pagination li {
273 284 margin: 0;
274 285 cursor: pointer;
275 286 }
@@ -356,8 +367,11 @@
356 367 .swal2-popup .swal2-close {
357 368 background-color: unset !important;
358 369 outline: none !important;
359 370 color: rgb(204, 204, 204) !important;
371 + font-size: 30px;
372 + box-shadow: none !important;
373 + position: absolute;
360 374 }
361 375 .swal2-popup .swal2-close:hover {
362 376 color: #f27474 !important;
363 377 }
@@ -447,20 +461,8 @@
447 461 }
448 462 #lp-course-edit-curriculum .curriculum-sections .section-description.editing button {
449 463 display: inline-block;
450 464 }
451 -#lp-course-edit-curriculum .curriculum-sections .section-description input::-webkit-input-placeholder {
452 - color: #2271B1;
453 -}
454 -#lp-course-edit-curriculum .curriculum-sections .section-description input::-moz-placeholder {
455 - color: #2271B1;
456 -}
457 -#lp-course-edit-curriculum .curriculum-sections .section-description input:-ms-input-placeholder {
458 - color: #2271B1;
459 -}
460 -#lp-course-edit-curriculum .curriculum-sections .section-description input:-moz-placeholder {
461 - color: #2271B1;
462 -}
463 465 #lp-course-edit-curriculum .curriculum-sections .section-description input::placeholder {
464 466 color: #2271B1;
465 467 }
466 468 #lp-course-edit-curriculum .section {
@@ -613,20 +615,8 @@
613 615 background: transparent;
614 616 outline: none;
615 617 padding: 0;
616 618 }
617 -#lp-course-edit-curriculum .add-new-section input::-webkit-input-placeholder, #lp-course-edit-curriculum .lp-add-item-type input::-webkit-input-placeholder {
618 - color: #8A8888;
619 -}
620 -#lp-course-edit-curriculum .add-new-section input::-moz-placeholder, #lp-course-edit-curriculum .lp-add-item-type input::-moz-placeholder {
621 - color: #8A8888;
622 -}
623 -#lp-course-edit-curriculum .add-new-section input:-ms-input-placeholder, #lp-course-edit-curriculum .lp-add-item-type input:-ms-input-placeholder {
624 - color: #8A8888;
625 -}
626 -#lp-course-edit-curriculum .add-new-section input:-moz-placeholder, #lp-course-edit-curriculum .lp-add-item-type input:-moz-placeholder {
627 - color: #8A8888;
628 -}
629 619 #lp-course-edit-curriculum .add-new-section input::placeholder, #lp-course-edit-curriculum .lp-add-item-type input::placeholder {
630 620 color: #8A8888;
631 621 }
632 622 #lp-course-edit-curriculum .add-new-section {
@@ -635,8 +625,9 @@
635 625 background-color: #F4FCFF;
636 626 /**
637 627 * Style for the buttons
638 628 */
629 + /* 5. Minimal Bottom Line */
639 630 /*.lp-btn-add-section {
640 631 border: none;
641 632 background: rgba(19, 94, 150, 0.5);
642 633 color: #fff;
@@ -664,8 +655,32 @@
664 655 #lp-course-edit-curriculum .add-new-section .lp-btn-edit-primary:hover, #lp-course-edit-curriculum .add-new-section .lp-btn-edit-primary.active, #lp-course-edit-curriculum .add-new-section .lp-btn-edit-primary.active:hover {
665 656 background: #135E96;
666 657 color: #fff;
667 658 opacity: 1;
659 +}
660 +#lp-course-edit-curriculum .add-new-section .btn-line::after {
661 + content: "";
662 + position: absolute;
663 + bottom: 0;
664 + left: 0;
665 + height: 4px;
666 + width: 0%;
667 + background-color: #38bdf8;
668 + animation: lineLoad 2s ease-in-out infinite;
669 +}
670 +@keyframes lineLoad {
671 + 0% {
672 + width: 0%;
673 + left: 0;
674 + }
675 + 50% {
676 + width: 100%;
677 + left: 0;
678 + }
679 + 100% {
680 + width: 0%;
681 + left: 100%;
682 + }
668 683 }
669 684 #lp-course-edit-curriculum .lp-add-item-type {
670 685 border: 1px solid #2271B1;
671 686 margin-bottom: 10px;