first draft of new commit list

9d00836efbcb6fc1fd915839c975a7728ea1073e

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

first draft of new commit list
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%;
  }
}