Merge pull request #10915 from aspnet/rybrande/BlazorAccessibility
Improve Blazor accessibility
This commit is contained in:
commit
0b340bd70c
|
|
@ -8,6 +8,12 @@ a {
|
||||||
color: #0366d6;
|
color: #0366d6;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn-primary {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #1b6ec2;
|
||||||
|
border-color: #1861ac;
|
||||||
|
}
|
||||||
|
|
||||||
app {
|
app {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
@ -25,7 +31,7 @@ app {
|
||||||
}
|
}
|
||||||
|
|
||||||
.main .top-row {
|
.main .top-row {
|
||||||
background-color: #e6e6e6;
|
background-color: #f7f7f7;
|
||||||
border-bottom: 1px solid #d6d5d5;
|
border-bottom: 1px solid #d6d5d5;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@ package-lock.json
|
||||||
tmp/
|
tmp/
|
||||||
CustomHive/
|
CustomHive/
|
||||||
angular/
|
angular/
|
||||||
|
blazorserverside/
|
||||||
mvc/
|
mvc/
|
||||||
razor/
|
razor/
|
||||||
react/
|
react/
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,13 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
#requires -version 4
|
||||||
|
|
||||||
|
# This script packages, installs and creates a template to help with rapid iteration in the templating area.
|
||||||
|
[CmdletBinding(PositionalBinding = $false)]
|
||||||
|
param()
|
||||||
|
|
||||||
|
Set-StrictMode -Version 2
|
||||||
|
$ErrorActionPreference = 'Stop'
|
||||||
|
|
||||||
|
. $PSScriptRoot\Test-Template.ps1
|
||||||
|
|
||||||
|
Test-Template "blazorserverside" "blazorserverside" "Microsoft.DotNet.Web.ProjectTemplates.3.0.3.0.0-dev.nupkg" $false
|
||||||
Loading…
Reference in New Issue