]> git.sur5r.net Git - bacula/bacula/blob - gui/baculum/debian/missing-sources/framework/Web/Javascripts/source/tinymce-405/skins/lightgray/FloatPanel.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 / FloatPanel.less
1 // FloatPanel
2
3 .mce-floatpanel {
4         position: absolute;
5         .box-shadow(#ccc 5px 5px 5px);
6 }
7
8 .mce-floatpanel.mce-fixed {
9         position: fixed;
10 }
11
12 // Popover panel
13
14 .mce-floatpanel .mce-arrow,
15 .mce-floatpanel .mce-arrow:after {
16         position: absolute;
17         display: block;
18         width: 0;
19         height: 0;
20         border-color: transparent;
21         border-style: solid;
22 }
23
24 .mce-floatpanel .mce-arrow {
25         border-width: @popover-arrow-outer-width;
26 }
27
28 .mce-floatpanel .mce-arrow:after {
29         border-width: @popover-arrow-width;
30         content: "";
31 }
32
33 .mce-floatpanel.mce-popover {
34         top: 0;
35         left: 0;
36         background: @popover-background;
37         -webkit-background-clip: padding-box;
38         -moz-background-clip: padding;
39         background-clip: padding-box;
40         border: 1px solid #ccc;
41         border: 1px solid rgba(0,0,0,.2);
42         .border-radius(6px);
43         .box-shadow(0 5px 10px rgba(0,0,0,.2));
44
45         &.mce-bottom {
46                 margin-top: 10px;
47
48                 & > .mce-arrow {
49                         left: 50%;
50                         margin-left: -@popover-arrow-outer-width;
51                         border-top-width: 0;
52                         border-bottom-color: #999; // IE8 fallback
53                         border-bottom-color: @popover-arrow-outer-color;
54                         top: -@popover-arrow-outer-width;
55
56                         &:after {
57                                 top: 1px;
58                                 margin-left: -@popover-arrow-width;
59                                 border-top-width: 0;
60                                 border-bottom-color: @popover-arrow-color;
61                         }
62                 }
63
64                 &.mce-start { margin-left: -22px; }
65                 &.mce-start > .mce-arrow { left: 20px; }
66
67                 &.mce-end { margin-left: 22px; }
68                 &.mce-end > .mce-arrow { right: 10px; left: auto; }
69         }
70 }