2012-03-06 19:32:49 +00:00
|
|
|
/*Your CSS here*/
|
|
|
|
/* TODO: retheme this whole bloddy mess */
|
|
|
|
.todo-header {
|
|
|
|
background-color: #448820;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.todo-view-title {
|
|
|
|
font-size: 90%;
|
|
|
|
}
|
|
|
|
.box-center {
|
|
|
|
width: 320px;
|
|
|
|
margin: 23px auto 0;
|
|
|
|
}
|
|
|
|
.left-col {
|
|
|
|
margin-right: 7px;
|
|
|
|
color: #777777;
|
|
|
|
}
|
|
|
|
.mid-col {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
.pri-a { color: yellow; }
|
|
|
|
.pri-b { color: green; }
|
|
|
|
.pri-c { color: slateblue; }
|
|
|
|
.dialog-fix {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.completed-item {
|
|
|
|
color: #aaaaaa;
|
|
|
|
}
|
|
|
|
.selected-item {
|
|
|
|
background: grey;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.ver-history { font-size: 16px; }
|
|
|
|
.version { font-weight: bold;}
|
2012-03-12 01:06:11 +00:00
|
|
|
.enyo-modaldialog > * { height:100%; }
|
2012-03-22 17:19:47 +00:00
|
|
|
#toast {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 20%;
|
|
|
|
left: 50%;
|
|
|
|
width: 200px;
|
|
|
|
margin-left: -100px;
|
|
|
|
border: 1px solid #666;
|
|
|
|
background-color: #444;
|
|
|
|
color: #FFF;
|
|
|
|
padding: 10px 0 ;
|
|
|
|
text-align:center;
|
|
|
|
opacity: .9;
|
|
|
|
-webkit-transition: opacity 0.5s ease-out;
|
|
|
|
}
|