mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 09:12:52 +00:00
Partially revert "Remove unnecessary grid classes"
This reverts commit 840c08f672.
This commit is contained in:
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user