Skip to content
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.

Commit

Permalink
Switching to cmd builds. Fix for issue #3
Browse files Browse the repository at this point in the history
  • Loading branch information
Faleij committed Jan 17, 2014
1 parent 65206e8 commit bdf7516
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 2 deletions.
Binary file added australis-slimmr.xpi
Binary file not shown.
12 changes: 12 additions & 0 deletions data/CSS/smallTabbar.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#TabsToolbar {
max-height : 27px !important;
border-bottom: none !important;
margin-top: -15px !important;
padding-bottom: 1px !important;
z-index: -1000 !important;
}

#toolbar-menubar {
z-index: 1000 !important;
position: absolute;
}
2 changes: 1 addition & 1 deletion lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var windowListeners = [];
var windowsCache;

var simplePerfs = require("sdk/simple-prefs");
var settingsNames = ["personalOverNav","compressBookmarksToolbarItems","autoHideNavbar","tabsInTitlebar","compressToolbar"];
var settingsNames = ["personalOverNav","compressBookmarksToolbarItems","autoHideNavbar","tabsInTitlebar","compressToolbar","smallTabbar"];

function focus(e){
console.log("focus");
Expand Down
56 changes: 55 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1 +1,55 @@
{"description": "Slimming the Australis Theme of Firefox 28", "contributors": [], "icon64": "data/icon64.png", "dependencies": ["api-utils", "addon-kit"], "fullName": "Australis Slimmr", "id": "jid0-FzuVXsJ8V412lHq5CaTLIMJOdd8", "icon": "data/icon.png", "license": "", "main": "main", "preferences": [{"title": "Place Personal Toolbar (Bookmarks) over Navigation bar?", "type": "bool", "name": "personalOverNav", "value": true, "description": "Makes the Personal Toolbar appear over Navigation bar. (Automatically applied when Auto Hiding Nav Bar is checked)"}, {"type": "bool", "name": "compressBookmarksToolbarItems", "value": true, "title": "Compress Bookmarks Toolbar Items?"}, {"title": "Automatically Hide Navigation Bar?", "type": "bool", "name": "autoHideNavbar", "value": true, "description": "The Navigation Bar will only be visible when the mouse is over the Bookmarks and Tabs area, as well as when writing an url or using the searchbar."}, {"title": "Tabs in Titlebar?", "type": "bool", "name": "tabsInTitlebar", "value": true, "description": "Move the tabs into the title bars when having restored(non-fullscreen) windows."}, {"title": "Compress Toolbar/Navigation bar Items?", "type": "bool", "name": "compressToolbar", "value": true, "description": "Should make the Navigation bar slimmer when having custom icons in it."}], "lib": "lib", "author": "Faleij", "url": "", "name": "australis-slimmr", "version": "initial.rev154", "permissions": {"private-browsing": true}}
{
"description": "Slimming the Australis Theme of Firefox 28 and later",
"contributors": [],
"icon64": "data/icon64.png",
"dependencies": ["api-utils", "addon-kit"],
"fullName": "Australis Slimmr",
"id": "jid0-FzuVXsJ8V412lHq5CaTLIMJOdd8",
"icon": "data/icon.png",
"license": "",
"main": "main",
"preferences": [{
"title": "Place Personal Toolbar (Bookmarks) over Navigation bar?",
"type": "bool",
"name": "personalOverNav",
"value": true,
"description": "Makes the Personal Toolbar appear over Navigation bar. (Automatically applied when Auto Hiding Nav Bar is checked)"
}, {
"type": "bool",
"name": "compressBookmarksToolbarItems",
"value": true,
"title": "Compress Bookmarks Toolbar Items?"
}, {
"title": "Automatically Hide Navigation Bar?",
"type": "bool",
"name": "autoHideNavbar",
"value": true,
"description": "The Navigation Bar will only be visible when the mouse is over the Bookmarks and Tabs area, as well as when writing an url or using the searchbar."
}, {
"title": "Tabs in Titlebar?",
"type": "bool",
"name": "tabsInTitlebar",
"value": true,
"description": "Move the tabs into the title bars when having restored(non-fullscreen) windows."
}, {
"title": "Compress Toolbar/Navigation bar Items?",
"type": "bool",
"name": "compressToolbar",
"value": true,
"description": "Should make the Navigation bar slimmer when having custom icons in it."
}, {
"title": "Small Tabbar?",
"type": "bool",
"name": "smallTabbar",
"value": true,
"description": "Vertically compresses the tabbar and tabs."
}],
"lib": "lib",
"author": "Faleij",
"url": "https://addons.mozilla.org/en-US/firefox/addon/australis-slimmr/",
"name": "australis-slimmr",
"version": "0.3.1.20140118",
"permissions": {
"private-browsing": true
}
}

0 comments on commit bdf7516

Please sign in to comment.