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.

70 lines
1.3 KiB

  1. /*!
  2. * jQuery UI Dialog 1.11.3
  3. * http://jqueryui.com
  4. *
  5. * Copyright jQuery Foundation and other contributors
  6. * Released under the MIT license.
  7. * http://jquery.org/license
  8. *
  9. * http://api.jqueryui.com/dialog/#theming
  10. */
  11. .ui-dialog {
  12. overflow: hidden;
  13. position: absolute;
  14. top: 0;
  15. left: 0;
  16. padding: .2em;
  17. outline: 0;
  18. }
  19. .ui-dialog .ui-dialog-titlebar {
  20. padding: .4em 1em;
  21. position: relative;
  22. }
  23. .ui-dialog .ui-dialog-title {
  24. float: left;
  25. margin: .1em 0;
  26. white-space: nowrap;
  27. width: 90%;
  28. overflow: hidden;
  29. text-overflow: ellipsis;
  30. }
  31. .ui-dialog .ui-dialog-titlebar-close {
  32. position: absolute;
  33. right: .3em;
  34. top: 50%;
  35. width: 20px;
  36. margin: -10px 0 0 0;
  37. padding: 1px;
  38. height: 20px;
  39. }
  40. .ui-dialog .ui-dialog-content {
  41. position: relative;
  42. border: 0;
  43. padding: .5em 1em;
  44. background: none;
  45. overflow: auto;
  46. }
  47. .ui-dialog .ui-dialog-buttonpane {
  48. text-align: left;
  49. border-width: 1px 0 0 0;
  50. background-image: none;
  51. margin-top: .5em;
  52. padding: .3em 1em .5em .4em;
  53. }
  54. .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  55. float: right;
  56. }
  57. .ui-dialog .ui-dialog-buttonpane button {
  58. margin: .5em .4em .5em 0;
  59. cursor: pointer;
  60. }
  61. .ui-dialog .ui-resizable-se {
  62. width: 12px;
  63. height: 12px;
  64. right: -5px;
  65. bottom: -5px;
  66. background-position: 16px 16px;
  67. }
  68. .ui-draggable .ui-dialog-titlebar {
  69. cursor: move;
  70. }