Kanban prototype on cryptpad

This commit is contained in:
Ludovic Dubost
2018-04-01 18:52:21 +02:00
parent f324d33723
commit 4b83f2991a
13 changed files with 3020 additions and 0 deletions

43
www/kanban/inner.html Normal file
View File

@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html class="cp-app-noscroll">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
<script async data-bootload="/kanban/inner.js" data-main="/common/sframe-boot.js?ver=1.6" src="/bower_components/requirejs/require.js?ver=2.3.5"></script>
<style>
.loading-hidden { display: none; }
#editor1 { display: none; }
html, body {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
border: 0px;
}
margin: 0;
padding: 0;
}
#myKanban {
overflow-x: auto;
padding: 20px 0;
}
.success {
background: #00B961;
}
.info {
background: #2A92BF;
}
.warning {
background: #F4CE46;
}
.error {
background: #FB7D44;
}
</head>
<body class="cp-app-kanban">
</body>