Skip to content

Commit

Permalink
Update CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
ApidriuC committed Jun 25, 2022
1 parent c13f065 commit c2b9e89
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 88 deletions.
5 changes: 3 additions & 2 deletions SignalRChat/Common/MessageDetail.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@

namespace SignalRChat.Common
{
//Lista de Mensajes
public class MessageDetail
{

//Usuario
public string UserName { get; set; }

//Mensaje del Usuario
public string Message { get; set; }

}
Expand Down
3 changes: 3 additions & 0 deletions SignalRChat/Common/UserDetail.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@

namespace SignalRChat.Common
{
//Lista de Usuarios
public class UserDetail
{
//ID Usuario
public string ConnectionId { get; set; }
//Nombre Usuario
public string UserName { get; set; }
}
}
84 changes: 0 additions & 84 deletions SignalRChat/Css/ChatStyle.css

This file was deleted.

1 change: 0 additions & 1 deletion SignalRChat/SignalRChat.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@
<Reference Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Content Include="Css\ChatStyle.css" />
<Content Include="Css\JQueryUI\themes\base\images\ui-bg_flat_0_aaaaaa_40x100.png" />
<Content Include="Css\JQueryUI\themes\base\images\ui-bg_flat_75_ffffff_40x100.png" />
<Content Include="Css\JQueryUI\themes\base\images\ui-bg_glass_55_fbf9ee_1x400.png" />
Expand Down
1 change: 0 additions & 1 deletion SignalRChat/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<title></title>
<!-- Referencia CSS -->
<link href="Css/Site.css?v=random()" rel="stylesheet" type="text/css">
<link type="text/css" rel="stylesheet" href="Css/ChatStyle.css" />

<!-- Scripts Jquery versión antigua -->
<script src="/Scripts/jquery-1.8.2.min.js"></script>
Expand Down

0 comments on commit c2b9e89

Please sign in to comment.