From 5d8f799a1171f92054d4b45ba130cd7fdad0bd01 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Fri, 23 May 2025 14:04:27 +0200 Subject: app: prepare restructuring --- style/CMakeLists.txt | 18 ------------------ style/style-dark.css | 32 -------------------------------- style/style.css | 31 ------------------------------- 3 files changed, 81 deletions(-) delete mode 100644 style/CMakeLists.txt delete mode 100644 style/style-dark.css delete mode 100644 style/style.css (limited to 'style') diff --git a/style/CMakeLists.txt b/style/CMakeLists.txt deleted file mode 100644 index 8ddbae8..0000000 --- a/style/CMakeLists.txt +++ /dev/null @@ -1,18 +0,0 @@ -add_library("style") - -add_library("turns::style" ALIAS "style") - -target_add_glib_resources("style" - PREFIX "ch/arknet/Turns" - CSS_FILES - "style.css" - "style-dark.css" -) - -target_link_libraries("style" PUBLIC - "PkgConfig::giomm" - PRIVATE - "$<$,$>:gcov>" -) - -enable_coverage("style") diff --git a/style/style-dark.css b/style/style-dark.css deleted file mode 100644 index 928264a..0000000 --- a/style/style-dark.css +++ /dev/null @@ -1,32 +0,0 @@ -@define-color hostile #e01b24; -@define-color friendly #33d17a; -@define-color secret #9141ac; - - -.disposition-hostile { - background-color: mix(shade(@hostile, 0.8), @window_bg_color, 0.5); -} - -:checked.disposition-hostile { - background-color: mix(shade(@hostile, 0.5), @window_bg_color, 0.5); -} - -.disposition-friendly { - background-color: mix(shade(@friendly, 0.8), @window_bg_color, 0.5); -} - -:checked.disposition-friendly { - background-color: mix(shade(@friendly, 0.5), @window_bg_color, 0.5); -} - -.disposition-secret { - background-color: mix(shade(@secret, 0.8), @window_bg_color, 0.5); -} - -:checked.disposition-secret { - background-color: mix(shade(@secret, 0.5), @window_bg_color, 0.5); -} - -.active-participant { - background-color: mix(shade(@accent_bg_color, 0.5), @card_bg_color, 0.5); -} \ No newline at end of file diff --git a/style/style.css b/style/style.css deleted file mode 100644 index a185c9b..0000000 --- a/style/style.css +++ /dev/null @@ -1,31 +0,0 @@ -@define-color hostile #e01b24; -@define-color friendly #33d17a; -@define-color secret #9141ac; - -.disposition-hostile { - background-color: mix(shade(@hostile, 1.6), @window_bg_color, 0.5); -} - -:checked.disposition-hostile { - background-color: mix(shade(@hostile, 1), @window_bg_color, 0.5); -} - -.disposition-friendly { - background-color: mix(shade(@friendly, 1.6), @window_bg_color, 0.5); -} - -:checked.disposition-friendly { - background-color: mix(shade(@friendly, 1), @window_bg_color, 0.5); -} - -.disposition-secret { - background-color: mix(shade(@secret, 1.6), @window_bg_color, 0.5); -} - -:checked.disposition-secret { - background-color: mix(shade(@secret, 1), @window_bg_color, 0.5); -} - -.active-participant { - background-color: mix(shade(@accent_bg_color, 1.5), @card_bg_color, 0.5); -} \ No newline at end of file -- cgit v1.2.3