Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shared/style/edit_mode/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'shared/style/edit_mode/index.html')
-rw-r--r--shared/style/edit_mode/index.html48
1 files changed, 48 insertions, 0 deletions
diff --git a/shared/style/edit_mode/index.html b/shared/style/edit_mode/index.html
new file mode 100644
index 0000000..22123ca
--- /dev/null
+++ b/shared/style/edit_mode/index.html
@@ -0,0 +1,48 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="utf-8">
+
+ <title>Edit mode</title>
+ <meta name="description" content="Starts an edition mode for adding or removing items">
+
+ <link rel="stylesheet" href="../edit_mode.css">
+
+ <!--
+ - This <style> element is only used for the example code;
+ - it is not required for the real use case.
+ -->
+ <style type="text/css">
+ html, body {
+ margin: 0;
+ padding: 0;
+ font-size: 10px;
+ background-color: #fff;
+ }
+ body {
+ background: none;
+ }
+ </style>
+</head>
+
+<body role="application">
+
+ <form role="dialog" data-type="edit">
+ <section>
+ <header>
+ <button><span class="icon icon-close">close</span></button>
+ <menu type="toolbar">
+ <button>done</button>
+ </menu>
+ <h1>Edit</h1>
+ </header>
+ </section>
+ <menu>
+ <button>Delete all</button>
+ <button>Delete selected</button>
+ </menu>
+ </form>
+
+</body>
+</html>
+