Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shared/style/action_menu/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'shared/style/action_menu/index.html')
-rw-r--r--shared/style/action_menu/index.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/shared/style/action_menu/index.html b/shared/style/action_menu/index.html
new file mode 100644
index 0000000..270d07a
--- /dev/null
+++ b/shared/style/action_menu/index.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="utf-8">
+ <title>Action menu</title>
+ <meta name="description" content="Presenting a list of actions related to the App content">
+
+ <link rel="stylesheet" href="../action_menu.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="action" onsubmit="return false;">
+ <header> Title </header> <!-- this header is optional -->
+ <menu>
+ <button> Action 1 </button>
+ <button disabled> Action 2 (disabled) </button>
+ <button> Action 3 </button>
+ <button> Cancel </button>
+ </menu>
+ </form>
+
+</body>
+</html>
+