woocommerce/plugins/woocommerce-admin/client/header/style.scss

78 lines
1.4 KiB
SCSS
Raw Normal View History

.woocommerce-layout__header {
background: $studio-white;
box-sizing: border-box;
padding: 0;
position: fixed;
width: calc(100% - 160px);
top: $adminbar-height;
z-index: 1001; /* on top of #wp-content-editor-tools */
&.is-scrolled {
box-shadow: $header-scroll-shadow;
}
.woocommerce-layout__header-wrapper {
display: flex;
align-items: center;
min-height: $header-height;
}
@include breakpoint( '<782px' ) {
flex-flow: row wrap;
top: $adminbar-height-mobile;
width: 100%;
}
@include breakpoint( '782px-960px' ) {
width: calc(100% - 36px);
}
Add WooCommerce Mobile App Banner Ad for Android and iOS (https://github.com/woocommerce/woocommerce-admin/pull/5037) Fixes woocommerce/woocommerce-admin#4654 The feature calls for a mobile app ad banner to be displayed to users on mobile devices. Based on the discussion in woocommerce/woocommerce-admin#4654 this implements the following: 1. [an iOS Smart App Banner](https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariWebContent/PromotingAppswithAppBanners/PromotingAppswithAppBanners.html). This banner is a meta tag that is generated in PHP. It will only display on iOS devices. One note about this: **This tag is not directly trackable like the implemented Android banner. If we would like to track its success then I believe [these instructions are relevant](https://stackoverflow.com/questions/12906502/is-it-possible-to-track-click-throughs-from-iphone-smart-banner/20422334woocommerce/woocommerce-admin#20422334)**. 2. A mobile app banner ad that **only displays on Android** and only displays at the `738px` breakpoint specified in the issue. To only display this banner ad on Android, we use basic checking of the user agent string. I weighed this up against other approaches and for this kind of niche use case a simple UA string check is (imho) still the best way to do this. 3. The banner ad makes use of user preferences to retain a per user setting that determines if that user has dismissed the Android banner. We don't/can't do anything like this for the iOS Smart App Banner (but in theory we shouldn't need to).
2020-08-27 01:46:53 +00:00
.woocommerce-layout__header-breadcrumbs-wrapper {
display: flex;
justify-content: space-between;
flex-direction: row;
}
.woocommerce-layout__header-heading {
display: flex;
align-items: center;
padding: 0 0 0 $fallback-gutter-large;
padding: 0 0 0 $gutter-large;
flex: 1 auto;
height: $header-height;
background: $studio-white;
font-weight: 600;
font-size: 14px;
}
}
.folded .woocommerce-layout__header {
width: calc(100% - 36px);
@include breakpoint( '<782px' ) {
width: 100%;
}
}
.is-wp-toolbar-disabled .woocommerce-layout__header {
top: 0;
}
.has-woocommerce-navigation .woocommerce-layout__header {
left: 0;
width: 100%;
}
.woocommerce-page {
#contextual-help-link-wrap,
#screen-options-link-wrap {
margin-top: -1px;
}
}
.wp-responsive-open {
.woocommerce-layout__header {
margin-left: 2px;
}
}