mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 13:23:07 +01:00
chore: cleans up css styles (#3849)
This commit is contained in:
@@ -203,7 +203,7 @@ function isVisible(field: keys) {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import "@/main.css" reference;
|
@reference "@/main.css";
|
||||||
|
|
||||||
[data-icon] {
|
[data-icon] {
|
||||||
display: none;
|
display: none;
|
||||||
|
|||||||
@@ -220,7 +220,7 @@ const toggleAllLevels = computed({
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import "@/main.css" reference;
|
@reference "@/main.css";
|
||||||
|
|
||||||
li.line {
|
li.line {
|
||||||
@apply bg-base-content/20 h-px;
|
@apply bg-base-content/20 h-px;
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ defineProps<{
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import "@/main.css" reference;
|
@reference "@/main.css";
|
||||||
[health="unhealthy"] {
|
[health="unhealthy"] {
|
||||||
@apply text-red;
|
@apply text-red;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -217,7 +217,7 @@ function matchedName({ item, matches = [] }: FuseResult<Item>) {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import "@/main.css" reference;
|
@reference "@/main.css";
|
||||||
:deep(mark) {
|
:deep(mark) {
|
||||||
@apply bg-transparent text-inherit underline underline-offset-2;
|
@apply bg-transparent text-inherit underline underline-offset-2;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ const showDrawer = useDrawer();
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import "@/main.css" reference;
|
@reference "@/main.css";
|
||||||
.text-light {
|
.text-light {
|
||||||
@apply text-base-content/70;
|
@apply text-base-content/70;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ const { logEntry } = defineProps<{
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import "@/main.css" reference;
|
@reference "@/main.css";
|
||||||
[data-event="container-stopped"] {
|
[data-event="container-stopped"] {
|
||||||
@apply text-red;
|
@apply text-red;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -166,7 +166,7 @@ function syntaxHighlight(json: any) {
|
|||||||
useSortable(list, fields);
|
useSortable(list, fields);
|
||||||
</script>
|
</script>
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import "@/main.css" reference;
|
@reference "@/main.css";
|
||||||
.font-mono {
|
.font-mono {
|
||||||
font-family:
|
font-family:
|
||||||
ui-monospace,
|
ui-monospace,
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ defineProps<{
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import "@/main.css" reference;
|
@reference "@/main.css";
|
||||||
[data-position="start"] {
|
[data-position="start"] {
|
||||||
border-radius: 0.5em 0.5em 0 0;
|
border-radius: 0.5em 0.5em 0 0;
|
||||||
height: 70%;
|
height: 70%;
|
||||||
@@ -35,7 +35,7 @@ defineProps<{
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<style>
|
<style>
|
||||||
@import "@/main.css" reference;
|
@reference "@/main.css";
|
||||||
[data-level="debug"],
|
[data-level="debug"],
|
||||||
[data-level="trace"] {
|
[data-level="trace"] {
|
||||||
@apply !bg-purple;
|
@apply !bg-purple;
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ useIntersectionObserver(
|
|||||||
);
|
);
|
||||||
</script>
|
</script>
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import "@/main.css" reference;
|
@reference "@/main.css";
|
||||||
.events {
|
.events {
|
||||||
font-family:
|
font-family:
|
||||||
ui-monospace,
|
ui-monospace,
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ defineProps<{
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import "@/main.css" reference;
|
@reference "@/main.css";
|
||||||
[std="stdout"] {
|
[std="stdout"] {
|
||||||
@apply text-blue;
|
@apply text-blue;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ const downloadUrl = computed(() =>
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import "@/main.css" reference;
|
@reference "@/main.css";
|
||||||
li.line {
|
li.line {
|
||||||
@apply bg-base-content/20 h-px;
|
@apply bg-base-content/20 h-px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ const linkify = (text: string) =>
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import "@/main.css" reference;
|
@reference "@/main.css";
|
||||||
.log-wrapper :deep(a) {
|
.log-wrapper :deep(a) {
|
||||||
@apply text-primary underline-offset-4 hover:underline;
|
@apply text-primary underline-offset-4 hover:underline;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ onUnmounted(() => {
|
|||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import "@/main.css" reference;
|
@reference "@/main.css";
|
||||||
|
|
||||||
.shell {
|
.shell {
|
||||||
& :deep(.terminal) {
|
& :deep(.terminal) {
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ watch(route, () => {
|
|||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import "@/main.css" reference;
|
@reference "@/main.css";
|
||||||
.fade-enter-active,
|
.fade-enter-active,
|
||||||
.fade-leave-active {
|
.fade-leave-active {
|
||||||
@apply transition-opacity;
|
@apply transition-opacity;
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ defineExpose({
|
|||||||
useEventListener(panel, "close", () => (open.value = false));
|
useEventListener(panel, "close", () => (open.value = false));
|
||||||
</script>
|
</script>
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import "@/main.css" reference;
|
@reference "@/main.css";
|
||||||
|
|
||||||
.modal-right :where(.modal-box) {
|
.modal-right :where(.modal-box) {
|
||||||
@apply bg-base-100 fixed right-0 h-lvh max-h-screen translate-x-24 scale-100 rounded-none shadow-none;
|
@apply bg-base-100 fixed right-0 h-lvh max-h-screen translate-x-24 scale-100 rounded-none shadow-none;
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ function onResized({ panes }: { panes: { size: number }[] }) {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import "@/main.css" reference;
|
@reference "@/main.css";
|
||||||
|
|
||||||
:deep(.splitpanes--vertical > .splitpanes__splitter) {
|
:deep(.splitpanes--vertical > .splitpanes__splitter) {
|
||||||
@apply bg-base-100 hover:bg-secondary min-w-[5px];
|
@apply bg-base-100 hover:bg-secondary min-w-[5px];
|
||||||
|
|||||||
@@ -206,7 +206,7 @@ const fakeMessages = computedWithControl(
|
|||||||
);
|
);
|
||||||
</script>
|
</script>
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import "@/main.css" reference;
|
@reference "@/main.css";
|
||||||
|
|
||||||
.has-underline {
|
.has-underline {
|
||||||
@apply border-base-content/50 mb-4 border-b py-4;
|
@apply border-base-content/50 mb-4 border-b py-4;
|
||||||
|
|||||||
Reference in New Issue
Block a user