9
9
@tailwind utilities;
10
10
11
11
@layer base {
12
- html , body {
12
+ html ,
13
+ body {
13
14
@apply h-full;
14
15
}
15
16
body {
61
62
@apply cursor-default opacity-50 pointer-events-none;
62
63
}
63
64
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;
66
72
}
67
73
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 {
69
78
@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;
70
79
}
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 {
72
83
@apply text-gray-400 dark:text-gray-500;
73
84
}
74
- input [type = text ].error , input [type = password ].error , select .error {
85
+ input [type = "text" ].error ,
86
+ input [type = "password" ].error ,
87
+ select .error {
75
88
@apply border-gitpod-red dark:border-gitpod-red focus:border-gitpod-red dark:focus:border-gitpod-red;
76
89
}
77
90
input [disabled ] {
78
91
@apply bg-gray-100 dark:bg-gray-700 border border-gray-200 dark:border-gray-600 text-gray-400 dark:text-gray-500;
79
92
}
80
- input [type = radio ] {
93
+ input [type = " radio" ] {
81
94
@apply border border-gray-300 focus:border-gray-400 focus:bg-white focus:ring-0;
82
95
}
83
- input [type = search ] {
96
+ input [type = " search" ] {
84
97
@apply border-0 dark:bg-transparent;
85
98
}
86
- input [type = checkbox ] {
87
- @apply disabled:opacity-50
99
+ input [type = " checkbox" ] {
100
+ @apply disabled:opacity-50;
88
101
}
89
102
90
103
progress {
99
112
progress ::-moz-progress-bar {
100
113
@apply rounded-md bg-green-500;
101
114
}
102
- }
115
+ }
0 commit comments