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 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
/*
This file is part of Ext JS 3.4
Copyright (c) 2011-2013 Sencha Inc
Contact: http://www.sencha.com/contact
GNU General Public License Usage
This file may be used under the terms of the GNU General Public License version 3.0 as
published by the Free Software Foundation and appearing in the file LICENSE included in the
packaging of this file.
Please review the following information to ensure the GNU General Public License version 3.0
requirements will be met: http://www.gnu.org/copyleft/gpl.html.
If you are unsure which license is appropriate for your use, please contact the sales department
at http://www.sencha.com/contact.
Build date: 2013-04-03 15:07:25
*/
#tasks-grid .x-grid3-header {
background: #f9f9f9 url(images/hrow.gif) repeat-x left top;
}
#tasks-grid .new-task-row {
height:24px;
}
#tasks-grid .new-task-row .x-small-editor {
overflow:hidden;
width:100%;
}
#tasks-grid .new-task-row .x-small-editor input {
font-size:11px;
}
#new-task-icon {
width:16px;
height:16px;
margin-left:3px;
background: transparent url(images/edit.gif) no-repeat;
}
.x-grid3-body .x-grid3-td-task-col .x-grid3-cell-inner {
padding: 1px 0 0 0 !important;
}
.task-check {
width:98%;
height:16px;
background: transparent url(images/check.gif) no-repeat center 0;
cursor:pointer;
}
.task-completed .task-check {
background: transparent url(images/check.gif) no-repeat center -16px;
}
.task-check-over {
background: transparent url(images/check.gif) no-repeat center -32px;
}
.task-overdue .x-grid3-cell-inner {
color:#fb223a;
}
.task-completed .x-grid3-cell-inner {
text-decoration:line-through;
color:gray;
}
.task-col-hd {
width:98%;
height:12px;
background: transparent url(images/hd-check.gif) no-repeat center center;
cursor:default;
}
.x-grid3-td-task-title .x-grid3-cell-inner {
white-space:normal;
}
.icon-show-active {
background-image:url(images/icon-show-active.gif) !important;
}
.icon-show-complete {
background-image:url(images/icon-show-complete.gif) !important;
}
.icon-show-all {
background-image:url(images/icon-show-all.gif) !important;
}
.x-grid3-dirty-cell {
background:transparent;
}
.icon-active {
background-image:url(images/icon-active.gif) !important;
}
.icon-complete {
background-image:url(images/icon-complete.gif) !important;
}
.icon-delete {
background-image:url(images/delete.gif) !important;
}
.icon-edit {
background-image:url(images/edit.gif) !important;
}
.icon-by-date {
background-image:url(images/icon-by-date.gif) !important;
}
.icon-by-category {
background-image:url(images/icon-by-category.gif) !important;
}
.icon-no-group {
background-image:url(images/icon-no-group.gif) !important;
}
#action-panel .x-panel {
margin-bottom:3px;
margin-right:0;
}
#action-panel .x-panel-body {
border:0 none;
}
#action-panel .x-panel-body li {
margin:3px;
}
#action-panel .x-panel-body li img {
width:16px;
height:16px;
vertical-align:middle;
margin-right:2px;
margin-bottom:2px;
}
#action-panel .x-panel-body li a {
text-decoration:none;
color:#3764A0;
}
#action-panel .x-plain-body {
background-color:#cad9ec;
padding:3px 0 0 5px;
}
.x-air #action-panel .x-plain-body {
padding-left:3px;
}
#action-panel .x-panel-body li a:hover {
text-decoration:underline;
color:#15428b;
}
.x-panel-trans {
background:transparent;
}
.x-layout-split-west {
cursor:move;
background-color:#cad9ec;
}
.x-panel-header-text {
color:#3764A0;
}
#tasks-grid {
border-left:1px solid #99bbe8;
}
|