minor css cleanup
authorIan Kelling <ian@iankelling.org>
Tue, 4 Oct 2016 17:48:54 +0000 (10:48 -0700)
committerIan Kelling <ian@iankelling.org>
Tue, 4 Oct 2016 17:48:54 +0000 (10:48 -0700)
b.rb
css/main.scss

diff --git a/b.rb b/b.rb
index c2dbc75bae6ff6f8b5839941f083e7ef19e49563..391a0ed5e97430f34223d5432d177d951bfae929 100644 (file)
--- a/b.rb
+++ b/b.rb
@@ -220,8 +220,8 @@ EOF
         comment_html("Note: there #{text} pending approval.", NOW)
     end
     com_section = <<-EOF
-      <form class="comment" action="/cgi/comment" method="post">
-        <input class="misc" type="text" name="url">
+      <form action="/cgi/comment" method="post">
+        <input class="misc-comment-input" type="text" name="url">
         <input name="goto" type="hidden" value="#{rel_path}">
         <textarea rows="10" name="comment" placeholder="markdown" maxlength="1000"></textarea>
         <input type="submit" value="Leave a comment">
index 7c7e4a23206f6754d978c9f3fcb84538fa20b9d1..824ee505b596eed1bac691986051183ea6def3c8 100644 (file)
@@ -1,6 +1,8 @@
 // https://github.com/necolas/normalize.css
 @import "normalize";
 @import "common";
+@import "subscribe-char";
+@import "code-highlight";
 
 .cc-by-sa {
   // It sits too high by default.
@@ -12,7 +14,7 @@
   margin: 50px 0;
 }
 
-div.comment {
+.comment {
   // whitespace doesn't cut it to differentiate multiple comments,
   // so use a line
   border-top-color: $comment-br-color;
@@ -52,17 +54,15 @@ input {
 }
 
 // if this is filled out, we can assume it's spam. common tactic.
-input.misc {
+.misc-comment-input {
   display: none;
 }
 
-
 textarea {
   // make the comment box be full width
   width: 100%;
 }
 
-
 ul {
   // i dun like the default bullet points
   list-style-type: none;
@@ -176,5 +176,3 @@ a:visited {
   color: $link-visited-color;
 }
 
-@import "subscribe-char";
-@import "code-highlight";