Browse Source

Use reselectItem: in lists instead of custom onClick code
enables keyboard operation,
can select in multiselect lists by pressing enter.

Ryan Simmons 10 years ago
parent
commit
7d543fb9e7
2 changed files with 8 additions and 1 deletions
  1. 3 0
      helios.css
  2. 5 1
      helios.less

+ 3 - 0
helios.css

@@ -264,6 +264,9 @@ body[id="helios"] .nav-pills > .active > a {
   color: #fff;
   text-shadow: 0 0 0;
 }
+body[id="helios"] .focused .nav-multiselect .selector {
+  border-style: dotted;
+}
 body[id="helios"] .focused .nav-pills {
   background-color: #f3f7fb;
 }

+ 5 - 1
helios.less

@@ -312,6 +312,10 @@ body[id="helios"] {
 		color: #fff;
 		text-shadow: 0 0 0;
 	}
+	
+	.focused .nav-multiselect .selector {
+		border-style: dotted;
+	}
 
 	.focused .nav-pills {
 		background-color: #f3f7fb;
@@ -1066,4 +1070,4 @@ body[id="helios"] {
 		}
 	}
 
-}
+}