mirror of
https://github.com/zen-browser/theme-store.git
synced 2025-07-07 17:05:31 +02:00
Merge 3cad6aef12
into 856819918b
This commit is contained in:
commit
43bccd5c78
5 changed files with 136 additions and 0 deletions
92
themes/1c711877-0402-4a88-ba9c-b64f6ddacec8/chrome.css
Normal file
92
themes/1c711877-0402-4a88-ba9c-b64f6ddacec8/chrome.css
Normal file
|
@ -0,0 +1,92 @@
|
|||
|
||||
#zen-main-app-window {
|
||||
--theme-biggerspace-selector_size: var(--theme-biggerspace-selector_size, 18px);
|
||||
--theme-biggerspace-indicator_size: var(--theme-biggerspace-indicator_size, 24px);
|
||||
--theme-biggerspace-picker_size: var(--theme-biggerspace-picker_size, 24px);
|
||||
}
|
||||
|
||||
/* Workspace selector buttons */
|
||||
.zen-workspace-icon {
|
||||
font-size: var(--theme-biggerspace-selector_size);
|
||||
}
|
||||
|
||||
#zen-workspaces-button:not([as-button="true"]) toolbarbutton.subviewbutton:not([active]) {
|
||||
opacity: 0.8 !important;
|
||||
}
|
||||
|
||||
/* Workspace icon picker */
|
||||
#PanelUI-zen-workspaces #PanelUI-zen-workspaces-icon-picker .workspace-icon-button {
|
||||
font-size: var(--theme-biggerspace-picker_size) !important;
|
||||
}
|
||||
|
||||
/* Current workspace indicator */
|
||||
#zen-current-workspace-indicator-icon {
|
||||
font-size: var(--theme-biggerspace-indicator_size) !important;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
#zen-current-workspace-indicator-name {
|
||||
position: static !important;
|
||||
padding-left: 8px !important;
|
||||
}
|
||||
|
||||
#zen-current-workspace-indicator-name {
|
||||
opacity: 0.7 !important;
|
||||
}
|
||||
|
||||
#zen-current-workspace-indicator:hover #zen-current-workspace-indicator-name {
|
||||
opacity: 1 !important;
|
||||
}
|
||||
|
||||
/* Make current workspace indicator look a bit more like tabs. */
|
||||
#zen-current-workspace-indicator {
|
||||
min-height: 44px; /* Same value as essentials */
|
||||
margin: 2px !important; /* Same value as normal tabs */
|
||||
padding: 6px 10px !important; /* Just eyeballed this */
|
||||
}
|
||||
|
||||
#zen-current-workspace-indicator {
|
||||
/* Background */
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: var(--tab-block-margin);
|
||||
|
||||
border-radius: var(--zen-border-radius);
|
||||
@media (-moz-bool-pref: "theme.biggerspace.indicator_bg") {
|
||||
background-color: var(--zen-toolbar-element-bg);
|
||||
}
|
||||
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
/* Background hover */
|
||||
&:hover::before {
|
||||
background-color: var(--tab-selected-bgcolor);
|
||||
}
|
||||
|
||||
/* Background active */
|
||||
&[open=true]::before {
|
||||
box-shadow: 0 0 1px 1px light-dark(rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.1));
|
||||
background-color: var(--tab-selected-bgcolor);
|
||||
}
|
||||
}
|
||||
|
||||
/* Collapsed sidebar overrides */
|
||||
#navigator-toolbox:not([zen-sidebar-expanded="true"]) #zen-current-workspace-indicator {
|
||||
opacity: 1 !important;
|
||||
min-height: 42px;
|
||||
|
||||
&::before {
|
||||
background-color: transparent;
|
||||
inset: 3px;
|
||||
}
|
||||
|
||||
&:hover::before {
|
||||
background-color: var(--zen-toolbar-element-bg);
|
||||
}
|
||||
|
||||
&[open=true]::before {
|
||||
background-color: var(--tab-selected-bgcolor);
|
||||
}
|
||||
}
|
BIN
themes/1c711877-0402-4a88-ba9c-b64f6ddacec8/image.png
Normal file
BIN
themes/1c711877-0402-4a88-ba9c-b64f6ddacec8/image.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 32 KiB |
26
themes/1c711877-0402-4a88-ba9c-b64f6ddacec8/preferences.json
Normal file
26
themes/1c711877-0402-4a88-ba9c-b64f6ddacec8/preferences.json
Normal file
|
@ -0,0 +1,26 @@
|
|||
[
|
||||
{
|
||||
"property": "theme.biggerspace.selector_size",
|
||||
"label": "Workspace Selector Size",
|
||||
"type": "string",
|
||||
"defaultValue": "18px"
|
||||
},
|
||||
{
|
||||
"property": "theme.biggerspace.indicator_size",
|
||||
"label": "Current Indicator Size",
|
||||
"type": "string",
|
||||
"defaultValue": "24px"
|
||||
},
|
||||
{
|
||||
"property": "theme.biggerspace.indicator_bg",
|
||||
"label": "Add Indicator Background",
|
||||
"type": "checkbox",
|
||||
"defaultValue": true
|
||||
},
|
||||
{
|
||||
"property": "theme.biggerspace.picker_size",
|
||||
"label": "Icon Picker Size",
|
||||
"type": "string",
|
||||
"defaultValue": "24px"
|
||||
}
|
||||
]
|
3
themes/1c711877-0402-4a88-ba9c-b64f6ddacec8/readme.md
Normal file
3
themes/1c711877-0402-4a88-ba9c-b64f6ddacec8/readme.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
|
||||
# BiggerSpace
|
||||
Make workspace icons bigger and more legible everywhere.
|
15
themes/1c711877-0402-4a88-ba9c-b64f6ddacec8/theme.json
Normal file
15
themes/1c711877-0402-4a88-ba9c-b64f6ddacec8/theme.json
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"id": "1c711877-0402-4a88-ba9c-b64f6ddacec8",
|
||||
"name": "BiggerSpace",
|
||||
"description": "Make workspace icons bigger and more legible everywhere.",
|
||||
"homepage": "https://github.com/different55/BiggerSpace",
|
||||
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1c711877-0402-4a88-ba9c-b64f6ddacec8/chrome.css",
|
||||
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1c711877-0402-4a88-ba9c-b64f6ddacec8/readme.md",
|
||||
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1c711877-0402-4a88-ba9c-b64f6ddacec8/image.png",
|
||||
"author": "different55",
|
||||
"version": "1.0.0",
|
||||
"tags": [],
|
||||
"createdAt": "2025-02-02",
|
||||
"updatedAt": "2025-02-02",
|
||||
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1c711877-0402-4a88-ba9c-b64f6ddacec8/preferences.json"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue