IgorAlexey / Sidecascade

"Ruler-style" firefox userchrome theme for TST

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Side-cascade

Firefox stylesheets for my personal use.

Essentially, this is a fusion between Sidefox and Lepton, resulting in a combination that I value highly.

Firefox Colors Theme

This was originally a Cascade fork

Setup

  1. set toolkit.legacyUserProfileCustomizations.stylesheets to true in about:config
  2. Copy the contents of this repository to your profile folder's root directory (find it in about:profiles)
  3. Set your Tree-style-tab CSS to the Stylesheet below.
Click to Expand Stylesheet
:root {
	--sidebar-collapsed-width: 48px;
	--transition-duration: 0.2s;
	--transition-ease: ease-out;
}

/* Show title of unread tabs with red and italic font */
:root.sidebar tab-item.unread .label-content {
	font-weight: bold !important;
}

tab-item {
	overflow: hidden;
}

tab-item tab-item-substance {
	padding: 6px !important;
}

tab-item .background {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

tab-item tab-favicon {
	order: 10 !important;
	margin-left: 18px;
	margin-right: 16px;
	transition: var(--transition-duration) var(--transition-ease);
}

tab-item tab-closebox {
	transition: margin-right var(--transition-duration) var(--transition-ease);
	padding: 0;
	margin-right: -32px;
}

tab-item:hover tab-closebox {
	margin-right: 0px;
}

#tabbar {
	padding: 0px 10px 10px 10px;
	scrollbar-color: #ffffff20 transparent;
}

.newtab-button {
	padding: 10px;
}

.after-tabs button:hover::before {
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
}

.after-tabs .newtab-button-box {
	background: var(--theme-colors-sidebar);
}

#tabbar-container > .after-tabs .newtab-button-box {
	padding: 0 10px 10px 10px;
}

.newtab-action-selector-anchor {
	margin: 0 10px 10px 0;
}
  1. Restart your Firefox

About

"Ruler-style" firefox userchrome theme for TST

License:GNU General Public License v3.0


Languages

Language:CSS 94.4%Language:JavaScript 5.6%