Home: add floorp config

This commit is contained in:
blahai 2024-10-27 03:08:32 +03:00
parent 3c1c079d19
commit 0239cb535c
No known key found for this signature in database
117 changed files with 3768 additions and 0 deletions

View file

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#eb227b" viewBox="0 0 24 24" width="24" height="24">
<circle cx="12" cy="12" r="11"/>
</svg>

After

Width:  |  Height:  |  Size: 141 B

View file

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#A524EB" viewBox="0 0 24 24" width="24" height="24">
<circle cx="12" cy="12" r="11"/>
</svg>

After

Width:  |  Height:  |  Size: 141 B

View file

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#5cb8a7" viewBox="0 0 24 24" width="24" height="24">
<circle cx="12" cy="12" r="11"/>
</svg>

After

Width:  |  Height:  |  Size: 141 B

View file

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#EDB826" viewBox="0 0 24 24" width="24" height="24">
<circle cx="12" cy="12" r="11"/>
</svg>

After

Width:  |  Height:  |  Size: 141 B

View file

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#dbc074" viewBox="0 0 24 24" width="24" height="24">
<circle cx="12" cy="12" r="11"/>
</svg>

After

Width:  |  Height:  |  Size: 141 B

View file

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="context-fill" fill-opacity="context-fill-opacity" viewBox="0 0 24 24" width="24" height="24">
<circle cx="12" cy="12" r="11"/>
</svg>

After

Width:  |  Height:  |  Size: 182 B

View file

@ -0,0 +1,23 @@
@import "window-controls.css";
:root:not([inFullscreen]) toolbar#nav-bar {
z-index: 1 !important;
position: relative !important;
margin-left: 0px;
}
#TabsToolbar .toolbar-items {
display: none !important;
}
.titlebar-buttonbox {
display: none !important;
}
#TabsToolbar.browser-toolbar {
display: inline-block !important;
position: absolute;
top: var(--wc-vertical-shift) !important;
left: var(--wc-left-space) !important;
}

View file

@ -0,0 +1,6 @@
@import "window-controls.css";
#TabsToolbar.browser-toolbar {
margin-left: var(--wc-left-space);
margin-right: var(--wc-right-space);
}

View file

@ -0,0 +1,16 @@
@import "window-controls.css";
@import "wc-without-tabline.css";
#TabsToolbar.browser-toolbar {
left: auto !important;
right: var(--wc-right-space) !important;
}
:root:not([inFullscreen]) toolbar#nav-bar {
margin-left: 0 !important;
margin-right: calc(var(--wc-left-space) * 2 + 65px) !important;
}
.titlebar-buttonbox {
flex-direction: row !important;
}

View file

@ -0,0 +1,25 @@
@import "window-controls.css";
:root:not([inFullscreen]) toolbar#nav-bar {
z-index: 1 !important;
position: relative !important;
/* shift toolbar to the right based on initial width */
margin-left: calc(
var(--wc-right-space) * 2 + 60px
) !important;
}
#TabsToolbar .toolbar-items {
display: none !important;
}
.titlebar-buttonbox {
flex-direction: row-reverse;
}
#TabsToolbar.browser-toolbar {
display: inline-block !important;
position: absolute;
top: var(--wc-vertical-shift) !important;
left: var(--wc-left-space) !important;
}

View file

@ -0,0 +1,9 @@
/********************************/
/* windows10 specific ***********/
/* patches for window-controls. */
/********************************/
/* makes space between top edge and navigation bar when maximized */
:root[sizemode="maximized"] #navigator-toolbox {
padding-top: 10px !important;
}

View file

@ -0,0 +1,92 @@
/*-min max close size*/
.titlebar-button>.toolbarbutton-icon {
height: 14px !important;
min-height: 14px !important;
width: 14px !important;
min-width: 14px !important;
}
#titlebar {
-moz-appearance: none !important;
}
.titlebar-button {
transition: all 0.1s ease !important;
padding: 0px 8px !important;
background: none !important;
-moz-context-properties: fill, fill-opacity !important;
width: 16px;
height: 16px;
margin-left: 10px !important;
border-radius: 20px !important;
}
.titlebar-buttonbox {
display: flex;
-moz-context-properties: fill, fill-opacity !important;
}
/* close button */
.titlebar-close {
/* -moz-appearance: none !important;
fill: var(--red) !important;
opacity: 0.7 !important;
list-style-image: url(circle.svg) !important; */
background-color: var(--red) !important;
opacity: 0.7 !important;
}
.titlebar-close:hover {
opacity: 1 !important;
transform: scale(110%);
}
/* minimize button */
.titlebar-min {
/* -moz-appearance: none !important;
fill: var(--yellow) !important;
opacity: 0.7 !important;
list-style-image: url(circle.svg) !important; */
background-color: var(--yellow) !important;
opacity: 0.7 !important;
margin-left: 0px !important;
}
.titlebar-min:hover {
opacity: 1 !important;
transform: scale(110%);
}
/* maximize button */
.titlebar-max {
/* -moz-appearance: none !important;
fill: var(--green) !important;
opacity: 0.7 !important;
list-style-image: url(circle.svg) !important; */
background-color: var(--green) !important;
opacity: 0.7 !important;
}
.titlebar-max:hover {
opacity: 1 !important;
transform: scale(110%);
}
/* restore button */
.titlebar-restore {
/* -moz-appearance: none !important;
fill: var(--green) !important;
opacity: 0.7 !important;
list-style-image: url(circle.svg) !important; */
background-color: var(--green) !important;
opacity: 0.7 !important;
}
.titlebar-restore:hover {
opacity: 1 !important;
transform: scale(110%);
}
#private-browsing-indicator-with-label {
display: none !important;
}