Skip to content

Commit 2af7a9f

Browse files
Merge pull request #1498 from basecamp/rename-boards
Rename collections => boards
2 parents 1c54efb + 68db1fd commit 2af7a9f

File tree

320 files changed

+1944
-1768
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

320 files changed

+1944
-1768
lines changed
File renamed without changes.
File renamed without changes.

app/assets/stylesheets/bubble.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
.bubble__number {
4747
display: grid;
48-
font-size: clamp(10px, 50cqi, var(--bubble-number-max)); /* FF bug: https://app.fizzy.do/5986089/collections/2/cards/1373 */
48+
font-size: clamp(10px, 50cqi, var(--bubble-number-max)); /* FF bug: https://app.fizzy.do/5986089/boards/2/cards/1373 */
4949
font-weight: 900;
5050
inset: 0;
5151
place-content: center;

app/assets/stylesheets/card-columns.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@
492492
}
493493
}
494494

495-
.card__collection {
495+
.card__board {
496496
background-color: transparent;
497497
color: var(--card-content-color);
498498
}
@@ -519,10 +519,10 @@
519519
}
520520
}
521521

522-
/* Collection tools
522+
/* Board tools
523523
/* -------------------------------------------------------------------------- */
524524

525-
.collection-tools.card {
525+
.board-tools.card {
526526
--border-color: var(--color-selected-dark);
527527
--border-size: 1px;
528528
--card-padding-block: var(--block-space);
@@ -560,7 +560,7 @@
560560
}
561561
}
562562

563-
.collection-tools__watching {
563+
.board-tools__watching {
564564
--btn-size: 32px;
565565
--gap: 0.5ch;
566566

@@ -572,7 +572,7 @@
572572
position: relative;
573573
}
574574

575-
.collection-tools__watching-dialog {
575+
.board-tools__watching-dialog {
576576
--panel-padding: 2ch;
577577
--panel-size: 100%;
578578

app/assets/stylesheets/card-perma.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
}
8686
}
8787

88-
.collection-picker__button {
88+
.board-picker__button {
8989
--btn-border-size: 0;
9090

9191
font-size: 0.5em;

app/assets/stylesheets/cards.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
}
5656
}
5757

58-
.card__collection {
58+
.card__board {
5959
background-color: var(--card-color);
6060
border-radius: var(--border-radius) 0 var(--border-radius) 0;
6161
color: var(--color-ink-inverted);
@@ -66,7 +66,7 @@
6666
padding-block: 0.25lh;
6767
padding-inline: var(--card-padding-inline) 1ch;
6868

69-
&:has(.collection-picker__button) {
69+
&:has(.board-picker__button) {
7070
cursor: pointer;
7171
transition: background-color 100ms ease-out;
7272

@@ -92,7 +92,7 @@
9292
}
9393
}
9494

95-
.card__collection-name {
95+
.card__board-name {
9696
border-inline-start: 1px solid color-mix(in hsl, transparent 75%, currentColor);
9797
color: currentColor;
9898
display: flex;
@@ -404,7 +404,7 @@
404404
padding-block-end: 0;
405405
}
406406

407-
.card__collection {
407+
.card__board {
408408
font-size: var(--text-xx-small);
409409
padding-block: 0.5ch;
410410
padding-inline-start: var(--inline-space-double);
@@ -487,7 +487,7 @@
487487
}
488488
}
489489

490-
.card__collection-public-description {
490+
.card__board-public-description {
491491
max-inline-size: 66ch;
492492

493493
> *:first-child { margin-block-start: 0; }

app/assets/stylesheets/events.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,15 +270,15 @@
270270
z-index: 0;
271271
}
272272

273-
.card__collection {
273+
.card__board {
274274
background-color: transparent;
275275
color: color-mix(in srgb, var(--card-color) 40%, var(--color-ink));
276276
font-size: 0.7em;
277277
padding: 0;
278278
translate: 0 -0.3em;
279279
}
280280

281-
.card__collection-name {
281+
.card__board-name {
282282
border-inline-start: 1px solid color-mix(in srgb, var(--color-ink) 33%, var(--color-canvas));
283283
color: color-mix(in srgb, var(--card-color) 40%, var(--color-ink));
284284
margin: 0 0 0 calc(var(--inline-space) * 0.75);

app/assets/stylesheets/icons.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
.icon--clipboard { --svg: url("clipboard.svg "); }
4343
.icon--close { --svg: url("close.svg "); }
4444
.icon--close-circle { --svg: url("close-circle.svg "); }
45-
.icon--collection { --svg: url("collection.svg "); }
46-
.icon--collection-add { --svg: url("collection-add.svg "); }
45+
.icon--board { --svg: url("board.svg "); }
46+
.icon--board-add { --svg: url("board-add.svg "); }
4747
.icon--column-left { --svg: url("column-left.svg "); }
4848
.icon--column-right { --svg: url("column-right.svg "); }
4949
.icon--comment { --svg: url("comment.svg "); }

app/assets/stylesheets/print.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
}
6464

6565
.card {
66-
.card__collection {
66+
.card__board {
6767
background: var(--color-canvas);
6868
border-block-end: var(--border-light);
6969
border-inline-end: var(--border-light);
@@ -118,7 +118,7 @@
118118
}
119119
}
120120

121-
/* Collections
121+
/* Boards
122122
/* ------------------------------------------------------------------------ */
123123

124124
.filters,
@@ -181,7 +181,7 @@
181181
.card__meta-avatars--assignees > div > div:last-child,
182182
.steps > .step:last-child,
183183
div:has(> .tag-picker__button),
184-
div:has(> .collection-picker__button),
184+
div:has(> .board-picker__button),
185185
.delete-card,
186186
.header--card .header__title {
187187
display: none;

app/assets/stylesheets/trays.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@
314314
padding-block-end: 0;
315315
}
316316

317-
.card__collection {
317+
.card__board {
318318
padding-block: 0.25ch;
319319
}
320320

0 commit comments

Comments
 (0)