-
Notifications
You must be signed in to change notification settings - Fork 1
/
oruga-tailwindcss.css
79 lines (53 loc) · 1.35 KB
/
oruga-tailwindcss.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* Button */
.btn {
@apply font-bold py-2 px-4 text-highlight bg-highlight-background dark:text-highlight-dark dark:bg-highlight-background-dark rounded;
}
/* Field */
.field-label {
@apply block text-sm font-bold mb-2 text-main dark:text-main-dark;
}
.field-danger {
@apply text-red-500;
}
/* Input */
.input {
@apply shadow appearance-none border w-full py-2 px-3 leading-tight text-main dark:text-main-dark dark:bg-main;
}
.input-danger {
@apply border-highlight;
}
/* Switch */
.switch {
@apply bg-black dark:bg-highlight-dark;
}
.switch-label {
@apply hidden;
}
/* Dropdown */
.dropdown-menu {
@apply shadow-lg rounded-sm z-10 bg-main-dark text-main dark:text-main-dark dark:bg-main z-50 w-full;
}
.dropdown-item {
@apply cursor-pointer text-main dark:text-main-dark dark:bg-main w-full p-1;
}
.dropdown-item-active {
@apply text-highlight bg-highlight-background dark:text-highlight-dark dark:bg-highlight-background-dark;
}
/* Loading */
.loading-background {
@apply bg-gray-50 dark:bg-gray-700 opacity-75;
}
/* Radio */
.radio {
@apply font-bold py-2 px-4 rounded text-main dark:text-main-dark;
min-width: 6rem;
}
.radio-check {
@apply hidden;
}
.radio-checked {
@apply text-highlight bg-highlight-background dark:text-highlight-dark dark:bg-highlight-background-dark;
}
.radio-label {
@apply w-full text-center p-0;
}