Нема описа
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.

envelope.scss 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*
  2. * Namespace: DTED - DataTables Editor Display - Envelope
  3. */
  4. div.DTED_Envelope_Wrapper {
  5. position: absolute;
  6. top: 0;
  7. bottom: 0;
  8. left: 50%;
  9. height: 100%;
  10. z-index: 11;
  11. display: none;
  12. overflow: hidden;
  13. // Create a shadow display at the top of the evelope to make it look like it has
  14. // come from under the element that it is attached to/ Left and right to give a
  15. // slight fade and the two ends
  16. div.DTED_Envelope_Shadow {
  17. position: absolute;
  18. top: -10px;
  19. left: 10px;
  20. right: 10px;
  21. height: 10px;
  22. z-index: 10;
  23. box-shadow: 0 0 20px black;
  24. }
  25. div.DTED_Envelope_Container {
  26. position: absolute;
  27. top: 0;
  28. left: 5%;
  29. width: 90%;
  30. border-left: 1px solid #777;
  31. border-right: 1px solid #777;
  32. border-bottom: 1px solid #777;
  33. box-shadow: 3px 3px 10px #555;
  34. border-bottom-left-radius: 5px;
  35. border-bottom-right-radius: 5px;
  36. background-color: white;
  37. div.DTE_Processing_Indicator {
  38. right: 36px;
  39. }
  40. div.DTE_Footer {
  41. border-bottom-left-radius: 5px;
  42. border-bottom-right-radius: 5px;
  43. }
  44. div.DTED_Envelope_Close {
  45. position: absolute;
  46. top: 16px;
  47. right: 10px;
  48. width: 18px;
  49. height: 18px;
  50. cursor: pointer;
  51. z-index: 12;
  52. text-align: center;
  53. font-size: 12px;
  54. background: #F8F8F8;
  55. background: -webkit-gradient(linear, center bottom, center top, from(#CCC), to(white));
  56. background: -moz-linear-gradient(top, white, #CCC);
  57. background: linear-gradient(to bottom, white, #CCC);
  58. text-shadow: 0 1px 0 white;
  59. border: 1px solid #999;
  60. border-radius: 2px;
  61. -moz-border-radius: 2px;
  62. -webkit-border-radius: 2px;
  63. box-shadow: 0px 0px 1px #999;
  64. -moz-box-shadow: 0px 0px 1px #999;
  65. -webkit-box-shadow: 0px 0px 1px #999;
  66. }
  67. }
  68. }
  69. div.DTED_Envelope_Background {
  70. position: fixed;
  71. top: 0;
  72. left: 0;
  73. width: 100%;
  74. height: 100%;
  75. z-index: 10;
  76. @include radial-gradient( rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4) );
  77. }