cronapp-framework-mobile-js 3.0.0-SP.2 → 3.0.0-SP.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/app_2.9.css +21 -0
- package/css/themes/custom/krypton/custom-krypton.css +356 -335
- package/css/themes/custom/material-round/custom-material-round.css +107 -41
- package/dist/css/app_2.9.css +1 -1
- package/dist/css/themes/custom/krypton/custom-krypton.css +1 -1
- package/dist/css/themes/custom/material-round/custom-material-round.css +1 -1
- package/dist/js/app.authentication.js +1 -1
- package/dist/js/app.js +1 -1
- package/dist/js/controllers.authentication.js +1 -1
- package/dist/js/upload.service.js +1 -1
- package/js/app.authentication.js +8 -4
- package/js/app.js +4 -2
- package/js/controllers.authentication.js +7 -1
- package/js/upload.service.js +7 -4
- package/package.json +1 -1
package/css/app_2.9.css
CHANGED
|
@@ -403,4 +403,25 @@ textarea.item {
|
|
|
403
403
|
|
|
404
404
|
.login-social .button-bar button span {
|
|
405
405
|
display: none;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
@media (max-width: 767px) {
|
|
409
|
+
.hidden-xs {
|
|
410
|
+
display: none !important;
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
|
414
|
+
.hidden-sm {
|
|
415
|
+
display: none !important;
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
|
419
|
+
.hidden-md {
|
|
420
|
+
display: none !important;
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
@media (min-width: 1200px) {
|
|
424
|
+
.hidden-lg {
|
|
425
|
+
display: none !important;
|
|
426
|
+
}
|
|
406
427
|
}
|