source: trunk/web/addons/job_monarch/lib/extjs/examples/statusbar/statusbar.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: 1.4 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/* StatusBar word processor example styles */
11
12#word-status .x-status-text {
13    color: #777;
14}
15#word-status .x-status-text-panel .spacer {
16    width: 60px;
17    font-size:0;
18    line-height:0;
19}
20#word-status .x-status-busy {
21    padding-left: 25px;
22    background: transparent url(images/saving.gif) no-repeat 3px 3px;
23}
24#word-status .x-status-saved {
25    padding-left: 25px;
26    background: transparent url(images/saved.png) no-repeat 3px 3px;
27}
28
29/* StatusBar form validation example styles */
30
31.x-statusbar .x-status-error {
32    color: #C33;
33    cursor: pointer;
34    padding-left: 25px;
35    background: transparent url(../../resources/images/default/form/exclamation.gif) no-repeat 3px 3px;
36}
37.x-statusbar .x-status-valid {
38    padding-left: 25px;
39    background: transparent url(images/accept.png) no-repeat 3px 3px;
40}
41.x-status-error-list {
42    font: 11px tahoma,arial,verdana,sans-serif;
43    position: absolute;
44    z-index: 9999;
45    border: 1px solid #C33;
46    background: #ffa;
47    padding: 5px 10px;
48    color: #999;
49}
50.x-status-error-list li {
51    cursor: pointer;
52    list-style: disc;
53    margin-left: 10px;
54}
55.x-status-error-list li a {
56    color: #15428B;
57    text-decoration: none;
58}
59.x-status-error-list li a:hover {
60    text-decoration: underline;
61}
Note: See TracBrowser for help on using the repository browser.