jclyo1 commited on
Commit
7e6e1a7
1 Parent(s): 5bd8c44
Files changed (2) hide show
  1. static/index.html +1 -1
  2. static/style.css +18 -6
static/index.html CHANGED
@@ -371,7 +371,7 @@
371
 
372
  var certificates = [];
373
 
374
- [imagePrompt, model].forEach((item) => {
375
  item.addEventListener("change", async (event) => {
376
  setGenerateButtonStatus();
377
  });
 
371
 
372
  var certificates = [];
373
 
374
+ [imagePrompt, model, generateTerms].forEach((item) => {
375
  item.addEventListener("change", async (event) => {
376
  setGenerateButtonStatus();
377
  });
static/style.css CHANGED
@@ -131,11 +131,7 @@ label.form-check-label {
131
  font-weight: 400;
132
  }
133
 
134
- .btn-primary {
135
- width: 100%;
136
- background: rgba(206, 206, 206, 1);
137
- color: white;
138
- }
139
 
140
  .display-verify {
141
  display: none;
@@ -323,15 +319,31 @@ img.thumbnail {
323
  background-image: url('images/x.svg');
324
  }
325
 
 
 
 
 
 
 
 
 
 
 
 
 
 
326
  .btn-primary.active {
327
  background-color: #1a6dff;
 
328
  }
329
 
330
  .btn-primary.active:hover {
331
  background-color: #165ad9;
 
332
 
333
  }
334
 
335
  .btn-primary.active:active {
336
- background: #1247b2;
 
337
  }
 
131
  font-weight: 400;
132
  }
133
 
134
+
 
 
 
 
135
 
136
  .display-verify {
137
  display: none;
 
319
  background-image: url('images/x.svg');
320
  }
321
 
322
+ .btn-primary {
323
+ width: 100%;
324
+ background: rgba(206, 206, 206, 1);
325
+ color: white;
326
+ border-color: rgba(206, 206, 206, 1);
327
+ border-radius: 0;
328
+ }
329
+
330
+ .btn-primary:hover, .btn-primary:active {
331
+ background-color: rgba(206, 206, 206, 1);
332
+ border-color: rgba(206, 206, 206, 1);
333
+ }
334
+
335
  .btn-primary.active {
336
  background-color: #1a6dff;
337
+ border-color: #1a6dff;
338
  }
339
 
340
  .btn-primary.active:hover {
341
  background-color: #165ad9;
342
+ border-color: #165ad9;
343
 
344
  }
345
 
346
  .btn-primary.active:active {
347
+ background-color: #1247b2;
348
+ background-color: #1247b2;
349
  }