able to change zoom
This commit is contained in:
@@ -4,20 +4,6 @@
|
|||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
html {
|
|
||||||
font-size: 93.75%;
|
|
||||||
}
|
|
||||||
|
|
||||||
:root {
|
|
||||||
--vh: 1vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
@screen lg {
|
|
||||||
html {
|
|
||||||
font-size: 87.5%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
html,
|
html,
|
||||||
body {
|
body {
|
||||||
@apply h-full bg-neutral-50 text-neutral-800 dark:bg-base dark:text-neutral-400 w-full;
|
@apply h-full bg-neutral-50 text-neutral-800 dark:bg-base dark:text-neutral-400 w-full;
|
||||||
@@ -336,4 +322,4 @@ section {
|
|||||||
|
|
||||||
.dz-button {
|
.dz-button {
|
||||||
@apply w-full p-4 py-10 my-4 font-bold bg-white border dark:border-coolgray-400 dark:text-white dark:bg-transparent hover:dark:bg-coolgray-400;
|
@apply w-full p-4 py-10 my-4 font-bold bg-white border dark:border-coolgray-400 dark:text-white dark:bg-transparent hover:dark:bg-coolgray-400;
|
||||||
}
|
}
|
||||||
@@ -7,8 +7,13 @@
|
|||||||
}
|
}
|
||||||
window.location.reload();
|
window.location.reload();
|
||||||
},
|
},
|
||||||
|
setZoom(zoom) {
|
||||||
|
localStorage.setItem('zoom', zoom);
|
||||||
|
window.location.reload();
|
||||||
|
},
|
||||||
init() {
|
init() {
|
||||||
this.full = localStorage.getItem('pageWidth');
|
this.full = localStorage.getItem('pageWidth');
|
||||||
|
this.zoom = localStorage.getItem('zoom');
|
||||||
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', e => {
|
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', e => {
|
||||||
const userSettings = localStorage.getItem('theme');
|
const userSettings = localStorage.getItem('theme');
|
||||||
if (userSettings !== 'system') {
|
if (userSettings !== 'system') {
|
||||||
@@ -21,6 +26,7 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
this.queryTheme();
|
this.queryTheme();
|
||||||
|
this.checkZoom();
|
||||||
},
|
},
|
||||||
setTheme(type) {
|
setTheme(type) {
|
||||||
this.theme = type;
|
this.theme = type;
|
||||||
@@ -44,6 +50,30 @@
|
|||||||
this.theme = 'system';
|
this.theme = 'system';
|
||||||
document.documentElement.classList.remove('dark');
|
document.documentElement.classList.remove('dark');
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
checkZoom() {
|
||||||
|
if (this.zoom === null) {
|
||||||
|
this.setZoom(100);
|
||||||
|
}
|
||||||
|
if (this.zoom === '90') {
|
||||||
|
const style = document.createElement('style');
|
||||||
|
style.textContent = `
|
||||||
|
html {
|
||||||
|
font-size: 93.75%;
|
||||||
|
}
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--vh: 1vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1024px) {
|
||||||
|
html {
|
||||||
|
font-size: 87.5%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
document.head.appendChild(style);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}">
|
}">
|
||||||
<div class="flex pt-6 pb-4 pl-2">
|
<div class="flex pt-6 pb-4 pl-2">
|
||||||
@@ -69,7 +99,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</x-slot:title>
|
</x-slot:title>
|
||||||
<div class="flex flex-col gap-1">
|
<div class="flex flex-col gap-1">
|
||||||
<div class="mb-1 font-bold border-b dark:border-coolgray-500 dark:text-white text-md">Color</div>
|
<div class="font-bold border-b dark:border-coolgray-500 dark:text-white text-md">Color</div>
|
||||||
<button @click="setTheme('dark')" class="px-1 dropdown-item-no-padding">Dark</button>
|
<button @click="setTheme('dark')" class="px-1 dropdown-item-no-padding">Dark</button>
|
||||||
<button @click="setTheme('light')" class="px-1 dropdown-item-no-padding">Light</button>
|
<button @click="setTheme('light')" class="px-1 dropdown-item-no-padding">Light</button>
|
||||||
<button @click="setTheme('system')" class="px-1 dropdown-item-no-padding">System</button>
|
<button @click="setTheme('system')" class="px-1 dropdown-item-no-padding">System</button>
|
||||||
@@ -78,6 +108,9 @@
|
|||||||
x-show="full === 'full'">Center</button>
|
x-show="full === 'full'">Center</button>
|
||||||
<button @click="switchWidth()" class="px-1 dropdown-item-no-padding"
|
<button @click="switchWidth()" class="px-1 dropdown-item-no-padding"
|
||||||
x-show="full === 'center'">Full</button>
|
x-show="full === 'center'">Full</button>
|
||||||
|
<div class="my-1 font-bold border-b dark:border-coolgray-500 dark:text-white text-md">Zoom</div>
|
||||||
|
<button @click="setZoom(100)" class="px-1 dropdown-item-no-padding">100%</button>
|
||||||
|
<button @click="setZoom(90)" class="px-1 dropdown-item-no-padding">90%</button>
|
||||||
</div>
|
</div>
|
||||||
</x-dropdown>
|
</x-dropdown>
|
||||||
</div>
|
</div>
|
||||||
@@ -163,8 +196,8 @@
|
|||||||
class="{{ request()->is('storages*') ? 'menu-item-active menu-item' : 'menu-item' }}"
|
class="{{ request()->is('storages*') ? 'menu-item-active menu-item' : 'menu-item' }}"
|
||||||
href="{{ route('storage.index') }}">
|
href="{{ route('storage.index') }}">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon" viewBox="0 0 24 24">
|
<svg xmlns="http://www.w3.org/2000/svg" class="icon" viewBox="0 0 24 24">
|
||||||
<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
|
<g fill="none" stroke="currentColor" stroke-linecap="round"
|
||||||
stroke-width="2">
|
stroke-linejoin="round" stroke-width="2">
|
||||||
<path d="M4 6a8 3 0 1 0 16 0A8 3 0 1 0 4 6" />
|
<path d="M4 6a8 3 0 1 0 16 0A8 3 0 1 0 4 6" />
|
||||||
<path d="M4 6v6a8 3 0 0 0 16 0V6" />
|
<path d="M4 6v6a8 3 0 0 0 16 0V6" />
|
||||||
<path d="M4 12v6a8 3 0 0 0 16 0v-6" />
|
<path d="M4 12v6a8 3 0 0 0 16 0v-6" />
|
||||||
|
|||||||
Reference in New Issue
Block a user