blob: 6ef0c64542fd67c89f0bc3e6566cf0356f01431f (
plain)
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
80
81
|
.task-manager-container {
display: flex;
flex-direction: column;
padding: 8px;
gap: 10px;
width: 100%;
height: 100%;
box-sizing: border-box;
input,
textarea,
select,
button {
background-color: #fff !important;
color: #000 !important;
border-color: #ccc !important;
}
}
.task-manager-title {
width: 100%;
font-size: 1.25rem;
font-weight: 600;
padding: 6px 10px;
border: 1px solid #ccc;
border-radius: 6px;
box-sizing: border-box;
}
.task-manager-description {
width: 100%;
font-size: 1rem;
padding: 8px 10px;
border: 1px solid #ccc;
border-radius: 6px;
min-height: 40px;
box-sizing: border-box;
vertical-align: top;
text-align: start;
resize: none;
line-height: 1.4;
resize: none;
flex-grow: 1
}
.task-manager-checkboxes {
display: flex;
align-items: center;
gap: 16px;
}
.task-manager-allday, .task-manager-complete {
display: flex;
align-items: center;
gap: 6px;
font-size: 0.95rem;
}
.task-manager-times {
display: flex;
flex-direction: column;
gap: 6px;
width: 100%;
}
.task-manager-times label {
display: flex;
flex-direction: column;
font-size: 0.9rem;
font-weight: 500;
gap: 4px;
}
input[type="datetime-local"] {
width: 100%;
font-size: 0.9rem;
padding: 6px 8px;
border: 1px solid #ccc;
border-radius: 6px;
box-sizing: border-box;
}
|