PluginProbe
LoginPress | wp-login Custom Login Page Customizer / 3.0.2
LoginPress | wp-login Custom Login Page Customizer v3.0.2
6.2.5 6.2.4 6.2.3 6.2.2 6.2.1 trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.2 1.0.20 1.0.21 1.0.22 1.0.23 1.0.3 1.0.4 All 118 releases
loginpress / css / style-previewer.css

style-previewer.css in LoginPress | wp-login Custom Login Page Customizer 3.0.2, at css/style-previewer.css

128 lines 2.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Style Sheet for Customizer Previewer.
3 * @since 1.0.23
4 */
5 .login form .forgetmenot{
6 float: none;
7 }
8 .login form .input, .login input[type=text],.login form input[type=checkbox]{
9 border-radius: 0;
10 }
11 #loginform input[type="text"], #loginform input[type="password"]{
12 display: block !important;
13 }
14 .login h1,#login .submit, .login form,#nav{
15 position: relative;
16 }
17 body:hover .customize-partial-edit-shortcut button{
18 opacity: 1;
19 }
20 .login h1 .customize-partial-edit-shortcut{
21 position: absolute;
22 top: -8px;
23 left: 50%;
24 margin-left: 15px;
25 height: 30px;
26 width: 30px;
27 }
28 .customize-partial-edit-shortcut{
29 height: 34px;
30 width: 34px;
31 cursor: pointer;
32 z-index: 99;
33 }
34 .customize-partial-edit-shortcut button{
35 left: 0;
36 }
37 .loginpress-presets-partial{
38 position: absolute;
39 top: 10px;
40 left: 10px;
41 cursor: pointer;
42 }
43 .loginpress-background-partial{
44 position: absolute;
45 top: 55px;
46 left: 10px;
47 cursor: pointer;
48 }
49 .loginpress-footer-partial{
50 position: absolute;
51 bottom: 5px;
52 left: 10px;
53 cursor: pointer;
54 z-index: 12;
55 }
56 .loginpress-button-partial{
57 position: absolute;
58 right: 5px;
59 bottom: 15px;
60 }
61 .loginpress-nav-partial{
62 position: absolute;
63 top: -10px;
64 right: 10px;
65 }
66 .login form .loginpress-input-partial{
67 position: absolute;
68 top: 0;
69 right: 25px;
70 }
71 #login form p.submit:after{
72 content: '';
73 display: table;
74 clear: both;
75 }
76 .loginpress-partial:after {
77 content: attr(data-title);
78 background: rgba(51, 56, 61, 0.9);
79 color: #fff;
80 display: inline-block;
81 font-size: 14px;
82 width: 100px;
83 padding: 5px 10px;
84 position: absolute;
85 left: 100%;
86 top: 50%;
87 transform: translateY(-50%);
88 border-radius: 5px;
89 -webkit-transition:all 0.3s ease-in-out;
90 transition:all 0.3s ease-in-out;
91 opacity: 0;
92 text-align: center;
93 -webkit-box-shadow: 0 0 9px 0px rgba(0, 0, 0, 0.20);
94 box-shadow: 0 0 9px 0px rgba(0, 0, 0, 0.20);
95 margin-left: 5px;
96 font-weight: normal;
97 visibility: hidden;
98 }
99 .loginpress-partial:before{
100 content: '';
101 width: 0;
102 height: 0;
103 border-style: solid;
104 border-width: 5px 5px 5px 0;
105 border-color: transparent rgba(51, 56, 61, 0.9) transparent transparent;
106 position: absolute;
107 top: 50%;
108 left: 100%;
109 margin-left: 0;
110 margin-top: -5px;
111 -webkit-transition:all 0.3s ease-in-out;
112 transition:all 0.3s ease-in-out;
113 opacity: 0;
114 z-index: 1;
115 visibility: hidden;
116 }
117 .loginpress-partial:hover:before,
118 .loginpress-partial:hover:after{
119 opacity: 1;
120 visibility: visible;
121 }
122 #loginform{
123 overflow: visible;
124 }
125 html[dir="rtl"] .customize-partial-edit-shortcut button,html[dir="rtl"] .widget .customize-partial-edit-shortcut button{
126 right: 0;
127 }
128