Repository: ambari
Updated Branches:
  refs/heads/trunk 62e124c98 -> edf85a383


AMBARI-17022. VDF: install wizard 'Select Version' UI issues.(xiwang)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/edf85a38
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/edf85a38
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/edf85a38

Branch: refs/heads/trunk
Commit: edf85a3837519b9c4e5704531627f4985a56b5ea
Parents: 62e124c
Author: Xi Wang <xiw...@apache.org>
Authored: Mon Jun 6 17:36:21 2016 -0700
Committer: Xi Wang <xiw...@apache.org>
Committed: Tue Jun 7 14:12:49 2016 -0700

----------------------------------------------------------------------
 ambari-web/app/models/stack.js         | 2 +-
 ambari-web/app/styles/application.less | 9 +++++++++
 ambari-web/app/styles/common.less      | 4 ++++
 3 files changed, 14 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/edf85a38/ambari-web/app/models/stack.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/models/stack.js b/ambari-web/app/models/stack.js
index df217f2..5081f19 100644
--- a/ambari-web/app/models/stack.js
+++ b/ambari-web/app/models/stack.js
@@ -70,7 +70,7 @@ App.Stack = DS.Model.extend({
   restoreReposBaseUrls: function () {
     this.get('operatingSystems').forEach(function (os) {
       os.get('repositories').forEach(function (repo) {
-        repo.set('baseUrl', repo.get('latestBaseUrl'));
+        repo.set('baseUrl', repo.get('baseUrlInit'));
       });
     });
   }

http://git-wip-us.apache.org/repos/asf/ambari/blob/edf85a38/ambari-web/app/styles/application.less
----------------------------------------------------------------------
diff --git a/ambari-web/app/styles/application.less 
b/ambari-web/app/styles/application.less
index e7fe6f4..d1a2f21 100644
--- a/ambari-web/app/styles/application.less
+++ b/ambari-web/app/styles/application.less
@@ -6238,6 +6238,12 @@ input[type="radio"].align-checkbox, 
input[type="checkbox"].align-checkbox {
     cursor: not-allowed;
   }
 }
+#select-stack {
+  .tabs-left {
+    height: 271px;
+    margin-bottom: 5px;
+  }
+}
 
 .public-disabled-message {
   padding: 5px;
@@ -6362,6 +6368,9 @@ input[type="radio"].align-checkbox, 
input[type="checkbox"].align-checkbox {
       button.disabled {
         cursor: not-allowed;
       }
+      .dropdown-menu a {
+        cursor: pointer;
+      }
     }
     #skip-validation {
       margin-top: 13px;

http://git-wip-us.apache.org/repos/asf/ambari/blob/edf85a38/ambari-web/app/styles/common.less
----------------------------------------------------------------------
diff --git a/ambari-web/app/styles/common.less 
b/ambari-web/app/styles/common.less
index 738edce..bc11d4d 100644
--- a/ambari-web/app/styles/common.less
+++ b/ambari-web/app/styles/common.less
@@ -436,6 +436,10 @@
 .tabs-right>li {
   margin-left: -1px;
 }
+.tabs-left>li>a:hover,
+.tabs-left>li>a:focus {
+  border-bottom-color: transparent;
+}
 .tabs-left>li.active>a,
 .tabs-left>li.active>a:hover,
 .tabs-left>li.active>a:focus {

Reply via email to