mirror of
https://github.com/zen-browser/desktop.git
synced 2025-07-15 01:43:53 +02:00
92 lines
1.7 KiB
CSS
92 lines
1.7 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%;
|
|
}
|
|
|
|
#zen-workspaces-button .zen-workspace-sidebar-name {
|
|
margin-left: 10px;
|
|
display: none;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
#customization-footer #customization-toolbar-visibility-button {
|
|
display: none !important;
|
|
}
|
|
|
|
.private-browsing-indicator-with-label {
|
|
display: none !important;
|
|
}
|
|
|
|
body > #confetti {
|
|
z-index: 1;
|
|
}
|
|
|
|
/* Bookmarks */
|
|
#PersonalToolbar:not([collapsed='true']) {
|
|
min-height: 30px;
|
|
}
|
|
|
|
/* Emojis picker */
|
|
|
|
#PanelUI-zen-emojis-picker {
|
|
--panel-width: 250px;
|
|
--panel-padding: 10px;
|
|
|
|
&::part(content) {
|
|
gap: 15px;
|
|
}
|
|
|
|
#PanelUI-zen-emojis-picker-header {
|
|
gap: 10px;
|
|
align-items: center;
|
|
}
|
|
|
|
#PanelUI-zen-emojis-picker-none label {
|
|
display: none;
|
|
}
|
|
|
|
#PanelUI-zen-emojis-picker-search {
|
|
padding: 4px;
|
|
}
|
|
|
|
#PanelUI-zen-emojis-picker-list {
|
|
flex-wrap: wrap;
|
|
max-height: 265px;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
|
|
gap: 5px;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(28px, 1fr));
|
|
|
|
.zen-emojis-picker-emoji {
|
|
appearance: none;
|
|
font-size: 14px;
|
|
& image {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.zen-emojis-picker-emoji,
|
|
#PanelUI-zen-emojis-picker-none {
|
|
width: 22px;
|
|
height: 22px;
|
|
|
|
&:hover {
|
|
background-color: light-dark(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.1));
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|