statusbar.css 2.6 KB

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