You are here

BUE.Popup.css in BUEditor 8.2

Same filename and directory in other branches
  1. 8 library/css/BUE.Popup.css
/* Popup */
.bue-popup {
  visibility: hidden;
  position: absolute;
  z-index: 1;
  font: 12px verdana;
  max-width: 95%;
  border: 1px solid #999;
  border-radius: 0.2em;
  background: #fff;
  color: #333;
  box-shadow: 0 0 0.6em #bbb;
  opacity: 0;
  transition: opacity 0.4s;
}
.bue-popup.on {
  visibility: visible;
  opacity: 1;
}
.bue-popup-head {
  cursor: move;
  border-bottom: 1px solid #bbb;
  border-radius: 0.2em 0.2em 0 0;
  background: #ddd;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}
.bue-popup-close {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0.4em;
  right: 0.4em;
  width: 1.6em;
  height: 1.6em;
  line-height: 1.4em;
  text-align: center;
  cursor: pointer;
  border: 1px solid #aaa;
  border-radius: 0.2em;
  text-decoration: none !important;
  color: inherit;
}
.bue-popup-close:before {
  content: '\00d7';
  font-size: 1.2em;
  line-height: 1.15em;
  font-weight: bold;
}
.bue-popup-close:hover {
  background-color: #fff;
  color: inherit;
}
.bue-popup-title {
  line-height: 1.4em;
  padding: 0.5em 2.4em 0.5em 0.6em;
  font-weight: bold;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.bue-popup-content {
  padding: 0.6em;
}
.bue-popup-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.1;
}

File

library/css/BUE.Popup.css
View source
  1. /* Popup */
  2. .bue-popup {
  3. visibility: hidden;
  4. position: absolute;
  5. z-index: 1;
  6. font: 12px verdana;
  7. max-width: 95%;
  8. border: 1px solid #999;
  9. border-radius: 0.2em;
  10. background: #fff;
  11. color: #333;
  12. box-shadow: 0 0 0.6em #bbb;
  13. opacity: 0;
  14. transition: opacity 0.4s;
  15. }
  16. .bue-popup.on {
  17. visibility: visible;
  18. opacity: 1;
  19. }
  20. .bue-popup-head {
  21. cursor: move;
  22. border-bottom: 1px solid #bbb;
  23. border-radius: 0.2em 0.2em 0 0;
  24. background: #ddd;
  25. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  26. }
  27. .bue-popup-close {
  28. -moz-box-sizing: border-box;
  29. box-sizing: border-box;
  30. position: absolute;
  31. top: 0.4em;
  32. right: 0.4em;
  33. width: 1.6em;
  34. height: 1.6em;
  35. line-height: 1.4em;
  36. text-align: center;
  37. cursor: pointer;
  38. border: 1px solid #aaa;
  39. border-radius: 0.2em;
  40. text-decoration: none !important;
  41. color: inherit;
  42. }
  43. .bue-popup-close:before {
  44. content: '\00d7';
  45. font-size: 1.2em;
  46. line-height: 1.15em;
  47. font-weight: bold;
  48. }
  49. .bue-popup-close:hover {
  50. background-color: #fff;
  51. color: inherit;
  52. }
  53. .bue-popup-title {
  54. line-height: 1.4em;
  55. padding: 0.5em 2.4em 0.5em 0.6em;
  56. font-weight: bold;
  57. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  58. }
  59. .bue-popup-content {
  60. padding: 0.6em;
  61. }
  62. .bue-popup-overlay {
  63. position: fixed;
  64. left: 0;
  65. top: 0;
  66. right: 0;
  67. bottom: 0;
  68. background: #000;
  69. opacity: 0.1;
  70. }