| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
-
- /*
- * Namespace: DTED - DataTables Editor Display - Envelope
- */
-
- div.DTED_Envelope_Wrapper {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 50%;
- height: 100%;
- z-index: 11;
- display: none;
- overflow: hidden;
-
- // Create a shadow display at the top of the evelope to make it look like it has
- // come from under the element that it is attached to/ Left and right to give a
- // slight fade and the two ends
- div.DTED_Envelope_Shadow {
- position: absolute;
- top: -10px;
- left: 10px;
- right: 10px;
- height: 10px;
- z-index: 10;
- box-shadow: 0 0 20px black;
- }
-
- div.DTED_Envelope_Container {
- position: absolute;
- top: 0;
- left: 5%;
- width: 90%;
-
- border-left: 1px solid #777;
- border-right: 1px solid #777;
- border-bottom: 1px solid #777;
- box-shadow: 3px 3px 10px #555;
- border-bottom-left-radius: 5px;
- border-bottom-right-radius: 5px;
- background-color: white;
-
- div.DTE_Processing_Indicator {
- right: 36px;
- }
-
- div.DTE_Footer {
- border-bottom-left-radius: 5px;
- border-bottom-right-radius: 5px;
- }
-
- div.DTED_Envelope_Close {
- position: absolute;
- top: 16px;
- right: 10px;
- width: 18px;
- height: 18px;
- cursor: pointer;
- z-index: 12;
- text-align: center;
- font-size: 12px;
-
- background: #F8F8F8;
- background: -webkit-gradient(linear, center bottom, center top, from(#CCC), to(white));
- background: -moz-linear-gradient(top, white, #CCC);
- background: linear-gradient(to bottom, white, #CCC);
- text-shadow: 0 1px 0 white;
- border: 1px solid #999;
- border-radius: 2px;
- -moz-border-radius: 2px;
- -webkit-border-radius: 2px;
- box-shadow: 0px 0px 1px #999;
- -moz-box-shadow: 0px 0px 1px #999;
- -webkit-box-shadow: 0px 0px 1px #999;
- }
- }
- }
-
-
- div.DTED_Envelope_Background {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 10;
- @include radial-gradient( rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4) );
- }
-
|