helmfridsson commited on
Commit
5a2cd41
·
verified ·
1 Parent(s): 1c69416

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +44 -0
style.css CHANGED
@@ -444,4 +444,48 @@ label.container.show_textbox_border {
444
  .gradio-container .gr-checkbox label {
445
  color: #000000 !important;
446
  font-weight: 500;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
447
  }
 
444
  .gradio-container .gr-checkbox label {
445
  color: #000000 !important;
446
  font-weight: 500;
447
+
448
+
449
+ /* ===============================
450
+ TA BORT SVARTA HÖRN I MEDDELANDE
451
+ =============================== */
452
+
453
+ label.show_textbox_border::before,
454
+ label.show_textbox_border::after {
455
+ display: none !important;
456
+ content: none !important;
457
+ }
458
+
459
+ label.show_textbox_border {
460
+ background: #ffffff !important;
461
+ border: none !important;
462
+ box-shadow: none !important;
463
+ }
464
+
465
+ /* ===============================
466
+ TVINGA LJUSA KNAPPAR (ÄVEN SECONDARY)
467
+ =============================== */
468
+
469
+ .gradio-container button.gr-button.secondary,
470
+ .gradio-container button.gr-button.primary {
471
+ background-color: #ffffff !important;
472
+ color: #000000 !important;
473
+ border: 2px solid #000000 !important;
474
+ border-radius: 10px !important;
475
+ box-shadow: none !important;
476
+ }
477
+
478
+ .gradio-container button.gr-button.secondary:hover,
479
+ .gradio-container button.gr-button.primary:hover {
480
+ background-color: #f2f2f2 !important;
481
+ }
482
+
483
+ /* ===============================
484
+ TA BORT SVART PLATTA BAKOM CHECKBOX
485
+ =============================== */
486
+
487
+ .gradio-container .form:has(.gr-checkbox) {
488
+ background: transparent !important;
489
+ box-shadow: none !important;
490
+ border: none !important;
491
  }