You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by ki...@apache.org on 2017/05/02 19:04:35 UTC

svn commit: r1793575 - in /manifoldcf/trunk/framework/crawler-ui/src/main/less: boxes.less control-sidebar.less dropdown.less forms.less modal.less

Author: kishore
Date: Tue May  2 19:04:34 2017
New Revision: 1793575

URL: http://svn.apache.org/viewvc?rev=1793575&view=rev
Log:
Made .box-body to show overflow content
Removed unused less files

Removed:
    manifoldcf/trunk/framework/crawler-ui/src/main/less/control-sidebar.less
Modified:
    manifoldcf/trunk/framework/crawler-ui/src/main/less/boxes.less
    manifoldcf/trunk/framework/crawler-ui/src/main/less/dropdown.less
    manifoldcf/trunk/framework/crawler-ui/src/main/less/forms.less
    manifoldcf/trunk/framework/crawler-ui/src/main/less/modal.less

Modified: manifoldcf/trunk/framework/crawler-ui/src/main/less/boxes.less
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/crawler-ui/src/main/less/boxes.less?rev=1793575&r1=1793574&r2=1793575&view=diff
==============================================================================
--- manifoldcf/trunk/framework/crawler-ui/src/main/less/boxes.less (original)
+++ manifoldcf/trunk/framework/crawler-ui/src/main/less/boxes.less Tue May  2 19:04:34 2017
@@ -209,7 +209,7 @@
 
 //Box Body
 .box-body {
-  //.border-radius(0; 0; @box-border-radius; @box-border-radius);
+  overflow:auto;
   padding: @box-padding;
   .no-header & {
     .border-top-radius(@box-border-radius);

Modified: manifoldcf/trunk/framework/crawler-ui/src/main/less/dropdown.less
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/crawler-ui/src/main/less/dropdown.less?rev=1793575&r1=1793574&r2=1793575&view=diff
==============================================================================
--- manifoldcf/trunk/framework/crawler-ui/src/main/less/dropdown.less (original)
+++ manifoldcf/trunk/framework/crawler-ui/src/main/less/dropdown.less Tue May  2 19:04:34 2017
@@ -39,241 +39,6 @@
   }
 }
 
-//Navbar custom dropdown menu
-.navbar-nav .dropdown-menu {
-  .box-shadow(none)!important;
-}
-
-.navbar-nav > .notifications-menu,
-.navbar-nav > .messages-menu,
-.navbar-nav > .tasks-menu {
-  position: relative;
-  //fix width and padding
-  > .dropdown-menu {
-    > li {
-      position: relative;
-    }
-    width: 280px;
-    //Remove padding and margins
-    padding: 0 0 0 0!important;
-    margin: 0!important;
-    top: 100%;
-  }
-  //Define header class
-  > .dropdown-menu > li.header {
-    //.border-radius(4px; 4px; 0; 0);
-    background-color: #ffffff;
-    padding: 7px 10px;
-    border-bottom: 1px solid #f4f4f4;
-    color: #444444;
-    font-size: 14px;
-  }
-
-
-  //Define footer class
-  > .dropdown-menu > li.footer > a {
-    //.border-radius(0px; 0px; 4px; 4px);
-    font-size: 12px;
-    background-color: #fff;
-    padding: 7px 10px;
-    border-bottom: 1px solid #eeeeee;
-    color: #444!important;
-    @media (max-width: @screen-sm-max) {
-      background: #fff!important;
-      color: #444!important;
-    }
-    text-align: center;
-    //Hover state
-    &:hover {
-      text-decoration: none;
-      font-weight: normal;
-    }
-  }
-
-  //Clear inner menu padding and margins
-  > .dropdown-menu > li .menu {
-    max-height: 200px;
-    margin: 0;
-    padding: 0;
-    list-style: none;
-    overflow-x: hidden;
-    > li > a {
-      display: block;
-      white-space: nowrap; /* Prevent text from breaking */
-      border-bottom: 1px solid #f4f4f4;
-      // Hove state
-      &:hover {
-        background: #f4f4f4;
-        text-decoration: none;
-      }
-    }
-  }
-}
-
-//Notifications menu
-.navbar-nav > .notifications-menu {
-  > .dropdown-menu > li .menu {
-    // Links inside the menu
-    > li > a {      
-      color: #444444;
-      overflow: hidden;
-      text-overflow: ellipsis;
-      white-space: nowrap;
-      padding: 10px;
-      // Icons inside the menu
-      > .fa {
-        width: 20px;
-      }
-    }
-
-  }
-}
-
-//Messages menu
-.navbar-nav > .messages-menu {
-  //Inner menu
-  > .dropdown-menu > li .menu {
-    // Messages menu item
-    > li > a {
-      margin: 0px;
-      //line-height: 20px;
-      padding: 10px 10px;
-      // User image
-      > div > img {
-        margin: auto 10px auto auto;
-        width: 40px;
-        height: 40px;
-      }
-      // Message heading
-      > h4 {
-        padding: 0;
-        margin: 0 0 0 45px;
-        color: #444444;
-        font-size: 15px;
-        position: relative;
-        // Small for message time display
-        > small {
-          color: #999999;
-          font-size: 10px;
-          position: absolute;
-          top: 0px;
-          right: 0px;
-        }
-      }
-
-      > p {
-        margin: 0 0 0 45px;
-        font-size: 12px;
-        color: #888888;
-      }
-
-      .clearfix();
-
-    }
-
-  }
-}
-//Tasks menu
-.navbar-nav > .tasks-menu {
-  > .dropdown-menu > li .menu {
-    > li > a {
-      padding: 10px;
-
-      > h3 {
-        font-size: 14px;
-        padding: 0;
-        margin: 0 0 10px 0;
-        color: #666666;
-      }
-
-      > .progress {
-        padding: 0;
-        margin: 0;
-      }
-    }
-  }
-}
-//User menu
-.navbar-nav > .user-menu {
-  > .dropdown-menu {
-    .border-top-radius(0);    
-    padding: 1px 0 0 0;
-    border-top-width: 0;
-    width: 280px;
-    
-    &,
-    > .user-body {
-      .border-bottom-radius(4px);
-    }
-    // Header menu
-    > li.user-header {
-      height: 175px;
-      padding: 10px;
-      text-align: center;
-      // User image
-      > img {
-        z-index: 5;
-        height: 90px;
-        width: 90px;
-        border: 3px solid;
-        border-color: transparent;
-        border-color: rgba(255, 255, 255, 0.2);
-      }
-      > p {
-        z-index: 5;
-        color: #fff;
-        color: rgba(255, 255, 255, 0.8);
-        font-size: 17px;
-        //text-shadow: 2px 2px 3px #333333;
-        margin-top: 10px;
-        > small {
-          display: block;
-          font-size: 12px;
-        }
-      }
-    }
-
-    // Menu Body
-    > .user-body {
-      padding: 15px;
-      border-bottom: 1px solid #f4f4f4;
-      border-top: 1px solid #dddddd;
-      .clearfix();
-      a {
-        color: #444 !important;
-        @media (max-width: @screen-sm-max) {
-          background: #fff !important;
-          color: #444 !important;
-        }
-      }
-    }
-
-    // Menu Footer
-    > .user-footer {
-      background-color: #f9f9f9;
-      padding: 10px;
-      .clearfix();
-      .btn-default {
-        color: #666666;
-      }
-    }
-  }
-  .user-image {
-    float: left;
-    width: 25px;
-    height: 25px;
-    border-radius: 50%;
-    margin-right: 10px;
-    margin-top: -2px;
-    @media (max-width: @screen-xs-max) {
-      float: none;
-      margin-right: 0;
-      margin-top: -8px;
-      line-height: 10px;
-    }
-  }
-}
-
 /* Add fade animation to dropdown menus by appending
  the class .animated-dropdown-menu to the .dropdown-menu ul (or ol)*/
 .open:not(.dropup) > .animated-dropdown-menu {

Modified: manifoldcf/trunk/framework/crawler-ui/src/main/less/forms.less
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/crawler-ui/src/main/less/forms.less?rev=1793575&r1=1793574&r2=1793575&view=diff
==============================================================================
--- manifoldcf/trunk/framework/crawler-ui/src/main/less/forms.less (original)
+++ manifoldcf/trunk/framework/crawler-ui/src/main/less/forms.less Tue May  2 19:04:34 2017
@@ -108,7 +108,3 @@
     }
   }
 }
-
-.icheck > label {
-  padding-left: 0;
-}

Modified: manifoldcf/trunk/framework/crawler-ui/src/main/less/modal.less
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/crawler-ui/src/main/less/modal.less?rev=1793575&r1=1793574&r2=1793575&view=diff
==============================================================================
--- manifoldcf/trunk/framework/crawler-ui/src/main/less/modal.less (original)
+++ manifoldcf/trunk/framework/crawler-ui/src/main/less/modal.less Tue May  2 19:04:34 2017
@@ -36,55 +36,3 @@
 .modal-footer {
   border-top-color: @box-border-color;
 }
-
-//Modal variants
-.modal-primary {
-  .modal-body {
-    &:extend(.bg-light-blue);    
-  }
-  .modal-header,
-  .modal-footer {
-    &:extend(.bg-light-blue-active);
-    border-color: darken(@light-blue, 10%);
-  }
-}
-.modal-warning {
-  .modal-body {
-    &:extend(.bg-yellow);    
-  }
-  .modal-header,
-  .modal-footer {
-    &:extend(.bg-yellow-active);
-    border-color: darken(@yellow, 10%);
-  }
-}
-.modal-info {
-  .modal-body {
-    &:extend(.bg-aqua);    
-  }
-  .modal-header,
-  .modal-footer {
-    &:extend(.bg-aqua-active);
-    border-color: darken(@aqua, 10%);
-  }
-}
-.modal-success {
-  .modal-body {
-    &:extend(.bg-green);
-  }
-  .modal-header,
-  .modal-footer {
-    &:extend(.bg-green-active);
-    border-color: darken(@green, 10%);
-  }
-}
-.modal-danger {
-  .modal-body {
-    &:extend(.bg-red);    
-  }
-  .modal-header,
-  .modal-footer {
-    &:extend(.bg-red-active);
-    border-color: darken(@red, 10%);
-  }
-}
\ No newline at end of file