Adjusting the docs to show the modals demo for mobile devices. master origin/HEAD origin/master
authorconnors <connors@pinterest.com>
Sun, 13 Jan 2013 23:27:18 +0000 (15:27 -0800)
committerconnors <connors@pinterest.com>
Sun, 13 Jan 2013 23:27:18 +0000 (15:27 -0800)
docs/css/docs.css
docs/index.html

index 8cb6847..b4057d4 100644 (file)
@@ -649,10 +649,21 @@ h6 {
 }
 
 /* Modal example */
-.iphone .iphone-content .modal { position: absolute; }
-.iphone .iphone-content .modal .content { margin-top: 44px; }
-#myModal.active { background: #cecece; }
-#modalsInPhone #iwindow > .button { margin: 10px; }
+.component-example .modal {
+  left: 0;
+  z-index: 10001;
+}
+.iphone .iphone-content .modal { 
+  position: absolute; 
+}
+.component-example .modal .content,
+.iphone .iphone-content .modal .content { 
+  margin-top: 44px; 
+}
+#modalsInPhone #iwindow > .button { 
+  margin: 10px; 
+}
+
 
 /* Slider examples */
 .component-example-fullbleed .slider,
index fd2a413..cc3d0cb 100644 (file)
@@ -983,9 +983,22 @@ document
           <h3 class="component-title">Modals</h3>
 
           <div class="component-example">
-            
+            <a href="#myModalexample" class="button">Open modal</a>
+            <div id="myModalexample" class="modal">
+              <header class="bar-title">
+                <h1 class="title">Modal</h1>
+                <a class="button" href="#myModalexample">
+                  Close
+                </a>
+              </header>
+              
+              <div class="content content-padded">
+                <p>The contents of my modal</p>
+              </div>
+            </div>
           </div>
 
+
 <pre class="prettyprint">
 &lt;a href=&quot;#myModal&quot; class=&quot;button&quot;&gt;Open modal&lt;/a&gt;
 
@@ -998,7 +1011,7 @@ document
   &lt;/header&gt;
   
   &lt;div class=&quot;content content-padded&quot;&gt;
-    &lt;p&gt;The contents of my modal&lt;/p&gt;
+    &lt;p&gt;The contents of my modal.&lt;/p&gt;
   &lt;/div&gt;
 &lt;/div&gt;
 </pre>