helmfridsson commited on
Commit
1fb16ef
·
verified ·
1 Parent(s): 7d0be41

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +44 -9
style.css CHANGED
@@ -30,13 +30,17 @@ h1, h2, h3, label, p, span ,li {
30
  ===================================================== */
31
 
32
  .card {
33
- width: 260px; /* lås bredd */
34
- height: 64px; /* lås höjd */
35
- display: flex;
36
- align-items: center; /* vertikal centrering */
37
- justify-content: center;/* horisontell centrering */
 
 
 
 
38
  text-align: center;
39
- white-space: normal; /* tillåt radbrytning */
40
  line-height: 1.2;
41
  }
42
 
@@ -53,7 +57,7 @@ h1, h2, h3, label, p, span ,li {
53
  border: 2px solid #1e5bd7 !important;
54
  border-radius: 16px;
55
  padding: 12px;
56
- }*/
57
 
58
  .question-list,
59
  .question-list .wrap,
@@ -65,14 +69,14 @@ h1, h2, h3, label, p, span ,li {
65
  box-shadow: none !important;
66
  }
67
 
68
- /* Header-rad */
69
  .question-list thead th {
70
  background: #ffffff !important;
71
  color: #000000 !important;
72
  border: none !important;
73
  }
74
 
75
- /* Celler */
76
  .question-list td {
77
  background: #ffffff !important;
78
  color: #000000 !important;
@@ -84,6 +88,37 @@ h1, h2, h3, label, p, span ,li {
84
  .question-list tr:hover td {
85
  border: none !important;
86
  background: #eef3ff !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  }
88
 
89
  /* =====================================================
 
30
  ===================================================== */
31
 
32
  .card {
33
+ width: 260px;
34
+ height: 64px;
35
+ }
36
+
37
+ /* Justera innehåll utan att förstöra knappen */
38
+ .card.gr-button {
39
+ display: inline-flex; /* behåll knapp-layout */
40
+ align-items: center;
41
+ justify-content: center;
42
  text-align: center;
43
+ white-space: normal;
44
  line-height: 1.2;
45
  }
46
 
 
57
  border: 2px solid #1e5bd7 !important;
58
  border-radius: 16px;
59
  padding: 12px;
60
+ }
61
 
62
  .question-list,
63
  .question-list .wrap,
 
69
  box-shadow: none !important;
70
  }
71
 
72
+ /* Header-rad
73
  .question-list thead th {
74
  background: #ffffff !important;
75
  color: #000000 !important;
76
  border: none !important;
77
  }
78
 
79
+ /* Celler
80
  .question-list td {
81
  background: #ffffff !important;
82
  color: #000000 !important;
 
88
  .question-list tr:hover td {
89
  border: none !important;
90
  background: #eef3ff !important;
91
+ }*/
92
+ /* ===============================
93
+ UNDERFRÅGOR – Dataframe
94
+ =============================== */
95
+
96
+ /* Ta bort fokus- och markeringsramar */
97
+ .question-list *:focus {
98
+ outline: none !important;
99
+ box-shadow: none !important;
100
+ }
101
+
102
+ /* Neutralisera ag-grid styling */
103
+ .question-list .ag-root,
104
+ .question-list .ag-cell,
105
+ .question-list .ag-row {
106
+ outline: none !important;
107
+ box-shadow: none !important;
108
+ }
109
+
110
+ /* Ta bort scrollbars */
111
+ .question-list,
112
+ .question-list .wrap,
113
+ .question-list .ag-root {
114
+ overflow: hidden !important;
115
+ }
116
+
117
+ /* Säkerställ vit bakgrund och svart text */
118
+ .question-list,
119
+ .question-list td {
120
+ background: #ffffff !important;
121
+ color: #000000 !important;
122
  }
123
 
124
  /* =====================================================