Browse Source

fix login box

causefx 8 years ago
parent
commit
46f7b2b473
5 changed files with 147 additions and 2 deletions
  1. 142 0
      css/organizr.css
  2. 0 0
      css/style.css
  3. 1 0
      index.php
  4. 4 2
      js/custom.js
  5. BIN
      plugins/images/busy.gif

+ 142 - 0
css/organizr.css

@@ -0,0 +1,142 @@
+/*Preloader*/
+.preloader {
+  width: 100%;
+  height: 100%;
+  top: 0px;
+  position: fixed;
+  z-index: 99999;
+  background: rgba(0, 0, 0, 0.88);
+}
+.preloader .cssload-speeding-wheel {
+  position: absolute;
+  top: calc(50% - 3.5px);
+  left: calc(50% - 3.5px);
+}
+.w-100 {
+  width: 100%;
+}
+.iframe{
+  width:100%;
+  height:calc(100vh - 60px);
+  position: inherit;
+  display: block;
+}
+/* Larger Images */
+#side-menu>li>a {
+  padding: 18px 35px 18px 15px;
+  display: block;
+}
+.sidebar .nav-second-level li a {
+  padding: 14px 10px 14px 15px;
+}
+#side-menu .fa-fw {
+  width: 30px!important;
+}
+.sttabs nav a {
+  position: relative;
+  display: block;
+  overflow: hidden;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+  line-height: 1.5;
+}
+@media screen and (max-width: 767px){
+  .table-responsive {
+    width: 100%;
+    margin-bottom: 0;
+    overflow-y: hidden;
+    -ms-overflow-style: -ms-autohiding-scrollbar;
+    border: transparent;
+  }
+}
+.common-list .notify {
+  position: relative;
+  margin-top: .5px;
+  margin-right: 9px;
+}
+.ajaxloader {
+  width: 100%;
+  height: 100%;
+  top: 0px;
+  position: absolute;
+  z-index: 99999;
+  background: rgba(0, 0, 0, 0.68);
+  margin: 0 auto;
+  border-radius: 10px;
+}
+.lock-screen {
+  background: url(../../plugins/images/login-register.jpg) center center/cover no-repeat!important;
+  height: 100%;
+  position: fixed;
+  z-index: 999999;
+  top: 0;
+  width: 100%;
+  -webkit-user-select: none;  /* Chrome all / Safari all */
+  -moz-user-select: none;     /* Firefox all */
+  -ms-user-select: none;      /* IE 10+ */
+  -o-user-select: none;
+  user-select: none;
+}
+body.stop-scrolling {
+  height: 100%;
+  overflow: hidden;
+}
+.tabEditorIcon i {
+  font-size: 35px;
+  text-align: center !important;
+  width: 35px !important;
+}
+.tabEditorIcon img {
+  width: 35px !important;
+}
+.asColorPicker-wrap {
+  position: relative;
+  display: block;
+  width: calc(100% - 35px);
+}
+.asColorPicker-trigger {
+  position: absolute;
+  top: 0;
+  right: -32px;
+  height: 38px;
+  width: 37px;
+  border: 0;
+  border-radius: 0 4px 4px 0;
+}
+.asColorPicker-trigger span {
+  width: 100%;
+  height: 100%;
+  display: inline-block;
+  border-radius: 0 4px 4px 0;
+}
+.top-left-part {
+  width: auto;
+  max-width: 220px;
+  float: left;
+  border-right: transparent;
+}
+.tabs-style-flip {
+  max-width: 1400px;
+  margin: 0 auto;
+}
+.elip{
+  white-space: nowrap;
+  text-overflow: ellipsis;
+  overflow: hidden;
+  display: block;
+}
+.p-5{
+  padding:5px!important
+}
+.error-page {
+  width: 100%;
+  background: #1b1a1a;
+  height: 100%;
+  position: fixed;
+  display: none;
+  z-index: 10;
+}
+img.lazyload.tabImages {
+height: 120px !important;
+object-fit: contain;
+}

File diff suppressed because it is too large
+ 0 - 0
css/style.css


+ 1 - 0
index.php

@@ -22,6 +22,7 @@
 	<link href="plugins/bower_components/jquery-asColorPicker-master/css/asColorPicker.css" rel="stylesheet">
 	<link href="plugins/bower_components/dropzone-master/dist/dropzone.css" rel="stylesheet" type="text/css" />
 	<link href="css/style.css?v=<?php echo $GLOBALS['installedVersion']; ?>" rel="stylesheet">
+	<link href="css/organizr.css?v=<?php echo $GLOBALS['installedVersion']; ?>" rel="stylesheet">
 	<?php echo pluginFiles('css'); ?>
 	<link id="theme" rel="stylesheet">
 	<style type="text/css" id="user-appearance"></style>

+ 4 - 2
js/custom.js

@@ -394,9 +394,11 @@ $(document).on("click", ".depenency-item", function(e) {
 $(document).on("click", ".login-button", function(e) {
     e.preventDefault;
     $('div.login-box').block({
-        message: '<h4><img src="plugins/images/busy.gif" /> Just a moment...</h4>',
+        message: '<h5><img width="20" src="plugins/images/busy.gif" /> Just a moment...</h4>',
         css: {
-            border: '1px solid #000'
+            color: '#fff',
+            border: '1px solid #2cabe3',
+            backgroundColor: '#2cabe3'
         }
     });
     var post = $( '#loginform' ).serializeArray();

BIN
plugins/images/busy.gif


Some files were not shown because too many files changed in this diff