Content-Length: 725689 | pFad | https://github.com/sebadob/rauthy/commit/e70c5a7bbf8f40f90a9d8d3d6570736e5322a0c5

C2 Merge pull request #46 from sebadob/ui-cleanup · sebadob/rauthy@e70c5a7 · GitHub
Skip to content

Commit

Permalink
Merge pull request #46 from sebadob/ui-cleanup
Browse files Browse the repository at this point in the history
UI cleanup
  • Loading branch information
sebadob authored Sep 7, 2023
2 parents 61464bf + 4076a42 commit e70c5a7
Show file tree
Hide file tree
Showing 52 changed files with 271 additions and 561 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ members = [
]

[workspace.package]
version = "0.15.0-20230906"
version = "0.15.0-20230907"
edition = "2021"
authors = ["Sebastian Dobe <sebastiandobe@mailbox.org>"]
license = "AGPLv3"
Expand Down
6 changes: 3 additions & 3 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions frontend/src/components/admin/AdminMain.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
import IconShieldCheck from "$lib/icons/IconShieldCheck.svelte";
import IconLogout from "$lib/icons/IconLogout.svelte";
import IconId from "$lib/icons/IconId.svelte";
import RauthyLogo from "../icons/RauthyLogo.svelte";
import RauthyLogo from "$lib/icons/RauthyLogo.svelte";
import Documentation from "./documentation/Documentation.svelte";
import IconBookOpen from "../icons/IconBookOpen.svelte";
import IconBookOpen from "$lib/icons/IconBookOpen.svelte";
import {onMount} from "svelte";
export let sessionInfo = {};
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script>
import RauthyLogo from "../../icons/RauthyLogo.svelte";
import RauthyLogo from "$lib/icons/RauthyLogo.svelte";
import ClientBrandingPreviewBtn from "./ClientBrandingPreviewBtn.svelte";
import ClientBrandingPreviewInput from "./ClientBrandingPreviewInput.svelte";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
>
{#if isLoading}
<div class="load">
<Loading local background={false} color={loadCol}/>
<Loading background={false} color={loadCol}/>
</div>
{:else}
<div class="txt">
Expand Down
30 changes: 15 additions & 15 deletions frontend/src/components/icons/IconBookOpen.svelte
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<script>
export let color;
export let opacity = 0.9;
export let width = 24;
export let color;
export let opacity = 0.9;
export let width = 24;
</script>

<svg
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width={2}
width={width}
color={color}
opacity={opacity}
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width={2}
width={width}
color={color}
opacity={opacity}
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M12 6.042A8.967 8.967 0 006 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 016 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 016-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0018 18a8.967 8.967 0 00-6 2.292m0-14.25v14.25"
/>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M12 6.042A8.967 8.967 0 006 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 016 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 016-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0018 18a8.967 8.967 0 00-6 2.292m0-14.25v14.25"
/>
</svg>
4 changes: 2 additions & 2 deletions frontend/src/lib/Button.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
export let level = 2;
export let width = 'inherit';
export let selected;
export let selected = undefined;
export let isLoading = false;
let showText = !isLoading;
Expand Down Expand Up @@ -66,7 +66,7 @@
>
{#if isLoading}
<div class="load">
<Loading local background={false} color={loadCol}/>
<Loading background={false} color={loadCol}/>
</div>
{:else if showText}
<div in:fade class="txt">
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/lib/ExpandContainer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
export let idx = 0;
export let show = false;
export let expandedCallback;
export let expandedCallback = () => {};
let isHover = false;
let element;
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/lib/Tooltip.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
export let xOffset = 10;
export let yOffset = 10;
export let text;
export let html;
export let text = '';
export let html = '';
let show = false;
Expand Down
22 changes: 0 additions & 22 deletions frontend/src/lib/icons/IconArchiveBox.svelte

This file was deleted.

21 changes: 0 additions & 21 deletions frontend/src/lib/icons/IconAt.svelte

This file was deleted.

28 changes: 13 additions & 15 deletions frontend/src/lib/icons/IconBackspace.svelte
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
<script>
export let color;
export let opacity = 0.9;
export let width = 24;
export let opacity = 0.9;
export let width = 24;
</script>

<svg
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width={2}
width={width}
color={color}
opacity={opacity}
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width={2}
width={width}
opacity={opacity}
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M12 9.75L14.25 12m0 0l2.25 2.25M14.25 12l2.25-2.25M14.25 12L12 14.25m-2.58 4.92l-6.375-6.375a1.125 1.125 0 010-1.59L9.42 4.83c.211-.211.498-.33.796-.33H19.5a2.25 2.25 0 012.25 2.25v10.5a2.25 2.25 0 01-2.25 2.25h-9.284c-.298 0-.585-.119-.796-.33z"
/>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M12 9.75L14.25 12m0 0l2.25 2.25M14.25 12l2.25-2.25M14.25 12L12 14.25m-2.58 4.92l-6.375-6.375a1.125 1.125 0 010-1.59L9.42 4.83c.211-.211.498-.33.796-.33H19.5a2.25 2.25 0 012.25 2.25v10.5a2.25 2.25 0 01-2.25 2.25h-9.284c-.298 0-.585-.119-.796-.33z"
/>
</svg>

28 changes: 13 additions & 15 deletions frontend/src/lib/icons/IconBarsArrowDown.svelte
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
<script>
export let color;
export let opacity = 0.9;
export let width = 24;
export let opacity = 0.9;
export let width = 24;
</script>

<svg
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width={2}
width={width}
color={color}
opacity={opacity}
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width={2}
width={width}
opacity={opacity}
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M3 4.5h14.25M3 9h9.75M3 13.5h9.75m4.5-4.5v12m0 0l-3.75-3.75M17.25 21L21 17.25"
/>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M3 4.5h14.25M3 9h9.75M3 13.5h9.75m4.5-4.5v12m0 0l-3.75-3.75M17.25 21L21 17.25"
/>
</svg>
28 changes: 13 additions & 15 deletions frontend/src/lib/icons/IconBarsArrowUp.svelte
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
<script>
export let color;
export let opacity = 0.9;
export let width = 24;
export let opacity = 0.9;
export let width = 24;
</script>

<svg
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width={2}
width={width}
color={color}
opacity={opacity}
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width={2}
width={width}
opacity={opacity}
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M3 4.5h14.25M3 9h9.75M3 13.5h5.25m5.25-.75L17.25 9m0 0L21 12.75M17.25 9v12"
/>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M3 4.5h14.25M3 9h9.75M3 13.5h5.25m5.25-.75L17.25 9m0 0L21 12.75M17.25 9v12"
/>
</svg>
22 changes: 0 additions & 22 deletions frontend/src/lib/icons/IconBarsBottomLeft.svelte

This file was deleted.

28 changes: 13 additions & 15 deletions frontend/src/lib/icons/IconBookOpen.svelte
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
<script>
export let color;
export let opacity = 0.9;
export let width = 24;
export let opacity = 0.9;
export let width = 24;
</script>

<svg
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width={2}
width={width}
color={color}
opacity={opacity}
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width={2}
width={width}
opacity={opacity}
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M12 6.042A8.967 8.967 0 006 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 016 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 016-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0018 18a8.967 8.967 0 00-6 2.292m0-14.25v14.25"
/>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M12 6.042A8.967 8.967 0 006 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 016 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 016-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0018 18a8.967 8.967 0 00-6 2.292m0-14.25v14.25"
/>
</svg>
Loading

0 comments on commit e70c5a7

Please sign in to comment.








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://github.com/sebadob/rauthy/commit/e70c5a7bbf8f40f90a9d8d3d6570736e5322a0c5

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy