Skip to content

Commit f24e92b

Browse files
committed
fix: removal of unused of css
1 parent 28a1365 commit f24e92b

File tree

3 files changed

+3
-115
lines changed

3 files changed

+3
-115
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
@if (ShowAdminActions)
2323
{
2424
<li
25-
class="item-draggable"
25+
class="cursor-grab"
2626
draggable="true"
2727
@ondrag="@(() => currentDragItem = entry)"
2828
@ondrop="@(() => HandleDrop(entry))">

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
<div class="col-lg-9 col-md-8 tab-container">
55
<ul class="nav nav-pills nav-underline border-bottom justify-content-around" id="aboutMe" role="tablist">
6-
<li class="nav-item" role="presentation">
6+
<li role="presentation">
77
<button class="nav-link active bg-transparent border-0 text-body" id="pills-skills-tab"
88
data-bs-toggle="pill" data-bs-target="#pills-home" type="button"
99
role="tab" aria-controls="pills-home" aria-selected="true">
1010
Skills
1111
</button>
1212
</li>
13-
<li class="nav-item" role="presentation">
13+
<li role="presentation">
1414
<button class="nav-link bg-transparent border-0 text-body" id="pills-talks-tab"
1515
data-bs-toggle="pill" data-bs-target="#pills-profile" type="button"
1616
role="tab" aria-controls="pills-profile" aria-selected="false">

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

Lines changed: 0 additions & 112 deletions
Original file line numberDiff line numberDiff line change
@@ -248,118 +248,6 @@ code {
248248
z-index: initial;
249249
max-width: 130px;
250250
}
251-
/*
252-
.nav>.nav-item>button {
253-
border: 0;
254-
background: transparent !important;
255-
color: var(--bs-body-color) !important;
256-
}
257-
*/
258-
/*#endregion */
259-
260-
/*#region About Me */
261-
.table-container {
262-
overflow-x: auto;
263-
}
264-
265-
.skill-table {
266-
margin-top: 20px;
267-
width: 100%;
268-
}
269-
270-
.skill-table td:first-of-type {
271-
width:10%
272-
}
273-
274-
.skill-table td {
275-
width: 30%;
276-
border-top: 1px var(--bs-light) solid;
277-
vertical-align: top;
278-
min-width: 100px;
279-
}
280-
281-
.skill-table td div {
282-
display: inline-block;
283-
margin-right: 8px;
284-
margin-top: 12px;
285-
margin-bottom: 12px;
286-
}
287-
288-
.skill-tag {
289-
padding: 8px;
290-
border-radius: 5px;
291-
background-color: var(--tag-background);
292-
display: inline-block;
293-
white-space: nowrap;
294-
overflow: hidden;
295-
text-overflow: ellipsis;
296-
}
297-
298-
.skill-tag img {
299-
padding-right: 12px;
300-
width: 36px;
301-
}
302-
303-
.profile-card {
304-
display: inline-block;
305-
box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.1);
306-
width: 100%;
307-
border-radius: 8px;
308-
}
309-
310-
.profile-name {
311-
padding: 20px;
312-
font-size: 1.25em;
313-
line-height: 1.5em;
314-
}
315-
316-
.profile-name:first-child {
317-
background: var(--tag-background);
318-
}
319-
320-
.profile-image {
321-
padding: 30px;
322-
background: var(--tag-background);
323-
}
324-
325-
.profile-image img {
326-
width: 100%;
327-
margin: auto;
328-
border-radius: 50vw;
329-
display: block;
330-
}
331-
332-
.profile-keypoints {
333-
background-color: var(--tag-background);
334-
padding-top: 10px;
335-
padding-left: 2.5em;
336-
padding-right: 1.5em;
337-
list-style: none;
338-
margin-bottom: 0;
339-
}
340-
341-
.profile-keypoints li {
342-
padding-bottom: 0.6em;
343-
letter-spacing: 0.05em;
344-
}
345-
346-
.profile-keypoints li p {
347-
display: inline;
348-
}
349-
350-
.item-draggable {
351-
cursor: grab;
352-
}
353-
/*#endregion */
354-
355-
/*#region Admin */
356-
.admin-extra-buttons {
357-
opacity: 0.25;
358-
}
359-
360-
.admin-extra-buttons:hover {
361-
opacity: 1;
362-
}
363251
/*#endregion */
364252

365253
/*#region Icons */

0 commit comments

Comments
 (0)