Move variables to sass/variables.scss
This commit is contained in:
parent
96d904f38e
commit
e03d22580e
@ -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 @@
|
|||||||
* 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,37 +31,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#conversejs {
|
#conversejs {
|
||||||
@import "components/neat/app/assets/stylesheets/neat";
|
@import "../bourbon/bourbon";
|
||||||
|
@import "../components/neat/app/assets/stylesheets/neat";
|
||||||
// XXX: These should be moved to a separate file
|
@import "variables";
|
||||||
$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;
|
||||||
@ -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 @@
|
|||||||
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;
|
||||||
|
29
sass/variables.scss
Normal file
29
sass/variables.scss
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
|
||||||
|
$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;
|
Loading…
Reference in New Issue
Block a user