mirror of
https://github.com/mue/mue.git
synced 2026-07-09 21:45:26 +02:00
better firefox dropdown
This commit is contained in:
@@ -14,16 +14,16 @@
|
||||
"@eartharoid/dtf": "^1.0.8",
|
||||
"@fontsource/lexend-deca": "^4.2.2",
|
||||
"@fontsource/roboto": "^4.2.1",
|
||||
"@material-ui/core": "4.11.2",
|
||||
"@material-ui/core": "4.11.3",
|
||||
"@material-ui/icons": "4.11.2",
|
||||
"deepmerge": "^4.2.2",
|
||||
"react": "17.0.1",
|
||||
"react-clock": "^3.0.0",
|
||||
"react-color-gradient-picker": "^0.1.2",
|
||||
"react-date-picker": "^8.0.6",
|
||||
"react-date-picker": "^8.0.7",
|
||||
"react-dom": "17.0.1",
|
||||
"react-modal": "3.12.1",
|
||||
"react-toastify": "6.2.0"
|
||||
"react-toastify": "7.0.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.12.10",
|
||||
|
||||
@@ -69,6 +69,7 @@ export default class MarketplaceFunctions {
|
||||
}
|
||||
|
||||
let installed = JSON.parse(localStorage.getItem('installed'));
|
||||
|
||||
if (sideload) {
|
||||
installed.push({
|
||||
content: {
|
||||
@@ -76,7 +77,10 @@ export default class MarketplaceFunctions {
|
||||
data: input
|
||||
}
|
||||
});
|
||||
} else installed.push(input);
|
||||
} else {
|
||||
installed.push(input);
|
||||
}
|
||||
|
||||
localStorage.setItem('installed', JSON.stringify(installed));
|
||||
}
|
||||
}
|
||||
@@ -14,3 +14,12 @@
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
|
||||
// firefox dropdown
|
||||
@supports (-moz-appearance:none) {
|
||||
select {
|
||||
-moz-appearance: none !important;
|
||||
background: url('data:image/gif;base64,R0lGODlhBgAGAKEDAFVVVX9/f9TU1CgmNyH5BAEKAAMALAAAAAAGAAYAAAIODA4hCDKWxlhNvmCnGwUAOw==') right center no-repeat, linear-gradient(180deg, #ffb032 0%, #dd3b67 100%) !important;
|
||||
background-position: calc(100% - 5px) center !important;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user