Skip to content

Commit 8613fec

Browse files
authored
[A11y] Improve color contrast of grey buttons (#8259)
Addresses #8192 You can find the test plan here: #8192 (comment)
1 parent 68c971d commit 8613fec

3 files changed

Lines changed: 16 additions & 16 deletions

File tree

src/Bootstrap/dist/css/bootstrap.css

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

src/Bootstrap/less/variables.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@
150150
@btn-font-weight: normal;
151151

152152
@btn-default-color: #333;
153-
@btn-default-bg: #f4f4f4;
154-
@btn-default-border: #f4f4f4;
153+
@btn-default-bg: #fff;
154+
@btn-default-border: #7f7f7f;
155155

156156
@btn-primary-color: #fff;
157157
@btn-primary-bg: @brand-primary;

src/NuGetGallery/Views/Organizations/_OrganizationAccountManageMembers.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
</select>
4545
</div>
4646
<div class="text-right col-xs-1">
47-
<button class="btn" type="submit" title="Add new member" aria-label="Add new member" data-bind="click: AddMember">Add</button>
47+
<button class="btn btn-primary" type="submit" title="Add new member" aria-label="Add new member" data-bind="click: AddMember">Add</button>
4848
</div>
4949
</div>
5050
</div>

0 commit comments

Comments
 (0)