Clean up the outline view #19
@ -47,6 +47,10 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* KLUDGE */
|
/* KLUDGE */
|
||||||
|
/*
|
||||||
|
for convenience, we're using emoji as temporary icons for some buttons. these
|
||||||
|
buttons need to be displayed in an emoji font
|
||||||
|
*/
|
||||||
#add-remove > button.emoji {
|
#add-remove > button.emoji {
|
||||||
font-family: 'Noto Emoji', sans-serif;
|
font-family: 'Noto Emoji', sans-serif;
|
||||||
}
|
}
|
||||||
|
@ -173,7 +173,7 @@ pub fn AddRemove() -> View {
|
|||||||
}
|
}
|
||||||
) { "+" }
|
) { "+" }
|
||||||
button(
|
button(
|
||||||
class="emoji", /* KLUDGE */
|
class="emoji", /* KLUDGE */ // for convenience, we're using an emoji as a temporary icon for this button
|
||||||
disabled={
|
disabled={
|
||||||
glen marked this conversation as resolved
|
|||||||
let state = use_context::<AppState>();
|
let state = use_context::<AppState>();
|
||||||
state.selection.with(|sel| sel.len() != 2)
|
state.selection.with(|sel| sel.len() != 2)
|
||||||
|
Loading…
Reference in New Issue
Block a user
Please elaborate all instances of KLUDGE
Done (in commit
2b083be
).