Skip to content

Commit 0d99854

Browse files
committed
UI tweeks for initial version
1 parent 797763f commit 0d99854

File tree

2 files changed

+27
-21
lines changed

2 files changed

+27
-21
lines changed

public/css/index.css

+18-12
Original file line numberDiff line numberDiff line change
@@ -55,30 +55,36 @@
5555
margin: 0;
5656
}
5757

58+
.modal {
59+
max-width: 800px !important;
60+
}
61+
5862
/* Roms page 2 column layout */
59-
#container {
60-
width: 100%;
61-
text-align: center;
63+
#header {
64+
grid-area: header;
6265
}
6366

64-
#container p {
65-
margin: 0;
67+
#right {
68+
grid-area: unidentified;
6669
}
6770

6871
#left {
69-
width: 50%;
70-
float:left;
72+
grid-area: identified;
7173
}
7274

73-
#right {
74-
width: 50%;
75-
float:left;
75+
.wrapper {
76+
display: grid;
77+
grid-template-columns: 50% 50%;
78+
grid-template-areas:
79+
"header header"
80+
"identified unidentified";
7681
}
7782

78-
.inline {
79-
float:left;
83+
.wrapper p {
84+
margin: 0;
8085
}
8186

87+
/* Hidden elements */
8288
.hidden {
8389
display: none;
8490
}

public/js/index.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -213,17 +213,17 @@ async function renderRom(data) {
213213
$('#side').empty();
214214
// Render Legend
215215
var keys = [['All Art Downloaded', 'green'], ['Art Available for Download', 'red'], ['No Art Available', 'gray']]
216-
var header = $('<div>')
216+
var header = $('<div>').attr('id', 'header');
217217
for await (var key of keys) {
218-
var item = $('<div>').addClass('inline').css('background-color',key[1]).text(key[0]);
218+
var item = $('<div>').css('background-color',key[1]).text(key[0]);
219219
header.append(item);
220220
}
221-
$('#main').append(header,'<br>')
222-
var container = $('<div>').attr('id', 'container');
221+
var container = $('<div>').addClass('wrapper');
222+
container.append(header);
223223
$('#main').append(container);
224-
var left = $('<div>').attr('id', 'left').append('<p>Identified Roms</p>');
225-
var right = $('<div>').attr('id', 'right').append('<p>Unidentified Roms</p>');
226-
$('#container').append(left,right);
224+
var identified = $('<div>').attr('id','left').append('<p>Identified Roms:</p>');
225+
var unidentified = $('<div>').attr('id','right').append('<p>Unidentified Roms:</p>');
226+
container.append(identified,unidentified);
227227
// Process buttons
228228
var folderName = $('#main').data('name');
229229
var downloadArtButton = $('<button>').addClass('button hover').attr('onclick', 'downloadArt(\'' + folderName + '\');').text('Download All Available Art');
@@ -242,13 +242,13 @@ async function renderRom(data) {
242242
var color = 'gray';
243243
};
244244
var item = $('<p>').css('background-color', color).text(idItem);
245-
$('#left').append(item)
245+
identified.append(item)
246246
};
247247
for await (var noIdItem of Object.keys(data[1])) {
248248
var item = $('<p>').text(noIdItem);
249249
var identifyButton = $('<button>').addClass('button hover').attr('onclick', 'identifyRom(\'' + data[1][noIdItem].replace("'","|") + '\',\'' + noIdItem.replace("'","|") + '\');').text('identify');
250250
item.append(identifyButton);
251-
$('#right').append(item)
251+
unidentified.append(item)
252252
};
253253
};
254254

0 commit comments

Comments
 (0)