basic style pass on documentation pane.

This commit is contained in:
saman bb
2013-03-25 16:15:26 -04:00
parent 466c70979d
commit fbdb03bf2d
6 changed files with 47 additions and 48 deletions

View File

@@ -54,7 +54,7 @@ iD.ui = function(context) {
container.append('div')
.style('display', 'none')
.attr('class', 'help-wrap col6');
.attr('class', 'help-wrap fillL col5');
container.append('div')
.attr('class', 'map-control zoombuttons')

View File

@@ -11,9 +11,8 @@ iD.ui.Help = function(context) {
.select('.help-wrap')
.html('');
var toc = pane.append('div')
.attr('class', 'toc')
.append('ul');
var toc = pane.append('ul')
.attr('class', 'toc');
function clickHelp(d) {
doctitle.text(d.title);

View File

@@ -211,7 +211,7 @@ iD.ui.PresetGrid = function(context, entity) {
.style('max-height', '200px')
.style('opacity', '1');
presetinspect.append('h2')
presetinspect.append('h3')
.text(d.name());
var tag = {key: Object.keys(d.tags)[0]};