Nessuna descrizione
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.

iframe.css 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. @charset "utf-8";
  2. .ui-layout-pane{background:#FFF;padding:0px;}
  3. .ui-layout-content{padding:10px;position:relative;overflow:auto}
  4. .layout-child-container,.layout-content-container{padding:0;overflow:hidden}
  5. .layout-child-container{border:0}
  6. .layout-scroll{overflow:auto}
  7. .layout-hide{display:none}
  8. .ui-layout-resizer{border-width:0; /* display: none !important; */width: 12px !important;height: 16px !important; top: 20px !important;}
  9. .ui-layout-resizer-drag{}
  10. .ui-layout-resizer-hover{}
  11. .ui-layout-resizer-open-hover,.ui-layout-resizer-dragging{background:#FFFFFF}
  12. .ui-layout-resizer-dragging{}
  13. .ui-layout-resizer-north-dragging,.ui-layout-resizer-south-dragging{border-width:1px 0}
  14. .ui-layout-resizer-west-dragging,.ui-layout-resizer-east-dragging{border-width:0}
  15. .ui-layout-resizer-dragging-limit{background:#f30;border:0}
  16. .ui-layout-resizer-closed-hover{background:#EBD5AA;border:0}
  17. .ui-layout-resizer-sliding{opacity:.10;filter:alpha(opacity=10)}
  18. .ui-layout-resizer-sliding-hover{opacity:1.00;filter:alpha(opacity=100)}
  19. .ui-layout-resizer-north-sliding-hover{border-bottom-width:1px}
  20. .ui-layout-resizer-south-sliding-hover{border-top-width:1px}
  21. .ui-layout-resizer-west-sliding-hover{border-right-width:1px}
  22. .ui-layout-resizer-east-sliding-hover{border-left-width:1px}
  23. .ui-layout-toggler{background-color:#d4d2d2;top:0 !important;width: 15px !important;height: 15px !important;border-radius: 0 50px 50px 0;}
  24. .ui-layout-toggler::before{content: "";background-color:#999;height: 1px;width: 7px;position: absolute;top: 5px;left: 2px;}
  25. .ui-layout-toggler::after{content: "";background-color:#999;height: 1px;width: 7px;position: absolute;top: 9px;left: 2px;
  26. }
  27. /* .ui-layout-resizer-hover .ui-layout-toggler{opacity:.60;filter:alpha(opacity=60)}
  28. .ui-layout-toggler-hover,.ui-layout-resizer-hover .ui-layout-toggler-hover{background-color:#f90;opacity:1.00;filter:alpha(opacity=100)} */
  29. .ui-layout-toggler-north,.ui-layout-toggler-south{border-width:0 1px}
  30. .ui-layout-toggler-west,.ui-layout-toggler-east{border-width:1px 0}
  31. .ui-layout-resizer-sliding .ui-layout-toggler{display:none}
  32. .ui-layout-toggler .content{color:#666;font-size:12px;font-weight:bold;width:100%;padding-bottom:0.35ex}
  33. .ui-layout-mask{border:none !important;padding:0 !important;margin:0 !important;overflow:hidden !important;position:absolute !important;opacity:0 !important;filter:Alpha(Opacity="0") !important}
  34. .ui-layout-mask-inside-pane{top:0 !important;left:0 !important;width:100% !important;height:100% !important}
  35. div.ui-layout-mask{}
  36. iframe.ui-layout-mask{}
  37. @media print{html{height:auto !important;overflow:visible !important}
  38. body.ui-layout-container{position:static !important;top:auto !important;bottom:auto !important;left:auto !important;right:auto !important;_width:auto !important;_height:auto !important}.ui-layout-resizer,.ui-layout-toggler{display:none !important}.ui-layout-pane{border:none !important;background:transparent !important;position:relative !important;top:auto !important;bottom:auto !important;left:auto !important;right:auto !important;width:auto !important;height:auto !important;overflow:visible !important}}
  39. body{margin:0;padding:0;}
  40. html,body{height:100%;}
  41. .ui-layout-west{background:#f9f9f9;padding:5px 0 20px;overflow: hidden; border-right: 1px solid #f1f1f1;}
  42. .ipad{-webkit-overflow-scrolling:touch;overflow:auto;}
  43. .ui-layout-west:hover {
  44. overflow-y: auto;
  45. }
  46. /*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
  47. ::-webkit-scrollbar{
  48. width: 4px;
  49. height: 6px;
  50. background-color: #F5F5F5;
  51. }
  52. /*定义滚动条轨道 内阴影+圆角*/
  53. ::-webkit-scrollbar-track {
  54. box-shadow: inset 0 0 6px rgb(113 113 113 / 30%);
  55. -webkit-box-shadow: inset 0 0 6px rgb(113 113 113 / 30%);
  56. border-radius: 10px;
  57. background-color: #ffffff;
  58. }
  59. /*定义滑块 内阴影+圆角*/
  60. ::-webkit-scrollbar-thumb{
  61. border-radius: 10px;
  62. box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
  63. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
  64. background-color: #e2e2e2;
  65. }