From 1ecadd075ff8aa4827782097e6cbb001fcf51190 Mon Sep 17 00:00:00 2001 From: Valery Melou Date: Wed, 22 Nov 2017 08:59:58 +0100 Subject: [PATCH 1/4] Add IDs to inputs and selects --- index.html | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/index.html b/index.html index 5511dae..b8b5d67 100644 --- a/index.html +++ b/index.html @@ -261,30 +261,30 @@

Forms

- - + +
- - + +
- - + +
- - + +
- - @@ -311,30 +311,30 @@
 <div class="form-group">
-  <label>Input</label>
-  <input type="text" placeholder="Nice input">
+  <label for="paperInputs1">Input</label>
+  <input type="text" placeholder="Nice input" id="paperInputs1">
 </div>
 <div class="row">
   <div class="col sm-4">
     <div class="form-group">
-      <label>Block Level</label>
-      <input class="input-block" type="text">
+      <label for="paperInputs2">Block Level</label>
+      <input class="input-block" type="text" id="paperInputs2">
     </div>
   </div>
   <div class="col sm-8">
     <div class="form-group">
-      <label>Block Level</label>
-      <input class="input-block" type="text">
+      <label for="paperInputs3">Block Level</label>
+      <input class="input-block" type="text" id="paperInputs3">
     </div>
   </div>
 </div>
 <div class="form-group">
-  <label>Disabled</label>
-  <input type="text" placeholder="Disabled" disabled>
+  <label for="paperInputs4">Disabled</label>
+  <input type="text" placeholder="Disabled" id="paperInputs4" disabled>
 </div>
 <div class="form-group">
-  <label>Select</label>
-  <select>
+  <label for="paperSelects1">Select</label>
+  <select id="paperSelects1">
     <option value="1">Option 1</option>
     <option value="2">Option 2</option>
     <option value="3">Option 3</option>

From d0fd9a51c126a65f22c99ddd4e9983f0da292556 Mon Sep 17 00:00:00 2001
From: Danny Feliz 
Date: Tue, 21 Nov 2017 15:19:07 -0400
Subject: [PATCH 2/4] Add syntax highlighting

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 27d21d1..21e8058 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,7 @@ Don't want to download it? That's cool. You can just link to PaperCSS via unpkg'
 - https://unpkg.com/papercss@1.1.0/dist/paper.min.css
 
 ## Quick Start
-```
+```html
 
 
 

From 2b01b99ec894c0546d7e65bffcc2bf466c162399 Mon Sep 17 00:00:00 2001
From: Daniel Ruf 
Date: Tue, 21 Nov 2017 23:51:56 +0100
Subject: [PATCH 3/4] fix position value

---
 src/forms.less | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/forms.less b/src/forms.less
index e69fe46..d39dd0e 100644
--- a/src/forms.less
+++ b/src/forms.less
@@ -53,7 +53,7 @@ input, select {
         input + span:before {
             content: '';
             display: inline-block;
-            position: -.25rem;
+            position: relative;
             width: 1rem;
             height: 1rem;
             border: 2px solid @primary;

From 745be5a79c035c3f981c2776eaa0d492292c65c3 Mon Sep 17 00:00:00 2001
From: Afzal Sayed 
Date: Wed, 22 Nov 2017 22:09:42 +0530
Subject: [PATCH 4/4] Fix for summary links

---
 index.html | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/index.html b/index.html
index b8b5d67..82af0cb 100644
--- a/index.html
+++ b/index.html
@@ -53,6 +53,8 @@
         
  • Code
  • Tables
  • Popovers
  • +
  • Cards
  • +
  • Badges
  • Colors
  • Borders & shadows
  • Utilities
  • @@ -633,7 +635,7 @@ function add(x, y) {
    -
    +

    Cards

    Full card example

    It is possible to not put all the sub-classes like card-title, card-subtitle, card-text, ... But instead the framework will recognize the element properly if it's a h4, h5, p, ... And you need to put all this content on a div with card class.

    @@ -746,7 +748,7 @@ function add(x, y) {
    -
    +

    Badges

    Default

    You can customize badges colors with secondary, success, warning, danger classes.