-
-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Information overlays #194
Information overlays #194
Changes from 16 commits
aaf8bcd
23d423f
8754b81
1df6799
029613c
bf3b535
d196d48
dd8d983
a59332c
1e782c4
b1b5ba8
be96fc4
39eeade
dd20266
15be838
2652519
c8f8ca6
5de4ab6
47d8c27
4d5cb2a
57ba92a
eddd48e
966ffec
621cdda
fb279d3
fd1c4ce
f448363
3ff9104
7f36ce4
7085966
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,7 @@ to{} | |
.frameless .frame--layout-splitview-landscape{} | ||
.frame--layout-splitview-landscape .frame--image{} | ||
/* src/css/image.css */ | ||
.polling-paused.more-info .image--metadata{} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Empty CSS blocks require implementation The following selectors have empty blocks that need to be implemented with appropriate styles:
Would you like me to help generate the CSS implementations for these selectors based on the AI summary's description of the intended functionality? Also applies to: 66-76, 93-93, 161-161 🧰 Tools🪛 Biome[error] 43-43: An empty block isn't allowed. Consider removing the empty block or adding styles inside it. (lint/suspicious/noEmptyBlock) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add this file to ignore list There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @damongolding, understood. To have CodeRabbit ignore this file in future reviews, you can add a path filter to your CodeRabbit configuration. Here's how you can do it: In your path_filters:
- path: 'custom.example.css'
action: ignore This will instruct CodeRabbit to skip reviewing Path-based and AST-based Instructions Let me know if you need any assistance with this configuration. |
||
.image--metadata{} | ||
.image--metadata--theme-fade::before{} | ||
.frame--layout-splitview:nth-child(1) .image--metadata--theme-fade::before{} | ||
|
@@ -61,6 +62,21 @@ to{} | |
.frame .frame--image-smart-zoom-in img{} | ||
.polling-paused .frame{} | ||
.polling-paused .frame img{} | ||
/* src/css/image-more-info.css */ | ||
#more-info{} | ||
#more-info *{} | ||
.polling-paused.more-info .frame--image img{} | ||
.polling-paused.more-info #more-info{} | ||
.polling-paused.more-info #more-info .more-info--image{} | ||
.polling-paused.more-info #more-info .more-info--image .more-info--image--data{} | ||
.polling-paused.more-info #more-info .more-info--image h3{} | ||
.polling-paused.more-info #more-info .more-info--image a{} | ||
.polling-paused.more-info #more-info .more-info--image .more-info--image--qr-code{} | ||
.polling-paused.more-info #more-info .more-info--image .more-info--image--qr-code img{} | ||
.layout-splitview-landscape #more-info{} | ||
.layout-splitview-landscape #more-info .more-info--image{} | ||
.more-info--webhook{} | ||
.more-info--webhook:hover{} | ||
/* src/css/error.css */ | ||
.error-container{} | ||
.error{} | ||
|
@@ -77,6 +93,7 @@ to{} | |
.offline{} | ||
.sleep #offline{} | ||
/* src/css/clock-weather-container.css */ | ||
.polling-paused.more-info #clock-weather-container{} | ||
#clock-weather-container{} | ||
.layout-splitview #clock-weather-container{} | ||
.sleep #clock-weather-container{} | ||
|
@@ -136,6 +153,7 @@ to{} | |
.navigation{} | ||
.navigation--item{} | ||
.navigation--item:hover{} | ||
.navigation--item:hover svg{} | ||
.navigation--item--separator{} | ||
.navigation-hidden{} | ||
.navigation svg{} | ||
|
@@ -144,6 +162,7 @@ to{} | |
.navigation--fullscreen--exit{} | ||
.navigation--fullscreen-enabled .navigation--fullscreen--exit{} | ||
.navigation--fullscreen-enabled .navigation--fullscreen--enter{} | ||
.navigation--more-info svg{} | ||
.navigation--media-buttons{} | ||
.navigation--media-buttons .navigation--item{} | ||
.navigation--play-pause--play{} | ||
|
Large diffs are not rendered by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Add documentation for the exported SharedSecret variable.
As per Go conventions, exported variables should be documented. Additionally, consider whether this secret truly needs to be globally accessible.
Add documentation and consider encapsulation:
Consider wrapping this in a thread-safe accessor pattern: