git-pr
created pr with
3.1
added 3.2
1: 3b99dc0 < -: ------- feat: static assets
2: 8919af5 ! 1: 66cafc6 feat: static assets folder
3: 7346122 ! 2: 5e76ed3 fix(cli): access control for removing patchsets
4: d8792d5 < -: ------- feat: static folder
pr_reviewed
changed status to
reviewed
added 3.4
1: cc56ea1 = 1: 0467f9e feat: static assets folder
2: ef749a4 = 2: da1730f review: typo and future enhancement comment
-: ------- > 3: c038404 refactor: per-file override for static folder
changed status to
accepted
cmds
checkout latest patchset:
ssh pr.pico.sh print 3 | git am -3checkout any patchset in a patch request:
ssh pr.pico.sh print 3.[rev] | git am -3add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 3set PR to open (enables RSS notifications):
ssh pr.pico.sh pr open 3set PR to draft (stops RSS notifications):
ssh pr.pico.sh pr draft 3
Patchset
3.1
chore: create patch for smol
Eric Bower
2024-07-19T04:29:31ZSemantic diff summary
0 added,
0 modified,
0 signature changed,
0 removed
across 0 analyzed files
(3 files skipped: unsupported file type)
+1
-0
Makefile
#
+53
-0
patches/smol.diff
#
| ... | ... | @@ -0,0 +1,53 @@ | |
| 1 | + | diff --git a/static/smol.css b/static/smol.css | |
| 2 | + | index e9b59ec..9e9d925 100644 | |
| 3 | + | --- a/static/smol.css | |
| 4 | + | +++ b/static/smol.css | |
| 5 | + | @@ -15,48 +15,6 @@ | |
| 6 | + | box-shadow: none; | |
| 7 | + | } | |
| 8 | + | ||
| 9 | + | -@media (prefers-color-scheme: light) { | |
| 10 | + | - :root { | |
| 11 | + | - --main-hue: 250; | |
| 12 | + | - --white: #2e3f53; | |
| 13 | + | - --white-light: #cfe0f4; | |
| 14 | + | - --white-dark: #6c6a6a; | |
| 15 | + | - --code: #52576f; | |
| 16 | + | - --pre: #e1e7ee; | |
| 17 | + | - --bg-color: #f4f4f4; | |
| 18 | + | - --text-color: #24292f; | |
| 19 | + | - --link-color: #005cc5; | |
| 20 | + | - --visited: #6f42c1; | |
| 21 | + | - --blockquote: #005cc5; | |
| 22 | + | - --blockquote-bg: #cfe0f4; | |
| 23 | + | - --hover: #c11e7a; | |
| 24 | + | - --grey: #ccc; | |
| 25 | + | - --grey-light: #6a708e; | |
| 26 | + | - --shadow: #e8e8e8; | |
| 27 | + | - } | |
| 28 | + | -} | |
| 29 | + | - | |
| 30 | + | -@media (prefers-color-scheme: dark) { | |
| 31 | + | - :root { | |
| 32 | + | - --main-hue: 250; | |
| 33 | + | - --white: #f2f2f2; | |
| 34 | + | - --white-light: #f2f2f2; | |
| 35 | + | - --white-dark: #e8e8e8; | |
| 36 | + | - --code: #414558; | |
| 37 | + | - --pre: #252525; | |
| 38 | + | - --bg-color: #282a36; | |
| 39 | + | - --text-color: #f2f2f2; | |
| 40 | + | - --link-color: #8be9fd; | |
| 41 | + | - --visited: #bd93f9; | |
| 42 | + | - --blockquote: #bd93f9; | |
| 43 | + | - --blockquote-bg: #353548; | |
| 44 | + | - --hover: #ff80bf; | |
| 45 | + | - --grey: #414558; | |
| 46 | + | - --grey-light: #6a708e; | |
| 47 | + | - --shadow: #252525; | |
| 48 | + | - } | |
| 49 | + | -} | |
| 50 | + | - | |
| 51 | + | html { | |
| 52 | + | background-color: var(--bg-color); | |
| 53 | + | color: var(--text-color); |
+0
-42
static/smol.css
#
| ... | ... | @@ -15,48 +15,6 @@ | |
| 15 | 15 | box-shadow: none; | |
| 16 | 16 | } | |
| 17 | 17 | ||
| 18 | - | @media (prefers-color-scheme: light) { | |
| 19 | - | :root { | |
| 20 | - | --main-hue: 250; | |
| 21 | - | --white: #2e3f53; | |
| 22 | - | --white-light: #cfe0f4; | |
| 23 | - | --white-dark: #6c6a6a; | |
| 24 | - | --code: #52576f; | |
| 25 | - | --pre: #e1e7ee; | |
| 26 | - | --bg-color: #f4f4f4; | |
| 27 | - | --text-color: #24292f; | |
| 28 | - | --link-color: #005cc5; | |
| 29 | - | --visited: #6f42c1; | |
| 30 | - | --blockquote: #005cc5; | |
| 31 | - | --blockquote-bg: #cfe0f4; | |
| 32 | - | --hover: #c11e7a; | |
| 33 | - | --grey: #ccc; | |
| 34 | - | --grey-light: #6a708e; | |
| 35 | - | --shadow: #e8e8e8; | |
| 36 | - | } | |
| 37 | - | } | |
| 38 | - | ||
| 39 | - | @media (prefers-color-scheme: dark) { | |
| 40 | - | :root { | |
| 41 | - | --main-hue: 250; | |
| 42 | - | --white: #f2f2f2; | |
| 43 | - | --white-light: #f2f2f2; | |
| 44 | - | --white-dark: #e8e8e8; | |
| 45 | - | --code: #414558; | |
| 46 | - | --pre: #252525; | |
| 47 | - | --bg-color: #282a36; | |
| 48 | - | --text-color: #f2f2f2; | |
| 49 | - | --link-color: #8be9fd; | |
| 50 | - | --visited: #bd93f9; | |
| 51 | - | --blockquote: #bd93f9; | |
| 52 | - | --blockquote-bg: #353548; | |
| 53 | - | --hover: #ff80bf; | |
| 54 | - | --grey: #414558; | |
| 55 | - | --grey-light: #6a708e; | |
| 56 | - | --shadow: #252525; | |
| 57 | - | } | |
| 58 | - | } | |
| 59 | - | ||
| 60 | 18 | html { | |
| 61 | 19 | background-color: var(--bg-color); | |
| 62 | 20 | color: var(--text-color); |