forked from ZenBrowserMirrors/zen-desktop
71 lines
1.3 KiB
CSS
71 lines
1.3 KiB
CSS
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
/* Screenshots */
|
|
|
|
#screenshotsPagePanel {
|
|
position: absolute !important;
|
|
top: 3%;
|
|
right: 1.5%;
|
|
}
|
|
|
|
/* Watermark */
|
|
|
|
#zen-watermark {
|
|
--zen-themed-toolbar-bg-transparency: 1 !important;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: var(--zen-main-browser-background);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 9999;
|
|
}
|
|
|
|
#zen-watermark image {
|
|
opacity: 0.2;
|
|
filter: grayscale(100%);
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|
|
|
|
#zen-watermark[hidden='true'] {
|
|
transition: 0.6s;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
#zen-workspaces-button .zen-workspace-sidebar-name {
|
|
margin-left: 10px;
|
|
display: none;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
@media not (-moz-bool-pref: 'zen.watermark.enabled') {
|
|
#zen-watermark {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
#customization-footer #customization-toolbar-visibility-button {
|
|
display: none !important;
|
|
}
|
|
|
|
#alltabs-button {
|
|
display: none !important;
|
|
}
|
|
|
|
.private-browsing-indicator-with-label {
|
|
display: none !important;
|
|
}
|
|
|
|
body > #confetti {
|
|
z-index: 1;
|
|
}
|