Skip to content

Commit 50659e5

Browse files
committed
refact: css classes in basic.css and proper rename test css classes
1 parent 6ee3e63 commit 50659e5

File tree

11 files changed

+599
-580
lines changed

11 files changed

+599
-580
lines changed

src/LinkDotNet.Blog.Web/Features/AboutMe/Components/Profile.razor

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44

55
@inject IRepository<ProfileInformationEntry> Repository
66
@inject ISortOrderCalculator SortOrderCalculator
7-
<div class="aboutme-profile-card">
8-
<div class="aboutme-profile-name">
7+
<div class="profile-card">
8+
<div class="profile-name">
99
<span>@ProfileInformation.Name</span>
1010
<br/>
1111
<span>@ProfileInformation.Heading</span>
1212
</div>
13-
<div class="aboutme-profile-image">
13+
<div class="profile-image">
1414
<img src="@ProfileInformation.ProfilePictureUrl" alt="Profile Picture" />
1515
</div>
16-
<ul class="aboutme-profile-keypoints"
16+
<ul class="profile-keypoints"
1717
ondragover="event.preventDefault();">
1818
@foreach (var entry in profileInformationEntries)
1919
{

src/LinkDotNet.Blog.Web/Features/AboutMe/Components/Skill/SkillTable.razor

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<AddSkillDialog @ref="AddSkillDialog" SkillAdded="@AddSkill"></AddSkillDialog>
1010
}
1111
</div>
12-
<div class="aboutme-table-container">
13-
<table class="aboutme-skill-table" id="aboutme-skill-table">
12+
<div class="table-container">
13+
<table class="skill-table" id="skill-table">
1414
<tbody>
1515
<tr>
1616
<th>Capability</th>
@@ -51,7 +51,7 @@
5151
</table>
5252
@if (ShowAdminActions)
5353
{
54-
<small for="aboutme-skill-table">You can drag and drop your skills from one proficiency to another</small>
54+
<small for="skill-table">You can drag and drop your skills from one proficiency to another</small>
5555
}
5656
</div>
5757
@code {

src/LinkDotNet.Blog.Web/Features/AboutMe/Components/Skill/SkillTag.razor

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@using LinkDotNet.Blog.Domain
2-
<span class="aboutme-skill-tag">
2+
<span class="skill-tag">
33
@if (!string.IsNullOrEmpty(Skill.IconUrl))
44
{
55
<img src="@Skill.IconUrl" alt="icon" max-width="48px"/>

src/LinkDotNet.Blog.Web/wwwroot/css/aboutme.css

-98
This file was deleted.

src/LinkDotNet.Blog.Web/wwwroot/css/admin.css

-7
This file was deleted.

0 commit comments

Comments
 (0)