Merge branch 'feat/safari-fixes' into 'live'
fixes for safari browser See merge request !55
This commit is contained in:
commit
855f618aa1
@ -24,6 +24,7 @@
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
|||||||
@ -59,6 +59,7 @@
|
|||||||
resetFileLabel();
|
resetFileLabel();
|
||||||
input.classList.add('file-input__input--hidden');
|
input.classList.add('file-input__input--hidden');
|
||||||
input.addEventListener('change', function() {
|
input.addEventListener('change', function() {
|
||||||
|
input.dispatchEvent(new Event('input'));
|
||||||
if (isMulti) {
|
if (isMulti) {
|
||||||
renderFileList(input.files);
|
renderFileList(input.files);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -56,7 +56,6 @@
|
|||||||
min-width: 70px;
|
min-width: 70px;
|
||||||
height: calc(100% - 4px);
|
height: calc(100% - 4px);
|
||||||
padding: 0 6px 4px;
|
padding: 0 6px 4px;
|
||||||
box-shadow: 0 0 0 1px inset var(--color-lmu-box-border);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
@ -70,7 +69,14 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: calc(100% - 4px);
|
height: calc(100% - 4px);
|
||||||
padding: 0 6px 4px;
|
padding: 0 6px 4px;
|
||||||
box-shadow: 0 0 0 1px inset var(--color-lmu-box-border);
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 769px) {
|
||||||
|
|
||||||
|
.navbar__logo::before,
|
||||||
|
.navbar__logo::after {
|
||||||
|
border: 1px solid var(--color-lmu-box-border);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -114,7 +120,10 @@
|
|||||||
min-width: 90px;
|
min-width: 90px;
|
||||||
color: var(--color-lightwhite);
|
color: var(--color-lightwhite);
|
||||||
transition: height .2s cubic-bezier(0.03, 0.43, 0.58, 1);
|
transition: height .2s cubic-bezier(0.03, 0.43, 0.58, 1);
|
||||||
box-shadow: 0 0 0 1px inset var(--color-lmu-box-border);
|
|
||||||
|
&:hover {
|
||||||
|
color: var(--color-lightwhite);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar__link-label {
|
.navbar__link-label {
|
||||||
@ -123,6 +132,13 @@
|
|||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (min-width: 769px) {
|
||||||
|
|
||||||
|
.navbar__link-wrapper {
|
||||||
|
border: 1px solid var(--color-lmu-box-border);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
|
|
||||||
.navbar__link-wrapper {
|
.navbar__link-wrapper {
|
||||||
@ -241,7 +257,15 @@
|
|||||||
|
|
||||||
.navbar__link-wrapper {
|
.navbar__link-wrapper {
|
||||||
color: var(--color-grey);
|
color: var(--color-grey);
|
||||||
box-shadow: 0 0 0 1px inset var(--color-grey);
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 769px) {
|
||||||
|
|
||||||
|
.navbar__list-item--secondary {
|
||||||
|
.navbar__link-wrapper {
|
||||||
|
border: 1px solid var(--color-grey);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user