statusbar.css.html 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>The source code</title>
  6. <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
  7. <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
  8. <style type="text/css">
  9. .highlight { display: block; background-color: #ddd; }
  10. </style>
  11. <script type="text/javascript">
  12. function highlight() {
  13. document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
  14. }
  15. </script>
  16. </head>
  17. <body onload="prettyPrint(); highlight();">
  18. <pre class="prettyprint lang-js">/* StatusBar - structure */
  19. .x-statusbar .x-status-text {
  20. cursor: default;
  21. /*
  22. height: 21px;
  23. line-height: 21px;
  24. padding: 0 4px;
  25. */
  26. }
  27. .x-statusbar .x-status-busy {
  28. padding-left: 25px !important;
  29. background: transparent no-repeat 3px 0;
  30. }
  31. .x-toolbar div.xtb-text
  32. .x-statusbar .x-status-text-panel {
  33. border-top: 1px solid;
  34. border-right: 1px solid;
  35. border-bottom: 1px solid;
  36. border-left: 1px solid;
  37. padding: 2px 8px 2px 5px;
  38. }
  39. /* StatusBar word processor example styles */
  40. #word-status .x-status-text-panel .spacer {
  41. width: 60px;
  42. font-size:0;
  43. line-height:0;
  44. }
  45. #word-status .x-status-busy {
  46. padding-left: 25px !important;
  47. background: transparent no-repeat 3px 0;
  48. }
  49. #word-status .x-status-saved {
  50. padding-left: 25px !important;
  51. background: transparent no-repeat 3px 0;
  52. }
  53. /* StatusBar form validation example styles */
  54. .x-statusbar .x-status-error {
  55. cursor: pointer;
  56. padding-left: 25px !important;
  57. background: transparent no-repeat 3px 0;
  58. }
  59. .x-statusbar .x-status-valid {
  60. padding-left: 25px !important;
  61. background: transparent no-repeat 3px 0;
  62. }
  63. .x-status-error-list {
  64. font: 11px tahoma,arial,verdana,sans-serif;
  65. position: absolute;
  66. z-index: 9999;
  67. border-top: 1px solid;
  68. border-right: 1px solid;
  69. border-bottom: 1px solid;
  70. border-left: 1px solid;
  71. padding: 5px 10px;
  72. }
  73. .x-status-error-list li {
  74. cursor: pointer;
  75. list-style: disc;
  76. margin-left: 10px;
  77. }
  78. .x-status-error-list li a {
  79. text-decoration: none;
  80. }
  81. .x-status-error-list li a:hover {
  82. text-decoration: underline;
  83. }
  84. /* *********************************************************** */
  85. /* *********************************************************** */
  86. /* *********************************************************** */
  87. /* StatusBar - visual */
  88. .x-statusbar .x-status-busy {
  89. background-image: url(../images/loading.gif);
  90. }
  91. .x-statusbar .x-status-text-panel {
  92. border-color: #99bbe8 #fff #fff #99bbe8;
  93. }
  94. /* StatusBar word processor example styles */
  95. #word-status .x-status-text {
  96. color: #777;
  97. }
  98. #word-status .x-status-busy {
  99. background-image: url(../images/saving.gif);
  100. }
  101. #word-status .x-status-saved {
  102. background-image: url(../images/saved.png);
  103. }
  104. /* StatusBar form validation example styles */
  105. .x-statusbar .x-status-error {
  106. color: #C33;
  107. background-image: url(../images/exclamation.gif);
  108. }
  109. .x-statusbar .x-status-valid {
  110. background-image: url(../images/accept.png);
  111. }
  112. .x-status-error-list {
  113. border-color: #C33;
  114. background: white;
  115. }
  116. .x-status-error-list li a {
  117. color: #15428B;
  118. }</pre>
  119. </body>
  120. </html>