diff options
author | zefanja <zefanja@freenet.de> | 2013-12-30 14:52:29 +0700 |
---|---|---|
committer | zefanja <zefanja@freenet.de> | 2013-12-30 14:52:29 +0700 |
commit | 1faf09359d347d4ea060a6b1198f07e25b8ed63e (patch) | |
tree | 288638707d0b733dbf02df893027b5ef05edb925 | |
parent | 2c414a5b9b25253d8a7e254b223fa1fa91b86048 (diff) | |
download | biblez-ng-1faf09359d347d4ea060a6b1198f07e25b8ed63e.tar.gz |
* updated latest bugfix from swordjs
m--------- | lib/sword | 0 | ||||
-rw-r--r-- | source/App.css | 6 | ||||
-rw-r--r-- | source/main.js | 4 |
3 files changed, 7 insertions, 3 deletions
diff --git a/lib/sword b/lib/sword -Subproject 140a4b1c26d961da0290c4e86d3b578b37e2946 +Subproject 23727e40996095c30b119b403175d4eafe0897f diff --git a/source/App.css b/source/App.css index fc5c11f..ce8b96e 100644 --- a/source/App.css +++ b/source/App.css @@ -65,6 +65,10 @@ width: 495px; } +.tb-button { + padding: 5px; +} + /* MODULE MANAGER */ .item { @@ -208,5 +212,5 @@ h3, h1 { /* OVERRIDE SOME ONYX SETTINGS */ .onyx-toolbar { - padding: 2px 5px; + padding: 5px; }
\ No newline at end of file diff --git a/source/main.js b/source/main.js index 56c8885..55cb659 100644 --- a/source/main.js +++ b/source/main.js @@ -23,10 +23,10 @@ enyo.kind({ {kind: "onyx.MoreToolbar", name: "topTB", components: [ {name: "moduleSelector", kind: "onyx.MenuDecorator", onSelect: "moduleSelected", components: [ //{kind: "onyx.IconButton", src: "assets/modules.png"}, - {kind: "onyx.Button", name: "btnModules", style: "background-color: #934A15;"}, + {kind: "onyx.Button", name: "btnModules", classes: "tb-button", style: "background-color: #934A15;"}, {kind: "onyx.Menu", name: "moduleMenu"} ]}, - {kind: "onyx.Button", name: "btnPassage", ontap: "handleBcSelector"}, + {kind: "onyx.Button", name: "btnPassage", classes: "tb-button", ontap: "handleBcSelector"}, //{fit: true}, {name: "actionSelector", kind: "onyx.MenuDecorator", onSelect: "actionSelected", components: [ {kind: "onyx.IconButton", src: "assets/menu.png"}, |