Skip to content

Commit 6b2acd9

Browse files
committed
Add formcontrol css to all site.css
1 parent 5940992 commit 6b2acd9

File tree

5 files changed

+25
-0
lines changed
  • src/ProjectTemplates/Web.ProjectTemplates/content
    • BlazorServerWeb-CSharp/wwwroot/css
    • ComponentsWebAssembly-CSharp/Client/wwwroot/css
    • RazorPagesWeb-CSharp/wwwroot/css
    • StarterWeb-CSharp/wwwroot/css
    • StarterWeb-FSharp/wwwroot/css

5 files changed

+25
-0
lines changed

src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/wwwroot/css/site.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ a, .btn-link {
88
color: #0077cc;
99
}
1010

11+
.form-control:focus {
12+
border-color: #0077cc;
13+
box-shadow: 0 0 0 0.2rem #0077cc;
14+
}
15+
1116
.btn-primary {
1217
color: #fff;
1318
background-color: #1b6ec2;

src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/wwwroot/css/app.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ a, .btn-link {
88
color: #0077cc;
99
}
1010

11+
.form-control:focus {
12+
border-color: #0077cc;
13+
box-shadow: 0 0 0 0.2rem #0077cc;
14+
}
15+
1116
.btn-primary {
1217
color: #fff;
1318
background-color: #1b6ec2;

src/ProjectTemplates/Web.ProjectTemplates/content/RazorPagesWeb-CSharp/wwwroot/css/site.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ a {
1111
color: #0077cc;
1212
}
1313

14+
.form-control:focus {
15+
border-color: #0077cc;
16+
box-shadow: 0 0 0 0.2rem #0077cc;
17+
}
18+
1419
.btn-primary {
1520
color: #fff;
1621
background-color: #1b6ec2;

src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-CSharp/wwwroot/css/site.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ a {
1111
color: #0077cc;
1212
}
1313

14+
.form-control:focus {
15+
border-color: #0077cc;
16+
box-shadow: 0 0 0 0.2rem #0077cc;
17+
}
18+
1419
.btn-primary {
1520
color: #fff;
1621
background-color: #1b6ec2;

src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-FSharp/wwwroot/css/site.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ a {
1111
color: #0077cc;
1212
}
1313

14+
.form-control:focus {
15+
border-color: #0077cc;
16+
box-shadow: 0 0 0 0.2rem #0077cc;
17+
}
18+
1419
.btn-primary {
1520
color: #fff;
1621
background-color: #1b6ec2;

0 commit comments

Comments
 (0)