Skip to content
Snippets Groups Projects
Commit 00b2ccc7 authored by Karl Prieb's avatar Karl Prieb
Browse files

create border-component-color class

parent 8c93fe72
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,10 @@ ...@@ -6,6 +6,10 @@
color: @primary-font-color; color: @primary-font-color;
} }
.border-component-color {
border-color: @component-color;
}
/** ---------------------------------------------------------------------------- /** ----------------------------------------------------------------------------
* Derivative colours (fixed variants of inherited variables) * Derivative colours (fixed variants of inherited variables)
*/ */
...@@ -62,11 +66,11 @@ ...@@ -62,11 +66,11 @@
} }
} }
body { // body {
* { // * {
border-color: @component-color; // border-color: @component-color;
} // }
} // }
code { code {
background-color: @code-background-color; background-color: @code-background-color;
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<form class="message-form" method="post" action="/"> <form class="message-form" method="post" action="/">
{{> messagePopupConfig getPopupConfig}} {{> messagePopupConfig getPopupConfig}}
{{#if allowedToSend}} {{#if allowedToSend}}
<div class="message-input"> <div class="message-input border-component-color">
<div class="input-message-container"> <div class="input-message-container">
<textarea dir="auto" name="msg" maxlength="{{maxMessageLength}}" class="input-message autogrow-short" placeholder="{{_ 'Message'}}"></textarea> <textarea dir="auto" name="msg" maxlength="{{maxMessageLength}}" class="input-message autogrow-short" placeholder="{{_ 'Message'}}"></textarea>
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
{{_ "Drop_to_upload_file"}} {{_ "Drop_to_upload_file"}}
</div> </div>
</div> </div>
<section class="messages-container {{adminClass}}" id="{{windowId}}" aria-label="{{_ "Channel"}}"> <section class="messages-container border-component-color {{adminClass}}" id="{{windowId}}" aria-label="{{_ "Channel"}}">
{{#unless embeddedVersion}} {{#unless embeddedVersion}}
<header class="fixed-title"> <header class="fixed-title">
{{> burger}} {{> burger}}
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
</ul> </ul>
</div> </div>
</div> </div>
<footer class="footer"> <footer class="footer border-component-color">
{{> messageBox}} {{> messageBox}}
</footer> </footer>
</section> </section>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment