mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-12-21 21:30:08 +00:00
Switch from SASS to CSS variables
This commit is contained in:
parent
075ce3fa15
commit
837874d925
@ -172,7 +172,7 @@ #tpl_chat_log {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.chatRoomTopic {
|
.chatRoomTopic {
|
||||||
border-left: 5px solid $wcfContentBorderInner;
|
border-left: 5px solid var(--wcfContentBorderInner);
|
||||||
padding: 5px 0px 5px 10px;
|
padding: 5px 0px 5px 10px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
|
||||||
@ -352,7 +352,7 @@ #tpl_chat_log {
|
|||||||
}
|
}
|
||||||
|
|
||||||
&.first {
|
&.first {
|
||||||
border-top: 1px solid $wcfContentBorderInner;
|
border-top: 1px solid var(--wcfContentBorderInner);
|
||||||
|
|
||||||
.chatMessageContainer {
|
.chatMessageContainer {
|
||||||
.chatMessageSide {
|
.chatMessageSide {
|
||||||
@ -406,14 +406,14 @@ #tpl_chat_log {
|
|||||||
|
|
||||||
#chatInputContainer {
|
#chatInputContainer {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
margin-bottom: 1.48 * $wcfFontSizeDefault; // 1.48 is the default line height
|
margin-bottom: calc(1.48 * var(--wcfFontSizeDefault)); // 1.48 is the default line height
|
||||||
clear: both;
|
clear: both;
|
||||||
|
|
||||||
|
|
||||||
.charCounter {
|
.charCounter {
|
||||||
float: right;
|
float: right;
|
||||||
color: $wcfContentDimmedText;
|
color: var(--wcfContentDimmedText);
|
||||||
margin-bottom: -(1.48 * $wcfFontSizeDefault);
|
margin-bottom: calc(-1.48 * var(--wcfFontSizeDefault));
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
@ -511,12 +511,12 @@ #tpl_chat_log {
|
|||||||
|
|
||||||
&.active,
|
&.active,
|
||||||
&.active:hover {
|
&.active:hover {
|
||||||
color: $wcfButtonTextActive !important;
|
color: var(--wcfButtonTextActive) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:not(.active) {
|
&:not(.active) {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
color: $wcfDropdownLink;
|
color: var(--wcfDropdownLink);
|
||||||
}
|
}
|
||||||
|
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
@ -560,12 +560,12 @@ #tpl_chat_log {
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
pointer-events: all;
|
pointer-events: all;
|
||||||
|
|
||||||
background-color: $wcfContentBackground;
|
background-color: var(--wcfContentBackground);
|
||||||
|
|
||||||
.modalCloseButton {
|
.modalCloseButton {
|
||||||
border-top: 1px solid $wcfContentBorderInner;
|
border-top: 1px solid var(--wcfContentBorderInner);
|
||||||
background-color: $wcfSidebarBackground;
|
background-color: var(--wcfSidebarBackground);
|
||||||
color: $wcfSidebarLink;
|
color: var(--wcfSidebarLink);
|
||||||
display: block;
|
display: block;
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@ -588,7 +588,7 @@ #tpl_chat_log {
|
|||||||
> li {
|
> li {
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
border-right: 1px solid $wcfContentBorderInner;
|
border-right: 1px solid var(--wcfContentBorderInner);
|
||||||
padding-right: 9px;
|
padding-right: 9px;
|
||||||
|
|
||||||
> a {
|
> a {
|
||||||
@ -608,8 +608,8 @@ #tpl_chat_log {
|
|||||||
|
|
||||||
#smileyPickerContainer {
|
#smileyPickerContainer {
|
||||||
> .messageTabMenuContent {
|
> .messageTabMenuContent {
|
||||||
background-color: $wcfContentContainerBackground;
|
background-color: var(--wcfContentContainerBackground);
|
||||||
border: 1px solid $wcfContentBorderInner;
|
border: 1px solid var(--wcfContentBorderInner);
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
|
Loading…
Reference in New Issue
Block a user