1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-17 18:44:45 +02:00

179 lines
3.0 KiB
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-12-05 18:56:39 +00:00
table {
border-collapse: collapse;
}
table th {
text-align: left;
}
table td, table th {
padding: .5em;
border: 1px solid #ccc;
}
a {
text-decoration: none;
}
2019-02-14 15:21:21 -07:00
::-webkit-scrollbar {
width: 7px;
height: 7px;
}
::-webkit-scrollbar-corner {
background: none;
2019-02-14 15:21:21 -07:00
}
::-webkit-scrollbar-track {
border: none;
}
::-webkit-scrollbar-thumb {
background: rgba(100, 100, 100, 0.3);
border-radius: 5px;
}
::-webkit-scrollbar-track:hover {
background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb:hover {
background: rgba(100, 100, 100, 0.7);
}
.fade_out {
-webkit-transition: 0.15s;
transition: 0.15s;
opacity: 0;
}
.fade_in {
-webkit-transition: 0.3s;
transition: 0.3s;
opacity: 1;
}
2017-11-23 18:16:17 +00:00
/* By default, the Ice Editor displays invalid characters, such as non-breaking spaces
as red boxes, but since those are actually valid characters and common in imported
Evernote data, we hide them here. */
.ace-chrome .ace_invisible_space {
background-color: transparent !important;
opacity: 0;
}
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,
2017-11-09 19:21:10 +00:00
.side-bar .synchronize-button:hover {
background-color: #01427B;
2017-11-12 17:53:26 +00:00
}
.side-bar .list-item:active,
.side-bar .synchronize-button:active {
background-color: #0465BB;
}*/
2017-11-09 19:21:10 +00:00
.editor-toolbar .button:not(.disabled):hover,
2017-11-13 00:23:12 +00:00
.header .button:not(.disabled):hover {
2017-11-08 22:23:26 +00:00
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
}
.editor-toolbar .button:not(.disabled):active,
2017-11-13 00:23:12 +00:00
.header .button:not(.disabled):active {
2017-11-12 17:53:26 +00:00
background-color: rgba(0,160,255,0.2);
border: 1px solid rgba(0,160,255,0.7);
box-sizing: 'border-box';
}
.editor-toolbar .button,
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;
2018-06-14 09:04:58 +01:00
}
@keyframes icon-infinite-rotation{
to {
transform: rotate(360deg);
}
}
2018-06-14 09:04:58 +01:00
.smalltalk {
font-family: sans-serif;
}
.note-property-box .rdt {
display: inline-block;
}
.help-tooltip {
font-family: sans-serif;
max-width: 200px;
}
:disabled {
opacity: 0.6;
}
@media screen and (max-width:550px){
.header .title {
display: none;
}
}
.config-menu-bar button:focus {
outline: 0 none;
}
.modal-message {
display: flex;
justify-content: center;
align-items: center;
color: grey;
font-size: 1.2em;
margin: 40px 20px;
}
.modal-message #loading-animation {
margin-right: 20px;
width: 20px;
height: 20px;
border: 5px solid lightgrey;
border-top: 4px solid white;
border-radius: 50%;
transition-property: transform;
animation-name: rotate;
animation-duration: 1.2s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes rotate {
from {transform: rotate(0deg);}
to {transform: rotate(360deg);}
}