-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathcard-view.component.css
More file actions
188 lines (160 loc) · 3.73 KB
/
card-view.component.css
File metadata and controls
188 lines (160 loc) · 3.73 KB
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
* {
box-sizing: border-box;
}
.card-column {
padding: 8px;
/* height: 77vh; */
display: flex;
flex-direction: column;
height: 100%;
}
.card {
margin: 8px 0px 8px 0px;
}
.mat-card-title {
display: flex;
align-items: center;
font-size: 12px;
text-align: center;
overflow: auto;
word-break: break-word;
}
.column-header .mat-card-title {
font-size: 14px;
}
.mat-card {
padding: 10px;
}
.count-margins {
margin-right: 4px;
}
:host ::ng-deep div.mat-card-header-text {
margin: 2px;
}
div.column-header .mat-card-title {
justify-content: center;
margin: 0;
}
div.column-header {
justify-content: center;
position: relative;
z-index: 5;
}
div.column-header .mat-card-header {
display: flex;
align-items: center;
/* justify-content: center; */
}
.scrollable-container {
margin-bottom: 2px;
position: relative;
}
/* Ref: https://lea.verou.me/blog/2012/04/background-attachment-local/ */
.scroll-shadow {
background:
/* Shadow covers */ linear-gradient(white 30%, rgba(255, 255, 255, 0)),
linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%,
/* Shadows */ radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)),
radial-gradient(50% 100%, farthest-side, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) 0 100%;
background:
/* Shadow covers */ linear-gradient(white 30%, rgba(255, 255, 255, 0)),
linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%,
/* Shadows */ radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0)),
radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0)) 0 100%;
background-repeat: no-repeat;
background-color: white;
background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
/* Opera doesn't support this in the shorthand */
background-attachment: local, local, scroll, scroll;
}
.scrollable-container::before {
pointer-events: none;
content: '';
position: absolute;
z-index: 2;
height: 6px;
width: 100%;
display: block;
background-image: linear-gradient(to bottom, white 66%, transparent);
}
.scrollable-container::after {
pointer-events: none;
content: '';
position: sticky;
z-index: 2;
top: 100%;
height: 6px;
width: 100%;
display: block;
background-image: linear-gradient(to top, white 66%, transparent);
}
.scrollable-container-wrapper {
position: relative;
scrollbar-width: none;
overflow: auto;
flex-grow: 1;
}
.scrollable-container-wrapper::-webkit-scrollbar {
display: none;
}
.loading-spinner {
display: flex;
justify-content: center;
align-items: center;
}
.mat-card-subtitle {
display: flex;
align-items: center;
font-size: 11px;
text-align: left;
overflow: auto;
margin: 6px 0;
}
.pr-row-count {
background-color: rgb(222, 222, 222);
border-radius: 3px;
cursor: default;
padding: 6px 8px 3px 8px;
color: rgb(0, 0, 0);
font-weight: 410;
display: inline-flex;
font-size: 14px;
flex-shrink: 0;
margin-top: 3px;
}
.issue-row-count {
background-color: #f2e9ff;
border-radius: 3px;
cursor: default;
padding: 6px 8px 3px 8px;
color: rgb(0, 0, 0);
font-weight: 410;
display: inline-flex;
font-size: 14px;
flex-shrink: 0;
margin-top: 3px;
}
.assignee-container {
width: 100%;
text-align: left;
padding-left: 10px;
}
.milestone-container {
width: 100%;
}
.assignee-name {
text-overflow: ellipsis;
width: 80%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
:host ::ng-deep .pagination-hide-arrow .mat-paginator-navigation-previous {
display: none !important;
}
:host ::ng-deep .pagination-hide-arrow .mat-paginator-navigation-next {
display: none !important;
}
:host ::ng-deep .pagination-hide-arrow .mat-paginator-range-actions {
display: none !important;
}