-
Notifications
You must be signed in to change notification settings - Fork 1.7k
[AMBARI-22872] Register/Confirm Host for modular deployment. #225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
4df2dee
be0990f
410e383
99d5ed3
86be553
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -236,45 +236,18 @@ | |
| } | ||
|
|
||
| #host-filter { | ||
|
|
||
| ul { | ||
| margin: 3px; | ||
| font-size: 12px; | ||
| li.filter-status.active a { | ||
| text-decoration: none; | ||
| color: #fff; | ||
| } | ||
| li.filter-status.active, | ||
| li.filter-status.active:hover { | ||
| background-color: #666; | ||
| box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); | ||
| border-radius: 5px; | ||
| } | ||
| li.filter-status:hover { | ||
| background-color: #d8d8d8; | ||
| border-radius: 5px; | ||
| } | ||
| li.divider { | ||
| color: #666; | ||
| padding: 4px 2px; | ||
| } | ||
| li { | ||
| list-style: none; | ||
| display: block; | ||
| float: left; | ||
| padding: 4px; | ||
| a { | ||
| text-decoration: underline; | ||
| } | ||
| } | ||
| li.first { | ||
| font-weight: bold; | ||
| } | ||
| padding-top: 5px; | ||
| .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { | ||
| background-color: transparent; | ||
| } | ||
| } | ||
| .progress { | ||
| margin-bottom: 0; | ||
| } | ||
| .pre-scrollable { | ||
| float: left; | ||
| max-height: 440px; | ||
| } | ||
| #confirm-hosts-table { | ||
| td.host { | ||
| max-width: 290px; | ||
|
|
@@ -290,6 +263,19 @@ | |
| #display-action { | ||
| visibility:visible; | ||
| } | ||
| .step3-table-progress { | ||
| .progress { | ||
| height: 8px; | ||
| margin: 5px 5px 5px 0; | ||
| border-radius: 2px; | ||
| width: 80%; | ||
| } | ||
| } | ||
| .step3-table-action { | ||
| .icon { | ||
| color: #999; | ||
| } | ||
| } | ||
| } | ||
|
||
| #warningsSection { | ||
| margin: 0px 10px; | ||
|
|
@@ -1027,4 +1013,4 @@ | |
|
|
||
| .filter-input { | ||
| margin: 15px; | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not a fan of "Rows per page" as it is a bit too literal. "Items" wasn't much better. I would rather see this string be contextual, like "Hosts per page" or whatever the table rows represent.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Currently the way this is implemented is using App.PaginationView which doesn't allow this customization, so this has to be generic (there could be tables not having any hosts but processes or services or components instead). We can of course change the way view is implemented to make it more customizable but that requires a larger effort and the change would need to be reflected in other parts of the code. We can leave it for now, and can re-visit it later if there is a more pressing need.