-
Notifications
You must be signed in to change notification settings - Fork 231
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
Addition of truncate class to tile headers and when no deployments have started #1188
Addition of truncate class to tile headers and when no deployments have started #1188
Conversation
@@ -1,8 +1,8 @@ | |||
<div class="overview-tile" ng-class="{ 'deployment-in-progress': inProgressDeployment }"> | |||
<ng-include src="'views/overview/_service-header.html'"></ng-include> | |||
<div class="overview-tile-header"> | |||
<div class="rc-header"> | |||
<div> | |||
<div class="rc-header" ng-class="{ 'rc-header-shield' : activeReplicationController}"> |
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.
You'll need to add the rc-header-shield
class to the header in _deployment.html as well.
Service names also have the same problem. Want to fix that here? Or another issue? |
563f84c
to
59b2936
Compare
app/views/overview/_deployment.html
Outdated
@@ -1,8 +1,8 @@ | |||
<div class="overview-tile" ng-class="{ 'deployment-in-progress': inProgressDeployment }"> | |||
<ng-include src="'views/overview/_service-header.html'"></ng-include> | |||
<div class="overview-tile-header"> | |||
<div class="rc-header"> | |||
<div> | |||
<div class="rc-header" ng-class="{ 'rc-header-shield' : activeReplicationController}"> |
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.
<div class="rc-header" ng-class="{ 'rc-header-shield': latestReplicaSet && latestRevision && !inProgressDeployment }">
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.
da5310c
to
34ab3dd
Compare
@sg00dwin I see you pushed some updates. Ready for another review? |
34ab3dd
to
5e7583e
Compare
@spadgett Yes please review. I enabled the truncation of service names. To get that to work, required some changes to Additionally |
app/views/overview/_service.html
Outdated
<ng-include src="'views/overview/_service-header.html'"></ng-include> | ||
<div class="empty-tile"> | ||
<h2>No deployments or pods.</h2> | ||
<p> | ||
Service | ||
<a ng-href="{{service | navigateResourceURL}}">{{service.metadata.name}}</a> | ||
<div class="word-break-all">Service <a ng-href="{{service | navigateResourceURL}}">{{service.metadata.name}}</a></div> |
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.
Isn't this going to add a line break in the middle of a sentence?
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.
yep, these will be fixed.
@@ -71,12 +71,10 @@ <h3 class="route-title truncate"> | |||
<div class="no-child-services-message"> | |||
<div class="empty-tile"> | |||
<h2>No grouped services.</h2> | |||
<p> | |||
No services are grouped with <a ng-href="{{service | navigateResourceURL}}">{{service.metadata.name}}</a>. | |||
No services are grouped with <div class="word-break-all"><a ng-href="{{service | navigateResourceURL}}">{{service.metadata.name}}</a>.</div> |
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.
Isn't this going to add a line break in the middle of a sentence?
app/views/overview/_dc.html
Outdated
@@ -43,8 +43,8 @@ | |||
A new deployment will start automatically when | |||
<span ng-if="imageChangeTriggers.length === 1"> | |||
an image is available for | |||
<a ng-href="{{urlForImageChangeTrigger(imageChangeTriggers[0], deploymentConfig)}}"> | |||
{{imageChangeTriggers[0].imageChangeParams.from | imageObjectRef : deploymentConfig.metadata.namespace}}</a>. | |||
<div class="truncate mar-bottom-xl"><a ng-href="{{urlForImageChangeTrigger(imageChangeTriggers[0], deploymentConfig)}}"> |
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.
Isn't this going to add a line break in the middle of a sentence?
eaabe8b
to
e585998
Compare
@spadgett PTAL |
I'm looking further to see if we can incorporate hyphens with our |
e585998
to
6e39565
Compare
@spadgett I have |
6e39565
to
bfda9c4
Compare
#1205 is a related bug that can also be fixed in this PR. |
@sg00dwin Approved, but needs rebase |
bfda9c4
to
c8905b9
Compare
@spadgett this is now rebased |
…ve started. And add word-break to empty-dc and empty-rc Fixes openshift#1175
c8905b9
to
901d64f
Compare
@spadgett removed vendor.js |
[merge] |
Evaluated for origin web console merge up to 901d64f |
Origin Web Console Merge Results: SUCCESS (https://ci.openshift.redhat.com/jenkins/job/test_pull_requests_origin_web_console/1112/) (Base Commit: cdb8a24) |
Include ng-class to selectively apply margin-right for tiles that have rc shield & number
Tested in FF, Chrome, Safari, IE
Fixes #1175