Add vivaldi browser modifications
This commit is contained in:
parent
09d936d7ea
commit
48f9a474d1
18 changed files with 3865 additions and 0 deletions
29
.vivaldi-mods/css/hover-panel.css
Executable file
29
.vivaldi-mods/css/hover-panel.css
Executable file
|
@ -0,0 +1,29 @@
|
|||
/*
|
||||
* Autohide panels (while making it possible to use scrollbar still)
|
||||
*/
|
||||
:root {
|
||||
--panel-transition: max-width .2s ease-out, opacity .2s ease-out;
|
||||
--panel-peek-width: 12px;
|
||||
--panel-peek-height: 12px;
|
||||
}
|
||||
|
||||
/* Base hidden state for panels */
|
||||
#panels-container {
|
||||
position: absolute !important;
|
||||
z-index: 1;
|
||||
opacity: 0;
|
||||
max-height: var(--panel-peek-height);
|
||||
max-width: var(--panel-peek-width);
|
||||
transition: var(--panel-transition) !important;
|
||||
}
|
||||
|
||||
#panels-container.right {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
/* Show panels on hover */
|
||||
#panels-container:hover {
|
||||
max-height: 100%;
|
||||
max-width: 41px;
|
||||
opacity: 1;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue