/moodle/lib/yui/3.4.1/build/panel/assets/skins/sam/panel-skin.css

# · CSS · 82 lines · 72 code · 1 blank · 9 comment · 0 complexity · e1c435b2aa851145d0d75056f68a6a78 MD5 · raw file

  1. /*
  2. YUI 3.4.1 (build 4118)
  3. Copyright 2011 Yahoo! Inc. All rights reserved.
  4. Licensed under the BSD License.
  5. http://yuilibrary.com/license/
  6. */
  7. .yui3-skin-sam .yui3-widget-mask {
  8. background-color: black;
  9. zoom: 1;
  10. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=70)";
  11. filter: alpha(opacity=70);
  12. opacity: 0.7;
  13. }
  14. .yui3-skin-sam .yui3-panel-content {
  15. -webkit-box-shadow: 0 0 5px #333;
  16. -moz-box-shadow: 0 0 5px #333;
  17. box-shadow: 0 0 5px #333;
  18. border: 1px solid black;
  19. background: white;
  20. }
  21. .yui3-skin-sam .yui3-panel-content .yui3-widget-hd {
  22. padding: 8px 28px 8px 8px; /* Room for close button. */
  23. min-height: 13px; /* For the close button */
  24. _height: 13px; /* IE6 */
  25. color: white;
  26. background-color: #3961c5;
  27. background: -moz-linear-gradient(
  28. 0% 100% 90deg,
  29. #2647a0 7%,
  30. #3d67ce 50%,
  31. #426fd9 100%
  32. );
  33. background: -webkit-gradient(
  34. linear,
  35. left bottom,
  36. left top,
  37. from(#2647a0),
  38. color-stop(0.07, #2647a0),
  39. color-stop(0.5, #3d67ce),
  40. to(#426fd9)
  41. );
  42. /*
  43. TODO: Add support for IE and W3C gradients
  44. */
  45. }
  46. .yui3-skin-sam .yui3-panel-content .yui3-widget-hd .yui3-widget-button-wrapper {
  47. padding: 8px;
  48. }
  49. .yui3-skin-sam .yui3-panel-content .yui3-widget-bd {
  50. padding: 10px;
  51. }
  52. .yui3-skin-sam .yui3-panel-content .yui3-widget-ft {
  53. background: #EDF5FF;
  54. padding: 8px;
  55. text-align: right;
  56. }
  57. .yui3-skin-sam .yui3-panel-content .yui3-widget-ft .yui3-button {
  58. padding: 2px 8px;
  59. margin: 0px 3px;
  60. border: 1px solid gray;
  61. -moz-border-radius: 0.435em;
  62. -webkit-border-radius: 0.435em;
  63. border-radius: 0.435em;
  64. color: black;
  65. background: #D8D8DA;
  66. background: -moz-linear-gradient(
  67. 0% 100% 90deg,
  68. #D8D8DA 18%,
  69. #F1F2F2 50%,
  70. white 100%
  71. );
  72. background: -webkit-gradient(
  73. linear,
  74. left bottom,
  75. left top,
  76. from(#D8D8DA),
  77. color-stop(0.18, #D8D8DA),
  78. color-stop(0.5, #F1F2F2),
  79. to(white)
  80. );
  81. }