blob: ee5f9e4dfe70d4873bf1bbb4b3b9ae2aa1bf6fa2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
.w-ecomp-user-notification-admin{
.bg_portalWhite;//white for 1702
//.bg_portalGray; // gray for 1610
position: @page-main-position;
top: @page-main-top;
left: @page-main-left;
right: @page-main-right;
bottom: @page-main-bottom;
padding-top: @padding-top;
overflow-y: @page-main-overflow-y;
padding-left: @padding-left-side;
.tab-bottom {
bottom: 0;
}
.tablesorter-default .tablesorter-header .tablesorter-header-inner {
//background-image: url(images/upanddown.png);
background-position: center right;
background-repeat: no-repeat;
cursor: pointer;
white-space: normal;
display: inline-block;
vertical-align: baseline;
zoom: 1;
padding: -1px 50px;
}
p {
display: inline;
}
.userNotifTable {
width: @table-width;
//margin-left: @table-margin-left;
//margin: @table-margin;
margin:auto;
.delete-app{
.ico_trash_default;
}
}
.user-notification-container {
.content_justify;
position: relative;
padding: 15px 0 32px 0;
width: 100%;
.user-notification-list {
min-height: 70vh;
//display: flex;
justify-content: center;
flex-flow: row wrap;
width: @table-width;
margin: auto;
margin-bottom: 63px;
.app-gridster-header {
background-color: @portalWhite;
}
.app-gridster-footer {
background-color: @portalWhite;
}
.user-notification-list-item {
background-color: @portalWhite;
border-radius: 2px;
box-shadow: 0px -1px 2px 0px rgba(0, 0, 0, 0.1);
display: inline-block;
width: 360px;
height: 300px;
background-size: cover;
cursor: pointer;
margin: 15px;
overflow: hidden;
.notification-item-info {
background-color: @portalWhite;
height: 120px;
top: 180px;
position: relative;
box-shadow: 0px -1px 2px 0px rgba(0, 0, 0, 0.1);
padding: 50px;
.info-title {
//.a24r;
.dBlue24r; // AT&T Dark Blue
margin-bottom: 4px;
text-overflow: ellipsis;
overflow: hidden;
}
.info-description {
.portalDBlue16r; // omnes 16 regular
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.info-button {
.btn-green;
width: 96px;
position: absolute;
bottom: 16px;
left: 16px;
}
&:hover {
opacity: .93;
z-index: 3;
}
}
}
}
}
.go-button {
.btn-green;
width: 96px;
position: absolute;
border-radius: 0px;
}
.user-notification-add-button {
width: 160px;
margin-bottom: 11px;
}
}
|