From 3312c4aa4ce8fb9dbe24e459afa2ed7dba0e63d1 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Wed, 5 Jun 2013 10:26:38 -0700 Subject: [PATCH] Partially revert "Remove unnecessary grid classes" This reverts commit 840c08f672bdbce2b4a8d66803d04e89e4077fab. --- js/id/ui/preset_list.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/id/ui/preset_list.js b/js/id/ui/preset_list.js index 1ca1a05d4..279a0ee6f 100644 --- a/js/id/ui/preset_list.js +++ b/js/id/ui/preset_list.js @@ -124,7 +124,7 @@ iD.ui.PresetList = function(context) { function item(selection) { var wrap = selection.append('div') - .attr('class', 'preset-list-button-wrap category'); + .attr('class', 'preset-list-button-wrap category col12'); wrap.append('button') .attr('class', 'preset-list-button') @@ -137,7 +137,7 @@ iD.ui.PresetList = function(context) { .text(preset.name()); box = selection.append('div') - .attr('class', 'subgrid') + .attr('class', 'subgrid col12') .style('max-height', '0px'); box.append('div') @@ -174,7 +174,7 @@ iD.ui.PresetList = function(context) { function PresetItem(preset) { function item(selection) { var wrap = selection.append('div') - .attr('class', 'preset-list-button-wrap'); + .attr('class', 'preset-list-button-wrap col12'); wrap.append('button') .attr('class', 'preset-list-button')