-
Notifications
You must be signed in to change notification settings - Fork 406
Display Docker Version Details in the Update Information Box #2488
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
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
268d856
Everything but update-info-widget.component.html
NorthernMan54 a68fb06
Update en.json
NorthernMan54 9c69b4d
WIP
NorthernMan54 ffbb375
Done
NorthernMan54 598be72
co-pilot
NorthernMan54 2ae9e03
Update status.service.ts
NorthernMan54 f9da229
Lint
NorthernMan54 5938fb2
fixes
NorthernMan54 df6c9cb
Update update-info-widget.component.html
NorthernMan54 c5d036c
Update update-info-widget.component.html
NorthernMan54 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
100 changes: 100 additions & 0 deletions
100
ui/src/app/core/components/information/information.component.scss
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
:host { | ||
::ng-deep .plugin-md { | ||
display: block !important; | ||
/* Ensure markdown container is a block element */ | ||
background-color: #f6f8fa !important; | ||
/* Grey background matching GitHub table header */ | ||
border-radius: 6px !important; | ||
/* Rounded corners */ | ||
padding: 16px !important; | ||
/* Padding inside the grey box */ | ||
margin: 16px auto !important; | ||
/* Center the box */ | ||
width: 100% !important; | ||
/* Full width to match content */ | ||
max-width: 632px !important; | ||
/* Match table max-width (600px) + padding (16px * 2) */ | ||
|
||
table { | ||
width: 100%; | ||
max-width: 600px; | ||
margin: 0 auto !important; | ||
/* Center table within the grey box */ | ||
border-collapse: collapse; | ||
border: 1px solid #d0d7de !important; | ||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif !important; | ||
font-size: 14px !important; | ||
color: #24292e !important; | ||
/* Dark text color */ | ||
} | ||
|
||
th, | ||
td { | ||
padding: 6px 13px !important; | ||
border: 1px solid #d0d7de !important; | ||
text-align: left; | ||
color: #24292e !important; | ||
/* Dark text color */ | ||
} | ||
|
||
th { | ||
background-color: #f6f8fa !important; | ||
font-weight: 600 !important; | ||
text-align: center !important; | ||
} | ||
|
||
td[align='center'] { | ||
text-align: center !important; | ||
} | ||
|
||
tr { | ||
color: #24292e !important; | ||
/* Dark text color */ | ||
} | ||
|
||
tr:nth-child(odd) { | ||
background-color: #ffffff !important; | ||
} | ||
|
||
tr:nth-child(even) { | ||
background-color: #f6f8fa !important; | ||
} | ||
|
||
tr:hover { | ||
background-color: #f0f2f5 !important; | ||
} | ||
} | ||
|
||
/* Dark mode support for the greyed box */ | ||
body.dark-mode .plugin-md { | ||
background-color: #2b2b2b !important; | ||
/* Darker grey for dark mode */ | ||
color: #ffffff !important; | ||
/* White text for dark mode */ | ||
|
||
table, | ||
tr, | ||
th, | ||
td { | ||
color: #ffffff !important; | ||
/* White text for dark mode */ | ||
} | ||
|
||
th { | ||
background-color: #3c3c3c !important; | ||
/* Slightly darker header in dark mode */ | ||
} | ||
|
||
tr:nth-child(odd) { | ||
background-color: #323232 !important; | ||
} | ||
|
||
tr:nth-child(even) { | ||
background-color: #2b2b2b !important; | ||
} | ||
|
||
tr:hover { | ||
background-color: #454545 !important; | ||
NorthernMan54 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
} | ||
NorthernMan54 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.