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.

79 lines
1.5 KiB

  1. /*!
  2. * Ext JS Library 3.2.0
  3. * Copyright(c) 2006-2010 Ext JS, Inc.
  4. * licensing@extjs.com
  5. * http://www.extjs.com/license
  6. */
  7. /*
  8. Creates rounded, raised boxes like on the Ext website - the markup isn't pretty:
  9. <div class="x-box-blue">
  10. <div class="x-box-tl"><div class="x-box-tr"><div class="x-box-tc"></div></div></div>
  11. <div class="x-box-ml"><div class="x-box-mr"><div class="x-box-mc">
  12. <h3>YOUR TITLE HERE (optional)</h3>
  13. <div>YOUR CONTENT HERE</div>
  14. </div></div></div>
  15. <div class="x-box-bl"><div class="x-box-br"><div class="x-box-bc"></div></div></div>
  16. </div>
  17. */
  18. .x-box-tl {
  19. background: transparent no-repeat 0 0;
  20. zoom:1;
  21. }
  22. .x-box-tc {
  23. height: 8px;
  24. background: transparent repeat-x 0 0;
  25. overflow: hidden;
  26. }
  27. .x-box-tr {
  28. background: transparent no-repeat right -8px;
  29. }
  30. .x-box-ml {
  31. background: transparent repeat-y 0;
  32. padding-left: 4px;
  33. overflow: hidden;
  34. zoom:1;
  35. }
  36. .x-box-mc {
  37. background: repeat-x 0 -16px;
  38. padding: 4px 10px;
  39. }
  40. .x-box-mc h3 {
  41. margin: 0 0 4px 0;
  42. zoom:1;
  43. }
  44. .x-box-mr {
  45. background: transparent repeat-y right;
  46. padding-right: 4px;
  47. overflow: hidden;
  48. }
  49. .x-box-bl {
  50. background: transparent no-repeat 0 -16px;
  51. zoom:1;
  52. }
  53. .x-box-bc {
  54. background: transparent repeat-x 0 -8px;
  55. height: 8px;
  56. overflow: hidden;
  57. }
  58. .x-box-br {
  59. background: transparent no-repeat right -24px;
  60. }
  61. .x-box-tl, .x-box-bl {
  62. padding-left: 8px;
  63. overflow: hidden;
  64. }
  65. .x-box-tr, .x-box-br {
  66. padding-right: 8px;
  67. overflow: hidden;
  68. }