mirror of
https://github.com/zen-browser/desktop.git
synced 2025-07-14 17:33:53 +02:00
119 lines
2.2 KiB
CSS
119 lines
2.2 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;
|
|
}
|
|
|
|
/* Firefox View */
|
|
#firefox-view-button {
|
|
display: none !important;
|
|
}
|
|
|
|
/* Emojis picker */
|
|
|
|
#PanelUI-zen-emojis-picker {
|
|
--panel-width: 250px;
|
|
--panel-padding: 0px;
|
|
|
|
#PanelUI-zen-emojis-picker-header {
|
|
gap: 10px;
|
|
align-items: center;
|
|
padding: 10px;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
#PanelUI-zen-emojis-picker-none label {
|
|
display: none;
|
|
}
|
|
|
|
#PanelUI-zen-emojis-picker-search {
|
|
padding: 4px;
|
|
width: 100%;
|
|
}
|
|
|
|
#PanelUI-zen-emojis-picker-list {
|
|
flex-wrap: wrap;
|
|
max-height: 265px;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
|
|
padding: 10px;
|
|
padding-top: 5px;
|
|
|
|
gap: 5px;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(28px, 1fr));
|
|
|
|
.zen-emojis-picker-emoji {
|
|
appearance: none;
|
|
font-size: 14px;
|
|
padding: 0px !important;
|
|
& 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;
|
|
}
|
|
}
|
|
}
|
|
|
|
.toolbarbutton-1 {
|
|
--tab-border-radius: 6px;
|
|
--toolbarbutton-border-radius: var(--tab-border-radius);
|
|
--toolbarbutton-inner-padding: 7px;
|
|
|
|
&,
|
|
& stack {
|
|
width: 30px;
|
|
height: 30px;
|
|
}
|
|
|
|
transition:
|
|
background-color 0.1s,
|
|
scale 0.2s;
|
|
&:active {
|
|
transform: scale(0.95);
|
|
}
|
|
}
|