From fe92f740c67ac8a20675c33ff5f8ee4d8a400391 Mon Sep 17 00:00:00 2001 From: Valter Strods Date: Wed, 13 Aug 2014 21:18:04 +0300 Subject: [PATCH 1/4] Clean up comments on a selector Doing quick automated CSS cleanup is nice before applying the stylesheet to production, but it seems some tools have issues dealing with comments inside selectors. This commit deals with that issue for now. --- Naut CSS.css | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Naut CSS.css b/Naut CSS.css index f8af5937..b87c8bfc 100644 --- a/Naut CSS.css +++ b/Naut CSS.css @@ -273,11 +273,10 @@ border-color: #719ff2; } - .listing-page .tabmenu li:nth-of-type(3), /* Rising */ - .listing-page .tabmenu li:nth-of-type(4), /* Controversial */ - .listing-page .tabmenu li a[href*="/promoted"], /* Self-serve advertising */ - .listing-page .tabmenu li a[href*="/gilded"] /* gilded */ - {display:none;} + /* Rising, Controversial, Self-serve advertising, Gilded */ + .listing-page .tabmenu li:nth-of-type(3), .listing-page .tabmenu li:nth-of-type(4), .listing-page .tabmenu li a[href*="/promoted"], .listing-page .tabmenu li a[href*="/gilded"] { + display: none; + } /* User bar */ From d82243a5ede11f3468f438ce0dd3833ee8afa220 Mon Sep 17 00:00:00 2001 From: Alex Morgan Date: Thu, 14 Aug 2014 01:50:15 +0100 Subject: [PATCH 2/4] Added v2.2 changelog --- Naut CSS.css | 1 + 1 file changed, 1 insertion(+) diff --git a/Naut CSS.css b/Naut CSS.css index f8af5937..1692b96b 100644 --- a/Naut CSS.css +++ b/Naut CSS.css @@ -13,6 +13,7 @@ V1.7 - Update 3 - A whole lot of UI tweaks and fixes. V2.0 - Update 4 - Naut is now on GitHub, added nightmode and some fixes. V2.1 - Update 5 - Initial CSS3 update - Added transitions and minor responsive tweaks. + V2.2 - Update 6 - Bugfixes and the return of the suggest-title button. -------------------------------------------------------------------------- */ body { From 845586846da7ce6e0f20d752b25cb6162e03b4cb Mon Sep 17 00:00:00 2001 From: Alex Morgan Date: Thu, 14 Aug 2014 02:04:14 +0100 Subject: [PATCH 3/4] Issue No.9 tempfix Commented two lines of code which were causing issues related to issue No.9. Needs investigating. --- Naut CSS.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Naut CSS.css b/Naut CSS.css index 1692b96b..c624a36c 100644 --- a/Naut CSS.css +++ b/Naut CSS.css @@ -992,7 +992,7 @@ .redditSingleClick {transition: opacity 0.15s ease-in-out;} - .link .entry li a, .redditSingleClick {opacity: 0;} + /*.link .entry li a, .redditSingleClick {opacity: 0;}*/ /* Currently causing issues. Needs investigating - https://github.com/Axel--/Naut-for-reddit/issues/9 */ .link:hover .entry li a, .link .entry p a, .link:hover .entry .redditSingleClick {opacity: 100;} @@ -2122,7 +2122,7 @@ transition: border-color 0.25s; } - .link .entry li a, .link:hover .entry li a {transition: opacity 0.15s ease-in-out;} + /*.link .entry li a, .link:hover .entry li a {transition: opacity 0.15s ease-in-out;}*/ /* Currently causing issues. Needs investigating - https://github.com/Axel--/Naut-for-reddit/issues/9 */ /* NIGHTMODE - Work in progress */ From 80f4922628977bf2112e0e71c8e0eaf9c4e29172 Mon Sep 17 00:00:00 2001 From: Valter Strods Date: Fri, 15 Aug 2014 20:02:27 +0300 Subject: [PATCH 4/4] Display .sheets .btn.right by default Fix #8 This commit reenables the "see previous versions" button on the stylesheet modification page. This button was being hidden previously before as it was linking to something else that was deemed not needed but should now be interactive as people should have quick access to the stylesheet history. --- Naut CSS.css | 1 - 1 file changed, 1 deletion(-) diff --git a/Naut CSS.css b/Naut CSS.css index 30f6d5b1..4015c9eb 100644 --- a/Naut CSS.css +++ b/Naut CSS.css @@ -1568,7 +1568,6 @@ font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif; } - .sheets .btn.right {display: none;} .sheets .col textarea {width: 100%;background-color: #fff;} .sheets .col textarea:hover {border-color: #B1B1B1;} .sheets .col textarea:focus {border-color: #5b92fa;}