Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
crowlKats committed Nov 8, 2024
1 parent 722a9b3 commit 79f4f2c
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 38 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ making changes to the API.

### Running jsr

1. `deno task services:macos`, `deno task services:macos:amd` or `deno task services:linux` in one terminal
1. `deno task services:macos`, `deno task services:macos:amd` or
`deno task services:linux` in one terminal
2. `deno task dev:api` in another terminal
3. `deno task dev:frontend` in another terminal

Expand All @@ -135,10 +136,12 @@ registry with data is to publish
[deno_std](https://github.com/denoland/deno_std) to the registry. This can be
done via the following steps:

1. Make sure to [make yourself a staff user/admin](#making-yourself-a-staff-useradmin).
1. Make sure to
[make yourself a staff user/admin](#making-yourself-a-staff-useradmin).
2. Navigate to your profile page and copy the UUID from the URL.
3. Assign the `std` scope to your user through the [admin panel](http://jsr.test/admin/scopes/assign)
by using the UUID from the previous step.
3. Assign the `std` scope to your user through the
[admin panel](http://jsr.test/admin/scopes/assign) by using the UUID from the
previous step.
4. Clone https://github.com/denoland/deno_std in the same parent folder as the
`jsr` project.
5. Run `JSR_URL=http://jsr.test deno publish` to publish all of the @std
Expand Down
69 changes: 35 additions & 34 deletions frontend/static/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -255,130 +255,131 @@ body .ddoc {

.highlight {
@apply relative;

.lineNumbers {
@apply border-r-2 border-jsr-gray-100 text-jsr-gray-300 pr-3 text-right flex-none;
@apply border-r-2 border-jsr-gray-100 text-jsr-gray-300 pr-3 text-right
flex-none;
@apply mr-3 !important;
}

.context_button {
@apply absolute top-3 right-4 opacity-60 hover:opacity-100 border-none hover:bg-jsr-cyan-50;
@apply absolute top-3 right-4 opacity-60 hover:opacity-100 border-none
hover:bg-jsr-cyan-50;
}



/*!
* GitHub Light v0.5.0
* Copyright (c) 2012 - 2017 GitHub, Inc.
* Licensed under MIT (https://github.com/primer/github-syntax-theme-generator/blob/master/LICENSE)
*/
* GitHub Light v0.5.0
* Copyright (c) 2012 - 2017 GitHub, Inc.
* Licensed under MIT (https://github.com/primer/github-syntax-theme-generator/blob/master/LICENSE)
*/

.pl-c /* comment, punctuation.definition.comment, string.comment */ {
color: #6a737d;
}

.pl-c1
/* constant, entity.name.constant, variable.other.constant, variable.language, support, meta.property-name, support.constant, support.variable, meta.module-reference, markup.raw, meta.diff.header, meta.output */,
/* constant, entity.name.constant, variable.other.constant, variable.language, support, meta.property-name, support.constant, support.variable, meta.module-reference, markup.raw, meta.diff.header, meta.output */,
.pl-s .pl-v /* string variable */ {
color: #005cc5;
}

.pl-e /* entity */,
.pl-en /* entity.name */ {
color: #6f42c1;
}

.pl-smi
/* variable.parameter.function, storage.modifier.package, storage.modifier.import, storage.type.java, variable.other */,
/* variable.parameter.function, storage.modifier.package, storage.modifier.import, storage.type.java, variable.other */,
.pl-s .pl-s1 /* string source */ {
color: #24292e;
}

.pl-ent /* entity.name.tag, markup.quote */ {
color: #22863a;
}

.pl-k /* keyword, storage, storage.type */ {
color: #d73a49;
}

.pl-s /* string */,
.pl-pds
/* punctuation.definition.string, source.regexp, string.regexp.character-class */,
/* punctuation.definition.string, source.regexp, string.regexp.character-class */,
.pl-s .pl-pse .pl-s1 /* string punctuation.section.embedded source */,
.pl-sr /* string.regexp */,
.pl-sr .pl-cce /* string.regexp constant.character.escape */,
.pl-sr .pl-sre /* string.regexp source.ruby.embedded */,
.pl-sr .pl-sra /* string.regexp string.regexp.arbitrary-repitition */ {
color: #032f62;
}

.pl-v /* variable */,
.pl-smw /* sublimelinter.mark.warning */ {
color: #e36209;
}

.pl-bu /* invalid.broken, invalid.deprecated, invalid.unimplemented, message.error, brackethighlighter.unmatched, sublimelinter.mark.error */
{
color: #b31d28;
}

.pl-ii /* invalid.illegal */ {
color: #fafbfc;
background-color: #b31d28;
}

.pl-c2 /* carriage-return */ {
color: #fafbfc;
background-color: #d73a49;
}

.pl-c2::before /* carriage-return */ {
content: "^M";
}

.pl-sr .pl-cce /* string.regexp constant.character.escape */ {
font-weight: bold;
color: #22863a;
}

.pl-ml /* markup.list */ {
color: #735c0f;
}

.pl-mh /* markup.heading */,
.pl-mh .pl-en /* markup.heading entity.name */,
.pl-ms /* meta.separator */ {
font-weight: bold;
color: #005cc5;
}

.pl-mi /* markup.italic */ {
font-style: italic;
color: #24292e;
}

.pl-mb /* markup.bold */ {
font-weight: bold;
color: #24292e;
}

.pl-md /* markup.deleted, meta.diff.header.from-file, punctuation.definition.deleted */
{
color: #b31d28;
background-color: #ffeef0;
}

.pl-mi1 /* markup.inserted, meta.diff.header.to-file, punctuation.definition.inserted */
{
color: #22863a;
background-color: #f0fff4;
}

.pl-mc /* markup.changed, punctuation.definition.changed */ {
color: #e36209;
background-color: #ffebda;
}

.pl-mi2 /* markup.ignored, markup.untracked */ {
color: #f6f8fa;
background-color: #005cc5;
Expand Down

0 comments on commit 79f4f2c

Please sign in to comment.