-
Notifications
You must be signed in to change notification settings - Fork 903
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
single UI view for insight #1
Conversation
@@ -219,7 +219,6 @@ dl { | |||
border: 1px solid #aaaaaa; | |||
background-color: #ffffff; | |||
min-height: 500px; | |||
margin-left: 20px; |
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.
I don't think we should be modifying the margin of a grid element. Rather, we should use the col-md div as a wrapper around another div and modifying the padding details-panel.
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.
Agreed - this was causing problems elsewhere; thought I had cleared it out but I guess not.
I don't see the |
PR updated. add -p too hard. |
</div> | ||
</div> | ||
<div class="col-md-4 details-panel"> | ||
<div class="header"> |
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.
I think this should all be replaced with <div ui-view="detail"></div>
; otherwise, looks good.
Merge changes from upstream deck
add igor * add igor * remove commented lines Approved-by: Salvatore Mazzarino
changes
Adds an abstract state named
insight
and a corresponding view. All of the cluster, elb, asg and security groups states are children ofinsight
.reason
This gives us a lot greater flexibility with how to display data in the application view. Previously, the
nav
,master
anddetails
views were hardcoded into the application template, forcing a specific presentation of data. In particular,tasks
does not fit well into this style.