2020-08-08 21:17:17 +02:00
|
|
|
<!DOCTYPE html>
|
2020-08-31 02:59:47 +02:00
|
|
|
<html lang="en">
|
2020-08-08 21:17:17 +02:00
|
|
|
<head>
|
2020-12-23 19:00:14 +01:00
|
|
|
<meta charset="UTF-8">
|
2020-08-08 21:17:17 +02:00
|
|
|
<link href="index.css" rel="stylesheet"/>
|
2020-09-12 23:15:17 +02:00
|
|
|
<link href="css/tabbedComponent.css" rel="stylesheet"/>
|
2020-08-08 21:17:17 +02:00
|
|
|
<title>Custom Theme Generator for Mapcomplete</title>
|
|
|
|
|
|
|
|
<style type="text/css">
|
|
|
|
|
2021-03-23 13:51:34 +01:00
|
|
|
img {
|
|
|
|
min-width: 35px;
|
|
|
|
min-height: 35px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input{
|
|
|
|
border: 0.5px solid #939393;
|
|
|
|
}
|
|
|
|
|
2020-08-31 02:59:47 +02:00
|
|
|
.icon-preview {
|
|
|
|
max-width: 2em;
|
|
|
|
max-height: 2em ;
|
|
|
|
}
|
|
|
|
|
|
|
|
.image-large-preview {
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 30vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.json{
|
|
|
|
width:100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2020-08-08 21:17:17 +02:00
|
|
|
.bordered {
|
|
|
|
border: 1px solid black;
|
|
|
|
display:block;
|
|
|
|
padding: 0.5em;
|
|
|
|
border-radius: 0.5em;
|
2020-09-02 11:37:34 +02:00
|
|
|
box-sizing: border-box;
|
2020-08-08 21:17:17 +02:00
|
|
|
}
|
2020-09-02 11:37:34 +02:00
|
|
|
|
2020-08-31 02:59:47 +02:00
|
|
|
.tag-input-row {
|
|
|
|
display: block ruby;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin-right: 2em;
|
2020-09-02 11:37:34 +02:00
|
|
|
width: calc(100% - 3em);
|
|
|
|
padding-right: 0.5em;
|
|
|
|
height: min-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.min-height {
|
|
|
|
display: block;
|
|
|
|
height: min-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-tabs{
|
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab-content {
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
padding-left: 0;
|
|
|
|
margin-left: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-tabs > .tabs-header-bar {
|
|
|
|
background: #eee;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.scrollable {
|
|
|
|
display: block;
|
|
|
|
overflow-y: scroll;
|
|
|
|
height: calc(100vh - 9em - 10px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-tabs > .tab-content {
|
|
|
|
display: block;
|
|
|
|
height: 100%;
|
|
|
|
padding-bottom: 0 ;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-tabs > .tab-content > span{
|
|
|
|
display: block;
|
|
|
|
height: 100%;
|
2020-08-31 02:59:47 +02:00
|
|
|
}
|
|
|
|
|
2020-08-08 21:17:17 +02:00
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
}
|
2020-09-02 11:37:34 +02:00
|
|
|
|
|
|
|
#maindiv {
|
|
|
|
height: calc(100% - 6em);
|
|
|
|
}
|
2020-08-08 21:17:17 +02:00
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
2020-09-02 11:37:34 +02:00
|
|
|
<div id="maindiv">
|
2020-12-07 03:02:50 +01:00
|
|
|
Loading the MapComplete custom theme builder...<br/>
|
|
|
|
If this message persists, make sure javascript is enabled and no script blocker is blocking this.
|
2020-08-08 21:17:17 +02:00
|
|
|
</div>
|
|
|
|
<script src="./customGenerator.ts"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|