Skip to content

Commit 40fa8f3

Browse files
authored
Update classes.md
Update links.
1 parent 005197c commit 40fa8f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

classes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ Our classes are how we describe and document our data, so it's very important to
3535
* [classes added by Rails](#rails-classes)
3636
* classes used by jQuery plugins, since it is easier to keep plugins up to date if we *don't* modify the class names
3737
* classes used by our own JavaScript, although classes that follow our naming system are strongly preferred
38-
* classes used on [blurbs](/patterns/blurb) to allow muting (e.g., `work-000` and `user-000`), which are also listed last for neatness
38+
* classes used on [blurbs](/docs/patterns/blurb) to allow muting (e.g., `work-000` and `user-000`), which are also listed last for neatness
3939

4040
## "What kind and where?"
4141

42-
It might be useful to look at some [diagrams of pages](/patterns) on our Archive to really understand that in CSS, we write a path *to* places in our HTML; we don't need to give everything a unique name, because we describe it: "what kind and where".
42+
It might be useful to look at some [diagrams of pages](/docs/patterns) on our Archive to really understand that in CSS, we write a path *to* places in our HTML; we don't need to give everything a unique name, because we describe it: "what kind and where".
4343

4444
For example, we use a dotted line to underline all tag links: `a.tag { border-bottom: 1px dotted; }`. If we want to change how tag links look on bookmark blurbs, we don't add a new `bookmark-tag` class in the HTML -- we just use the bookmark tags' unique path in the DOM: `.bookmark a.tag { border-bottom: none; }`
4545

0 commit comments

Comments
 (0)