2019-10-11 05:11:52 +08:00
|
|
|
.quest_editor_EventsView {
|
2019-10-28 06:21:58 +08:00
|
|
|
box-sizing: border-box;
|
2019-10-11 05:11:52 +08:00
|
|
|
overflow-y: auto;
|
|
|
|
display: flex;
|
2019-10-28 06:21:58 +08:00
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: start;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 4px;
|
2019-10-11 05:11:52 +08:00
|
|
|
}
|
|
|
|
|
2019-11-01 02:11:14 +08:00
|
|
|
.quest_editor_EventsView_dag {
|
|
|
|
position: relative;
|
2019-10-11 05:11:52 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-11-01 02:11:14 +08:00
|
|
|
align-items: stretch;
|
2019-10-11 05:11:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.quest_editor_EventsView_event {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2019-11-01 02:11:14 +08:00
|
|
|
padding: 6px 12px;
|
|
|
|
border: var(--border);
|
|
|
|
margin: 4px;
|
|
|
|
background-color: hsl(0, 0%, 17%);
|
2019-10-11 05:11:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.quest_editor_EventsView_event th {
|
|
|
|
text-align: left;
|
|
|
|
}
|
2019-11-01 02:11:14 +08:00
|
|
|
|
2019-11-05 00:19:57 +08:00
|
|
|
.quest_editor_EventsView_edge_container {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2019-11-01 02:11:14 +08:00
|
|
|
.quest_editor_EventsView_edge {
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: absolute;
|
|
|
|
border-left: solid 2px var(--border-color);
|
|
|
|
border-top: solid 2px var(--border-color);
|
|
|
|
border-bottom: solid 2px var(--border-color);
|
|
|
|
}
|