diff --git a/source/Ox.UI/js/Code/Ox.DocPage.js b/source/Ox.UI/js/Code/Ox.DocPage.js index 50c1a0b9..69dc1cf9 100644 --- a/source/Ox.UI/js/Code/Ox.DocPage.js +++ b/source/Ox.UI/js/Code/Ox.DocPage.js @@ -26,9 +26,10 @@ Ox.DocPage = function(options, self) { self.$title = Ox.Label({ style: 'square', - title: 'Documentation: ' + self.options.item.name + title: self.options.item.name }) - .css({float: 'left', margin: '4px'}) + .addClass('OxMonospace') + .css({float: 'left', height: '13px', paddingTop: '1px', margin: '4px'}) .appendTo(self.$toolbar) self.$examplesMenu = Ox.MenuButton({ diff --git a/source/Ox.UI/js/Code/Ox.ExamplePage.js b/source/Ox.UI/js/Code/Ox.ExamplePage.js index 36743707..244def6b 100644 --- a/source/Ox.UI/js/Code/Ox.ExamplePage.js +++ b/source/Ox.UI/js/Code/Ox.ExamplePage.js @@ -18,7 +18,7 @@ Ox.ExamplePage = function(options, self) { self.$title = Ox.Label({ style: 'square', - title: 'Examples: ' + self.options.title + title: self.options.title }) .css({float: 'left', margin: '4px'}) .appendTo(self.$toolbar)