File size: 2,448 Bytes
7601c3d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22f54b5
 
 
 
 
7601c3d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22f54b5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7601c3d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
.session-log h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.table-wrapper {
  overflow-x: auto;
}

.session-log table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.session-log th {
  text-align: left;
  padding: 0.625rem 0.75rem;
  border-bottom: 2px solid var(--color-border);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.session-log td {
  padding: 0.625rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}

.session-log tbody tr:hover {
  background: var(--color-bg-soft);
}

.notes-cell {
  white-space: normal;
  max-width: 260px;
  color: var(--color-text-muted);
}

.injury-display-cell {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.editing-row {
  background: var(--color-bg-soft);
}

.editing-row input[type="date"],
.editing-row input[type="number"],
.editing-row input[type="text"],
.editing-row select {
  width: 100%;
  min-width: 65px;
  padding: 0.25rem 0.4rem;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  background: var(--color-card);
  color: var(--color-text);
}

.editing-row input:focus,
.editing-row select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(180, 83, 9, 0.16);
}

.computed-cell {
  color: var(--color-text-muted);
  font-style: italic;
}

.injury-edit-stack {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.injury-edit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.injury-edit-row input[type="number"] {
  width: 65px;
  min-width: 65px;
}

.injury-edit-phase {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.injury-edit-phase input[type="number"] {
  width: 45px;
  min-width: 45px;
  text-align: center;
}

.action-buttons {
  white-space: nowrap;
}

.btn-edit,
.btn-delete,
.btn-save,
.btn-cancel {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
}

.btn-edit,
.btn-save {
  color: var(--color-text-muted);
}

.btn-edit:hover,
.btn-save:hover {
  color: var(--color-primary);
  background: rgba(180, 83, 9, 0.1);
}

.btn-delete,
.btn-cancel {
  color: var(--color-text-muted);
}

.btn-delete:hover,
.btn-cancel:hover {
  color: var(--color-danger);
  background: rgba(220, 38, 38, 0.1);
}