1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-12-22 21:40:08 +00:00

Changed CSS a bit.

This commit is contained in:
max-m 2011-12-04 00:50:04 +01:00
parent bc604dc658
commit 19d621a31f

View File

@ -21,17 +21,17 @@
} }
.first { .first {
width: 10%; width: 15%;
background-color: #D8E7F5; background-color: #D8E7F5;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset; box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset;
} }
.second { .second {
width: 80%; width: 70%;
} }
.third { .third {
width: 10%; width: 15%;
background-color: #D8E7F5; background-color: #D8E7F5;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset; box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset;
} }
@ -67,12 +67,9 @@
min-height: 200px; min-height: 200px;
} }
/* .chatSidebar a {
.chatSidebar { outline: none;
float: right;
width: 100%;
} }
*/
/* /*
.chatSidebar > div h1.activeMenuItem { .chatSidebar > div h1.activeMenuItem {
@ -142,6 +139,15 @@
.chatSidebar .selectedUser { .chatSidebar .selectedUser {
margin-left: 20px; margin-left: 20px;
} }
.ajaxLoad {
border-radius: 3px 3px 3px 3px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset;
background-color: rgba(0, 0, 0, 0.1);
padding: 2px;
margin-right: 2px;
float: right;
}
</style> </style>
</head> </head>
@ -172,7 +178,7 @@
<ul> <ul>
{foreach from=$rooms item='roomListRoom'} {foreach from=$rooms item='roomListRoom'}
<li{if $roomListRoom->roomID == $room->roomID} class="activeMenuItem"{/if}> <li{if $roomListRoom->roomID == $room->roomID} class="activeMenuItem"{/if}>
<a href="{link controller='Chat' object=$roomListRoom}{/link}" class="chatRoom">{$roomListRoom->title|language}</a> <a id="room-{$roomListRoom->roomID}" href="{link controller='Chat' object=$roomListRoom}{/link}" class="chatRoom">{$roomListRoom->title|language}</a>
</li> </li>
{/foreach} {/foreach}
</ul> </ul>