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