mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 21:33:09 +00:00
webconfig: Hover more things
The buttons were already supposed to highlight on hover, but the color difference was barely visible. Crank that up. Also add a hover color to the tabs, colorschemes, prompts, functions. The big clickable things.
This commit is contained in:
parent
f6a6537f7b
commit
e571902a85
1 changed files with 19 additions and 3 deletions
|
@ -47,6 +47,14 @@ code {
|
|||
cursor: pointer;
|
||||
}
|
||||
|
||||
.tab:hover,
|
||||
#tab_contents .master_element:hover,
|
||||
.color_scheme_choice_container:hover,
|
||||
.prompt_choices_list > .ng-scope:hover
|
||||
{
|
||||
background-color: #DDE;
|
||||
}
|
||||
|
||||
#tab_parent :first-child {
|
||||
border-top-left-radius: 8px;
|
||||
border-left: none;
|
||||
|
@ -56,7 +64,7 @@ code {
|
|||
border-top-right-radius: 8px;
|
||||
}
|
||||
|
||||
.selected_tab {
|
||||
.selected_tab, .selected_tab:hover {
|
||||
background-color: #eeeefa;
|
||||
border-bottom: none;
|
||||
}
|
||||
|
@ -537,7 +545,7 @@ img.delete_icon {
|
|||
.save_button:hover,
|
||||
.customize_theme_button:hover,
|
||||
.generic_button:hover {
|
||||
border-color: rgba(71, 71, 71, 0.9);
|
||||
border-color: rgba(171, 171, 171, 0.9);
|
||||
}
|
||||
|
||||
.button_highlight {
|
||||
|
@ -650,7 +658,15 @@ img.delete_icon {
|
|||
background-color: black;
|
||||
border: 1px solid #222;
|
||||
}
|
||||
.selected_tab {
|
||||
.tab:hover,
|
||||
#tab_contents .master_element:hover,
|
||||
.color_scheme_choice_container:hover,
|
||||
.prompt_choices_list > .ng-scope:hover
|
||||
{
|
||||
background-color: #223;
|
||||
}
|
||||
|
||||
.selected_tab, .selected_tab:hover {
|
||||
background-color: #202028;
|
||||
border-bottom: none;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue