jquery.ocdialog.css 905 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .oc-dialog {
  2. background: white;
  3. color: #333333;
  4. border-radius: 3px; box-shadow: 0 0 7px #888888;
  5. padding: 15px;
  6. z-index: 1000;
  7. font-size: 100%;
  8. -webkit-box-sizing: border-box;
  9. -moz-box-sizing: border-box;
  10. box-sizing: border-box;
  11. min-width: 200px;
  12. }
  13. .oc-dialog-title {
  14. background: white;
  15. font-weight: bold;
  16. font-size: 110%;
  17. margin-bottom: 10px;
  18. }
  19. .oc-dialog-content {
  20. z-index: 1000;
  21. background: white;
  22. }
  23. .oc-dialog-separator {
  24. }
  25. .oc-dialog-buttonrow {
  26. background: white;
  27. float: right;
  28. position: relative;
  29. bottom: 0;
  30. display: block;
  31. margin-top: 10px;
  32. width: 100%;
  33. }
  34. .oc-dialog-close {
  35. position:absolute;
  36. top:7px; right:7px;
  37. height:20px; width:20px;
  38. background:url('../img/actions/close.svg') no-repeat center;
  39. }
  40. .oc-dialog-dim {
  41. background-color: #000;
  42. opacity: .20;filter:Alpha(Opacity=20);
  43. z-index: 999;
  44. position: absolute;
  45. top: 0; left: 0;
  46. width: 100%; height: 100%;
  47. }