Browse Source

Change out colors for variables.

pull/29/head^2
Evan Theurer 12 years ago
parent
commit
3eb915ce82
  1. 8
      src/styles/components/_buddylist.scss
  2. 5
      src/styles/global/_variables.scss

8
src/styles/components/_buddylist.scss

@ -36,7 +36,7 @@ @@ -36,7 +36,7 @@
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
bottom: 0;
color: rgba(0,0,0,0.3);
color: $buddylist-background;
content: "\f100";
cursor: pointer;
display: none;
@ -93,7 +93,7 @@ @@ -93,7 +93,7 @@
.buddylistloading,
.buddylistempty {
bottom: 0;
color: rgba(0,0,0,.3);
color: $buddylist-background;
display: none;
font-size: 1.4em;
height: 2em;
@ -118,7 +118,7 @@ @@ -118,7 +118,7 @@
position: relative;
text-align: left;
width: 100%;
@include tap-highlight-color(rgba(0, 0, 0, 0));
@include tap-highlight-color($tap-highlight);
}
.buddy:hover {
@ -180,7 +180,7 @@ @@ -180,7 +180,7 @@
}
.buddy .buddyactions {
background: rgba(255,255,255,0.5);
background: $buddylist-action-background;
bottom: 0px;
line-height: 66px;
position: absolute;

5
src/styles/global/_variables.scss

@ -45,6 +45,11 @@ $video-onlyaudio-background: #666; @@ -45,6 +45,11 @@ $video-onlyaudio-background: #666;
$video-onlyaudio: rgba(255,255,255,.3);
$video-overlayactions: rgba(0,0,0,.9);
$buddylist-background: rgba(0,0,0,.3);
$buddylist-action-background: rgba(255,255,255,0.5);
$tap-highlight: rgba(0, 0, 0, 0);
$breakpoint-small: 480px;
$breakpoint-medium: 700px;
$breakpoint-large: 1280px;

Loading…
Cancel
Save