explicitely set border-radius
This commit is contained in:
parent
c22da1cfc5
commit
14a4d48b6d
2 changed files with 8 additions and 2 deletions
|
@ -28,7 +28,13 @@ Ox.DocPage = function(options, self) {
|
|||
title: self.options.item.name
|
||||
})
|
||||
.addClass('OxMonospace')
|
||||
.css({float: 'left', height: '13px', paddingTop: '1px', margin: '4px'})
|
||||
.css({
|
||||
float: 'left',
|
||||
height: '13px',
|
||||
paddingTop: '1px',
|
||||
borderRadius: '4px',
|
||||
margin: '4px'
|
||||
})
|
||||
.appendTo(self.$toolbar)
|
||||
|
||||
if (self.options.item.examples) {
|
||||
|
|
|
@ -28,7 +28,7 @@ Ox.ExamplePage = function(options, self) {
|
|||
style: 'square',
|
||||
title: self.options.title
|
||||
})
|
||||
.css({float: 'left', margin: '4px'})
|
||||
.css({float: 'left', borderRadius: '4px', margin: '4px'})
|
||||
.appendTo(self.$toolbar)
|
||||
|
||||
self.$openButton = Ox.Button({
|
||||
|
|
Loading…
Reference in a new issue