first draft of new commit list

9d00836efbcb6fc1fd915839c975a7728ea1073e

Tucker McKnight <tmcknight@instructure.com> | Sun Mar 08 2026

first draft of new commit list
new-commits-page.html:0
Before


























































⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
After
-1
0
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
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Design Board</title>
    <link rel="stylesheet" href="css/design-board.css">
  </head>
  <body>
    <div class="container commits-page">
      <div class="row m-2">
        <div class="col">
          <div class="row commit">
            <div class="col">
              <div class="row">
                <div class="col">
                  <span class="date font-monospace">2026-04-01</span>
                  <a href="#" class="commit-msg">Do a thing that fixes a thing</a>
                </div>
              </div>
              <div class="row mt-3">
                <div class="col">
                  <span class="author">Tucker McKnight</span>
                  <span class="bg-primary badge rounded-pill"">tuckerm.us</span>
                  <span class="copy-sha m-2">
                    <span class="sha font-monospace">123abc</span>
                    <a href="#">Copy</a>
                  </span>
                </div>
              </div>
            </div>
            <div class="col-4">
              <div class="row">
                <div class="col-auto language-names pe-1">
                  <div>js</div>
                  <div>css</div>
                  <div>md</div>
                  <div>other</div>
                </div>
                <div class="col ps-0">
                  <div class="flex-grow-1 d-flex">
                    <div class="lang-diff plus-1"></div><div class="lang-diff minus-1"></div>
                  </div>
                  <div class="flex-grow-1 d-flex">
                    <div class="lang-diff plus-2"></div><div class="lang-diff minus-2"></div>
                  </div>
                  <div class="flex-grow-1 d-flex">
                    <div class="lang-diff plus-3"></div><div class="lang-diff minus-3"></div>
                  </div>
                  <div class="flex-grow-1 d-flex">
                    <div class="lang-diff plus-4"></div><div class="lang-diff minus-4"></div>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </body>
</html>
package.json:2
Before
1
2
3
4


  "dependencies": {
    "bootstrap": "^5.3.8",
    "sass": "^1.93.2"
  }
⁣
⁣
⁣
}
After
1
2
3
4
5
6
7
  "dependencies": {
    "bootstrap": "^5.3.8",
    "sass": "^1.93.2"
  },
  "scripts": {
    "sass": "npx sass scss/design-board.scss css/design-board.css"
  }
}
scss/design-board.scss:2
Before
1
2
3
4
5
6

$body-color: #262626;

$font-family-base: serif;

$border-radius: 0;
$border-radius-sm: 0;
After
1
2
3
4
5
6

$body-color: #262626;

// $font-family-base: serif;

$border-radius: 0;
$border-radius-sm: 0;
scss/design-board.scss:127
Before
126
127





























































  content: ' ]'
}
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
After
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
  content: ' ]'
}

// NEW COMMITS PAGE

.commits-page {
  a {
    color: $blue
  }

  .commit {
    border: 1px solid #999;
    padding: 10px 0;
    margin-bottom: 10px;
  }

  .lang-diff {
    height: 1.1rem;
  }

  .language-names {
    font-family: monospace;
    text-align: right;

    div {
      height: 1.1rem;
    }
  }

  .plus-1 {
    background-color: blue;
    width: 80%;
  }
  .minus-1 {
    background-color: navy;
    width: 20%;
  }

  .plus-2 {
    background-color: red;
    width: 50%;
  }
  .minus-2 {
    background-color: darkred;
    width: 30%;
  }

  .plus-3 {
    background-color: green;
    width: 10%;
  }
  .minus-3 {
    background-color: darkgreen;
    width: 5%;
  }

  .plus-4 {
    background-color: lightgray;
    width: 50%;
  }
  .minus-4 {
    background-color: gray;
    width: 35%;
  }
}