1
0
mirror of https://github.com/flarum/core.git synced 2025-08-13 11:54:32 +02:00

Compare commits

...

3 Commits

Author SHA1 Message Date
David Wheatley
7de9afdcb9 chore: remove moz vendor prefix 2021-12-24 13:51:32 +01:00
David Wheatley
140a6e4477 unformat 2021-12-24 13:49:06 +01:00
David Wheatley
ec0c233d15 chore: remove unneeded CSS vendor prefixes 2021-12-24 13:47:18 +01:00
8 changed files with 5 additions and 31 deletions

View File

@@ -50,7 +50,6 @@
color: var(--muted-color);
}
thead th {
position: -webkit-sticky;
position: sticky;
top: 0;
padding-bottom: 10px;
@@ -74,7 +73,6 @@
}
tbody {
th {
position: -webkit-sticky;
position: sticky;
left: 0;
padding-right: 50px;

View File

@@ -142,8 +142,7 @@
z-index: var(--zindex-modal);
.drawerOpen & {
-webkit-transform: none !important;
transform: none !important;
transform: none !important;
}
}
.drawer-backdrop {

View File

@@ -177,7 +177,6 @@
box-shadow: 0 2px 6px var(--shadow-color);
visibility: hidden;
overflow: auto;
-webkit-overflow-scrolling: touch;
transform: translate(0, 70vh);
transition: transform 0.3s, visibility 0s 0.3s;
@@ -208,8 +207,7 @@
}
}
.open& {
-webkit-transform: none;
transform: none;
transform: none;
visibility: visible;
transition-delay: 0s;
}

View File

@@ -33,7 +33,6 @@
bottom: 0;
left: 0;
z-index: var(--zindex-modal);
-webkit-overflow-scrolling: touch;
// When fading in the modal, animate it to slide down
.Modal {
@@ -143,8 +142,7 @@
transform: translate(0, 100vh);
&.in {
-webkit-transform: none !important;
transform: none !important;
transform: none !important;
}
&:before {
content: " ";
@@ -155,8 +153,7 @@
.Modal {
max-width: 100%;
margin: 0;
-webkit-transform: none !important;
transform: none !important;
transform: none !important;
}
.Modal-content {
border-radius: 0;
@@ -183,7 +180,6 @@
z-index: 1;
}
.Modal-content {
border: 0;
border-radius: var(--border-radius);
box-shadow: 0 7px 15px var(--shadow-color);

View File

@@ -6,7 +6,6 @@
display: inline-block;
width: auto;
-webkit-appearance: none;
-moz-appearance: none;
padding-right: 30px;
cursor: pointer;
line-height: 1;

View File

@@ -65,11 +65,7 @@
// CSS3 Content Columns
/** @deprecated */
.content-columns(@column-count; @column-gap: @grid-gutter-width) {
// Safari
-webkit-column-count: @column-count;
column-count: @column-count;
// Safari
-webkit-column-gap: @column-gap;
column-gap: @column-gap;
}
@@ -85,7 +81,6 @@
// Placeholder text
.placeholder(@color) {
// Safari
&::-webkit-input-placeholder,
&::placeholder {
color: @color;
}
@@ -176,7 +171,7 @@
// User select
// For selecting text on the page
.user-select(@select) {
// Safari + MS Edge
// Safari
-webkit-user-select: @select;
user-select: @select;
}

View File

@@ -80,7 +80,6 @@
padding: 15px 0;
white-space: nowrap;
overflow: auto;
-webkit-overflow-scrolling: touch;
&:after {
content: " ";

View File

@@ -107,25 +107,15 @@
}
.animated {
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
animation-delay: 1.7s;
-webkit-animation-delay: 1.7s;
}
@-webkit-keyframes fadeIn {
0% {opacity: 0}
100% {opacity: 1}
}
@keyframes fadeIn {
0% {opacity: 0}
100% {opacity: 1}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}