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