Skip to content

Commit 66451b6

Browse files
authored
Merge branch 'master' into settings-ui
2 parents ee62b39 + 515bfa2 commit 66451b6

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/app/tile/elm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ fn footer(theme: Theme, current_mode: String, text: String) -> Element<'static,
273273
false,
274274
))),
275275
border: iced::Border {
276-
color: glass_border(theme.text_color(1.0), false),
276+
color: glass_border(theme.bg_color(), false),
277277
width: 0.,
278278
radius: Radius::new(radius).top(0.0),
279279
},

src/styles.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ pub fn contents_style(theme: &ConfigTheme) -> container::Style {
4545
background: None,
4646
text_color: None,
4747
border: iced::Border {
48-
color: theme.text_color(0.9),
48+
color: theme.bg_color(),
4949
width: 0.4,
5050
radius: Radius::new(14.0),
5151
},
@@ -121,7 +121,7 @@ pub fn results_scrollbar_style(tile: &ConfigTheme) -> scrollable::Style {
121121
scroller: scrollable::Scroller {
122122
background: Background::Color(tile.text_color(0.7)),
123123
border: Border {
124-
color: tile.text_color(1.),
124+
color: tile.bg_color(),
125125
width: 0.1,
126126
radius: Radius::new(0),
127127
},
@@ -160,7 +160,7 @@ pub fn result_row_container_style(tile: &ConfigTheme, focused: bool) -> containe
160160
container::Style {
161161
background: Some(Background::Color(glass_surface(tile.bg_color(), focused))),
162162
border: Border {
163-
color: glass_border(tile.text_color(1.), focused),
163+
color: glass_border(tile.bg_color(), focused),
164164
width: 0.,
165165
radius: Radius::new(0.0),
166166
},

0 commit comments

Comments
 (0)