Skip to content

Commit 0927359

Browse files
authored
Fix two small UI issues (README bg color, Script & Interactive info) (#9385)
* Fix Script & Interactive tab alert message Fix #9354 * Fix background color section for README sections Fix color constrast issue on the upload page Fix #9355
1 parent e720ee6 commit 0927359

3 files changed

Lines changed: 7 additions & 9 deletions

File tree

src/Bootstrap/dist/css/bootstrap-theme.css

Lines changed: 3 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Bootstrap/less/theme/common-readme.less

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
.readme-container {
33
display: block;
44
padding: 10.5px;
5-
background-color: @pre-bg;
6-
border: 1px solid #ccc;
5+
border: 2px solid #ccc;
76
word-break: normal;
87
margin-bottom: @default-margin-bottom;
98
overflow: auto;
@@ -44,7 +43,7 @@
4443

4544
pre {
4645
code.hljs {
47-
background-color: #f6f8fa;
46+
background-color: @pre-bg;
4847
color: #24292e;
4948

5049
.hljs-doctag,
@@ -92,7 +91,7 @@
9291
.hljs-comment,
9392
.hljs-code,
9493
.hljs-formula {
95-
color: #6a737d;
94+
color: #646d76;
9695
}
9796

9897
.hljs-name,

src/NuGetGallery/Views/Packages/DisplayPackage.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
CommandPrefix = "> ",
144144
InstallPackageCommands = new [] { string.Format("#r \"nuget: {0}, {1}\"", Model.Id, Model.Version) },
145145
AlertLevel = AlertLevel.Info,
146-
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."
146+
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."
147147
},
148148

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

0 commit comments

Comments
 (0)