Adjusted CSS for side toolbar elements

This commit is contained in:
Maxim Voloshin 2016-10-19 20:34:20 +03:00 committed by Ilya Daynatovich
parent 8817f0c53d
commit 9124aa2c87
5 changed files with 29 additions and 10 deletions

View File

@ -13,6 +13,11 @@
.clickable {
cursor: pointer;
}
.icon-security,
.icon-security-locked {
font-size: 16px;
}
}
#contacts {
@ -22,8 +27,8 @@
list-style-type: none;
text-align: left;
white-space: nowrap;
color: #FFF;
font-size: 10pt;
color: $baseLight;
font-size: 18px;
padding: 6px 10%;
&:hover,

View File

@ -16,7 +16,7 @@
* Labels inside the side panel.
*/
label {
color: $defaultColor;
color: $baseLight;
}
/**
@ -71,9 +71,9 @@
* Main title size.
*/
div.title {
color: $defaultColor !important;
font-size: 16px;
color: $toolbarTitleColor !important;
text-align: center;
font-size: $toolbarTitleFontSize;
}
/**

View File

@ -30,6 +30,8 @@ $tooltipBg: rgba(0,0,0, 0.7);
/**
* Toolbar
*/
$toolbarTitleColor: #FFFFFF;
$toolbarTitleFontSize: 24px;
$toolbarBackground: rgba(0, 0, 0, 0.5);
$toolbarSelectBackground: rgba(0, 0, 0, .6);
$toolbarBadgeBackground: #165ECC;
@ -90,7 +92,7 @@ $notificationWidth: 215px;
/**
* Misc.
*/
$borderRadius: 4px;
$borderRadius: 3px;
$defaultWatermarkLink: '../images/watermark.png';
$sidebarWidth: 200px;

View File

@ -24,6 +24,7 @@
}
&__hint {
color: $baseLight;
margin-top: 0;
font-size: $hintFontSize;

View File

@ -1,3 +1,14 @@
/**
* Base
*/
$baseLight: #FFFFFF;
/**
* Controls
*/
$controlBackground: $baseLight;
$controlColor: #333333;
/**
* Buttons
*/
@ -17,7 +28,7 @@ $buttonLinkColor: #0090e8;
$primaryButtonBackground: #3572b0;
$primaryButtonHoverBackground: #2a67a5;
$primaryButtonColor: #fff;
$primaryButtonColor: $baseLight;
$primaryButtonFontWeight: 400;
$buttonShadowColor: #192d4f;
@ -38,14 +49,14 @@ $uploadConnectionIconColor: #ffa800;
**/
$auiDialogColor: #333;
$auiDialogBg: #f5f5f5;
$auiDialogContentBg: #fff;
$auiDialogContentBg: $baseLight;
$auiBorderColor: #ccc;
$dialogTitleFontWeight: 400;
// Main controls
$inputBackground: #fff;
$inputBackground: $controlBackground;
$inputBorderColor: #ccc;
$inputColor: #333;
$inputColor: $controlColor;
$placeHolderColor: #a7a7a7;
$readOnlyInputColor: #a7a7a7;
$defaultDarkSelectionColor: #ccc;