File size: 11,868 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 |
// Disable scroll when Site Picker is active. In future,
// the Site Picker's Site List could be made compatible
// SidebarScrollSynchronizer. Currently, it is not and
// sometimes fixed content gets rendered outside of the
// viewport. See `BodySectionCssClass` also.
body.is-focus-sites {
overflow: hidden;
}
html.command-palette-modal-open {
overflow: visible;
}
body.command-palette-modal-open {
overflow: hidden;
}
/**
* /*
* Layout Elements
* .layout__loading - Displays when loading Calypso
* .layout__content - Contains primary and secondary elements
* .layout__primary - Where the main content lives
* .layout__secondary - Contains the site selector and sidebar elements
* .sidebar
* .site-selector
*
*/
// Set transitons for layout elements
.layout__primary .main,
.layout__secondary,
.layout__secondary .sidebar,
.layout__secondary .site-selector {
transition: transform 0.15s ease-in-out, opacity 0.15s ease-out;
}
.layout__header-section-content {
box-sizing: border-box;
padding: 79px 32px 32px 32px;
@include breakpoint-deprecated( "<960px" ) {
padding: 71px 24px 24px 24px;
}
}
// Setup the content element to adapt to the sidebar,
// lack of sidebar, or the WebPreview component.
.layout__content {
@include clear-fix;
position: relative;
margin: 0;
padding: 79px 32px 32px calc(var(--sidebar-width-max) + 32px + 1px);
box-sizing: border-box;
overflow: hidden;
// Various screens dont use a sidebar.
.has-no-sidebar & {
padding-left: 32px;
}
// Checkout sets it own padding/margin
.is-section-checkout &,
.is-section-checkout.has-no-sidebar & {
padding: 0;
margin: 0;
}
// Note that we have to use a 0,0,3,1 specificity selector to override the
// one in `client/my-sites/sidebar/style.scss` which has 0,0,3,0 in case it
// loads second, which happens if checkout is not the first page of calypso
// to load.
.theme-default.is-section-checkout div.is-section-checkout.focus-content & {
padding: 0;
margin: 0;
}
// Themes sets its own padding/margin when there is no sidebar
.is-section-theme.has-no-sidebar &,
.is-section-themes.has-no-sidebar &,
.theme-default .layout.is-section-theme.has-no-sidebar &,
.theme-default .layout.is-section-themes.has-no-sidebar &,
.theme-default .layout.is-section-themes:not(.is-logged-in) & {
padding: 0;
margin: 0;
}
.is-section-marketplace.has-no-sidebar & {
padding: 0;
margin: 0;
}
.is-section-themes.has-no-sidebar.is-logged-in &,
.theme-default .is-section-themes.has-no-sidebar.is-logged-in & {
padding: 79px 32px 32px;
}
.is-section-theme & {
.sites.main {
padding-top: calc(79px - var(--masterbar-height));
}
}
.is-logged-in & {
// The plugins site view needs the header to be full width, so the padding
// is added on the header and .plugins-browser__content-wrapper instead
.is-section-plugins & {
padding: 47px 0 32px calc(var(--sidebar-width-max) + 1px);
}
}
// Tablets
@include breakpoint-deprecated( "<960px" ) {
padding: 71px 24px 24px calc(var(--sidebar-width-min) + 24px + 1px);
.has-no-sidebar & {
padding-left: 24px;
}
.is-section-theme.has-no-sidebar &,
.is-section-themes.has-no-sidebar & {
padding: 0;
margin: 0;
}
.is-section-themes.has-no-sidebar.is-logged-in & {
padding: 47px 0 0;
}
}
// Mobile (Full Width)
@include breakpoint-deprecated( "<660px" ) {
margin-left: 0;
padding: 0;
padding-top: calc(var(--masterbar-height) + 1px);
.has-no-sidebar & {
padding-left: 0;
}
}
}
// Add extra bottom padding for smaller screens to prevent
// floating inline help from overlapping content.
.layout__primary .main {
// The height is set to 100% in /sites page so we want to ensure that padding doesn't take us over 100% total height.
box-sizing: border-box;
padding-bottom: 88px;
@include breakpoint-deprecated( ">1400px" ) {
padding-bottom: 0;
}
}
body.is-mobile-app-view {
/* We are ignoring these lines because without the px value the calc function does not work as expected */
/* stylelint-disable length-zero-no-unit */
--sidebar-width-max: 0px;
--sidebar-width-min: 0px;
/* stylelint-enable length-zero-no-unit */
.layout__secondary {
display: none;
}
}
// Setup the secondary element, which contains the sidebar and
// the site-selector elements.
.layout__secondary {
position: fixed;
top: var(--masterbar-height);
left: 0;
bottom: 0;
color: var(--color-sidebar-text);
background: var(--color-sidebar-background);
width: var(--sidebar-width-max);
overflow: hidden;
// Ensure that the sidebar always remains on top.
// Related issue: https://github.com/Automattic/wp-calypso/issues/53504
z-index: z-index("root", ".layout__secondary");
@include breakpoint-deprecated( "<960px" ) {
width: var(--sidebar-width-min);
}
@include breakpoint-deprecated( "<660px" ) {
width: 100%;
}
// The editor has its own sidebar which doesnt
// use the secondary element.
.is-section-gutenberg-editor &,
// Some screens (like /theme/) simply dont have
// a sidebar.
.has-no-sidebar & {
display: none;
}
// Secondary Layout overrides
.site__title {
color: var(--color-sidebar-text);
}
.site__domain {
color: var(--color-sidebar-text-alternative);
}
.site__title::after,
.site__domain::after {
@include long-content-fade( $color: var( --color-sidebar-background ) );
}
.site-selector {
// Setup the site-selector element. Its default
// position is off screen.
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
pointer-events: none;
transform: translateX(calc(-1 * var(--sidebar-width-max)));
height: calc(100vh - var(--masterbar-height));
&.is-large .site-selector__sites {
border-color: var(--color-sidebar-border);
}
&__sites {
background: var(--color-sidebar-background);
}
&__add-new-site {
border-color: var(--color-sidebar-border);
.button {
color: var(--color-sidebar-text-alternative);
&:hover {
color: var(--color-sidebar-text);
}
}
}
&__recent {
border-color: var(--color-sidebar-border);
}
&__no-results {
color: var(--color-sidebar-text-alternative);
}
&__list-bottom-adornment {
color: var(--color-sidebar-text);
}
.all-sites {
border-color: var(--color-sidebar-border);
}
.site,
.all-sites {
.site__title,
.site__domain {
&::after {
@include long-content-fade( $color: var( --color-sidebar-background ) );
}
}
}
@include breakpoint-deprecated( "<660px" ) {
-webkit-overflow-scrolling: touch;
transform: translateX(-100%);
height: auto;
}
}
.all-sites .count {
color: var(--color-sidebar-text);
border-color: var(--color-sidebar-text);
}
.app-promo {
box-shadow: 0 0 0 1px var(--color-sidebar-border), 0 1px 2px var(--color-sidebar-border);
}
}
/*
Focus States
Sites - Site Selector for those with multiple sites
Sidebar - The sidebar is the current focus
Content - The content is the furrent focus
*/
// Adjust the content as needed when focused on the site selector or sidebar.
.layout.focus-sites,
.layout.focus-sidebar {
.layout__primary .main {
@include breakpoint-deprecated( "<660px" ) {
pointer-events: none;
overflow: hidden;
max-height: calc(100vh - 47px);
// Removing this transform could have unintended side-affects
// related to z-index and elements showing through on mobile.
transform: translateX(100%);
}
}
}
// Adjust elements when the site-selector is visible.
.layout.focus-sites {
.layout__secondary .site-selector {
pointer-events: auto;
transform: translateX(0);
}
.layout__secondary .sidebar {
pointer-events: none;
transform: translateX(var(--sidebar-width-max));
@include breakpoint-deprecated( "<660px" ) {
transform: translateX(100%);
}
}
.layout__primary .main {
@include breakpoint-deprecated( ">660px" ) {
pointer-events: none;
opacity: 0.25;
}
}
}
// Move the secondary element off screen when focused
// on the content. This only applies to small screens.
.layout.focus-content .layout__secondary {
@media only screen and (max-width: 781px) {
transform: translateX(-100%);
}
}
// Display sidebar as a panel under a main payment component in mobile checkout
.layout.is-section-checkout {
@include breakpoint-deprecated( "<660px" ) {
.layout__content {
display: flex;
flex-flow: column;
}
.layout__primary {
order: 1;
}
.layout__secondary {
order: 2;
position: relative;
transform: none;
top: 10px;
}
}
}
.layout {
.global-notices {
padding: 8px;
/* This is the breakpoint we're using in client/components/global-notices/style.scss */
@include breakpoint-deprecated( ">660px" ) {
padding: 0;
}
}
// Try to clean things up a bit when printing.
.masterbar,
.layout__secondary {
@media print {
display: none;
}
}
.layout__content {
@media print {
padding: 0;
}
}
}
// Only apply the no-masterbar rule to logged in sections
// This is done since most has-no-masterbar section have their own padding set already that we don't want to overwrite
.layout.has-no-masterbar.is-group-me,
.layout.has-no-masterbar.is-group-sites,
.layout.has-no-masterbar.is-section-reader {
/* We are ignoring these lines because without the px value the calc function does not work as expected */
/* stylelint-disable-next-line length-zero-no-unit */
--masterbar-height: 0px;
.layout__content {
padding-top: 32px;
}
&.has-no-sidebar .layout__content {
padding-top: 0;
}
}
// Ensure sidebar is visually separate from the content in the Contrast color scheme
.theme-default.is-contrast {
.layout__secondary {
outline: 1px solid var(--color-sidebar-border);
}
}
// Ensure reader streams have the neutral background.
.layout.is-section-reader {
min-height: 100vh;
&.has-header-section {
background: var(--studio-white);
}
.section-header.card {
box-shadow: none;
margin-bottom: 24px;
padding: 0;
.section-header__label-text {
font-size: 1.25rem;
font-weight: 500;
line-height: 26px;
}
@include breakpoint-deprecated( "<660px" ) {
margin: 0 16px;
}
}
}
// Handle Gravatar domain flow styles
.layout.is-domain-for-gravatar {
* {
font-family:
'SF Pro Text',
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
Oxygen-Sans,
Ubuntu,
Cantarell,
'Helvetica Neue',
sans-serif !important;
}
.masterbar__secure-checkout {
column-gap: 8px;
}
.gravatar-text-logo {
width: 119px;
height: 22px;
}
h1.formatted-header__title,
.checkout-title,
h1.thank-you__header-title {
font-family:
'SF Pro Display',
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
Oxygen-Sans,
Ubuntu,
Cantarell,
'Helvetica Neue',
sans-serif !important;
}
h1.formatted-header__title,
h1.thank-you__header-title {
font-weight: 700 !important;
}
.domain-suggestion__action.is-primary:not( :disabled ),
.checkout-modal__button.is-status-primary,
.thank-you__product-actions .components-button.is-primary:not( :disabled ) {
background-color: #1d4fc4;
border-color: #1d4fc4;
&:hover,
&:focus {
background-color: #002e9b;
border-color: #002e9b;
}
}
// Domain pages
&.is-section-signup {
.gravatar-text-logo {
position: absolute;
top: 20px;
left: 24px;
width: 130px;
height: 24px;
}
}
&.is-section-checkout,
&.is-section-checkout-pending {
.gravatar-text-logo {
margin-bottom: 3px;
}
}
&.is-section-checkout {
.cost-overrides-list-item__reason--is-discount {
color: #1d4fc4;;
}
.checkout-payment-methods .is-checked:not( .has-highlight ) {
border: #c3c4c7 1px solid;
}
}
&.is-section-checkout-pending {
.gravatar-text-logo {
margin-left: 19.5px;
}
}
&.is-section-checkout-thank-you {
.gravatar-text-logo {
margin-left: 24px;
align-self: center;
}
}
}
|