Skip to content

Commit 3355713

Browse files
author
OpenShift Bot
authored
Merge pull request #1827 from sg00dwin/pf-list-overview-issues
Merged by openshift-bot
2 parents c607b86 + eb83b0b commit 3355713

File tree

4 files changed

+27
-12
lines changed

4 files changed

+27
-12
lines changed

app/styles/_overview.less

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,11 @@
2323
}
2424
}
2525
.builds-label {
26+
display: inline-block;
2627
margin-right: 5px;
28+
@media (max-width: @screen-sm-max) {
29+
margin-top: 5px;
30+
}
2731
}
2832
.mini-donut-link {
2933
color: @gray-darker;
@@ -61,7 +65,10 @@
6165
}
6266
.notification-icon-count {
6367
display: inline-block;
64-
margin: 0 5px 0 0;
68+
margin: 5px 5px 0 0;
69+
@media (min-width: @screen-md-min) {
70+
margin-top: 0;
71+
}
6572
[data-toggle="tooltip"] {
6673
cursor: help;
6774
}
@@ -234,6 +241,12 @@
234241
@media (min-width: @screen-sm-min) {
235242
justify-content: flex-end;
236243
}
244+
@media(max-width: @screen-xs-max) {
245+
&.deployment-in-progress-msg {
246+
margin-top: 5px;
247+
width: 100%;
248+
}
249+
}
237250
}
238251
.list-pf-expansion.in {
239252
.deployment-donut > div[row] {
@@ -434,11 +447,9 @@
434447
}
435448
}
436449
}
437-
.status-icons {
438-
margin-top: 5px;
439-
@media (min-width: @screen-md-min) {
450+
@media (min-width: @screen-md-min) {
451+
.status-icons {
440452
margin-right: 15px;
441-
margin-top: 0;
442453
width: 40%;
443454
}
444455
}

app/views/overview/_list-row-content.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ <h3>
3535
No deployments for <a ng-href="{{row.apiObject | navigateResourceURL}}">{{row.apiObject.metadata.name}}</a>
3636
</span>
3737
</div>
38-
<div ng-if="row.isDeploymentInProgress()" class="list-pf-details">
38+
<div ng-if="row.isDeploymentInProgress()" class="list-pf-details deployment-in-progress-msg">
3939
<div ng-if="row.apiObject.kind === 'DeploymentConfig'">
4040
<span class="mar-right-sm">
4141
<span class="hidden-xs">

dist/scripts/templates.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11834,7 +11834,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
1183411834
"No deployments for <a ng-href=\"{{row.apiObject | navigateResourceURL}}\">{{row.apiObject.metadata.name}}</a>\n" +
1183511835
"</span>\n" +
1183611836
"</div>\n" +
11837-
"<div ng-if=\"row.isDeploymentInProgress()\" class=\"list-pf-details\">\n" +
11837+
"<div ng-if=\"row.isDeploymentInProgress()\" class=\"list-pf-details deployment-in-progress-msg\">\n" +
1183811838
"<div ng-if=\"row.apiObject.kind === 'DeploymentConfig'\">\n" +
1183911839
"<span class=\"mar-right-sm\">\n" +
1184011840
"<span class=\"hidden-xs\">\n" +

dist/styles/main.css

Lines changed: 9 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)