My stylish scripts

Add-ons for Pale Moon and other applications
General discussion, compatibility, contributed extensions, themes, plugins, and more.

Moderators: FranklinDM, Lootyhoof

Anixx

My stylish scripts

Unread post by Anixx » 2017-10-11, 10:58

These are my scripts for Stylish in Pale Moon.

1. 3D border around content area (Client Edge), for the Windows Classic theme (or similar themes):

Code: Select all

browser {
padding:1px !important;
}

.browserStack {
border-top: 0px solid ThreeDShadow !important; 
border-left: 1px solid ThreeDShadow !important;
border-right: 1px solid ThreeDHighlight !important;
border-bottom:0px solid ThreeDHighlight !important;
}

.browserStack:before {
    content:"\a0" !important;
    display:block !important;
    padding:2px 0 !important;
    line-height:1px !important;
    border-top:1px solid ThreeDDarkShadow !important;
    border-left:1px solid ThreeDDarkShadow !important; 
    border-right:1px solid ThreeDLightShadow !important; 
    border-bottom:1px solid ThreeDLightShadow !important; 
}
2. Show only icons on the bookmarks panel:

Code: Select all

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#PersonalToolbar toolbarbutton:not([container="true"]) label {
display: none !important;
}
#PersonalToolbar toolbarbutton:not([container="true"]) {
padding: 1 !important;
}
#PersonalToolbar toolbarbutton:not([container="true"]) image {
margin: 0 !important;
}

Locked