2017-11-07 23:11:14 +02:00
|
|
|
body, textarea {
|
2017-11-04 21:46:37 +02:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2017-11-07 23:11:14 +02:00
|
|
|
border: none;
|
2017-11-04 21:46:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#react-root {
|
|
|
|
height: 100%;
|
2017-11-12 01:13:14 +02:00
|
|
|
overflow: hidden;
|
2017-11-04 21:46:37 +02:00
|
|
|
}
|
|
|
|
|
2017-12-05 20:56:39 +02:00
|
|
|
table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
|
|
|
|
table th {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
table td, table th {
|
|
|
|
padding: .5em;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
}
|
|
|
|
|
2019-09-11 01:53:01 +02:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2019-02-15 00:21:21 +02:00
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 7px;
|
2019-02-17 04:16:32 +02:00
|
|
|
height: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-corner {
|
|
|
|
background: none;
|
2019-02-15 00:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
border: none;
|
|
|
|
}
|
2020-09-15 15:01:07 +02:00
|
|
|
|
2019-02-15 00:21:21 +02:00
|
|
|
::-webkit-scrollbar-thumb {
|
2020-09-15 15:01:07 +02:00
|
|
|
background: rgba(100, 100, 100, 0.3);
|
2019-02-15 00:21:21 +02:00
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track:hover {
|
2020-09-15 15:01:07 +02:00
|
|
|
background: rgba(0, 0, 0, 0.1);
|
2019-02-15 00:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
2020-09-15 15:01:07 +02:00
|
|
|
background: rgba(100, 100, 100, 0.7);
|
2019-02-15 00:21:21 +02:00
|
|
|
}
|
2019-07-20 23:13:10 +02:00
|
|
|
|
|
|
|
.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 20:16:17 +02:00
|
|
|
|
2017-11-30 01:03:10 +02:00
|
|
|
.editor-toolbar .button,
|
2017-11-09 00:23:26 +02:00
|
|
|
.header .button {
|
|
|
|
border: 1px solid rgba(0,160,255,0);
|
2017-11-11 00:18:00 +02: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 19:53:26 +02: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 10:04:58 +02:00
|
|
|
}
|
|
|
|
|
2019-04-28 15:20:18 +02:00
|
|
|
@keyframes icon-infinite-rotation{
|
|
|
|
to {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-23 11:35:25 +02:00
|
|
|
.rdtPicker {
|
|
|
|
min-width: 250px;
|
|
|
|
width: auto !important;
|
|
|
|
}
|
|
|
|
|
2018-06-14 10:04:58 +02:00
|
|
|
.smalltalk {
|
|
|
|
font-family: sans-serif;
|
2018-09-16 20:37:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.note-property-box .rdt {
|
|
|
|
display: inline-block;
|
2018-11-08 00:37:13 +02:00
|
|
|
}
|
2019-05-06 22:35:29 +02:00
|
|
|
|
|
|
|
.help-tooltip {
|
|
|
|
font-family: sans-serif;
|
|
|
|
max-width: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
:disabled {
|
|
|
|
opacity: 0.6;
|
2019-07-13 17:42:57 +02:00
|
|
|
}
|
|
|
|
|
2019-09-11 01:53:01 +02:00
|
|
|
.config-menu-bar button:focus {
|
|
|
|
outline: 0 none;
|
|
|
|
}
|
|
|
|
|
2019-10-05 23:46:39 +02:00
|
|
|
.modal-message {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2020-10-21 17:55:52 +02:00
|
|
|
align-items: flex-start;
|
2019-10-05 23:46:39 +02:00
|
|
|
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);}
|
2020-06-06 17:00:20 +02:00
|
|
|
}
|
2020-09-15 15:01:07 +02:00
|
|
|
|
|
|
|
*:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|