mirror of
https://github.com/elenapan/dotfiles.git
synced 2025-12-26 23:34:57 +08:00
Former-commit-id: 3e619a917c
Former-commit-id: 69e4e61cccff04b9f8ef2aadc6f2a05778bcbe63
Former-commit-id: 567798d52bc5cc3a0155bd7bfaa21ff7b7b88098
Former-commit-id: 95c814ad834fb3145eef88a68bde9af04f98bec9
77 lines
1.5 KiB
CSS
77 lines
1.5 KiB
CSS
/* Based off of https://redd.it/7fxtdm*/
|
|
|
|
@keyframes scale-out {
|
|
0% {
|
|
transform: scaleY(1);
|
|
}
|
|
100% {
|
|
transform: scaleY(0);
|
|
}
|
|
}
|
|
|
|
@keyframes scale-in {
|
|
0% {
|
|
transform: scaleY(0);
|
|
}
|
|
100% {
|
|
transform: scaleY(1);
|
|
}
|
|
}
|
|
|
|
.browserContainer {
|
|
position: relative;
|
|
}
|
|
|
|
findbar {
|
|
animation: 0.2s scale-in;
|
|
transform-origin: top center;
|
|
padding: 4px 6px 6px 6px;
|
|
height: 55px !important;
|
|
line-height: 30px !important;
|
|
background: var(--findbar-bg) !important;
|
|
color: var(--findbar-fg) !important;
|
|
position: absolute;
|
|
top: 5px;
|
|
right: 35px;
|
|
border-radius: 3px !important;
|
|
box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.75);
|
|
min-width: 300px !important;
|
|
}
|
|
|
|
findbar[hidden='true'] {
|
|
animation: 0.2s scale-out;
|
|
}
|
|
|
|
.findbar-closebutton .toolbarbutton-icon {
|
|
transform: scale(1.35);
|
|
padding: 2px !important;
|
|
}
|
|
.findbar-closebutton {
|
|
background: none !important;
|
|
}
|
|
|
|
.close-icon:hover {
|
|
fill-opacity: 0 !important;
|
|
}
|
|
|
|
.findbar-container > hbox > * {
|
|
border: none !important;
|
|
background: var(--findbar-bg) !important;
|
|
color: var(--findbar-fg) !important;
|
|
}
|
|
|
|
.findbar-container > hbox > toolbarbutton{
|
|
outline: 0 !important;
|
|
}
|
|
|
|
.findbar-container > hbox > toolbarbutton:hover:active {
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.findbar-container > hbox > toolbarbutton > .toolbarbutton-icon {
|
|
padding: 5px !important;
|
|
}
|
|
|
|
.findbar-find-status {
|
|
display: none !important;
|
|
}
|