Commit e03d2258 authored by JC Brand's avatar JC Brand

Move variables to sass/variables.scss

parent 96d904f3
...@@ -305,14 +305,30 @@ ...@@ -305,14 +305,30 @@
padding-right: 22px; } padding-right: 22px; }
@-webkit-keyframes spin { @-webkit-keyframes spin {
from { from {
-webkit-transform: rotate(0deg); } -webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg); }
to { to {
-webkit-transform: rotate(359deg); } } -webkit-transform: rotate(359deg);
-moz-transform: rotate(359deg);
-ms-transform: rotate(359deg);
-o-transform: rotate(359deg);
transform: rotate(359deg); } }
@-moz-keyframes spin { @-moz-keyframes spin {
from { from {
-moz-transform: rotate(0deg); } -webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg); }
to { to {
-moz-transform: rotate(359deg); } } -webkit-transform: rotate(359deg);
-moz-transform: rotate(359deg);
-ms-transform: rotate(359deg);
-o-transform: rotate(359deg);
transform: rotate(359deg); } }
@keyframes spin { @keyframes spin {
from { from {
-webkit-transform: rotate(0deg); -webkit-transform: rotate(0deg);
......
...@@ -6,8 +6,6 @@ ...@@ -6,8 +6,6 @@
* Licensed under the Mozilla Public License * Licensed under the Mozilla Public License
*/ */
@import "bourbon/bourbon";
@font-face { @font-face {
font-family: 'Converse-js'; font-family: 'Converse-js';
src: url('../fonticons/fonts/icomoon.eot?-mnoxh0'); src: url('../fonticons/fonts/icomoon.eot?-mnoxh0');
...@@ -33,38 +31,10 @@ ...@@ -33,38 +31,10 @@
} }
#conversejs { #conversejs {
@import "components/neat/app/assets/stylesheets/neat"; @import "../bourbon/bourbon";
@import "../components/neat/app/assets/stylesheets/neat";
@import "variables";
// XXX: These should be moved to a separate file
$link-color: #436F64;
$inverse-link-color: white;
$link-shadow-color: #FAFAFA;
$text-shadow-color: #FAFAFA;
$text-color: #6C4C44;
$border-color: #CCC;
$warning-color: #681F2C;
$light-background-border-color: #F1DCD6;
$light-background-color: #F1E2DD;
$icon-color: #114327;
$highlight-color: #E3C9C1;
$chat-head-color: #436F64;
$chatroom-head-color: #0F592F;
$chat-head-text-color: white;
$chat-head-inverse-text-color: white;
$chat-head-height: 44px;
$save-button-color: #436F64;
$chat-textarea-height: 64px;
$toolbar-height: 20px;
$message-them-color: #4B7003;
$roster-height: 194px;
$controlbox-dropdown-height: 25px;
$font-size: 14px;
$legend-font-size: 16px;
$chat-width: 200px;
$chat-height: 400px;
color: $text-color; color: $text-color;
font-size: $font-size; font-size: $font-size;
bottom: 0; bottom: 0;
...@@ -77,9 +47,6 @@ ...@@ -77,9 +47,6 @@
display: block; display: block;
@include box-sizing(border-box); @include box-sizing(border-box);
$font-size: 14px;
$legend-font-size: 16px;
a, a:visited { a, a:visited {
text-decoration: none; text-decoration: none;
color: $link-color; color: $link-color;
...@@ -1190,7 +1157,7 @@ ...@@ -1190,7 +1157,7 @@
margin: 0; margin: 0;
padding: 6px; padding: 6px;
&.controlbox-head { &.controlbox-head {
background-color: $link-color; background-color: $chat-head-color;
border-top-left-radius: 4px; border-top-left-radius: 4px;
border-top-right-radius: 4px; border-top-right-radius: 4px;
color: $chat-head-inverse-text-color; color: $chat-head-inverse-text-color;
......
$link-color: #436F64;
$inverse-link-color: white;
$link-shadow-color: #FAFAFA;
$text-shadow-color: #FAFAFA;
$text-color: #6C4C44;
$border-color: #CCC;
$warning-color: #681F2C;
$light-background-border-color: #F1DCD6;
$light-background-color: #F1E2DD;
$icon-color: #114327;
$highlight-color: #E3C9C1;
$chat-head-color: #436F64;
$chatroom-head-color: #0F592F;
$chat-head-text-color: white;
$chat-head-inverse-text-color: white;
$chat-head-height: 44px;
$save-button-color: #436F64;
$chat-textarea-height: 64px;
$toolbar-height: 20px;
$message-them-color: #4B7003;
$roster-height: 194px;
$controlbox-dropdown-height: 25px;
$font-size: 14px;
$legend-font-size: 16px;
$chat-width: 200px;
$chat-height: 400px;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment