You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by an...@apache.org on 2015/07/23 10:40:52 UTC

[21/50] [abbrv] incubator-ignite git commit: # ignite-843 Fixed select ui

# ignite-843 Fixed select ui


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/677f5e46
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/677f5e46
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/677f5e46

Branch: refs/heads/ignite-1121
Commit: 677f5e46ef1fefa0262f7f42b1cb7927168e11d0
Parents: 692cee9
Author: Andrey <an...@gridgain.com>
Authored: Tue Jul 21 16:54:42 2015 +0700
Committer: Andrey <an...@gridgain.com>
Committed: Tue Jul 21 16:54:42 2015 +0700

----------------------------------------------------------------------
 .../web-control-center/nodejs/public/stylesheets/style.less    | 6 ++----
 modules/web-control-center/nodejs/views/templates/select.jade  | 2 +-
 2 files changed, 3 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/677f5e46/modules/web-control-center/nodejs/public/stylesheets/style.less
----------------------------------------------------------------------
diff --git a/modules/web-control-center/nodejs/public/stylesheets/style.less b/modules/web-control-center/nodejs/public/stylesheets/style.less
index da6ffae..61b09d5 100644
--- a/modules/web-control-center/nodejs/public/stylesheets/style.less
+++ b/modules/web-control-center/nodejs/public/stylesheets/style.less
@@ -243,7 +243,7 @@
 
   li a:hover {
     color: @ignite-red;
-    background-color: transparent;
+    //background-color: transparent;
   }
 
   .active {
@@ -1063,10 +1063,8 @@ a {
 
 .block-callout {
   background-color: @ignite-block-callout-background;
-  border-left-width: 5px;
-  border-left-style: solid;
+  border-left: 5px solid;
   border-color: @ignite-block-callout-border;
-
   margin-bottom: 20px;
 
   p {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/677f5e46/modules/web-control-center/nodejs/views/templates/select.jade
----------------------------------------------------------------------
diff --git a/modules/web-control-center/nodejs/views/templates/select.jade b/modules/web-control-center/nodejs/views/templates/select.jade
index 9bebac0..10c1946 100644
--- a/modules/web-control-center/nodejs/views/templates/select.jade
+++ b/modules/web-control-center/nodejs/views/templates/select.jade
@@ -18,7 +18,7 @@ ul.select.dropdown-menu(tabindex='-1', ng-show='$isVisible()', role='select')
     li(role='presentation', ng-repeat='match in $matches')
         hr(ng-if='match.value == undefined' style='margin: 5px 0')
         a(style='cursor: default; padding: 3px 6px;', role='menuitem', tabindex='-1', ng-class='{active: $isActive($index)}' ng-click='$select($index, $event)')
-            i(class='{{$iconCheckmark}}', ng-if='$isMultiple && $isActive($index)' ng-class='{active: $isActive($index)}' style='color: #ec1c24; margin-left: 15px; line-height: 20px; float: right;background-color: transparent;')
+            i(class='{{$iconCheckmark}}', ng-if='$isActive($index)' ng-class='{active: $isActive($index)}' style='color: #ec1c24; margin-left: 15px; line-height: 20px; float: right;background-color: transparent;')
             span(ng-bind='match.label')
     li(ng-if='$showAllNoneButtons || ($isMultiple && $matches.length > 5)')
         hr(style='margin: 5px 0')