1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-04-11 11:12:03 +02:00

Electron: Resolves #307: Use blue colour for sidebar, to be consistent with mobile app and logo

This commit is contained in:
Laurent Cozic 2018-03-18 12:45:39 +00:00
parent cb824f7dd7
commit 90fad2a3ab
2 changed files with 9 additions and 5 deletions

View File

@ -36,12 +36,14 @@ table td, table th {
.side-bar .list-item:hover,
.side-bar .synchronize-button:hover {
background-color: #453E53;
/*background-color: #453E53;*/
background-color: #01427B;
}
.side-bar .list-item:active,
.side-bar .synchronize-button:active {
background-color: #564B6C;
/*background-color: #564B6C;*/
background-color: #0465BB;
}
.editor-toolbar .button:not(.disabled):hover,

View File

@ -1,7 +1,7 @@
const Setting = require('lib/models/Setting.js');
const globalStyle = {
fontSize: 12 * Setting.value('style.zoom')/100,
fontSize: 12 * Setting.value('style.zoom') / 100,
fontFamily: 'sans-serif',
margin: 15, // No text and no interactive component should be within this margin
itemMarginTop: 10,
@ -21,9 +21,11 @@ const globalStyle = {
buttonMinHeight: 30,
textAreaLineHeight: 17,
backgroundColor2: "#2B2634",
//backgroundColor2: "#2B2634",
backgroundColor2: "#162B3D",
color2: "#ffffff",
selectedColor2: "#5A4D70",
//selectedColor2: "#5A4D70",
selectedColor2: "#0269C2",
colorError2: "#ff6c6c",
warningBackgroundColor: "#FFD08D",