|
| 1 | +/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.26, autoprefixer: v9.7.3) */ |
| 2 | + |
1 | 3 | html {
|
2 | 4 | height: 100%;
|
3 | 5 | scroll-behavior: smooth;
|
|
21 | 23 |
|
22 | 24 | /* Nav-item hover */
|
23 | 25 | .nav-item:hover {
|
| 26 | + -webkit-transition: all 0.2s ease-in-out; |
| 27 | + -o-transition: all 0.2s ease-in-out; |
24 | 28 | transition: all 0.2s ease-in-out;
|
25 | 29 | }
|
26 | 30 |
|
@@ -49,6 +53,11 @@ main {
|
49 | 53 | margin-top: 66px;
|
50 | 54 | }
|
51 | 55 |
|
| 56 | +/* Messages Row Alert */ |
| 57 | +.messages-row .col .alert { |
| 58 | + margin-bottom: 0; |
| 59 | +} |
| 60 | + |
52 | 61 | /* Index page section headings */
|
53 | 62 | h4 {
|
54 | 63 | color: #0052cc;
|
|
65 | 74 | color: #0093e9;
|
66 | 75 | }
|
67 | 76 |
|
| 77 | +#account-profile-thumbnail { |
| 78 | + width: 38px; |
| 79 | +} |
| 80 | + |
68 | 81 | /* Container max widths */
|
69 | 82 | .tickets-container {
|
70 | 83 | max-width: 1564px;
|
@@ -190,7 +203,7 @@ g .row {
|
190 | 203 |
|
191 | 204 | /* Dashboard Filtered Count */
|
192 | 205 | #filtered-count {
|
193 |
| - font-size: 16px; |
| 206 | + font-size: 17px; |
194 | 207 | }
|
195 | 208 |
|
196 | 209 | .clickable-row:hover {
|
@@ -293,6 +306,14 @@ footer {
|
293 | 306 |
|
294 | 307 | /* Used for Navbar colour gradient */
|
295 | 308 | .bg-royal-blue {
|
| 309 | + background-image: -webkit-gradient( |
| 310 | + linear, |
| 311 | + left bottom, |
| 312 | + left top, |
| 313 | + from(#30cfd0), |
| 314 | + to(#330867) |
| 315 | + ); |
| 316 | + background-image: -o-linear-gradient(bottom, #30cfd0 0%, #330867 100%); |
296 | 317 | background-image: linear-gradient(to top, #30cfd0 0%, #330867 100%);
|
297 | 318 | background-color: #0093e9;
|
298 | 319 | }
|
@@ -323,6 +344,7 @@ footer {
|
323 | 344 | #ticket-search-boxes th input {
|
324 | 345 | width: 100%;
|
325 | 346 | padding: 0px;
|
| 347 | + -webkit-box-sizing: border-box; |
326 | 348 | box-sizing: border-box;
|
327 | 349 | }
|
328 | 350 |
|
@@ -371,6 +393,8 @@ footer {
|
371 | 393 | @media (max-width: 568px) {
|
372 | 394 | .pagination {
|
373 | 395 | margin-top: 20px !important;
|
| 396 | + -webkit-box-pack: center !important; |
| 397 | + -ms-flex-pack: center !important; |
374 | 398 | justify-content: center !important;
|
375 | 399 | }
|
376 | 400 | .table-md td,
|
|
0 commit comments