-
Notifications
You must be signed in to change notification settings - Fork 3
/
todo-mobile.css
134 lines (131 loc) · 2.13 KB
/
todo-mobile.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/**************/
/* Common CSS */
body {
font-family:Tahoma,sans-serif;
background-color: #F8F8F8;
font-size: 9pt;
}
h1 {
font-size: 16pt;
font-weight: bold;
margin-bottom: 5px;
}
h2 {
font-size: 14pt;
font-weight: bold;
}
.linkblock {
float:right;
}
/*************/
/* ToDo List */
#progress,
#todoTable,
div.line {
padding: 1px 0px;
clear: both;
}
div.line_odd {
background-color: #EEEEEE;
}
.line_header {
border-bottom: 1px solid black;
}
.line_header,
.line_input {
border-left: 1px solid black;
border-right: 1px solid black;
}
.line_input span,
.line_header span {
padding-top: 3px !important;
padding-bottom: 2px !important;
}
.line_header {
background-color: #EEEEEE;
}
input[type="text"]
{
font-family:Tahoma,sans-serif;
font-size: 9pt;
}
input[type="image"]
{
vertical-align: bottom;
height: 16px;
}
.todo {
display:inline-block;
text-align: left;
padding-left: 4px !important;
}
div.actions {
float: right;
}
.todo_completed {
color: #777;
}
.todo_deleted {
color: #777;
}
.todo_deleted span {
text-decoration: line-through;
}
ul.todo_item_tags {
margin: 0 !important;
padding: 0 !important;
display: inline-block;
border-width: 0 !important;
font-size: 0.8em;
vertical-align: bottom;
}
ul.todo_item_tags li {
padding: 0px 1px !important;
margin: 0px 2px !important;
}
input[disabled="disabled"] {
display: none;
}
.todo_tags {
font-style: italic;
}
#working {
padding: 3px;
margin: 2px;
background-color:#EEEEEE;
float: right;
}
#smallLog {
font-size: 6pt;
float: right;
background-color:#EEEEEE;
margin-top: -12px;
margin-left: 2px;
margin-right: 2px;
}
#logLink {
float: right;
display: none;
}
ul#modify_tags {
display: inline-block;
margin: 0;
padding: 0;
}
img.ui-datepicker-trigger {
display:none;
}
#lists ul {
list-style-type: none;
margin: 0;
padding: 2px;
}
#lists, #lists ul li {
display: inline-block;
margin-right: 20px;
}
.todotitleonly {
display: inline-block;
width: 250px;
white-space: normal;
}