Remove print stylesheet

git-svn-id: https://svn.apache.org/repos/asf/manifoldcf/branches/CONNECTORS-1196-3@1788645 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/framework/crawler-ui/src/main/webapp/css/print.css b/framework/crawler-ui/src/main/webapp/css/print.css
deleted file mode 100644
index 8f49e51..0000000
--- a/framework/crawler-ui/src/main/webapp/css/print.css
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Misc: print
- * -----------
- */
-@media print {
-  a:link:after,
-  a:visited:after {
-    content: "" !important;
-  }
-  .no-print,
-  .main-sidebar,
-  .main-header {
-    display: none!important;
-  }
-  .content-wrapper,
-  .main-footer {
-    margin-left: 0!important;
-    min-height: 0!important;
-    -webkit-transform: translate(0, 0) !important;
-    -ms-transform: translate(0, 0) !important;
-    -o-transform: translate(0, 0) !important;
-    transform: translate(0, 0) !important;
-  }
-  .fixed .content-wrapper {
-    padding-top: 0!important;
-  }
-  .content-header #heading {
-    font-size: 24px;
-  }
-  .main-footer {
-    margin-top: 20px;
-  }
-  .table-responsive {
-    overflow: auto;
-  }
-  .table-responsive > .table tr th,
-  .table-responsive > .table tr td {
-    white-space: normal!important;
-  }
-}
diff --git a/framework/crawler-ui/src/main/webapp/index.jsp b/framework/crawler-ui/src/main/webapp/index.jsp
index cb51d7a..5a20620 100644
--- a/framework/crawler-ui/src/main/webapp/index.jsp
+++ b/framework/crawler-ui/src/main/webapp/index.jsp
@@ -35,7 +35,6 @@
     <link href="bootstrap-select/css/bootstrap-select.min.css" rel="stylesheet" type="text/css"/>
     <link href="css/font-awesome.min.css" rel="stylesheet" type="text/css"/>
     <link rel="stylesheet" href="css/style.css" type="text/css" media="screen"/>
-    <link rel="stylesheet" href="css/print.css" type="text/css" media="print"/>
   </head>
   <body class="fixed skin-black sidebar-mini">
     <div class="wrapper">
diff --git a/framework/crawler-ui/src/main/webapp/less/print.less b/framework/crawler-ui/src/main/webapp/less/print.less
deleted file mode 100644
index 7d5dcc0..0000000
--- a/framework/crawler-ui/src/main/webapp/less/print.less
+++ /dev/null
@@ -1,68 +0,0 @@
-/*!
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-//Bootstrap Variables & Mixins
-//The core bootstrap code have not been modified. These files
-//are included only for reference.
-@import (reference) "/bootstrap-less/mixins.less";
-@import (reference) "/bootstrap-less/variables.less";
-/*
- * Misc: print
- * -----------
- */
-@media print {
-  a:link:after,
-  a:visited:after {
-    content: "" !important;
-  }
-  //Add to elements that you do not want to show when printing
-  .no-print {
-    display: none!important;
-  }
-  //Elements that we want to hide when printing
-  .main-sidebar,
-  .main-header{
-    &:extend(.no-print);
-  }
-  //This is the only element that should appear, so let's remove the margins
-  .content-wrapper,
-  .main-footer {
-    margin-left: 0!important;    
-    min-height: 0!important;
-    .translate(0,0)!important;     
-  }
-  .fixed .content-wrapper{
-    padding-top: 0!important;
-  }
-
-  .content-header #heading{
-    font-size:24px;
-  }
-
-  .main-footer{
-    margin-top:20px;
-  }
-
-  //Make sure table content displays properly
-  .table-responsive {
-    overflow: auto;
-    > .table tr th,
-    > .table tr td {
-      white-space: normal!important;
-    }
-  }
-}
\ No newline at end of file