From 9b6ee0ab3be12781c0e146c673fa1f605aa842e7 Mon Sep 17 00:00:00 2001 From: yggverse Date: Tue, 10 Dec 2024 21:36:01 +0200 Subject: [PATCH] fix css classes --- .../window/tab/item/page/content/status/download/choose.rs | 2 +- .../window/tab/item/page/content/status/download/open.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/browser/window/tab/item/page/content/status/download/choose.rs b/src/app/browser/window/tab/item/page/content/status/download/choose.rs index 3cbd403e..e5e226a8 100644 --- a/src/app/browser/window/tab/item/page/content/status/download/choose.rs +++ b/src/app/browser/window/tab/item/page/content/status/download/choose.rs @@ -7,7 +7,7 @@ use gtk::{ // Defaults -const CSS_CLASSES: [&str; 1] = ["error"]; +const CSS_CLASSES: [&str; 1] = ["accent"]; const LABEL: &str = "Choose"; const MARGIN: i32 = 16; diff --git a/src/app/browser/window/tab/item/page/content/status/download/open.rs b/src/app/browser/window/tab/item/page/content/status/download/open.rs index 237a95e8..021092e2 100644 --- a/src/app/browser/window/tab/item/page/content/status/download/open.rs +++ b/src/app/browser/window/tab/item/page/content/status/download/open.rs @@ -7,7 +7,7 @@ use gtk::{ // Defaults -const CSS_CLASSES: [&str; 1] = ["error"]; +const CSS_CLASSES: [&str; 1] = ["accent"]; const LABEL: &str = "Open"; const MARGIN: i32 = 16;