2012-01-07 16:47:38 +00:00
|
|
|
/**
|
2012-03-12 16:18:15 +00:00
|
|
|
* Styles for Tims Chat
|
2012-01-07 16:47:38 +00:00
|
|
|
*
|
|
|
|
* @author Tim Düsterhus, Maximilian Mader
|
2013-01-27 21:41:36 +00:00
|
|
|
* @copyright 2010-2013 Tim Düsterhus
|
2012-01-07 16:47:38 +00:00
|
|
|
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
2012-03-12 16:18:15 +00:00
|
|
|
* @package be.bastelstu.wcf.chat
|
2012-01-07 16:47:38 +00:00
|
|
|
*/
|
2013-01-09 18:59:32 +00:00
|
|
|
#tplChat {
|
2013-05-03 18:27:41 +00:00
|
|
|
#main > div {
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2012-10-15 12:39:59 +00:00
|
|
|
#content {
|
2013-04-09 22:16:56 +00:00
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
#timsChatTopic {
|
2013-04-22 16:52:05 +00:00
|
|
|
padding: @wcfGapTiny;
|
2013-04-09 22:16:56 +00:00
|
|
|
.transition(height, .2s);
|
|
|
|
.transition(padding-top, .2s);
|
|
|
|
.transition(padding-bottom, .2s);
|
2012-10-19 20:26:12 +00:00
|
|
|
|
2013-04-09 22:16:56 +00:00
|
|
|
&.empty {
|
|
|
|
height: 0px;
|
|
|
|
overflow: hidden;
|
|
|
|
border: 0px;
|
|
|
|
padding: 0px;
|
2013-05-03 18:27:41 +00:00
|
|
|
margin: 0px;
|
2012-10-19 20:26:12 +00:00
|
|
|
}
|
2013-01-09 18:59:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.timsChatMessageContainer {
|
|
|
|
height: 200px;
|
|
|
|
overflow-y: scroll;
|
|
|
|
overflow-x: hidden;
|
2013-04-26 21:00:48 +00:00
|
|
|
display: none;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.markEnabled {
|
|
|
|
ul {
|
|
|
|
.timsChatMessage {
|
|
|
|
&.jsMarked {
|
|
|
|
background-color: @wcfSelectedBackgroundColor;
|
|
|
|
color: @wcfSelectedColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
> {
|
|
|
|
.markContainer {
|
2013-04-27 10:21:31 +00:00
|
|
|
display: table-cell;
|
2013-04-26 21:00:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-01-09 18:59:32 +00:00
|
|
|
|
2013-01-30 15:34:02 +00:00
|
|
|
ul {
|
|
|
|
display: table;
|
2013-04-22 15:04:23 +00:00
|
|
|
width: 100%;
|
2013-04-26 21:00:48 +00:00
|
|
|
|
2013-01-30 15:34:02 +00:00
|
|
|
.timsChatMessage {
|
|
|
|
display: table-row;
|
2013-04-27 10:21:31 +00:00
|
|
|
height: 20px;
|
2013-01-30 16:15:46 +00:00
|
|
|
.transition(opacity, .2s);
|
|
|
|
|
2013-04-26 21:00:48 +00:00
|
|
|
&.unloaded {
|
|
|
|
opacity: .5;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
.icon;
|
|
|
|
.icon16;
|
2013-04-27 10:21:31 +00:00
|
|
|
padding: @wcfGapTiny;
|
2013-04-26 21:00:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(even) {
|
|
|
|
background-color: @wcfContainerAccentBackgroundColor;
|
2013-01-30 15:34:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> {
|
2013-04-27 10:21:31 +00:00
|
|
|
time, .usernameContainer, .text, .markContainer {
|
2013-01-30 15:34:02 +00:00
|
|
|
display: table-cell;
|
2013-02-02 15:45:15 +00:00
|
|
|
vertical-align: top;
|
2013-04-27 10:21:31 +00:00
|
|
|
padding: @wcfGapTiny 0;
|
2013-01-30 15:34:02 +00:00
|
|
|
}
|
|
|
|
|
2013-04-26 21:00:48 +00:00
|
|
|
.markContainer {
|
2013-04-27 10:21:31 +00:00
|
|
|
display: none;
|
|
|
|
padding: 0;
|
2013-04-26 21:00:48 +00:00
|
|
|
}
|
|
|
|
|
2013-04-22 15:04:23 +00:00
|
|
|
time {
|
|
|
|
&::before {
|
|
|
|
content: "[";
|
|
|
|
}
|
|
|
|
&::after {
|
|
|
|
content: "]";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-30 15:34:02 +00:00
|
|
|
.usernameContainer {
|
|
|
|
text-align: right;
|
|
|
|
min-width: 100px;
|
2013-04-27 10:21:31 +00:00
|
|
|
padding-right: @wcfGapSmall;
|
2013-04-21 18:32:30 +00:00
|
|
|
white-space: nowrap;
|
2013-04-26 21:00:48 +00:00
|
|
|
font-weight: bold;
|
2013-01-30 15:34:02 +00:00
|
|
|
}
|
2013-04-22 15:04:23 +00:00
|
|
|
|
|
|
|
.text {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2013-01-30 15:34:02 +00:00
|
|
|
}
|
2013-01-28 19:45:57 +00:00
|
|
|
}
|
2012-10-19 20:26:12 +00:00
|
|
|
}
|
2011-12-26 20:00:11 +00:00
|
|
|
}
|
|
|
|
|
2012-10-15 12:39:59 +00:00
|
|
|
.sidebar {
|
2013-05-03 18:27:41 +00:00
|
|
|
overflow: auto;
|
|
|
|
position: absolute !important;
|
|
|
|
right: 0;
|
|
|
|
height: 100%;
|
2012-10-15 12:39:59 +00:00
|
|
|
|
2013-05-03 18:27:41 +00:00
|
|
|
padding-top: 0px !important;
|
|
|
|
|
|
|
|
> div {
|
|
|
|
> .chatTabMenuContainer {
|
|
|
|
padding: 14px 0 21px;
|
2012-10-25 20:58:54 +00:00
|
|
|
|
2013-05-03 18:27:41 +00:00
|
|
|
> .chatSidebarMenu {
|
|
|
|
background: @wcfContentBackgroundColor;
|
|
|
|
margin: -14px 0 0;
|
2013-05-10 15:12:53 +00:00
|
|
|
.borderRadius(0);
|
2012-10-25 20:58:54 +00:00
|
|
|
}
|
2013-05-03 18:27:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#sidebarContent {
|
|
|
|
fieldset {
|
|
|
|
padding-top: 0px;
|
|
|
|
padding-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
2012-10-25 20:58:54 +00:00
|
|
|
ul {
|
2013-05-03 18:27:41 +00:00
|
|
|
> li {
|
|
|
|
> a {
|
|
|
|
padding: @wcfGapTiny @wcfGapMedium @wcfGapTiny @wcfGapLarge;
|
|
|
|
height: 24px; // height of avatar image
|
2012-10-25 20:58:54 +00:00
|
|
|
}
|
|
|
|
|
2013-05-03 18:27:41 +00:00
|
|
|
> a:before {
|
|
|
|
display: inline-block;
|
|
|
|
content: "";
|
|
|
|
height: 100%;
|
|
|
|
vertical-align: middle;
|
2012-10-25 20:58:54 +00:00
|
|
|
}
|
|
|
|
|
2013-05-03 18:27:41 +00:00
|
|
|
> &.active {
|
|
|
|
margin-top: @wcfGapSmall;
|
2012-10-25 20:58:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-03 18:27:41 +00:00
|
|
|
ul:not(.dropdownMenu) {
|
|
|
|
> li {
|
|
|
|
margin-top: @wcfGapSmall;
|
2012-10-25 20:58:54 +00:00
|
|
|
}
|
2013-05-03 18:27:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#timsChatUserList {
|
|
|
|
.timsChatUser {
|
|
|
|
> a {
|
|
|
|
background: @wcfContentBackgroundColor;
|
2012-10-25 20:58:54 +00:00
|
|
|
|
2013-05-03 18:27:41 +00:00
|
|
|
img {
|
|
|
|
margin-right: @wcfGapSmall;
|
2012-10-25 20:58:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-03 18:27:41 +00:00
|
|
|
&.away {
|
|
|
|
opacity: .5;
|
2012-10-25 20:58:54 +00:00
|
|
|
}
|
2013-05-03 18:27:41 +00:00
|
|
|
|
|
|
|
&.suspended a {
|
|
|
|
text-decoration: line-through;
|
2012-10-25 20:58:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-05-03 18:27:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#timsChatRoomList {
|
|
|
|
> div {
|
|
|
|
> div {
|
|
|
|
margin-top: @wcfGapMedium;
|
|
|
|
text-align: center;
|
2011-12-26 20:00:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-28 20:29:34 +00:00
|
|
|
|
2013-05-03 18:27:41 +00:00
|
|
|
#smilies {
|
|
|
|
li {
|
|
|
|
.transition(opacity, .2s);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
2013-01-30 16:15:46 +00:00
|
|
|
li {
|
2013-05-03 18:27:41 +00:00
|
|
|
opacity: .5;
|
2012-04-14 22:21:33 +00:00
|
|
|
}
|
|
|
|
}
|
2013-05-03 18:27:41 +00:00
|
|
|
|
|
|
|
margin-top: @wcfGapMedium;
|
2013-04-09 22:16:56 +00:00
|
|
|
}
|
|
|
|
|
2013-05-03 18:27:41 +00:00
|
|
|
@media only screen and (min-width: 801px) {
|
|
|
|
|
2011-12-26 20:00:11 +00:00
|
|
|
}
|
2012-07-07 20:30:28 +00:00
|
|
|
|
2013-05-03 18:27:41 +00:00
|
|
|
@media only screen and (max-width: 800px) {
|
2013-04-09 22:16:56 +00:00
|
|
|
#timsChatMessageContainer {
|
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
.timsChatMessage {
|
|
|
|
> time {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .usernameContainer {
|
|
|
|
min-width: 0px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-05-03 18:27:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#timsChatOptions {
|
|
|
|
> ul {
|
|
|
|
text-align: right;
|
2013-04-09 22:16:56 +00:00
|
|
|
}
|
2013-05-03 18:27:41 +00:00
|
|
|
}
|
2013-04-09 22:16:56 +00:00
|
|
|
|
2013-01-26 21:46:54 +00:00
|
|
|
#toggleRooms .ajaxLoad {
|
2013-02-01 19:41:59 +00:00
|
|
|
position: absolute;
|
2013-05-03 18:27:41 +00:00
|
|
|
right: 10px;
|
|
|
|
top: 7px;
|
2013-02-01 19:41:59 +00:00
|
|
|
display: none;
|
2012-10-15 12:39:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#timsChatCopyright {
|
|
|
|
.textShadow(@wcfContentBackgroundColor);
|
|
|
|
}
|
|
|
|
|
2013-01-27 21:41:36 +00:00
|
|
|
#timsChatCopyrightDialog > div {
|
2013-01-27 14:16:29 +00:00
|
|
|
background-position: right center;
|
2012-10-15 12:39:59 +00:00
|
|
|
background-repeat: no-repeat;
|
2013-01-27 21:41:36 +00:00
|
|
|
min-height: 150px;
|
2012-10-15 12:39:59 +00:00
|
|
|
}
|
2012-10-15 14:45:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
html.fullscreen {
|
2013-04-09 15:37:02 +00:00
|
|
|
#top {
|
|
|
|
height: 0px;
|
|
|
|
}
|
|
|
|
|
2013-04-09 22:16:56 +00:00
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
2013-04-09 15:37:02 +00:00
|
|
|
|
2013-04-09 22:16:56 +00:00
|
|
|
#content {
|
2013-04-09 15:37:02 +00:00
|
|
|
height: 100%;
|
|
|
|
|
2013-04-09 22:16:56 +00:00
|
|
|
> div {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2013-04-09 15:37:02 +00:00
|
|
|
|
2013-04-09 22:16:56 +00:00
|
|
|
display: -moz-box;
|
|
|
|
display: -webkit-box;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: -ms-flexbox;
|
|
|
|
display: flex;
|
2013-04-09 15:37:02 +00:00
|
|
|
|
2013-04-09 22:16:56 +00:00
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-moz-box-orient: vertical;
|
|
|
|
-webkit-box-direction: normal;
|
|
|
|
-moz-box-direction: normal;
|
|
|
|
-webkit-flex-direction: column;
|
|
|
|
-ms-flex-direction: column;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.timsChatMessageContainer {
|
|
|
|
-webkit-box-flex: 1;
|
|
|
|
-moz-box-flex: 1;
|
|
|
|
-webkit-flex: 1 0 auto;
|
|
|
|
-ms-flex: 1 0 auto;
|
|
|
|
flex: 1 0 auto;
|
|
|
|
}
|
2013-04-09 15:37:02 +00:00
|
|
|
}
|
|
|
|
}
|
2012-10-15 14:45:22 +00:00
|
|
|
|
2013-05-03 18:27:41 +00:00
|
|
|
#timsChatOptions {
|
|
|
|
margin-bottom: @wcfGapMedium;
|
|
|
|
}
|
|
|
|
|
2012-11-23 19:42:05 +00:00
|
|
|
#tplChat, #tplChatLog {
|
2012-06-13 15:55:20 +00:00
|
|
|
height: 100%;
|
2012-06-28 16:26:55 +00:00
|
|
|
overflow: hidden;
|
|
|
|
|
2012-10-15 12:39:59 +00:00
|
|
|
#pageHeader, #pageFooter {
|
|
|
|
display: none;
|
|
|
|
}
|
2012-06-28 16:26:55 +00:00
|
|
|
|
2012-10-15 14:45:22 +00:00
|
|
|
#main {
|
2012-10-15 12:39:59 +00:00
|
|
|
height: 100%;
|
2012-10-15 14:45:22 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2012-10-15 12:39:59 +00:00
|
|
|
|
2012-10-15 14:45:22 +00:00
|
|
|
> div, .sidebar, #sidebarContainer {
|
2012-06-28 16:26:55 +00:00
|
|
|
height: 100%;
|
|
|
|
}
|
2012-06-13 15:55:20 +00:00
|
|
|
}
|
|
|
|
}
|
2012-09-23 15:37:18 +00:00
|
|
|
}
|