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