jetpack-admin-jitm-rtl.css
| 1 | /*! |
| 2 | * Do not modify this file directly. It is compiled SASS code. |
| 3 | */ |
| 4 | @charset "UTF-8"; |
| 5 | /* |
| 6 | The MIT License (MIT) |
| 7 | |
| 8 | Copyright © 2011–2015 thoughtbot, inc. |
| 9 | |
| 10 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated |
| 11 | documentation files (the “Software”), to deal in the Software without restriction, including without limitation the |
| 12 | rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit |
| 13 | persons to whom the Software is furnished to do so, subject to the following conditions: |
| 14 | |
| 15 | The above copyright notice and this permission notice shall be included in all copies or substantial |
| 16 | portions of the Software. |
| 17 | |
| 18 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE |
| 19 | WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
| 20 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
| 21 | OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 22 | |
| 23 | https://github.com/thoughtbot/bourbon |
| 24 | */ |
| 25 | .jitm-button { |
| 26 | background: white; |
| 27 | border-color: #d5d5d5; |
| 28 | border-style: solid; |
| 29 | border-width: 1px 1px 2px; |
| 30 | color: #414141; |
| 31 | cursor: pointer; |
| 32 | display: inline-block; |
| 33 | margin: 0; |
| 34 | outline: 0; |
| 35 | overflow: hidden; |
| 36 | font-weight: 500; |
| 37 | text-overflow: ellipsis; |
| 38 | text-decoration: none; |
| 39 | vertical-align: top; |
| 40 | box-sizing: border-box; |
| 41 | font-size: 0.875rem; |
| 42 | line-height: 1.3125rem; |
| 43 | border-radius: 0.25rem; |
| 44 | padding: 0.4375rem 0.875rem 0.5625rem; |
| 45 | -webkit-appearance: none; |
| 46 | -moz-appearance: none; |
| 47 | appearance: none; |
| 48 | } |
| 49 | |
| 50 | .jitm-button:hover { |
| 51 | border-color: #bbbbbb; |
| 52 | color: #414141; |
| 53 | } |
| 54 | |
| 55 | .jitm-button:active { |
| 56 | border-width: 2px 1px 1px; |
| 57 | } |
| 58 | |
| 59 | .jitm-button:visited { |
| 60 | color: #414141; |
| 61 | } |
| 62 | |
| 63 | .jitm-button[disabled], .jitm-button:disabled { |
| 64 | color: #eeeeee; |
| 65 | background: white; |
| 66 | border-color: #eeeeee; |
| 67 | cursor: default; |
| 68 | } |
| 69 | |
| 70 | .jitm-button[disabled]:active, .jitm-button:disabled:active { |
| 71 | border-width: 1px 1px 2px; |
| 72 | } |
| 73 | |
| 74 | .jitm-button:focus { |
| 75 | outline: 0; |
| 76 | border-color: #00aadc; |
| 77 | box-shadow: 0 0 0 2px #78dcfa; |
| 78 | } |
| 79 | |
| 80 | .jitm-button.is-compact { |
| 81 | padding: 0.4375rem; |
| 82 | color: #888888; |
| 83 | font-size: 0.75rem; |
| 84 | line-height: 1; |
| 85 | } |
| 86 | |
| 87 | .jitm-button.is-compact:disabled { |
| 88 | color: #eeeeee; |
| 89 | } |
| 90 | |
| 91 | .jitm-button.hidden { |
| 92 | display: none; |
| 93 | } |
| 94 | |
| 95 | .jitm-button.is-primary { |
| 96 | background: #00aadc; |
| 97 | border-color: #0087be; |
| 98 | color: white; |
| 99 | } |
| 100 | |
| 101 | .jitm-button.is-primary:hover, .jitm-button.is-primary:focus { |
| 102 | border-color: #005082; |
| 103 | color: white; |
| 104 | } |
| 105 | |
| 106 | .jitm-button.is-primary[disabled], .jitm-button.is-primary:disabled { |
| 107 | background: #bceefd; |
| 108 | border-color: #8cc9e2; |
| 109 | color: white; |
| 110 | } |
| 111 | |
| 112 | .jitm-button.is-primary.is-compact { |
| 113 | color: white; |
| 114 | } |
| 115 | |
| 116 | .jitm-card { |
| 117 | display: block; |
| 118 | clear: both; |
| 119 | position: relative; |
| 120 | margin: 3rem auto 0 1.25rem; |
| 121 | padding: 1rem; |
| 122 | box-sizing: border-box; |
| 123 | background: white; |
| 124 | box-shadow: 0 0 0 1px rgba(213, 213, 213, 0.5), 0 1px 2px #eeeeee; |
| 125 | } |
| 126 | |
| 127 | .jitm-card:after { |
| 128 | content: "."; |
| 129 | display: block; |
| 130 | height: 0; |
| 131 | clear: both; |
| 132 | visibility: hidden; |
| 133 | } |
| 134 | |
| 135 | @media (min-width: 481px) { |
| 136 | .jitm-card { |
| 137 | margin-bottom: 1rem; |
| 138 | padding: 1.5rem; |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | .jitm-card.is-compact { |
| 143 | margin-bottom: 0.0625rem; |
| 144 | } |
| 145 | |
| 146 | @media (min-width: 481px) { |
| 147 | .jitm-card.is-compact { |
| 148 | margin-bottom: 1px; |
| 149 | padding: 1rem 1.5rem; |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | .jitm-card.is-card-link { |
| 154 | padding-left: 3rem; |
| 155 | } |
| 156 | |
| 157 | #screen-meta-links + .jitm-card { |
| 158 | margin: 2.5rem auto 0 1.5385em; |
| 159 | } |
| 160 | |
| 161 | #dolly + .jitm-card { |
| 162 | margin: 3rem auto 0 1rem; |
| 163 | } |
| 164 | |
| 165 | .post-php .jitm-card { |
| 166 | margin-left: 0; |
| 167 | } |
| 168 | |
| 169 | .jp-lower .jitm-card { |
| 170 | margin: 0 0 1.5rem; |
| 171 | } |
| 172 | |
| 173 | .jitm-banner.jitm-card { |
| 174 | border-right: 4px solid; |
| 175 | display: flex; |
| 176 | padding: 0.75rem 0.75rem 0.75rem 0.375rem; |
| 177 | position: relative; |
| 178 | z-index: 2; |
| 179 | border-right-color: #4ab866; |
| 180 | } |
| 181 | |
| 182 | @media (max-width: 480px) { |
| 183 | .jitm-banner.jitm-card { |
| 184 | display: block; |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | .jitm-banner.jitm-card.is-card-link { |
| 189 | padding: 0.75rem 1rem 0.75rem 3rem; |
| 190 | } |
| 191 | |
| 192 | .jitm-banner.jitm-card.is-dismissible { |
| 193 | padding-left: 3rem; |
| 194 | } |
| 195 | |
| 196 | .jitm-banner.jitm-card .jitm-banner__icon { |
| 197 | color: #4ab866; |
| 198 | } |
| 199 | |
| 200 | .jitm-banner.jitm-card .jitm-banner__icon-circle { |
| 201 | background-color: #4ab866; |
| 202 | } |
| 203 | |
| 204 | .jitm-banner.jitm-card.is-upgrade-personal { |
| 205 | border-right-color: #f0b849; |
| 206 | } |
| 207 | |
| 208 | .jitm-banner.jitm-card.is-upgrade-personal .jitm-banner__icon { |
| 209 | color: #f0b849; |
| 210 | } |
| 211 | |
| 212 | .jitm-banner.jitm-card.is-upgrade-personal .jitm-banner__icon-circle { |
| 213 | background-color: #f0b849; |
| 214 | } |
| 215 | |
| 216 | .jitm-banner.jitm-card.is-upgrade-premium { |
| 217 | border-right-color: #4ab866; |
| 218 | } |
| 219 | |
| 220 | .jitm-banner.jitm-card.is-upgrade-premium .jitm-banner__icon { |
| 221 | color: #4ab866; |
| 222 | } |
| 223 | |
| 224 | .jitm-banner.jitm-card.is-upgrade-premium .jitm-banner__icon-circle { |
| 225 | background-color: #4ab866; |
| 226 | } |
| 227 | |
| 228 | .jitm-banner.jitm-card.is-upgrade-business, .jitm-banner.jitm-card.woo-jitm { |
| 229 | border-right-color: #855DA6; |
| 230 | } |
| 231 | |
| 232 | .jitm-banner.jitm-card.is-upgrade-business .jitm-banner__icon, .jitm-banner.jitm-card.woo-jitm .jitm-banner__icon { |
| 233 | color: #855DA6; |
| 234 | } |
| 235 | |
| 236 | .jitm-banner.jitm-card.is-upgrade-business .jitm-banner__icon-circle, .jitm-banner.jitm-card.woo-jitm .jitm-banner__icon-circle { |
| 237 | background-color: #855DA6; |
| 238 | } |
| 239 | |
| 240 | .jitm-banner.jitm-card .jitm-card__link-indicator { |
| 241 | align-items: center; |
| 242 | color: #0087be; |
| 243 | display: flex; |
| 244 | } |
| 245 | |
| 246 | .jitm-banner.jitm-card:hover { |
| 247 | transition: all 100ms ease-in-out; |
| 248 | } |
| 249 | |
| 250 | .jitm-banner.jitm-card:hover.is-card-link { |
| 251 | box-shadow: 0 0 0 1px #a2a2a2, 0 2px 4px #d5d5d5; |
| 252 | } |
| 253 | |
| 254 | .jitm-banner.jitm-card:hover .jitm-card__link-indicator { |
| 255 | color: #005082; |
| 256 | } |
| 257 | |
| 258 | @media (min-width: 481px) { |
| 259 | .jitm-banner.jitm-card { |
| 260 | padding: 0.75rem 1rem; |
| 261 | } |
| 262 | .jitm-banner.jitm-card.is-dismissible { |
| 263 | padding-left: 1rem; |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | .jitm-banner__icons { |
| 268 | display: flex; |
| 269 | } |
| 270 | |
| 271 | .jitm-banner__icons .jitm-banner__icon, |
| 272 | .jitm-banner__icons .jitm-banner__icon-circle { |
| 273 | border-radius: 50%; |
| 274 | flex-shrink: 0; |
| 275 | height: 1.5rem; |
| 276 | width: 1.5rem; |
| 277 | margin-left: 1rem; |
| 278 | margin-top: -0.125rem; |
| 279 | text-align: center; |
| 280 | top: 0.25rem; |
| 281 | } |
| 282 | |
| 283 | .jitm-banner__icons .jitm-banner__icon { |
| 284 | align-self: center; |
| 285 | color: white; |
| 286 | display: block; |
| 287 | } |
| 288 | |
| 289 | .jitm-banner__icons .jitm-banner__icon-circle { |
| 290 | color: white; |
| 291 | display: none; |
| 292 | padding: 0.1875rem 0.1875rem 0.25rem 0.25rem; |
| 293 | } |
| 294 | |
| 295 | @media (min-width: 481px) { |
| 296 | .jitm-banner__icons { |
| 297 | align-items: center; |
| 298 | } |
| 299 | .jitm-banner__icons .jitm-banner__icon { |
| 300 | display: none; |
| 301 | } |
| 302 | .jitm-banner__icons .jitm-banner__icon-circle { |
| 303 | display: block; |
| 304 | } |
| 305 | } |
| 306 | |
| 307 | .jitm-banner__icon-plan { |
| 308 | display: flex; |
| 309 | margin-left: 1rem; |
| 310 | } |
| 311 | |
| 312 | .jitm-banner__icon-plan .dops-plan-icon { |
| 313 | height: 2rem; |
| 314 | width: 2rem; |
| 315 | } |
| 316 | |
| 317 | .jitm-banner__icon-plan .jp-emblem { |
| 318 | position: relative; |
| 319 | top: 0.125rem; |
| 320 | } |
| 321 | |
| 322 | @media (max-width: 480px) { |
| 323 | .jitm-banner__icon-plan .jp-emblem { |
| 324 | margin-bottom: 0.75rem; |
| 325 | } |
| 326 | } |
| 327 | |
| 328 | .jitm-banner__icon-plan .jp-emblem svg { |
| 329 | height: 2rem; |
| 330 | width: 2rem; |
| 331 | fill: #00BE28; |
| 332 | } |
| 333 | |
| 334 | @media (min-width: 481px) { |
| 335 | .jitm-banner__icon-plan { |
| 336 | align-items: center; |
| 337 | } |
| 338 | } |
| 339 | |
| 340 | .jitm-banner__content { |
| 341 | align-items: center; |
| 342 | display: flex; |
| 343 | flex-grow: 1; |
| 344 | flex-wrap: wrap; |
| 345 | } |
| 346 | |
| 347 | @media (min-width: 481px) { |
| 348 | .jitm-banner__content { |
| 349 | flex-wrap: nowrap; |
| 350 | } |
| 351 | } |
| 352 | |
| 353 | .jitm-banner__info { |
| 354 | flex-grow: 1; |
| 355 | line-height: 1.4; |
| 356 | } |
| 357 | |
| 358 | @media (min-width: 481px) { |
| 359 | .jitm-banner__info { |
| 360 | flex-basis: 50%; |
| 361 | } |
| 362 | } |
| 363 | |
| 364 | @media (min-width: 961px) { |
| 365 | .jitm-banner__info { |
| 366 | flex-basis: 70%; |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | .jitm-banner__info .jitm-banner__title, |
| 371 | .jitm-banner__info .jitm-banner__description { |
| 372 | color: #414141; |
| 373 | } |
| 374 | |
| 375 | .jitm-banner__info .jitm-banner__title { |
| 376 | font-size: 14px; |
| 377 | font-weight: 500; |
| 378 | } |
| 379 | |
| 380 | .jitm-banner__info .jitm-banner__description { |
| 381 | font-size: 0.75rem; |
| 382 | line-height: 1.5; |
| 383 | margin-top: 0.375rem; |
| 384 | } |
| 385 | |
| 386 | .jitm-banner__info .banner__list { |
| 387 | font-size: 12px; |
| 388 | list-style: none; |
| 389 | margin: 10px 0; |
| 390 | } |
| 391 | |
| 392 | .jitm-banner__info .banner__list li { |
| 393 | margin: 6px 0; |
| 394 | } |
| 395 | |
| 396 | .jitm-banner__info .banner__list li .gridicon { |
| 397 | fill: #a2a2a2; |
| 398 | display: inline; |
| 399 | margin-left: 12px; |
| 400 | vertical-align: bottom; |
| 401 | } |
| 402 | |
| 403 | .jitm-banner__action { |
| 404 | align-self: center; |
| 405 | font-size: 0.75rem; |
| 406 | margin: 0.5rem 0 0; |
| 407 | text-align: right; |
| 408 | width: 100%; |
| 409 | } |
| 410 | |
| 411 | .jitm-banner__action .jitm-banner__prices { |
| 412 | display: flex; |
| 413 | justify-content: flex-start; |
| 414 | } |
| 415 | |
| 416 | .jitm-banner__action .jitm-banner__prices .dops-plan-price { |
| 417 | margin-bottom: 0; |
| 418 | } |
| 419 | |
| 420 | .jitm-banner__action .jitm-banner__prices .dops-plan-price.is-discounted, |
| 421 | .jitm-banner__action .jitm-banner__prices .dops-plan-price.is-discounted .dops-plan-price__currency-symbol { |
| 422 | color: #414141; |
| 423 | } |
| 424 | |
| 425 | .has-call-to-action .jitm-banner__action .jitm-banner__prices .dops-plan-price { |
| 426 | margin-bottom: 0.5rem; |
| 427 | } |
| 428 | |
| 429 | @media (min-width: 481px) { |
| 430 | .jitm-banner__action { |
| 431 | margin: 0 0.5rem 0 0.25rem; |
| 432 | text-align: center; |
| 433 | width: auto; |
| 434 | } |
| 435 | .jitm-banner__action .is-dismissible { |
| 436 | margin-top: 2.5rem; |
| 437 | } |
| 438 | .jitm-banner__action .jitm-banner__prices { |
| 439 | justify-content: flex-end; |
| 440 | text-align: left; |
| 441 | } |
| 442 | } |
| 443 | |
| 444 | .jitm-banner__dismiss { |
| 445 | display: block; |
| 446 | text-decoration: none; |
| 447 | line-height: .5; |
| 448 | } |
| 449 | |
| 450 | .jitm-banner__dismiss:before { |
| 451 | color: #6f6f6f; |
| 452 | font: 400 16px/1 dashicons; |
| 453 | content: '\f158'; |
| 454 | } |
| 455 | |
| 456 | @media (min-width: 661px) { |
| 457 | .jitm-banner__dismiss { |
| 458 | margin-left: -0.5rem; |
| 459 | } |
| 460 | } |
| 461 | |
| 462 | @media (max-width: 480px) { |
| 463 | .jitm-banner__dismiss { |
| 464 | position: absolute; |
| 465 | top: 0.875rem; |
| 466 | left: 0.875rem; |
| 467 | } |
| 468 | } |
| 469 | |
| 470 | .jitm-banner__action + .jitm-banner__dismiss { |
| 471 | margin-right: 0.625rem; |
| 472 | } |
| 473 | |
| 474 | #dolly + .jitm-card { |
| 475 | margin: 3rem auto 0 1rem; |
| 476 | } |
| 477 | |
| 478 | /*# sourceMappingURL=jetpack-admin-jitm-rtl.css.map */ |
| 479 |