work on colors

pull/1139/head
Ilya Daynatovich 8 years ago
parent 9124aa2c87
commit cbc6943305
  1. 10
      css/_contact_list.scss
  2. 4
      css/_side_toolbar_container.scss
  3. 4
      css/_toolbars.scss
  4. 9
      css/_variables.scss
  5. 2
      css/aui-components/dropdown.scss
  6. 11
      css/themes/_light.scss

@ -5,7 +5,7 @@
font-size: 12px;
bottom: 0px;
margin: 0;
margin-top: 16px;
margin-top: 12px;
padding: 0px;
width: 100%;
}
@ -23,13 +23,14 @@
#contacts {
>li {
color: $defaultSideBarFontColor;
display: block;
list-style-type: none;
text-align: left;
white-space: nowrap;
color: $baseLight;
font-size: 18px;
padding: 6px 10%;
font-size: 16px;
padding: 0 10%;
height: 27px;
&:hover,
&:active {
@ -41,6 +42,7 @@
vertical-align: middle;
margin: 0px;
width: 100%;
line-height: 1.5em;
text-overflow: ellipsis;
overflow: hidden;
}

@ -64,14 +64,14 @@
* Titles and subtitles of inner containers.
*/
div.title, div.subTitle {
margin: 10px 0;
margin: 24px 0 11px;
}
/**
* Main title size.
*/
div.title {
color: $toolbarTitleColor !important;
color: $toolbarTitleColor;
text-align: center;
font-size: $toolbarTitleFontSize;
}

@ -252,7 +252,7 @@ a.button>#avatar {
*/
@include keyframes(slideInExt) {
from { width: 0px; }
to { width: 200px; } // TO FIX: Make this value a percentage.
to { width: $sidebarWidth; } // TO FIX: Make this value a percentage.
}
.slideInExt {
@ -260,7 +260,7 @@ a.button>#avatar {
}
@include keyframes(slideOutExt) {
from { width: 200px; } // TO FIX: Make this value a percentage.
from { width: $sidebarWidth; } // TO FIX: Make this value a percentage.
to { width: 0px; }
}

@ -31,7 +31,7 @@ $tooltipBg: rgba(0,0,0, 0.7);
* Toolbar
*/
$toolbarTitleColor: #FFFFFF;
$toolbarTitleFontSize: 24px;
$toolbarTitleFontSize: 19px;
$toolbarBackground: rgba(0, 0, 0, 0.5);
$toolbarSelectBackground: rgba(0, 0, 0, .6);
$toolbarBadgeBackground: #165ECC;
@ -94,7 +94,7 @@ $notificationWidth: 215px;
*/
$borderRadius: 3px;
$defaultWatermarkLink: '../images/watermark.png';
$sidebarWidth: 200px;
$sidebarWidth: 220px;
$happySoftwareBackground: transparent;
@ -119,11 +119,6 @@ $defaultDarkFontColor: #000;
/**
* Forms
*/
//dropdown
$selectFontColor: $defaultLightFontColor;
$selectBg: $defaultBackground;
$selectActiveBg: $defaultBackground;
$selectActiveItemBg: $defaultDarkColor;
//inputs
$inputControlEmColor: #f29424;
//buttons

@ -1,6 +1,6 @@
.select2-container.aui-select2-container {
background-color: transparent !important;
margin-top: 2px;
a.select2-choice {
height: 28px !important;

@ -74,4 +74,13 @@ $popoverFontColor: #ffffff;
$popupMenuSelectedItemBackground: rgba(256, 256, 256, .2);
// Toolbar
$splitterColor: #ccc;
$splitterColor: #ccc;
/**
* Forms
*/
//dropdown
$selectFontColor: $baseLight;
$selectBg: $controlBackground;
$selectActiveBg: darken($controlBackground, 5%);
$selectActiveItemBg: darken($controlBackground, 10%);

Loading…
Cancel
Save