slendertechofficial wrote: ↑2024-01-25, 00:57
I know CSS though, so I should be able to fix that somehow

.
Any news on that?
I was playing with the live demo you provided and managed to change some of the icons. I may work on the back-button someday, and on the go/stop-buttons. I’d better do that in a clean profile, though.
Anyway, here’s the code:
Code: Select all
…/chrome/userChrome.css
-----------------------------
.close-icon {
background-image: -moz-image-rect(url("https://web.archive.org/web/20130909040607im_/http://people.mozilla.com/~shorlander/files/australis-designSpecs/images-win7/closeTab.png"), 0, 16, 16, 0) !important;
}
.close-icon:hover {
background-image: -moz-image-rect(url("https://web.archive.org/web/20130909040607im_/http://people.mozilla.com/~shorlander/files/australis-designSpecs/images-win7/closeTab.png"), 0, 32, 16, 16) !important;
}
.close-icon:active {
background-image: -moz-image-rect(url("https://web.archive.org/web/20130909040607im_/http://people.mozilla.com/~shorlander/files/australis-designSpecs/images-win7/closeTab.png"), 0, 48, 16, 32) !important;
}
.tab-close-button:not([selected]):not(:hover) {
background-image: -moz-image-rect(url("https://web.archive.org/web/20130909040607im_/http://people.mozilla.com/~shorlander/files/australis-designSpecs/images-win7/closeTab.png"), 0, 16, 16, 0) !important;
visibility: visible !important;
}
.tabs-newtab-button, #TabsToolbar > #new-tab-button, #TabsToolbar > toolbarpaletteitem > #new-tab-button {
list-style-image: url("https://web.archive.org/web/20130812114236im_/http://people.mozilla.com/~shorlander/files/australis-designSpecs/images-win7/newTab-Icon.png") !important;
}
#bookmarks-menu-button[cui-areatype="toolbar"] {
-moz-image-region: unset !important;
list-style-image: url("https://web.archive.org/web/20130909035819im_/http://people.mozilla.com/~shorlander/files/australis-designSpecs/images-win7/toolbarButton-bookmarkUnstarred.png") !important;
}
#bookmarks-menu-button[cui-areatype="toolbar"][starred] {
-moz-image-region: unset !important;
list-style-image: url("https://web.archive.org/web/20130909035819im_/http://people.mozilla.com/~shorlander/files/australis-designSpecs/images-win7/toolbarButton-bookmarkstarred.png") !important;
}
#bookmarks-menu-button[cui-areatype="toolbar"] > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon {
-moz-image-region: unset !important;
list-style-image: url("https://web.archive.org/web/20130909031320im_/http://people.mozilla.com/~shorlander/files/australis-designSpecs/images-win7/toolbarButton-dropDown.png") !important;
}
dropmarker {
-moz-appearance: none !important;
list-style-image: url("https://web.archive.org/web/20130909031320im_/http://people.mozilla.com/~shorlander/files/australis-designSpecs/images-win7/toolbarButton-dropDown.png") !important;
-moz-box-align: center !important;
}
toolbarbutton[type="menu-button"] {
-moz-box-align: center !important;
}
#feed-button[cui-areatype="toolbar"]::after {
display: inline-block;
content: url(http://web.archive.org/web/20130909031320im_/http://people.mozilla.com/~shorlander/files/australis-designSpecs/images-win7/toolbarButton-dropDown.png);
-moz-margin-start: -4px;
padding-top: 3px;
}
.findbar-button > .toolbarbutton-text, :-moz-any(#TabsToolbar, #nav-bar) .toolbarbutton-1 > #feed-button[cui-areatype="toolbar"] {
padding-right: 20px !important;
}
#urlbar-reload-button {
float: right;
padding: 3px 4px;
-moz-user-select: none;
cursor: default;
font-size: 0;
line-height: 0;
display: inline-block;
content: url(https://web.archive.org/web/20130909012841im_/http://people.mozilla.com/~shorlander/files/australis-designSpecs/images-win7/reloadStopGo-reload.png);
width: 16px;
height: 16px;
}
#urlbar-reload-button:hover {
background-image: -moz-linear-gradient(hsl(200,100%,65%), hsl(200,82%,49%));
border-left: 1px solid hsla(200,100%,18%,.2);
box-shadow: inset 0 1px 0 hsla(0,0%,100%,.1), inset 0 0 2px hsla(0,0%,100%,.15), 0 0 0 1px hsla(210,54%,20%,.05);
}
#urlbar-reload-button:active {
content: url(https://web.archive.org/web/20130909032337im_/http://people.mozilla.com/~shorlander/files/australis-designSpecs/images-win7/reloadStopGo-reload-hoverActive.png);
}
You do not have the required permissions to view the files attached to this post.