joplin/ElectronClient/app/style.css

52 lines
978 B
CSS
Raw Normal View History

2017-11-07 21:11:14 +00:00
body, textarea {
margin: 0;
padding: 0;
2017-11-07 21:11:14 +00:00
border: none;
}
#react-root {
height: 100%;
2017-11-11 23:13:14 +00:00
overflow: hidden;
}
2017-11-09 19:21:10 +00:00
.note-list .list-item:hover {
background-color: rgba(0,160,255,0.1) !important;
}
.side-bar .list-item:hover,
.side-bar .synchronize-button:hover {
2017-11-12 17:53:26 +00:00
background-color: #453E53;
}
.side-bar .list-item:active,
.side-bar .synchronize-button:active {
background-color: #564B6C;
2017-11-09 19:21:10 +00:00
}
2017-11-08 22:23:26 +00:00
.header .button:hover {
background-color: rgba(0,160,255,0.1);
border: 1px solid rgba(0,160,255,0.5);
2017-11-09 19:21:10 +00:00
box-sizing: 'border-box';
2017-11-08 22:23:26 +00:00
}
2017-11-12 17:53:26 +00:00
.header .button:active {
background-color: rgba(0,160,255,0.2);
border: 1px solid rgba(0,160,255,0.7);
box-sizing: 'border-box';
}
2017-11-08 22:23:26 +00:00
.header .button {
border: 1px solid rgba(0,160,255,0);
2017-11-10 22:18:00 +00:00
}
.icon-button:hover {
background-color: rgba(0,0,0,0.05) !important;
border: 1px solid rgba(0,0,0,0.10);
border-radius: 5px;
2017-11-12 17:53:26 +00:00
}
.icon-button:active {
background-color: rgba(0,0,0,0.10) !important;
border: 1px solid rgba(0,0,0,0.15);
border-radius: 5px;
2017-11-04 16:40:34 +00:00
}