statusbar.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*!
  2. * Ext JS Library 3.1.0
  3. * Copyright(c) 2006-2009 Ext JS, LLC
  4. * licensing@extjs.com
  5. * http://www.extjs.com/license
  6. */
  7. /* StatusBar - structure */
  8. .x-statusbar .x-status-text {
  9. cursor: default;
  10. top:0px;
  11. /*
  12. height: 21px;
  13. line-height: 21px;
  14. padding: 0 4px;
  15. */
  16. }
  17. .x-statusbar .x-status-busy {
  18. padding-left: 25px !important;
  19. background: transparent no-repeat 3px 2px;
  20. }
  21. .x-toolbar div.xtb-text
  22. .x-statusbar .x-status-text-panel {
  23. border-top: 1px solid;
  24. border-right: 1px solid;
  25. border-bottom: 1px solid;
  26. border-left: 1px solid;
  27. padding: 2px 8px 2px 5px;
  28. }
  29. /* StatusBar word processor example styles */
  30. #word-status .x-status-text-panel .spacer {
  31. width: 60px;
  32. font-size:0;
  33. line-height:0;
  34. }
  35. #word-status .x-status-busy {
  36. padding-left: 25px !important;
  37. background: transparent no-repeat 3px 2px;
  38. }
  39. #word-status .x-status-saved {
  40. padding-left: 25px !important;
  41. background: transparent no-repeat 3px 2px;
  42. }
  43. /* StatusBar form validation example styles */
  44. .x-statusbar .x-status-error {
  45. cursor: pointer;
  46. padding-left: 25px !important;
  47. background: transparent no-repeat 3px 2px;
  48. }
  49. .x-statusbar .x-status-valid {
  50. padding-left: 25px !important;
  51. background: transparent no-repeat 3px 2px;
  52. }
  53. .x-status-error-list {
  54. font: 11px tahoma,arial,verdana,sans-serif;
  55. position: absolute;
  56. z-index: 9999;
  57. border-top: 1px solid;
  58. border-right: 1px solid;
  59. border-bottom: 1px solid;
  60. border-left: 1px solid;
  61. padding: 5px 10px;
  62. }
  63. .x-status-error-list li {
  64. cursor: pointer;
  65. list-style: disc;
  66. margin-left: 10px;
  67. }
  68. .x-status-error-list li a {
  69. text-decoration: none;
  70. }
  71. .x-status-error-list li a:hover {
  72. text-decoration: underline;
  73. }
  74. /* *********************************************************** */
  75. /* *********************************************************** */
  76. /* *********************************************************** */
  77. /* StatusBar - visual */
  78. .x-statusbar .x-status-busy {
  79. background-image: url(../images/loading.gif);
  80. }
  81. .x-statusbar .x-status-text-panel {
  82. border-color: #99bbe8 #fff #fff #99bbe8;
  83. }
  84. /* StatusBar word processor example styles */
  85. #word-status .x-status-text {
  86. color: #777;
  87. }
  88. #word-status .x-status-busy {
  89. background-image: url(../images/saving.gif);
  90. }
  91. #word-status .x-status-saved {
  92. background-image: url(../images/saved.png);
  93. }
  94. /* StatusBar form validation example styles */
  95. .x-statusbar .x-status-error {
  96. color: #C33;
  97. background-image: url(../images/exclamation.gif);
  98. }
  99. .x-statusbar .x-status-valid {
  100. background-image: url(../images/accept.png);
  101. }
  102. .x-status-error-list {
  103. border-color: #C33;
  104. }
  105. .x-status-error-list li a {
  106. color: #15428B;
  107. }