Monorepo for Tangled

appview/pages: fix regression in textarea styles

Signed-off-by: oppiliappan <me@oppi.li>

+12 -11
+3 -3
appview/pages/templates/repo/issues/issues.html
··· 33 <div class="flex-1 flex relative"> 34 <input 35 id="search-q" 36 - class="flex-1 py-1 pl-2 pr-10 mr-[-1px] rounded-r-none focus:border-0 focus:outline-none focus:ring focus:ring-blue-400 ring-inset peer" 37 type="text" 38 name="q" 39 value="{{ .FilterQuery }}" 40 - placeholder=" " 41 > 42 <a 43 href="?state={{ if .FilteringByOpen }}open{{ else }}closed{{ end }}" ··· 48 </div> 49 <button 50 type="submit" 51 - class="p-2 text-gray-400 border rounded-r border-gray-400 dark:border-gray-600" 52 > 53 {{ i "search" "w-4 h-4" }} 54 </button>
··· 33 <div class="flex-1 flex relative"> 34 <input 35 id="search-q" 36 + class="flex-1 py-1 pl-2 pr-10 mr-[-1px] rounded-r-none peer" 37 type="text" 38 name="q" 39 value="{{ .FilterQuery }}" 40 + placeholder="search issues..." 41 > 42 <a 43 href="?state={{ if .FilteringByOpen }}open{{ else }}closed{{ end }}" ··· 48 </div> 49 <button 50 type="submit" 51 + class="p-2 text-gray-400 border rounded-r border-gray-300 dark:border-gray-600" 52 > 53 {{ i "search" "w-4 h-4" }} 54 </button>
+3 -3
appview/pages/templates/repo/pulls/pulls.html
··· 39 <div class="flex-1 flex relative"> 40 <input 41 id="search-q" 42 - class="flex-1 py-1 pl-2 pr-10 mr-[-1px] rounded-r-none focus:border-0 focus:outline-none focus:ring focus:ring-blue-400 ring-inset peer" 43 type="text" 44 name="q" 45 value="{{ .FilterQuery }}" 46 - placeholder=" " 47 > 48 <a 49 href="?state={{ .FilteringBy.String }}" ··· 54 </div> 55 <button 56 type="submit" 57 - class="p-2 text-gray-400 border rounded-r border-gray-400 dark:border-gray-600" 58 > 59 {{ i "search" "w-4 h-4" }} 60 </button>
··· 39 <div class="flex-1 flex relative"> 40 <input 41 id="search-q" 42 + class="flex-1 py-1 pl-2 pr-10 mr-[-1px] rounded-r-none peer" 43 type="text" 44 name="q" 45 value="{{ .FilterQuery }}" 46 + placeholder="search pulls..." 47 > 48 <a 49 href="?state={{ .FilteringBy.String }}" ··· 54 </div> 55 <button 56 type="submit" 57 + class="p-2 text-gray-400 border rounded-r border-gray-300 dark:border-gray-600" 58 > 59 {{ i "search" "w-4 h-4" }} 60 </button>
+6 -5
input.css
··· 92 label { 93 @apply block text-gray-900 text-sm font-bold py-2 uppercase dark:text-gray-100; 94 } 95 - input { 96 - @apply p-3 border border-gray-100 block rounded bg-gray-50 focus:outline-none focus:ring-1 focus:ring-gray-200 p-3 dark:bg-gray-800 dark:border-gray-600 dark:text-white dark:focus:ring-gray-400;; 97 - } 98 - textarea { 99 - @apply border border-gray-100 block rounded bg-gray-50 focus:outline-none focus:ring-1 focus:ring-gray-200 p-3 dark:bg-gray-800 dark:border-gray-600 dark:text-white dark:focus:ring-gray-400; 100 } 101 details summary::-webkit-details-marker { 102 display: none;
··· 92 label { 93 @apply block text-gray-900 text-sm font-bold py-2 uppercase dark:text-gray-100; 94 } 95 + input, textarea { 96 + @apply 97 + block rounded p-3 98 + bg-gray-50 dark:bg-gray-800 dark:text-white 99 + border border-gray-300 dark:border-gray-600 100 + focus:outline-none focus:ring-1 focus:ring-gray-400 dark:focus:ring-gray-500; 101 } 102 details summary::-webkit-details-marker { 103 display: none;