Browse Source

Changed focus look of filters

Lukas Metzger 9 years ago
parent
commit
d3bca410d0
2 changed files with 8 additions and 3 deletions
  1. 2 2
      domains.php
  2. 6 1
      include/custom.css

+ 2 - 2
domains.php

@@ -55,7 +55,7 @@ limitations under the License.
                                 <div class="form-group">
                                 <strong>Name</strong> 
                                 <span class="glyphicon glyphicon-sort cursor-pointer cursor-pointer"></span>
-                                <input type="text" class="form-control" id="searchName" placeholder="Search" autocomplete="off">
+                                <input type="text" class="form-control no-shadow" id="searchName" placeholder="Search" autocomplete="off">
                                 </div>
                             </form>
                         </td>
@@ -64,7 +64,7 @@ limitations under the License.
                                 <div class="form-group">
                                 <strong>Type</strong> 
                                 <span class="glyphicon glyphicon-sort cursor-pointer cursor-pointer"></span>
-                                <select class="form-control" id="searchType">
+                                <select class="form-control no-shadow" id="searchType">
                                     <option value="none">No filter...</option>
                                     <option value="MASTER">MASTER</option>
                                 </select>

+ 6 - 1
include/custom.css

@@ -11,4 +11,9 @@
 
 .defaulthidden { display: none !important; }
 
-.cursor-pointer {cursor: pointer; }
+.cursor-pointer {cursor: pointer; }
+
+.no-shadow { 
+    box-shadow: none!important;
+    border-color: #CCC!important;
+}