| @@ -9,46 +9,16 @@ | ||
| 9 | 9 | */ |
| 10 | 10 | /** |
| 11 | 11 | * Mixin |
| 12 | 12 | */ |
| 13 | -@-webkit-keyframes rotating4 { | |
| 14 | - from { | |
| 15 | - -webkit-transform: rotate(0deg); | |
| 16 | - -o-transform: rotate(0deg); | |
| 17 | - transform: rotate(0deg); | |
| 18 | - } | |
| 19 | - to { | |
| 20 | - -webkit-transform: rotate(360deg); | |
| 21 | - -o-transform: rotate(360deg); | |
| 22 | - transform: rotate(360deg); | |
| 23 | - } | |
| 24 | -} | |
| 25 | 13 | @keyframes rotating4 { |
| 26 | 14 | from { |
| 27 | - -ms-transform: rotate(0deg); | |
| 28 | - -moz-transform: rotate(0deg); | |
| 29 | - -webkit-transform: rotate(0deg); | |
| 30 | - -o-transform: rotate(0deg); | |
| 31 | 15 | transform: rotate(0deg); |
| 32 | 16 | } |
| 33 | 17 | to { |
| 34 | - -ms-transform: rotate(360deg); | |
| 35 | - -moz-transform: rotate(360deg); | |
| 36 | - -webkit-transform: rotate(360deg); | |
| 37 | - -o-transform: rotate(360deg); | |
| 38 | 18 | transform: rotate(360deg); |
| 39 | 19 | } |
| 40 | 20 | } |
| 41 | -@-webkit-keyframes animation4 { | |
| 42 | - from { | |
| 43 | - left: -40%; | |
| 44 | - width: 40%; | |
| 45 | - } | |
| 46 | - to { | |
| 47 | - left: 100%; | |
| 48 | - width: 10%; | |
| 49 | - } | |
| 50 | -} | |
| 51 | 21 | @keyframes animation4 { |
| 52 | 22 | from { |
| 53 | 23 | left: -40%; |
| 54 | 24 | width: 40%; |
| @@ -83,10 +53,8 @@ | ||
| 83 | 53 | .learnpress-page input[type=email], |
| 84 | 54 | .learnpress-page input[type=number], |
| 85 | 55 | .learnpress-page input[type=password], .learnpress-page textarea { |
| 86 | 56 | border-color: var(--lp-border-color, #E2E0DB); |
| 87 | - -webkit-border-radius: var(--lp-border-radius, 5px); | |
| 88 | - -moz-border-radius: var(--lp-border-radius, 5px); | |
| 89 | 57 | border-radius: var(--lp-border-radius, 5px); |
| 90 | 58 | } |
| 91 | 59 | .learnpress-page input[type=text]:focus, |
| 92 | 60 | .learnpress-page input[type=email]:focus, |
| @@ -104,15 +72,10 @@ | ||
| 104 | 72 | font-family: inherit; |
| 105 | 73 | font-weight: 400; |
| 106 | 74 | text-align: center; |
| 107 | 75 | text-transform: capitalize; |
| 108 | - -webkit-border-radius: var(--lp-border-radius, 5px); | |
| 109 | - -moz-border-radius: var(--lp-border-radius, 5px); | |
| 110 | 76 | border-radius: var(--lp-border-radius, 5px); |
| 111 | 77 | -webkit-transition: all 0.25s; |
| 112 | - -moz-transition: all 0.25s; | |
| 113 | - -ms-transition: all 0.25s; | |
| 114 | - -o-transition: all 0.25s; | |
| 115 | 78 | transition: all 0.25s; |
| 116 | 79 | } |
| 117 | 80 | .learnpress-page .lp-button.large, .learnpress-page #lp-button.large { |
| 118 | 81 | height: 52px; |
| @@ -129,10 +92,8 @@ | ||
| 129 | 92 | } |
| 130 | 93 | .learnpress-page .lp-button.btn-ajax-on .icon, .learnpress-page #lp-button.btn-ajax-on .icon { |
| 131 | 94 | display: inline-block; |
| 132 | 95 | margin-right: 5px; |
| 133 | - -webkit-animation: lp-rotating 1s linear infinite; | |
| 134 | - -moz-animation: lp-rotating 1s linear infinite; | |
| 135 | 96 | animation: lp-rotating 1s linear infinite; |
| 136 | 97 | } |
| 137 | 98 | .learnpress-page .lp-button:focus, .learnpress-page #lp-button:focus { |
| 138 | 99 | outline: 0; |
| @@ -152,11 +113,8 @@ | ||
| 152 | 113 | overflow-x: hidden; |
| 153 | 114 | }*/ |
| 154 | 115 | a { |
| 155 | 116 | -webkit-transition: 0.3s; |
| 156 | - -moz-transition: 0.3s; | |
| 157 | - -ms-transition: 0.3s; | |
| 158 | - -o-transition: 0.3s; | |
| 159 | 117 | transition: 0.3s; |
| 160 | 118 | text-decoration: none; |
| 161 | 119 | } |
| 162 | 120 | |
| @@ -183,30 +141,8 @@ | ||
| 183 | 141 | width: 20px; |
| 184 | 142 | height: 20px; |
| 185 | 143 | } |
| 186 | 144 | |
| 187 | -.lp-button { | |
| 188 | - border: 1px solid var(--lp-border-color, #E2E0DB); | |
| 189 | - border-radius: var(--lp-border-radius, 5px); | |
| 190 | - padding: 8px 16px; | |
| 191 | -} | |
| 192 | -.lp-button.loading { | |
| 193 | - pointer-events: none; | |
| 194 | - opacity: 0.8; | |
| 195 | -} | |
| 196 | -.lp-button.loading:before { | |
| 197 | - display: inline-block; | |
| 198 | - font-family: "lp-icon"; | |
| 199 | - content: "\f110"; | |
| 200 | - animation: lp-rotating 1s linear infinite; | |
| 201 | - margin-right: 5px; | |
| 202 | - font-variant: normal; | |
| 203 | - text-transform: none; | |
| 204 | - -webkit-font-smoothing: antialiased; | |
| 205 | - -moz-osx-font-smoothing: grayscale; | |
| 206 | - vertical-align: middle; | |
| 207 | -} | |
| 208 | - | |
| 209 | 145 | .lp-hidden { |
| 210 | 146 | display: none !important; |
| 211 | 147 | } |
| 212 | 148 | |
| @@ -219,46 +155,16 @@ | ||
| 219 | 155 | |
| 220 | 156 | /** |
| 221 | 157 | * Mixin |
| 222 | 158 | */ |
| 223 | -@-webkit-keyframes rotating4 { | |
| 224 | - from { | |
| 225 | - -webkit-transform: rotate(0deg); | |
| 226 | - -o-transform: rotate(0deg); | |
| 227 | - transform: rotate(0deg); | |
| 228 | - } | |
| 229 | - to { | |
| 230 | - -webkit-transform: rotate(360deg); | |
| 231 | - -o-transform: rotate(360deg); | |
| 232 | - transform: rotate(360deg); | |
| 233 | - } | |
| 234 | -} | |
| 235 | 159 | @keyframes rotating4 { |
| 236 | 160 | from { |
| 237 | - -ms-transform: rotate(0deg); | |
| 238 | - -moz-transform: rotate(0deg); | |
| 239 | - -webkit-transform: rotate(0deg); | |
| 240 | - -o-transform: rotate(0deg); | |
| 241 | 161 | transform: rotate(0deg); |
| 242 | 162 | } |
| 243 | 163 | to { |
| 244 | - -ms-transform: rotate(360deg); | |
| 245 | - -moz-transform: rotate(360deg); | |
| 246 | - -webkit-transform: rotate(360deg); | |
| 247 | - -o-transform: rotate(360deg); | |
| 248 | 164 | transform: rotate(360deg); |
| 249 | 165 | } |
| 250 | 166 | } |
| 251 | -@-webkit-keyframes animation4 { | |
| 252 | - from { | |
| 253 | - left: -40%; | |
| 254 | - width: 40%; | |
| 255 | - } | |
| 256 | - to { | |
| 257 | - left: 100%; | |
| 258 | - width: 10%; | |
| 259 | - } | |
| 260 | -} | |
| 261 | 167 | @keyframes animation4 { |
| 262 | 168 | from { |
| 263 | 169 | left: -40%; |
| 264 | 170 | width: 40%; |
| @@ -434,18 +340,19 @@ | ||
| 434 | 340 | .learnpress_avatar__form__upload div { |
| 435 | 341 | line-height: 1.4; |
| 436 | 342 | } |
| 437 | 343 | .learnpress_avatar__button--loading:before { |
| 344 | + position: absolute; | |
| 438 | 345 | display: inline-block; |
| 439 | 346 | font-family: "lp-icon"; |
| 440 | 347 | content: "\f110"; |
| 441 | 348 | animation: lp-rotating 1s linear infinite; |
| 442 | - margin-right: 5px; | |
| 443 | 349 | font-variant: normal; |
| 444 | 350 | text-transform: none; |
| 445 | 351 | -webkit-font-smoothing: antialiased; |
| 446 | 352 | -moz-osx-font-smoothing: grayscale; |
| 447 | 353 | vertical-align: middle; |
| 354 | + color: black; | |
| 448 | 355 | } |
| 449 | 356 | |
| 450 | 357 | button.learnpress_avatar__button { |
| 451 | 358 | height: 40px; |