99@tailwind utilities;
1010
1111@layer base {
12- html , body {
12+ html ,
13+ body {
1314 @apply h-full;
1415 }
1516 body {
6162 @apply cursor-default opacity-50 pointer-events-none;
6263 }
6364
64- a .gp-link {
65- @apply text-blue-500 hover:text-blue-600 dark:text-blue-400 dark:hover:text-blue-500;
65+ button .gp-link {
66+ @apply bg-transparent hover:bg-transparent p-0 rounded-none;
67+ }
68+
69+ a .gp-link ,
70+ button .gp-link {
71+ @apply text-blue-500 hover:text-blue-600 dark:text-blue-400 dark:hover:text-blue-500;
6672 }
6773
68- input [type = text ], input [type = search ], input [type = password ], select {
74+ input [type = "text" ],
75+ input [type = "search" ],
76+ input [type = "password" ],
77+ select {
6978 @apply block w-56 text-gray-600 dark:text-gray-400 bg-white dark:bg-gray-800 rounded-md border border-gray-300 dark:border-gray-500 focus:border-gray-400 dark:focus:border-gray-400 focus:ring-0;
7079 }
71- input [type = text ]::placeholder , input [type = search ]::placeholder , input [type = password ]::placeholder {
80+ input [type = "text" ]::placeholder ,
81+ input [type = "search" ]::placeholder ,
82+ input [type = "password" ]::placeholder {
7283 @apply text-gray-400 dark:text-gray-500;
7384 }
74- input [type = text ].error , input [type = password ].error , select .error {
85+ input [type = "text" ].error ,
86+ input [type = "password" ].error ,
87+ select .error {
7588 @apply border-gitpod-red dark:border-gitpod-red focus:border-gitpod-red dark:focus:border-gitpod-red;
7689 }
7790 input [disabled ] {
7891 @apply bg-gray-100 dark:bg-gray-700 border border-gray-200 dark:border-gray-600 text-gray-400 dark:text-gray-500;
7992 }
80- input [type = radio ] {
93+ input [type = " radio" ] {
8194 @apply border border-gray-300 focus:border-gray-400 focus:bg-white focus:ring-0;
8295 }
83- input [type = search ] {
96+ input [type = " search" ] {
8497 @apply border-0 dark:bg-transparent;
8598 }
86- input [type = checkbox ] {
87- @apply disabled:opacity-50
99+ input [type = " checkbox" ] {
100+ @apply disabled:opacity-50;
88101 }
89102
90103 progress {
99112 progress ::-moz-progress-bar {
100113 @apply rounded-md bg-green-500;
101114 }
102- }
115+ }
0 commit comments