From c7f8623716f8b46dd2819e7a85db009f57e66d5e Mon Sep 17 00:00:00 2001 From: Vinod Dalvi Date: Thu, 12 Sep 2013 14:15:25 -0700 Subject: [PATCH 1/5] Made Changes in CSS to Make it Adhere to WordPress CSS Coding Standards. --- style.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/style.css b/style.css index 962e75d..6a62b63 100644 --- a/style.css +++ b/style.css @@ -164,9 +164,9 @@ pre { font-size: 1.5rem; line-height: 1.6; margin-bottom: 1.6em; - padding: 1.6em; - overflow: auto; max-width: 100%; + overflow: auto; + padding: 1.6em; } code, kbd, tt, var { font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; @@ -423,9 +423,9 @@ a:active { box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2); display: none; float: left; + left: 0; position: absolute; - top: 1.5em; - left: 0; + top: 1.5em; z-index: 99999; } .main-navigation ul ul ul { @@ -452,8 +452,8 @@ a:active { /* Small menu */ .menu-toggle { - display: none; cursor: pointer; + display: none; } @media screen and (max-width: 600px) { From 1a60b6cf857c2d1c917f2cb36b5cf7f484f140c4 Mon Sep 17 00:00:00 2001 From: Vinod Dalvi Date: Sat, 14 Sep 2013 03:29:53 -0700 Subject: [PATCH 2/5] Corrected wrong comments. --- footer.php | 2 +- header.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/footer.php b/footer.php index 95646ba..3627849 100644 --- a/footer.php +++ b/footer.php @@ -2,7 +2,7 @@ /** * The template for displaying the footer. * - * Contains the closing of the id=main div and all content after + * Contains the closing of the #content div and all content after * * @package _s */ diff --git a/header.php b/header.php index 527b6de..7dc77bb 100644 --- a/header.php +++ b/header.php @@ -2,7 +2,7 @@ /** * The Header for our theme. * - * Displays all of the section and everything up till
+ * Displays all of the section and everything up till
* * @package _s */ From d29559074255e6e2676d2e1dc3094cc4893db101 Mon Sep 17 00:00:00 2001 From: Vinod Dalvi Date: Sat, 14 Sep 2013 03:51:56 -0700 Subject: [PATCH 3/5] Removed extra lines --- 404.php | 1 - image.php | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/404.php b/404.php index 950cf97..2a924b9 100644 --- a/404.php +++ b/404.php @@ -7,7 +7,6 @@ get_header(); ?> -
diff --git a/image.php b/image.php index 0c74af9..a1e1d15 100644 --- a/image.php +++ b/image.php @@ -5,8 +5,7 @@ * @package _s */ -get_header(); -?> +get_header(); ?>
From dbb5797ca5a3c4997cccc0dbac31ba7512e374ef Mon Sep 17 00:00:00 2001 From: Vinod Dalvi Date: Sat, 14 Sep 2013 09:25:32 -0700 Subject: [PATCH 4/5] Fixed some minor spacing issues. --- style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/style.css b/style.css index 6a62b63..9787513 100644 --- a/style.css +++ b/style.css @@ -574,6 +574,7 @@ object { width: 50%; } + /* =Comments ----------------------------------------------- */ @@ -583,6 +584,7 @@ object { .bypostauthor { } + /* =Widgets ----------------------------------------------- */ @@ -600,6 +602,7 @@ object { display: none; } + /* =Infinite Scroll ----------------------------------------------- */ From e9908d3798e3ecd80028cf07e2660d47fde423a6 Mon Sep 17 00:00:00 2001 From: Vinod Dalvi Date: Sun, 15 Sep 2013 08:08:46 -0700 Subject: [PATCH 5/5] Corrected file name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f3c4dec..c74e333 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ My ultra-minimal CSS might make me look like theme tartare but that means less s * A sample custom header implementation in `inc/custom-header.php` that can be activated by uncommenting one line in functions.php and adding the code snippet found the comments of `inc/custom-header.php` to your `header.php` template. * Custom template tags in `inc/template-tags.php` that keep your templates clean and neat and prevent code duplication. * Some small tweaks in `inc/extras.php` that can improve your theming experience. -* Keyboard navigation for image attachment templates. The script can be found in `js/keyboard-navigation.js`. It's enqueued in `functions.php`. +* Keyboard navigation for image attachment templates. The script can be found in `js/keyboard-image-navigation.js`. It's enqueued in `functions.php`. * A script at `js/navigation.js` that makes your menu a toggled dropdown on small screens (like your phone), ready for CSS artistry. It's enqueued in `functions.php`. * 2 sample CSS layouts in `layouts` for a sidebar on either side of your content. * Smartly organized starter CSS in `style.css` that will help you to quickly get your design off the ground.