Skip to content

Commit 8600634

Browse files
committed
CSS Autoprefixer run on style.css
1 parent b1f37ab commit 8600634

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

static/css/style.css

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.26, autoprefixer: v9.7.3) */
2+
13
html {
24
height: 100%;
35
scroll-behavior: smooth;
@@ -21,6 +23,8 @@ html {
2123

2224
/* Nav-item hover */
2325
.nav-item:hover {
26+
-webkit-transition: all 0.2s ease-in-out;
27+
-o-transition: all 0.2s ease-in-out;
2428
transition: all 0.2s ease-in-out;
2529
}
2630

@@ -49,6 +53,11 @@ main {
4953
margin-top: 66px;
5054
}
5155

56+
/* Messages Row Alert */
57+
.messages-row .col .alert {
58+
margin-bottom: 0;
59+
}
60+
5261
/* Index page section headings */
5362
h4 {
5463
color: #0052cc;
@@ -65,6 +74,10 @@ h4 {
6574
color: #0093e9;
6675
}
6776

77+
#account-profile-thumbnail {
78+
width: 38px;
79+
}
80+
6881
/* Container max widths */
6982
.tickets-container {
7083
max-width: 1564px;
@@ -190,7 +203,7 @@ g .row {
190203

191204
/* Dashboard Filtered Count */
192205
#filtered-count {
193-
font-size: 16px;
206+
font-size: 17px;
194207
}
195208

196209
.clickable-row:hover {
@@ -293,6 +306,14 @@ footer {
293306

294307
/* Used for Navbar colour gradient */
295308
.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%);
296317
background-image: linear-gradient(to top, #30cfd0 0%, #330867 100%);
297318
background-color: #0093e9;
298319
}
@@ -323,6 +344,7 @@ footer {
323344
#ticket-search-boxes th input {
324345
width: 100%;
325346
padding: 0px;
347+
-webkit-box-sizing: border-box;
326348
box-sizing: border-box;
327349
}
328350

@@ -371,6 +393,8 @@ footer {
371393
@media (max-width: 568px) {
372394
.pagination {
373395
margin-top: 20px !important;
396+
-webkit-box-pack: center !important;
397+
-ms-flex-pack: center !important;
374398
justify-content: center !important;
375399
}
376400
.table-md td,

0 commit comments

Comments
 (0)