mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
added node edit menu
This commit is contained in:
parent
f185914c7c
commit
74f4c7562b
16 changed files with 320 additions and 175 deletions
|
@ -67,3 +67,4 @@ $side_pane_btn_color: lighten($main_bg_color, 0%);
|
|||
$node_buttons_bg: darken($main_bg_color, 6%);
|
||||
|
||||
$tag_bg: lighten($main_bg_color, 4%);
|
||||
$menu_bg: lighten($main_bg_color, 4%);
|
||||
|
|
|
@ -274,3 +274,12 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
@mixin hover_opacity($initial_opacity: 0.5) {
|
||||
opacity: $initial_opacity;
|
||||
transition: opacity 0.25s;
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -46,3 +46,6 @@ table {
|
|||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
button {
|
||||
padding: 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue