]> git.sur5r.net Git - bacula/bacula/blob - gui/baculum/debian/missing-sources/framework/Web/Javascripts/source/tinymce-405/skins/lightgray/Window.less
baculum: Add missing-sources directory in debian metadata structure
[bacula/bacula] / gui / baculum / debian / missing-sources / framework / Web / Javascripts / source / tinymce-405 / skins / lightgray / Window.less
1 // Window
2
3 .mce-fullscreen {
4         border: 0; padding: 0; margin: 0;
5         overflow: hidden;
6         background: #FFF;
7         height: 100%;
8 }
9
10 div.mce-fullscreen {
11         position: fixed;
12         top: 0; left: 0;
13 }
14
15 #mce-modal-block {
16         .opacity(0);
17         position: fixed;
18         left: 0; top: 0;
19         width: 100%; height: 100%;
20         background: #000;
21 }
22
23 #mce-modal-block.mce-in {
24         .opacity(0.3);
25 }
26
27 .mce-window-move {
28         cursor: move;
29 }
30
31 .mce-window {
32         .border-radius(6px);
33         .box-shadow(0 3px 7px rgba(0,0,0,0.3));
34         .reset-gradient();
35         background: #FFF;
36         position: fixed;
37         top: 0; left: 0;
38         opacity: 0;
39         .transition(opacity 150ms ease-in);
40 }
41
42 .mce-window.mce-in {
43         opacity: 1;
44 }
45
46 .mce-window-head {
47         padding: 9px 15px;
48         border-bottom: 1px solid #EEE;
49         position: relative;
50 }
51
52 .mce-window-head .mce-close {
53         position: absolute;
54         right: 15px;
55         top: 9px;
56         font-size: 20px;
57         font-weight: bold;
58         line-height: 20px;
59         color: #CCC;
60         text-shadow: 0 1px 0 white;
61         cursor: pointer;
62
63         // IE7
64         height: 20px;
65         overflow: hidden;
66 }
67
68 .mce-close:hover {
69         color: #AAA;
70 }
71
72 .mce-window-head .mce-title {
73         .inline-block();
74         line-height: 20px;
75         font-size: 20px;
76         font-weight: bold;
77         text-rendering: optimizelegibility;
78         padding-right: 10px;
79 }
80
81 .mce-window .mce-container-body {
82         display: block;
83 }
84
85 .mce-foot {
86         display: block;
87         background-color: whiteSmoke;
88         border-top: 1px solid #DDD;
89         .border-radius(0 0 6px 6px);
90         .box-shadow(inset 0 1px 0 white);
91 }
92
93 .mce-window-head .mce-dragh {
94         position: absolute;
95         top: 0; left: 0;
96         cursor: move;
97         width: 90%;
98         height: 100%;
99 }
100
101 .mce-window iframe {
102         width: 100%;
103         height: 100%;
104 }
105
106 .mce-window.mce-fullscreen, .mce-window.mce-fullscreen .mce-foot {
107         .border-radius(0);
108 }