1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2025-01-10 00:30:09 +00:00

Clean up less

This commit is contained in:
Tim Düsterhus 2013-05-24 20:33:41 +02:00
parent 2a9c3882aa
commit 810bb5134c
2 changed files with 70 additions and 81 deletions

View File

@ -12,9 +12,6 @@
position: relative; position: relative;
} }
#content {
text-align: left;
#timsChatTopic { #timsChatTopic {
padding: @wcfGapTiny; padding: @wcfGapTiny;
.transition(height, .2s); .transition(height, .2s);
@ -29,7 +26,6 @@
margin: 0px; margin: 0px;
} }
} }
}
.timsChatMessageContainer { .timsChatMessageContainer {
height: 200px; height: 200px;
@ -217,10 +213,6 @@
margin-top: @wcfGapMedium; margin-top: @wcfGapMedium;
} }
@media only screen and (min-width: 801px) {
}
@media only screen and (max-width: 800px) { @media only screen and (max-width: 800px) {
#timsChatMessageContainer { #timsChatMessageContainer {
overflow: auto; overflow: auto;
@ -272,9 +264,9 @@ html.fullscreen {
#content { #content {
height: 100%; height: 100%;
> div { -moz-box-sizing: border-box;
width: 100%; -webkit-box-sizing: border-box;
height: 100%; box-sizing: border-box;
display: -moz-box; display: -moz-box;
display: -webkit-box; display: -webkit-box;
@ -298,13 +290,12 @@ html.fullscreen {
flex: 1 0 auto; flex: 1 0 auto;
} }
} }
}
#timsChatOptions { #timsChatOptions {
margin-bottom: @wcfGapMedium; margin-bottom: @wcfGapMedium;
} }
#tplChat, #tplChatLog { #tplChat {
height: 100%; height: 100%;
overflow: hidden; overflow: hidden;

View File

@ -90,7 +90,6 @@
{capture assign='headerNavigation'}{include application='chat' file='navigationInclude'}{/capture} {capture assign='headerNavigation'}{include application='chat' file='navigationInclude'}{/capture}
{include file='header' sandbox=false sidebarOrientation='right'} {include file='header' sandbox=false sidebarOrientation='right'}
<div>
<div id="timsChatTopic" class="container{if $room->topic|language === ''} empty{/if}">{$room->topic|language}</div> <div id="timsChatTopic" class="container{if $room->topic|language === ''} empty{/if}">{$room->topic|language}</div>
<div id="timsChatMessageContainer" class="timsChatMessageContainer marginTop container active"> <div id="timsChatMessageContainer" class="timsChatMessageContainer marginTop container active">
@ -126,7 +125,6 @@
*}<li><a id="timsChatMark" class="button timsChatToggle jsTooltip" title="{lang}chat.general.mark{/lang}" data-status="0"><span class="icon icon16 icon-check"></span><span class="invisible">{lang}chat.general.mark{/lang}</span></a></li> *}<li><a id="timsChatMark" class="button timsChatToggle jsTooltip" title="{lang}chat.general.mark{/lang}" data-status="0"><span class="icon icon16 icon-check"></span><span class="invisible">{lang}chat.general.mark{/lang}</span></a></li>
</ul> </ul>
</nav> </nav>
</div>
{include file='footer' sandbox=false} {include file='footer' sandbox=false}
</body> </body>