Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
2.5 KiB

  1. /*
  2. * Ext JS Library 2.2
  3. * Copyright(c) 2006-2008, Ext JS, LLC.
  4. * licensing@extjs.com
  5. *
  6. * http://extjs.com/license
  7. */
  8. /*
  9. Creates rounded, raised boxes like on the Ext website - the markup isn't pretty:
  10. <div class="x-box-blue">
  11. <div class="x-box-tl"><div class="x-box-tr"><div class="x-box-tc"></div></div></div>
  12. <div class="x-box-ml"><div class="x-box-mr"><div class="x-box-mc">
  13. <h3>YOUR TITLE HERE (optional)</h3>
  14. <div>YOUR CONTENT HERE</div>
  15. </div></div></div>
  16. <div class="x-box-bl"><div class="x-box-br"><div class="x-box-bc"></div></div></div>
  17. </div>
  18. */
  19. .x-box-tl {
  20. background: transparent url(../images/default/box/corners.gif) no-repeat 0 0;
  21. zoom:1;
  22. }
  23. .x-box-tc {
  24. height: 8px;
  25. background: transparent url(../images/default/box/tb.gif) repeat-x 0 0;
  26. overflow: hidden;
  27. }
  28. .x-box-tr {
  29. background: transparent url(../images/default/box/corners.gif) no-repeat right -8px;
  30. }
  31. .x-box-ml {
  32. background: transparent url(../images/default/box/l.gif) repeat-y 0;
  33. padding-left: 4px;
  34. overflow: hidden;
  35. zoom:1;
  36. }
  37. .x-box-mc {
  38. background: #eee url(../images/default/box/tb.gif) repeat-x 0 -16px;
  39. padding: 4px 10px;
  40. font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;
  41. color: #393939;
  42. font-size: 12px;
  43. }
  44. .x-box-mc h3 {
  45. font-size: 14px;
  46. font-weight: bold;
  47. margin: 0 0 4px 0;
  48. zoom:1;
  49. }
  50. .x-box-mr {
  51. background: transparent url(../images/default/box/r.gif) repeat-y right;
  52. padding-right: 4px;
  53. overflow: hidden;
  54. }
  55. .x-box-bl {
  56. background: transparent url(../images/default/box/corners.gif) no-repeat 0 -16px;
  57. zoom:1;
  58. }
  59. .x-box-bc {
  60. background: transparent url(../images/default/box/tb.gif) repeat-x 0 -8px;
  61. height: 8px;
  62. overflow: hidden;
  63. }
  64. .x-box-br {
  65. background: transparent url(../images/default/box/corners.gif) no-repeat right -24px;
  66. }
  67. .x-box-tl, .x-box-bl {
  68. padding-left: 8px;
  69. overflow: hidden;
  70. }
  71. .x-box-tr, .x-box-br {
  72. padding-right: 8px;
  73. overflow: hidden;
  74. }
  75. .x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr {
  76. background-image: url(../images/default/box/corners-blue.gif);
  77. }
  78. .x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc {
  79. background-image: url(../images/default/box/tb-blue.gif);
  80. }
  81. .x-box-blue .x-box-mc {
  82. background-color: #c3daf9;
  83. }
  84. .x-box-blue .x-box-mc h3 {
  85. color: #17385b;
  86. }
  87. .x-box-blue .x-box-ml {
  88. background-image: url(../images/default/box/l-blue.gif);
  89. }
  90. .x-box-blue .x-box-mr {
  91. background-image: url(../images/default/box/r-blue.gif);
  92. }