source: trunk/web/addons/job_monarch/lib/extjs/examples/tasks/tasks.css @ 619

Last change on this file since 619 was 619, checked in by ramonb, 15 years ago

lib/:

  • added new AJAX dependancies: ExtJS, pChart, Lightbox2
File size: 3.2 KB
Line 
1/*
2 * Ext JS Library 2.2.1
3 * Copyright(c) 2006-2009, Ext JS, LLC.
4 * licensing@extjs.com
5 *
6 * http://extjs.com/license
7 */
8
9/*
10 * Ext JS Library 2.0
11 * Copyright(c) 2006-2007, Ext JS, LLC.
12 * licensing@extjs.com
13 *
14 * http://www.extjs.com/license
15 */
16
17#tasks-grid .x-grid3-header {
18    background: #f9f9f9 url(images/hrow.gif) repeat-x left top;
19}
20#tasks-grid .new-task-row {
21    height:24px;
22}
23#tasks-grid .new-task-row .x-small-editor {
24    overflow:hidden;
25    width:100%;
26}
27#tasks-grid .new-task-row .x-small-editor input {
28    font-size:11px;
29}
30#new-task-icon {
31    width:16px;
32    height:16px;
33    margin-left:3px;
34    background: transparent url(images/edit.gif) no-repeat;
35}
36.x-grid3-body .x-grid3-td-task-col .x-grid3-cell-inner {
37    padding: 1px 0 0 0 !important;
38}
39
40.task-check {
41    width:98%;
42    height:16px;
43    background: transparent url(images/check.gif) no-repeat center 0;
44    cursor:pointer;
45}
46
47.task-completed .task-check {
48    background: transparent url(images/check.gif) no-repeat center -16px;
49}
50
51.task-check-over {
52    background: transparent url(images/check.gif) no-repeat center -32px;
53}
54
55
56.task-overdue .x-grid3-cell-inner {
57    color:#fb223a;
58}
59
60.task-completed .x-grid3-cell-inner {
61    text-decoration:line-through;
62    color:gray;
63}
64
65.task-col-hd {
66    width:98%;
67    height:12px;
68    background: transparent url(images/hd-check.gif) no-repeat center center;
69    cursor:default;
70}
71
72.x-grid3-td-task-title .x-grid3-cell-inner {
73    white-space:normal;
74}
75
76
77.icon-show-active {
78    background-image:url(images/icon-show-active.gif) !important;
79}
80.icon-show-complete {
81    background-image:url(images/icon-show-complete.gif) !important;
82}
83.icon-show-all {
84    background-image:url(images/icon-show-all.gif) !important;
85}
86.x-grid3-dirty-cell {
87    background:transparent;
88}
89
90.icon-active {
91    background-image:url(images/icon-active.gif) !important;
92}
93.icon-complete {
94    background-image:url(images/icon-complete.gif) !important;
95}
96.icon-delete {
97    background-image:url(images/delete.gif) !important;
98}
99.icon-edit {
100        background-image:url(images/edit.gif) !important;
101}
102
103
104.icon-by-date {
105    background-image:url(images/icon-by-date.gif) !important;
106}
107.icon-by-category {
108    background-image:url(images/icon-by-category.gif) !important;
109}
110.icon-no-group {
111    background-image:url(images/icon-no-group.gif) !important;
112}
113
114#action-panel .x-panel {
115        margin-bottom:3px;
116        margin-right:0;
117}
118#action-panel .x-panel-body {
119        border:0 none;
120}
121#action-panel .x-panel-body li {
122        margin:3px;     
123}
124#action-panel .x-panel-body li img {
125        width:16px;
126        height:16px;
127        vertical-align:middle;
128        margin-right:2px;
129        margin-bottom:2px;
130}
131#action-panel .x-panel-body li a {
132        text-decoration:none;
133        color:#3764A0;
134}
135#action-panel .x-plain-body {
136        background-color:#cad9ec;
137    padding:3px 0 0 5px;
138}
139.x-air #action-panel .x-plain-body {
140        padding-left:3px;
141}
142#action-panel .x-panel-body li a:hover {
143        text-decoration:underline;
144        color:#15428b;
145}
146
147.x-panel-trans {
148        background:transparent;
149}
150
151.x-layout-split-west {
152        cursor:move;
153    background-color:#cad9ec;
154}
155.x-panel-header-text {
156        color:#3764A0;
157}
158#tasks-grid {
159        border-left:1px solid #99bbe8;
160}
Note: See TracBrowser for help on using the repository browser.