Skip to content
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

Fix two small UI issues (README bg color, Script & Interactive info) #9385

Merged
merged 2 commits into from
Feb 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions src/Bootstrap/dist/css/bootstrap-theme.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions src/Bootstrap/less/theme/common-readme.less
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
.readme-container {
display: block;
padding: 10.5px;
background-color: @pre-bg;
border: 1px solid #ccc;
border: 2px solid #ccc;
word-break: normal;
margin-bottom: @default-margin-bottom;
overflow: auto;
Expand Down Expand Up @@ -44,7 +43,7 @@

pre {
code.hljs {
background-color: #f6f8fa;
background-color: @pre-bg;
color: #24292e;

.hljs-doctag,
Expand Down Expand Up @@ -92,7 +91,7 @@
.hljs-comment,
.hljs-code,
.hljs-formula {
color: #6a737d;
color: #646d76;
}

.hljs-name,
Expand Down
2 changes: 1 addition & 1 deletion src/NuGetGallery/Views/Packages/DisplayPackage.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
CommandPrefix = "> ",
InstallPackageCommands = new [] { string.Format("#r \"nuget: {0}, {1}\"", Model.Id, Model.Version) },
AlertLevel = AlertLevel.Info,
AlertMessage = "#r directive can be used in F# Interactive, C# scripting and .NET Interactive. Copy this into the interactive tool or source code of the script to reference the package."
AlertMessage = "#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package."
},

new ThirdPartyPackageManagerViewModel("Cake", "https://cakebuild.net/support/nuget")
Expand Down