From 31d11548a66064602f46ff4d3159494aee7ab38a Mon Sep 17 00:00:00 2001 From: Prior L Date: Wed, 28 Apr 2021 00:39:59 -0700 Subject: [PATCH 1/3] Create v1.1.1 from v1.0.2 --- v1.1.1.html | 1568 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1568 insertions(+) create mode 100644 v1.1.1.html diff --git a/v1.1.1.html b/v1.1.1.html new file mode 100644 index 0000000..5d9721b --- /dev/null +++ b/v1.1.1.html @@ -0,0 +1,1568 @@ + + + + Kinklist + + + + + + + +
+ +

Kink list

+
+
Not Entered
+
Favorite
+
Like
+
Okay
+
Maybe
+
No
+
+
+ + +
Loading
+
+ +
+
+
+ + +
+
+
+
+
+

+

+ +
+
+
+
+
+ + + From ebfab2dee095837f6d15cf8d2daa70e6bce017a4 Mon Sep 17 00:00:00 2001 From: Prior L Date: Wed, 28 Apr 2021 00:40:17 -0700 Subject: [PATCH 2/3] v1.1.1: Fix whitespace. --- v1.1.1.html | 144 ++++++++++++++++++++++++++-------------------------- 1 file changed, 72 insertions(+), 72 deletions(-) diff --git a/v1.1.1.html b/v1.1.1.html index 5d9721b..0c37272 100644 --- a/v1.1.1.html +++ b/v1.1.1.html @@ -49,11 +49,11 @@ padding: 4px; padding-right: 2px; } - @-moz-document url-prefix() { + @-moz-document url-prefix() { td { padding: 3.3px; } - } + } td + td { border-left-style: none; } @@ -86,7 +86,7 @@ opacity: 1; border-width: 2px; } - + .legend { vertical-align: middle; font-size: 14px; @@ -101,7 +101,7 @@ .legend-text { vertical-align: middle; } - + #ExportWrapper { width: 460px; height: 36px; @@ -250,14 +250,14 @@ 0% {transform: rotate(0deg);} 100% {transform: rotate(-360deg);} } - + #ExportWrapper :last-child:after { content: ''; display: block; clear: both; } .kinkCategory { - + } .col { float: left; @@ -292,7 +292,7 @@ #Edit:hover { opacity: 1; } - + .overlay { position: fixed; top: 0; @@ -331,7 +331,7 @@ border-radius: 5px; cursor: pointer; } - + #InputOverlay { text-align: center; white-space: nowrap; @@ -387,7 +387,7 @@ #InputOverlay .widthWrapper .kink-simple .txt-field:after { content: ') '; } - + #InputOverlay .widthWrapper #InputPrevious .kink-simple:first-child, #InputOverlay .widthWrapper #InputNext .kink-simple:nth-child(3) { background-color: #BBB; @@ -424,7 +424,7 @@ #InputOverlay .widthWrapper #InputNext .kink-simple:nth-child(2) { padding-top: 7px; } - + #InputPrevious .kink-simple { border-top-left-radius: 2px; border-top-right-radius: 2px; @@ -433,7 +433,7 @@ border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; } - + #InputOverlay .widthWrapper #InputCurrent { position: relative; } @@ -692,7 +692,7 @@

Kink list

* Hot Wax * Scratching * Biting -* Cutting +* Cutting @@ -709,7 +709,7 @@

From 62120f0149e505cbb1de30f831f3989f068ebcb6 Mon Sep 17 00:00:00 2001 From: Prior L Date: Wed, 28 Apr 2021 00:41:19 -0700 Subject: [PATCH 3/3] v1.1.1: Allow hiding of categories --- v1.1.1.html | 37 +++++++++++++++++++++++++++++-------- 1 file changed, 29 insertions(+), 8 deletions(-) diff --git a/v1.1.1.html b/v1.1.1.html index 0c37272..5366b8f 100644 --- a/v1.1.1.html +++ b/v1.1.1.html @@ -256,8 +256,9 @@ display: block; clear: both; } - .kinkCategory { - + .kinkCategory h2 { + display: inline-block; + margin-right: 20px; } .col { float: left; @@ -755,9 +756,28 @@

createCategory: function(name, fields){ var $category = $('
') .addClass('cat-' + strToClass(name)) + .addClass('columns-' + fields.length) + .addClass('included') .data('category', name) - .append($('

') - .text(name)); + .append($('

').text(name)) + + var includeButton = $('') + .attr('name', 'include-' + strToClass(name)) + .prop('checked', true) + .change(function() { + $category.removeClass('included'); + if ($(this)[0].checked) { + $category.addClass('included'); + } + }); + + var includeText = $('