Merge "Cologne Blue: add missing 'undeletethispage' message"
[lhc/web/wiklou.git] / resources / mediawiki.action / mediawiki.action.view.postEdit.css
1 .postedit-container {
2 margin: 0 auto;
3 position: fixed;
4 top: 0;
5 height: 0;
6 left: 50%;
7 z-index: 1000;
8 }
9
10 .postedit {
11 position: relative;
12 top: 0.6em;
13 left: -50%;
14 padding: .6em 3.6em .6em 1.1em;
15 font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
16 font-size: 0.8em;
17 line-height: 1.5625em;
18 color: #626465;
19 background-color: #f4f4f4;
20 border: 1px solid #dcd9d9;
21 -webkit-text-shadow: 0 0.0625em 0 rgba(255, 255, 255, 0.5);
22 -moz-text-shadow: 0 0.0625em 0 rgba(255, 255, 255, 0.5);
23 text-shadow: 0 0.0625em 0 rgba(255, 255, 255, 0.5);
24 -webkit-border-radius: 5px;
25 -moz-border-radius: 5px;
26 border-radius: 5px;
27 -webkit-box-shadow: 0 2px 5px 0 #ccc;
28 -moz-box-shadow: 0 2px 5px 0 #ccc;
29 box-shadow: 0 2px 5px 0 #ccc;
30 -webkit-transition: all 0.25s ease-in-out;
31 -moz-transition: all 0.25s ease-in-out;
32 -ms-transition: all 0.25s ease-in-out;
33 -o-transition: all 0.25s ease-in-out;
34 transition: all 0.25s ease-in-out;
35 }
36
37 .skin-monobook .postedit {
38 top: 3em !important;
39 }
40
41 .postedit-faded {
42 opacity: 0;
43 }
44
45 .postedit-icon {
46 padding-left: 41px; /* 25 + 8 + 8 */
47 /* like min-height, but old IE compatible and keeps text vertically aligned, too */
48 line-height: 25px;
49 background-repeat: no-repeat;
50 background-position: 8px 50%;
51 }
52
53 .postedit-icon-checkmark {
54 /* @embed */
55 background-image: url(images/green-checkmark.png);
56 background-position: left;
57 }
58
59 .postedit-close {
60 position: absolute;
61 padding: 0 .8em;
62 right: 0;
63 top: 0;
64 font-size: 1.25em;
65 font-weight: bold;
66 line-height: 2.3em;
67 color: black;
68 text-shadow: 0 0.0625em 0 white;
69 text-decoration: none;
70 opacity: 0.2;
71 filter: alpha(opacity=20);
72 }
73
74 .postedit-close:hover {
75 color: black;
76 text-decoration: none;
77 cursor: pointer;
78 opacity: 0.4;
79 filter: alpha(opacity=40);
80 }