aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2024-02-22 18:38:45 +0200
committerHenry Jameson <me@hjkos.com>2024-02-22 18:38:45 +0200
commit1640bb61e32f64badd1d781cfc2d3afab953e7d1 (patch)
treee43f3927850199497435a5ea1195a45f9fb42d46 /src
parent339ae3e95e107a535018f2f05fa5da4815a620fe (diff)
last remaining core tasks done
Diffstat (limited to 'src')
-rw-r--r--src/components/root.style.js6
-rw-r--r--src/components/status/post.style.js19
2 files changed, 22 insertions, 3 deletions
diff --git a/src/components/root.style.js b/src/components/root.style.js
index 053d984b..97289236 100644
--- a/src/components/root.style.js
+++ b/src/components/root.style.js
@@ -8,12 +8,14 @@ export default {
'TopBar',
'Scrollbar',
'ScrollbarElement',
- 'MobileDrawer'
+ 'MobileDrawer',
+ 'Button' // mobile post button
],
defaultRules: [
{
directives: {
- '--font': 'generic | sans-serif'
+ '--font': 'generic | sans-serif',
+ '--monoFont': 'generic | monospace'
}
}
]
diff --git a/src/components/status/post.style.js b/src/components/status/post.style.js
index 7388e2e3..673f72e0 100644
--- a/src/components/status/post.style.js
+++ b/src/components/status/post.style.js
@@ -1,6 +1,9 @@
export default {
name: 'Post',
selector: '.Status',
+ states: {
+ selected: '.-focused'
+ },
validInnerComponents: [
'Text',
'Link',
@@ -14,5 +17,19 @@ export default {
'Attachment',
'PollGraph'
],
- defaultRules: []
+ defaultRules: [
+ {
+ directives: {
+ background: '--bg',
+ opacity: 0
+ }
+ },
+ {
+ state: ['selected'],
+ directives: {
+ background: '--inheritedBackground, 10',
+ opacity: 1
+ }
+ }
+ ]
}