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