Skip to content

Commit 38eb4eb

Browse files
author
OpenShift Bot
authored
Merge pull request #1997 from sg00dwin/notifications
Merged by openshift-bot
2 parents 73c7420 + 15e836f commit 38eb4eb

File tree

7 files changed

+92
-41
lines changed

7 files changed

+92
-41
lines changed

app/styles/_navbar-vertical.less

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@
5959
.badge {
6060
margin: 0 !important;
6161
position: absolute;
62-
top: 9px;
6362
right: 13px;
63+
top: 9px;
6464
@media(min-width: @screen-sm-min) {
6565
top: 20px;
6666
}

app/styles/_notifications.less

+54-8
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@
55
notification-drawer-wrapper {
66
.drawer-pf {
77
height: calc(100vh ~"-" (@navbar-os-header-height-mobile + @project-bar-height-mobile));
8+
opacity: 1;
89
position: fixed;
10+
right: 0;
911
top: (@navbar-os-header-height-mobile + @project-bar-height-mobile);
12+
transition: top 150ms ease-in-out, opacity 150ms;
1013
z-index: @zindex-navbar-fixed - 2; // two less than navbar, one less than project-bar
1114
@media(max-width: 350px) {
1215
left: 0;
@@ -22,6 +25,14 @@ notification-drawer-wrapper {
2225
left: 270px;
2326
}
2427
}
28+
&.hide {
29+
opacity: 0;
30+
top: 38px;
31+
}
32+
&.hide-add,
33+
&.hide-remove {
34+
display: block !important;
35+
}
2536
.tech-preview & {
2637
height: calc(100vh ~"-" (@navbar-os-header-height-mobile + @project-bar-height-mobile + @tech-preview-banner-height));
2738
top: (@navbar-os-header-height-mobile + @project-bar-height-mobile + @tech-preview-banner-height);
@@ -48,34 +59,69 @@ notification-drawer-wrapper {
4859
}
4960
}
5061
}
62+
.drawer-pf-notification-info {
63+
font-size: @font-size-small;
64+
}
5165
.drawer-pf-notification-inner {
5266
padding: 15px;
5367
.pficon-close {
54-
color: @color-pf-black;
68+
color: @color-pf-black-400;
69+
&:hover,&:focus,&:active {
70+
color: @color-pf-black-700;
71+
}
5572
}
5673
}
57-
.expanded-notification .drawer-pf-notification-message {
58-
max-width: 35%; // keeps flex in check in case of a really long message
74+
.drawer-pf-title h3 {
75+
font-size: @font-size-base - 1;
76+
}
77+
.expanded-notification {
78+
.drawer-pf-notification-info {
79+
.text-muted;
80+
}
81+
.drawer-pf-notification-message-expanded {
82+
font-size: @font-size-base - 1;
83+
padding: 10px 10px 10px 42px;
84+
.text-muted;
85+
}
86+
&.unread {
87+
.drawer-pf-notification-info {
88+
color: inherit;
89+
}
90+
.drawer-pf-notification-message-expanded {
91+
color: inherit;
92+
font-weight: normal;
93+
.word-break();
94+
}
95+
}
5996
}
6097
}
6198

6299
.panel-heading {
63100
.panel-title {
101+
color: @color-pf-black-700;
102+
font-size: @font-size-h4;
103+
font-weight: bold;
104+
line-height: normal;
64105
// TODO: hack to eliminate side-to-side wobble
65106
// There is a hard-coded <h4> that wraps the header:
66107
// - https://github.com/patternfly/angular-patternfly/issues/539
67108
// I'm putting quite a bit of markup inside the header,
68109
// need to tinker to eliminate this rule.
69-
overflow: hidden;
110+
overflow:hidden;
70111
.container-fluid {
71112
margin-left: 0;
72113
margin-right: 0;
73114
padding-left: 0;
74115
padding-right: 0;
75116
}
76-
}
77-
.small {
78-
.small();
79-
color: @color-pf-black;
117+
.panel-counter {
118+
font-size: @font-size-small;
119+
font-weight: normal;
120+
padding: 0;
121+
a {
122+
display: inline-block;
123+
font-style: normal;
124+
}
125+
}
80126
}
81127
}
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
<div class="container-fluid">
2-
<div class="row">
2+
<div class="truncate">
3+
{{notificationGroup.heading}}
4+
</div>
5+
<div class="row mar-top-md panel-counter">
36
<div class="col-xs-6">
4-
<strong>{{notificationGroup.heading}}</strong>
7+
{{notificationGroup.totalUnread}} Unread
58
</div>
6-
<div class="col-xs-6 text-right small">
9+
<div class="col-xs-6 text-right">
710
<a
811
title="All Events"
912
ng-href="project/{{$ctrl.customScope.projectName}}/browse/events"
@@ -12,9 +15,4 @@
1215
</a>
1316
</div>
1417
</div>
15-
<div class="row mar-top-md">
16-
<div class="col-xs-12">
17-
<em>{{notificationGroup.totalUnread}} Unread</em>
18-
</div>
19-
</div>
2018
</div>

app/views/directives/notifications/notification-body.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@
7878
</div>
7979
</div>
8080

81-
<span ng-if="$ctrl.drawerExpanded" class="drawer-pf-notification-message text-muted small word-break">
82-
{{notification.event.message}}
83-
</span>
8481
<div class="drawer-pf-notification-info">
8582
<span class="date">{{notification.event.lastTimestamp | date:'shortDate'}}</span>
8683
<span class="time">{{notification.event.lastTimestamp | date:'mediumTime'}}</span>
8784
</div>
8885
</div>
86+
<div ng-if="$ctrl.drawerExpanded" class="drawer-pf-notification-message drawer-pf-notification-message-expanded">
87+
{{notification.event.message}}
88+
</div>
8989
</div>

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"uri.js": "1.18.12",
1919
"moment": "2.14.2",
2020
"moment-timezone": "0.5.3",
21-
"patternfly": "3.26.6",
21+
"patternfly": "3.27.1",
2222
"hawtio-core": "2.0.37",
2323
"hawtio-extension-service": "2.0.2",
2424
"jquery": "3.2.1",

dist/scripts/templates.js

+9-11
Original file line numberDiff line numberDiff line change
@@ -7457,21 +7457,19 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
74577457

74587458
$templateCache.put('views/directives/notifications/header.html',
74597459
"<div class=\"container-fluid\">\n" +
7460-
"<div class=\"row\">\n" +
7460+
"<div class=\"truncate\">\n" +
7461+
"{{notificationGroup.heading}}\n" +
7462+
"</div>\n" +
7463+
"<div class=\"row mar-top-md panel-counter\">\n" +
74617464
"<div class=\"col-xs-6\">\n" +
7462-
"<strong>{{notificationGroup.heading}}</strong>\n" +
7465+
"{{notificationGroup.totalUnread}} Unread\n" +
74637466
"</div>\n" +
7464-
"<div class=\"col-xs-6 text-right small\">\n" +
7467+
"<div class=\"col-xs-6 text-right\">\n" +
74657468
"<a title=\"All Events\" ng-href=\"project/{{$ctrl.customScope.projectName}}/browse/events\" ng-click=\"$ctrl.customScope.close()\">\n" +
74667469
"View All Events\n" +
74677470
"</a>\n" +
74687471
"</div>\n" +
74697472
"</div>\n" +
7470-
"<div class=\"row mar-top-md\">\n" +
7471-
"<div class=\"col-xs-12\">\n" +
7472-
"<em>{{notificationGroup.totalUnread}} Unread</em>\n" +
7473-
"</div>\n" +
7474-
"</div>\n" +
74757473
"</div>"
74767474
);
74777475

@@ -7514,14 +7512,14 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
75147512
"<duration-until-now timestamp=\"notification.event.firstTimestamp\" omit-single=\"true\" precision=\"1\"></duration-until-now>\n" +
75157513
"</div>\n" +
75167514
"</div>\n" +
7517-
"<span ng-if=\"$ctrl.drawerExpanded\" class=\"drawer-pf-notification-message text-muted small word-break\">\n" +
7518-
"{{notification.event.message}}\n" +
7519-
"</span>\n" +
75207515
"<div class=\"drawer-pf-notification-info\">\n" +
75217516
"<span class=\"date\">{{notification.event.lastTimestamp | date:'shortDate'}}</span>\n" +
75227517
"<span class=\"time\">{{notification.event.lastTimestamp | date:'mediumTime'}}</span>\n" +
75237518
"</div>\n" +
75247519
"</div>\n" +
7520+
"<div ng-if=\"$ctrl.drawerExpanded\" class=\"drawer-pf-notification-message drawer-pf-notification-message-expanded\">\n" +
7521+
"{{notification.event.message}}\n" +
7522+
"</div>\n" +
75257523
"</div>"
75267524
);
75277525

dist/styles/main.css

+18-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)