blob: c6780ef8fd985e230b7c2d8506cabc6e4e4ed535 (
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
html.ui-mobile, html {
overflow: hidden;
}
body {
overflow: hidden;
}
#new_event label {
font-weight: bold !important;
margin-top: .3em !important;
}
#new_event input {
width: 94%;
}
#events_list {
word-wrap: break-word;
}
li.event {
font-size: 0.8rem;
height: 40px;
}
.ul-li-desc {
display: inline-block;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
margin-top: 10px;
text-overflow: ellipsis;
width: 40%;
}
li.event .ui-li-aside {
margin-right: 10px;
font-size: 0.8rem;
font-weight: bold;
float: left;
}
.green_dot, .red_dot {
width: 9px;
height: 9px;
float: left;
margin:1px;
margin-top:3px;
}
.deleteEvent,
.editEvent {
display: inline-block;
position: absolute;
right: 0px;
top: 46%;
}
.editEvent {
right: 95px;
}
.green_dot {
background-image: url('/img/green_point.png');
}
.red_dot {
background-image: url('/img/red_x.gif');
}
.ui-btn-icon-top .ui-btn-inner {
padding-top: 0 !important; /* overwrite broken tizen-white settings */
}
.ui-btn.disabled {
background: -webkit-linear-gradient(top, #D2D2C8 0%, #F6F8EF 100%);
}
.ui-listview li.ui-li-divider {
height: 1rem;
}
/** workaround to prevent hiding footer caused by broken softkeyboardupdate event**/
[data-role="footer"] {
display: block !important;
}
.ui-tabbar:not(.ui-tabbar-persist) a.ui-btn-active, .ui-tabbar:not(.ui-tabbar-persist) .ui-btn-show-style {
color:#999;
border:none;
}
.ui-tabbar:not(.ui-tabbar-persist) a.ui-btn-active .ui-btn-text, .ui-tabbar:not(.ui-tabbar-persist) .ui-btn-show-style .ui-btn-text {
border:none;
}
.allDayIdentifier {
width:56px;
text-align:center;
}
.allDaySwitcherTitle, .allDaySwitcher {
display: inline-block;
}
.ui-datefield .ui-datefield-month {
line-height: 46px;
}
|