@shift72/core-template 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.nvmrc +1 -0
- package/CHANGELOG.md +46 -11
- package/kibble.json +3 -3
- package/package.json +2 -3
- package/scripts/translate.mjs +30 -22
- package/site/ar_LB.all.json +65 -11
- package/site/ca_ES.all.json +65 -11
- package/site/da_DK.all.json +64 -10
- package/site/de_DE.all.json +64 -10
- package/site/el_EL.all.json +64 -10
- package/site/en_AU.all.json +69 -15
- package/site/es_ES.all.json +66 -12
- package/site/es_MX.all.json +66 -12
- package/site/{ee_EE.all.json → et_ET.all.json} +64 -10
- package/site/fi_FI.all.json +67 -13
- package/site/fr_FR.all.json +66 -12
- package/site/hr_HR.all.json +65 -11
- package/site/hu_HU.all.json +65 -11
- package/site/it_IT.all.json +65 -11
- package/site/ja_JP.all.json +64 -10
- package/site/lt_LT.all.json +64 -10
- package/site/nl_BE.all.json +65 -11
- package/site/no_NO.all.json +65 -11
- package/site/pl_PL.all.json +65 -11
- package/site/plans.html.jet +17 -17
- package/site/pt_BR.all.json +65 -11
- package/site/pt_PT.all.json +65 -11
- package/site/ru_RU.all.json +67 -13
- package/site/sr_SR.all.json +67 -13
- package/site/static/fonts/fa-s72.woff +0 -0
- package/site/static/js/main.js +1 -0
- package/site/static/scripts/main.js.map +1 -1
- package/site/styles/_availability-tags.scss +63 -31
- package/site/styles/_awards.scss +4 -3
- package/site/styles/_buttons.scss +15 -3
- package/site/styles/_carousel.scss +21 -24
- package/site/styles/_forms.scss +8 -3
- package/site/styles/_icons.scss +180 -9
- package/site/styles/_legacy.scss +0 -7
- package/site/styles/_meta-detail.scss +65 -40
- package/site/styles/_nav.scss +5 -4
- package/site/styles/_plans.scss +10 -17
- package/site/styles/_poster.scss +3 -9
- package/site/styles/_share-modal.scss +86 -0
- package/site/styles/_shift72.scss +7 -0
- package/site/styles/_shopping.scss +0 -1
- package/site/styles/_skip-link.scss +1 -1
- package/site/styles/_tooltips.scss +7 -0
- package/site/styles/_variables.scss +9 -8
- package/site/styles/_wishlist.scss +2 -2
- package/site/styles/main.scss +3 -2
- package/site/subscriptions.html.jet +11 -0
- package/site/templates/application/application.jet +2 -2
- package/site/templates/application/google.jet +8 -13
- package/site/templates/application/nav/user_logged_in.jet +7 -2
- package/site/templates/collection/carousel_item.jet +5 -3
- package/site/templates/common/social-media-buttons.jet +1 -37
- package/site/templates/common/sponsor-image.jet +18 -0
- package/site/templates/film/item.jet +92 -86
- package/site/templates/tv/detail.jet +30 -21
- package/site/tr_TR.all.json +64 -10
- package/site/uk_UA.all.json +65 -11
- package/site/zh_TW.all.json +64 -10
- package/site/static/fonts/FontAwesome.otf +0 -0
- package/site/static/fonts/fontawesome-webfont.eot +0 -0
- package/site/static/fonts/fontawesome-webfont.svg +0 -565
- package/site/static/fonts/fontawesome-webfont.ttf +0 -0
- package/site/static/fonts/fontawesome-webfont.woff +0 -0
- package/site/static/fonts/fontawesome-webfont.woff2 +0 -0
- package/site/styles/_social-media-buttons.scss +0 -159
    
        package/site/styles/_icons.scss
    CHANGED
    
    | @@ -1,16 +1,187 @@ | |
| 1 | 
            -
             | 
| 2 | 
            -
             | 
| 3 | 
            -
             | 
| 1 | 
            +
            @font-face {
         | 
| 2 | 
            +
              font-family: 'fa-s72';
         | 
| 3 | 
            +
              font-style: normal;
         | 
| 4 | 
            +
              font-weight: normal;
         | 
| 5 | 
            +
              src: url('/fonts/fa-s72.woff') format('woff');
         | 
| 6 | 
            +
            }
         | 
| 4 7 |  | 
| 5 | 
            -
            . | 
| 6 | 
            -
               | 
| 7 | 
            -
               | 
| 8 | 
            +
            .fa {
         | 
| 9 | 
            +
              font-family: 'fa-s72' !important;
         | 
| 10 | 
            +
              font-style: normal !important;
         | 
| 11 | 
            +
              font-variant: normal !important;
         | 
| 12 | 
            +
              font-weight: normal !important;
         | 
| 13 | 
            +
              line-height: 1;
         | 
| 14 | 
            +
              text-transform: none !important;
         | 
| 15 | 
            +
              vertical-align: middle;
         | 
| 16 | 
            +
            }
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            .fa-credit-card::before,
         | 
| 19 | 
            +
            .fa-trash::before {
         | 
| 20 | 
            +
              font-size: 18px;
         | 
| 21 | 
            +
            }
         | 
| 22 | 
            +
             | 
| 23 | 
            +
            .fa-ellipsis-v {
         | 
| 24 | 
            +
              font-size: 26px;
         | 
| 25 | 
            +
            }
         | 
| 26 | 
            +
             | 
| 27 | 
            +
            .fa-credit-card {
         | 
| 28 | 
            +
              line-height: 0;
         | 
| 29 | 
            +
            }
         | 
| 30 | 
            +
             | 
| 31 | 
            +
            .fa-angle-down,
         | 
| 32 | 
            +
            .fa-angle-left,
         | 
| 33 | 
            +
            .fa-angle-right,
         | 
| 34 | 
            +
            .fa-angle-up {
         | 
| 35 | 
            +
              &::before {
         | 
| 36 | 
            +
                content: '\e017';
         | 
| 37 | 
            +
              }
         | 
| 38 | 
            +
            }
         | 
| 39 | 
            +
             | 
| 40 | 
            +
            .fa-angle-left {
         | 
| 41 | 
            +
              transform: rotate(90deg);
         | 
| 42 | 
            +
            }
         | 
| 43 | 
            +
             | 
| 44 | 
            +
            .fa-angle-up {
         | 
| 45 | 
            +
              transform: rotate(180deg);
         | 
| 46 | 
            +
            }
         | 
| 47 | 
            +
             | 
| 48 | 
            +
            .fa-angle-right {
         | 
| 49 | 
            +
              transform: rotate(270deg);
         | 
| 50 | 
            +
            }
         | 
| 51 | 
            +
             | 
| 52 | 
            +
            .fa-cc-visa::before {
         | 
| 53 | 
            +
              content: '\e000';
         | 
| 54 | 
            +
            }
         | 
| 55 | 
            +
             | 
| 56 | 
            +
            .fa-cc-stripe::before {
         | 
| 57 | 
            +
              content: '\e001';
         | 
| 58 | 
            +
            }
         | 
| 59 | 
            +
             | 
| 60 | 
            +
            .fa-cc-paypal::before {
         | 
| 61 | 
            +
              content: '\e002';
         | 
| 62 | 
            +
            }
         | 
| 63 | 
            +
             | 
| 64 | 
            +
            .fa-cc-mastercard::before {
         | 
| 65 | 
            +
              content: '\e003';
         | 
| 66 | 
            +
            }
         | 
| 67 | 
            +
             | 
| 68 | 
            +
            .fa-cc-jcb::before {
         | 
| 69 | 
            +
              content: '\e004';
         | 
| 70 | 
            +
            }
         | 
| 71 | 
            +
             | 
| 72 | 
            +
            .fa-cc-discover::before {
         | 
| 73 | 
            +
              content: '\e005';
         | 
| 74 | 
            +
            }
         | 
| 75 | 
            +
             | 
| 76 | 
            +
            .fa-cc-diners-club::before {
         | 
| 77 | 
            +
              content: '\e006';
         | 
| 78 | 
            +
            }
         | 
| 79 | 
            +
             | 
| 80 | 
            +
            .fa-cc-amex::before {
         | 
| 81 | 
            +
              content: '\e007';
         | 
| 82 | 
            +
            }
         | 
| 83 | 
            +
             | 
| 84 | 
            +
            .fa-twitter::before {
         | 
| 85 | 
            +
              content: '\e008';
         | 
| 86 | 
            +
            }
         | 
| 87 | 
            +
             | 
| 88 | 
            +
            .fa-star::before {
         | 
| 89 | 
            +
              content: '\e009';
         | 
| 90 | 
            +
            }
         | 
| 91 | 
            +
             | 
| 92 | 
            +
            .fa-error::before {
         | 
| 93 | 
            +
              content: '\e00a';
         | 
| 94 | 
            +
            }
         | 
| 95 | 
            +
             | 
| 96 | 
            +
            .fa-circle-o::before {
         | 
| 97 | 
            +
              content: '\e00b';
         | 
| 98 | 
            +
            }
         | 
| 99 | 
            +
             | 
| 100 | 
            +
            .fa-check::before {
         | 
| 101 | 
            +
              content: '\e00c';
         | 
| 102 | 
            +
            }
         | 
| 103 | 
            +
             | 
| 104 | 
            +
            .fa-times::before {
         | 
| 105 | 
            +
              content: '\e00d';
         | 
| 106 | 
            +
            }
         | 
| 107 | 
            +
             | 
| 108 | 
            +
            .fa-trash::before {
         | 
| 109 | 
            +
              content: '\e00e';
         | 
| 110 | 
            +
            }
         | 
| 111 | 
            +
             | 
| 112 | 
            +
            .fa-facebook::before {
         | 
| 113 | 
            +
              content: '\e00f';
         | 
| 114 | 
            +
            }
         | 
| 115 | 
            +
             | 
| 116 | 
            +
            .fa-link::before {
         | 
| 117 | 
            +
              content: '\e010';
         | 
| 118 | 
            +
            }
         | 
| 119 | 
            +
             | 
| 120 | 
            +
            .fa-linkedin::before {
         | 
| 121 | 
            +
              content: '\e011';
         | 
| 122 | 
            +
            }
         | 
| 123 | 
            +
             | 
| 124 | 
            +
            .fa-envelope::before {
         | 
| 125 | 
            +
              content: '\e012';
         | 
| 126 | 
            +
            }
         | 
| 127 | 
            +
             | 
| 128 | 
            +
            .fa-ellipsis-v::before {
         | 
| 129 | 
            +
              content: '\e013';
         | 
| 130 | 
            +
            }
         | 
| 131 | 
            +
             | 
| 132 | 
            +
            .fa-check-circle::before {
         | 
| 133 | 
            +
              content: '\e015';
         | 
| 134 | 
            +
            }
         | 
| 135 | 
            +
             | 
| 136 | 
            +
            .fa-search::before {
         | 
| 137 | 
            +
              content: '\e016';
         | 
| 138 | 
            +
            }
         | 
| 8 139 |  | 
| 9 | 
            -
             | 
| 10 | 
            -
             | 
| 140 | 
            +
            .fa-angle-down::before {
         | 
| 141 | 
            +
              content: '\e017';
         | 
| 142 | 
            +
            }
         | 
| 143 | 
            +
             | 
| 144 | 
            +
            .fa-credit-card::before {
         | 
| 145 | 
            +
              content: '\e018';
         | 
| 146 | 
            +
            }
         | 
| 147 | 
            +
             | 
| 148 | 
            +
            .fa-globe::before {
         | 
| 149 | 
            +
              content: '\e019';
         | 
| 150 | 
            +
            }
         | 
| 151 | 
            +
             | 
| 152 | 
            +
            .fa-share-alt::before {
         | 
| 153 | 
            +
              content: '\e01a';
         | 
| 154 | 
            +
            }
         | 
| 155 | 
            +
             | 
| 156 | 
            +
            .fa-circle::before {
         | 
| 157 | 
            +
              content: '\e01c';
         | 
| 158 | 
            +
            }
         | 
| 159 | 
            +
             | 
| 160 | 
            +
            .fa-warning::before, .fa-exclamation-circle::before, .fa-exclamation-triangle::before {
         | 
| 161 | 
            +
              content: '\e01b';
         | 
| 162 | 
            +
            }
         | 
| 163 | 
            +
             | 
| 164 | 
            +
            s72-availability-label .availability-state::before {
         | 
| 165 | 
            +
              content: '\e01b';
         | 
| 166 | 
            +
            }
         | 
| 167 | 
            +
             | 
| 168 | 
            +
            .fa-spinner::before {
         | 
| 169 | 
            +
              content: '\e014';
         | 
| 170 | 
            +
            }
         | 
| 171 | 
            +
             | 
| 172 | 
            +
            @keyframes fa-spin {
         | 
| 173 | 
            +
              0% {
         | 
| 174 | 
            +
                transform: rotate(0deg);
         | 
| 175 | 
            +
              }
         | 
| 176 | 
            +
              100% {
         | 
| 177 | 
            +
                transform: rotate(359deg);
         | 
| 11 178 | 
             
              }
         | 
| 12 179 | 
             
            }
         | 
| 13 180 |  | 
| 181 | 
            +
            .fa-spin {
         | 
| 182 | 
            +
              animation: fa-spin 2s linear infinite;
         | 
| 183 | 
            +
            }
         | 
| 184 | 
            +
             | 
| 14 185 | 
             
            .icon-loading {
         | 
| 15 186 | 
             
              @extend .fa;
         | 
| 16 187 | 
             
              @extend .fa-spinner;
         | 
| @@ -19,7 +190,7 @@ | |
| 19 190 |  | 
| 20 191 | 
             
            .icon-errored {
         | 
| 21 192 | 
             
              @extend .fa;
         | 
| 22 | 
            -
              @extend .fa- | 
| 193 | 
            +
              @extend .fa-warning;
         | 
| 23 194 | 
             
            }
         | 
| 24 195 |  | 
| 25 196 | 
             
            .icon-warning {
         | 
    
        package/site/styles/_legacy.scss
    CHANGED
    
    | @@ -159,13 +159,6 @@ s72-classification-label { | |
| 159 159 | 
             
              margin-right: 5px;
         | 
| 160 160 | 
             
            }
         | 
| 161 161 |  | 
| 162 | 
            -
            .meta-detail-content .meta-detail-tagline-and-classification .meta-item-tagline {
         | 
| 163 | 
            -
              align-self: center;
         | 
| 164 | 
            -
              color: rgba(var(--body-color-rgb), 0.8);
         | 
| 165 | 
            -
              font-weight: $font-weight-normal;
         | 
| 166 | 
            -
              margin-bottom: 0;
         | 
| 167 | 
            -
            }
         | 
| 168 | 
            -
             | 
| 169 162 | 
             
            .wishlist-page-landscape .s72-userwishlist-items {
         | 
| 170 163 | 
             
              @extend .d-flex;
         | 
| 171 164 | 
             
              flex-wrap: wrap;
         | 
| @@ -120,7 +120,9 @@ | |
| 120 120 | 
             
            .meta-detail-main {
         | 
| 121 121 | 
             
              @extend .d-flex;
         | 
| 122 122 | 
             
              flex-direction: column;
         | 
| 123 | 
            +
              gap: 0 20px;
         | 
| 123 124 | 
             
              padding: var(--page-detail-padding-top) 20px 0 20px;
         | 
| 125 | 
            +
             | 
| 124 126 | 
             
              @include media-breakpoint-up(md) {
         | 
| 125 127 | 
             
                flex-direction: row;
         | 
| 126 128 | 
             
                padding-bottom: 0;
         | 
| @@ -135,23 +137,39 @@ | |
| 135 137 | 
             
              .poster {
         | 
| 136 138 | 
             
                animation: fadein 2s;
         | 
| 137 139 | 
             
                display: block;
         | 
| 138 | 
            -
                width:  | 
| 140 | 
            +
                width: 110px;
         | 
| 141 | 
            +
             | 
| 142 | 
            +
                @include media-breakpoint-up(xs) {
         | 
| 143 | 
            +
                  width: 155px;
         | 
| 144 | 
            +
                }
         | 
| 145 | 
            +
             | 
| 139 146 | 
             
                @include media-breakpoint-up(md) {
         | 
| 140 | 
            -
                  width:  | 
| 147 | 
            +
                  width: 208px;
         | 
| 141 148 | 
             
                }
         | 
| 142 149 | 
             
              }
         | 
| 143 | 
            -
             | 
| 144 | 
            -
             | 
| 150 | 
            +
             | 
| 151 | 
            +
              .poster-wrapper .sponsor {
         | 
| 152 | 
            +
                @include media-breakpoint-up(xl) {
         | 
| 153 | 
            +
                  display: none;
         | 
| 154 | 
            +
                }
         | 
| 145 155 | 
             
              }
         | 
| 146 156 | 
             
            }
         | 
| 147 157 |  | 
| 148 | 
            -
             | 
| 158 | 
            +
            s72-element-switcher,
         | 
| 159 | 
            +
            .meta-detail-bonus-content,
         | 
| 160 | 
            +
            .meta-detail-episodes-content {
         | 
| 161 | 
            +
              flex: 1 1 100%;
         | 
| 162 | 
            +
             | 
| 149 163 | 
             
              @include media-breakpoint-up(md) {
         | 
| 150 | 
            -
                width: 563px;
         | 
| 164 | 
            +
                max-width: 563px;
         | 
| 151 165 | 
             
              }
         | 
| 152 166 | 
             
              @include media-breakpoint-up(xl) {
         | 
| 153 | 
            -
                width: 1100px;
         | 
| 167 | 
            +
                max-width: 1100px;
         | 
| 154 168 | 
             
              }
         | 
| 169 | 
            +
            }
         | 
| 170 | 
            +
             | 
| 171 | 
            +
            .meta-detail-content {
         | 
| 172 | 
            +
              width: 100%;
         | 
| 155 173 |  | 
| 156 174 | 
             
              h1 {
         | 
| 157 175 | 
             
                animation: fadein 2s;
         | 
| @@ -175,7 +193,7 @@ | |
| 175 193 | 
             
              }
         | 
| 176 194 |  | 
| 177 195 | 
             
              .meta-item-tagline {
         | 
| 178 | 
            -
                color: var(--body-color);
         | 
| 196 | 
            +
                color: rgba(var(--body-color-rgb), 0.8);
         | 
| 179 197 | 
             
                font-size: 14px;
         | 
| 180 198 | 
             
                font-weight: $font-weight-normal;
         | 
| 181 199 | 
             
                @include media-breakpoint-up(xxxl) {
         | 
| @@ -228,22 +246,6 @@ | |
| 228 246 | 
             
                /* stylelint-enable selector-max-compound-selectors */
         | 
| 229 247 | 
             
              }
         | 
| 230 248 |  | 
| 231 | 
            -
              s72-availability-label {
         | 
| 232 | 
            -
                position: relative;
         | 
| 233 | 
            -
             | 
| 234 | 
            -
                .availability-bg {
         | 
| 235 | 
            -
                  background: transparent;
         | 
| 236 | 
            -
                  display: inline-block;
         | 
| 237 | 
            -
                  padding: 10px 0;
         | 
| 238 | 
            -
                }
         | 
| 239 | 
            -
             | 
| 240 | 
            -
                .availability-state {
         | 
| 241 | 
            -
                  color: var(--body-color);
         | 
| 242 | 
            -
                  font-size: 12px;
         | 
| 243 | 
            -
                  text-transform: none;
         | 
| 244 | 
            -
                }
         | 
| 245 | 
            -
              }
         | 
| 246 | 
            -
             | 
| 247 249 | 
             
              .meta-detail-synopsis,
         | 
| 248 250 | 
             
              .meta-detail-switcher-tagline {
         | 
| 249 251 | 
             
                padding-top: 10px;
         | 
| @@ -286,8 +288,6 @@ | |
| 286 288 | 
             
              .meta-detail-studio,
         | 
| 287 289 | 
             
              .meta-detail-country,
         | 
| 288 290 | 
             
              .meta-detail-subtitle {
         | 
| 289 | 
            -
                padding-bottom: 20px;
         | 
| 290 | 
            -
             | 
| 291 291 | 
             
                h2,
         | 
| 292 292 | 
             
                h3,
         | 
| 293 293 | 
             
                h4 {
         | 
| @@ -319,25 +319,11 @@ | |
| 319 319 | 
             
                  font-size: 12px;
         | 
| 320 320 | 
             
                }
         | 
| 321 321 | 
             
              }
         | 
| 322 | 
            -
             | 
| 323 | 
            -
              .meta-detail-crew {
         | 
| 324 | 
            -
                flex-direction: row;
         | 
| 325 | 
            -
                flex-wrap: wrap;
         | 
| 326 | 
            -
                padding: 0;
         | 
| 327 | 
            -
             | 
| 328 | 
            -
                .crew-member {
         | 
| 329 | 
            -
                  padding-bottom: 20px;
         | 
| 330 | 
            -
                  padding-right: 20px;
         | 
| 331 | 
            -
                }
         | 
| 332 | 
            -
              }
         | 
| 333 322 | 
             
            }
         | 
| 334 323 |  | 
| 335 324 | 
             
            /* stylelint-disable selector-max-compound-selectors, max-nesting-depth */
         | 
| 336 325 | 
             
            .meta-detail-bonus-content,
         | 
| 337 326 | 
             
            .meta-detail-episodes-content {
         | 
| 338 | 
            -
              padding: 0;
         | 
| 339 | 
            -
              padding-top: 20px;
         | 
| 340 | 
            -
             | 
| 341 327 | 
             
              h2,
         | 
| 342 328 | 
             
              h4 {
         | 
| 343 329 | 
             
                align-self: stretch;
         | 
| @@ -600,3 +586,42 @@ | |
| 600 586 | 
             
                font-size: 12px;
         | 
| 601 587 | 
             
              }
         | 
| 602 588 | 
             
            }
         | 
| 589 | 
            +
             | 
| 590 | 
            +
            .element-switcher-wrapper {
         | 
| 591 | 
            +
              display: flex;
         | 
| 592 | 
            +
              gap: 50px;
         | 
| 593 | 
            +
              justify-content: space-between;
         | 
| 594 | 
            +
              width: 100%;
         | 
| 595 | 
            +
             | 
| 596 | 
            +
              .sponsor {
         | 
| 597 | 
            +
                display: none;
         | 
| 598 | 
            +
                padding-top: 10px;
         | 
| 599 | 
            +
                @include media-breakpoint-up(xl) {
         | 
| 600 | 
            +
                  display: block;
         | 
| 601 | 
            +
                }
         | 
| 602 | 
            +
              }
         | 
| 603 | 
            +
            }
         | 
| 604 | 
            +
             | 
| 605 | 
            +
            .sponsor {
         | 
| 606 | 
            +
              margin-bottom: 25px;
         | 
| 607 | 
            +
              max-width: 250px;
         | 
| 608 | 
            +
            }
         | 
| 609 | 
            +
             | 
| 610 | 
            +
            .meta-detail-content .sponsor {
         | 
| 611 | 
            +
              flex: 0 0 auto;
         | 
| 612 | 
            +
              text-align: right;
         | 
| 613 | 
            +
            }
         | 
| 614 | 
            +
             | 
| 615 | 
            +
            s72-element-switcher {
         | 
| 616 | 
            +
              margin-bottom: 50px;
         | 
| 617 | 
            +
            }
         | 
| 618 | 
            +
             | 
| 619 | 
            +
            .meta-detail-info {
         | 
| 620 | 
            +
              display: grid;
         | 
| 621 | 
            +
              gap: 20px;
         | 
| 622 | 
            +
              grid-template-columns: repeat(1, 1fr);
         | 
| 623 | 
            +
             | 
| 624 | 
            +
              @include media-breakpoint-up(lg) {
         | 
| 625 | 
            +
                grid-template-columns: repeat(2, 1fr);
         | 
| 626 | 
            +
              }
         | 
| 627 | 
            +
            }
         | 
    
        package/site/styles/_nav.scss
    CHANGED
    
    | @@ -165,7 +165,7 @@ | |
| 165 165 | 
             
            }
         | 
| 166 166 |  | 
| 167 167 | 
             
            .navbar-toggler {
         | 
| 168 | 
            -
              height:  | 
| 168 | 
            +
              height: 19px;
         | 
| 169 169 | 
             
              padding: 0;
         | 
| 170 170 | 
             
              position: relative;
         | 
| 171 171 | 
             
              width: 24px;
         | 
| @@ -383,7 +383,7 @@ | |
| 383 383 |  | 
| 384 384 | 
             
              .search-icon {
         | 
| 385 385 | 
             
                color: var(--body-color);
         | 
| 386 | 
            -
                font-size:  | 
| 386 | 
            +
                font-size: 24px;
         | 
| 387 387 | 
             
                left: 5px;
         | 
| 388 388 | 
             
                pointer-events: none;
         | 
| 389 389 | 
             
                position: absolute;
         | 
| @@ -397,7 +397,8 @@ | |
| 397 397 | 
             
                border: 0;
         | 
| 398 398 | 
             
                border-radius: 50%;
         | 
| 399 399 | 
             
                color: rgba(var(--body-color-rgb), 0.7);
         | 
| 400 | 
            -
                 | 
| 400 | 
            +
                font-size: 24px;
         | 
| 401 | 
            +
                line-height: 0;
         | 
| 401 402 | 
             
                opacity: 0;
         | 
| 402 403 | 
             
                pointer-events: none;
         | 
| 403 404 | 
             
                position: absolute;
         | 
| @@ -891,9 +892,9 @@ s72-dropdown, | |
| 891 892 | 
             
              display: flex;
         | 
| 892 893 | 
             
              justify-content: center;
         | 
| 893 894 | 
             
              min-height: 26px;
         | 
| 895 | 
            +
              padding: 8px 0;
         | 
| 894 896 | 
             
              text-align: center;
         | 
| 895 897 | 
             
              z-index: 10;
         | 
| 896 | 
            -
             | 
| 897 898 | 
             
              .header-banner-message {
         | 
| 898 899 | 
             
                font-size: 12px;
         | 
| 899 900 | 
             
                margin-bottom: 0;
         | 
    
        package/site/styles/_plans.scss
    CHANGED
    
    | @@ -32,21 +32,13 @@ s72-plan-label { | |
| 32 32 | 
             
                      }
         | 
| 33 33 | 
             
                    }
         | 
| 34 34 |  | 
| 35 | 
            -
                     | 
| 36 | 
            -
                       | 
| 37 | 
            -
             | 
| 38 | 
            -
                        @extend .mx-auto;
         | 
| 39 | 
            -
                        left: 5px !important;
         | 
| 40 | 
            -
                        top: 5px;
         | 
| 35 | 
            +
                    s72-plan-label {
         | 
| 36 | 
            +
                      @extend .position-absolute;
         | 
| 37 | 
            +
                      @extend .mx-auto;
         | 
| 41 38 |  | 
| 42 | 
            -
             | 
| 43 | 
            -
             | 
| 44 | 
            -
             | 
| 45 | 
            -
                          @extend .availability-bg;
         | 
| 46 | 
            -
             | 
| 47 | 
            -
                          background-color: $button-background;
         | 
| 48 | 
            -
                        }
         | 
| 49 | 
            -
                      }
         | 
| 39 | 
            +
                      left: 0;
         | 
| 40 | 
            +
                      top: 0;
         | 
| 41 | 
            +
                      z-index: 99;
         | 
| 50 42 | 
             
                    }
         | 
| 51 43 |  | 
| 52 44 | 
             
                    s72-pricing-buttons:not(.s72-show) {
         | 
| @@ -55,10 +47,11 @@ s72-plan-label { | |
| 55 47 |  | 
| 56 48 | 
             
                    .plan-caption-details .s72-plan-owned {
         | 
| 57 49 | 
             
                      @extend .d-inline-block;
         | 
| 58 | 
            -
                      @extend .availability-bg;
         | 
| 59 | 
            -
                      @extend .mb-p5;
         | 
| 60 50 |  | 
| 61 | 
            -
                      background-color:  | 
| 51 | 
            +
                      background-color: var(--primary);
         | 
| 52 | 
            +
                      border-radius: $border-radius 0 $border-radius 0;
         | 
| 53 | 
            +
                      line-height: 20px;
         | 
| 54 | 
            +
                      padding: 0 5px;
         | 
| 62 55 | 
             
                    }
         | 
| 63 56 |  | 
| 64 57 | 
             
                    s72-user-anon a {
         | 
    
        package/site/styles/_poster.scss
    CHANGED
    
    | @@ -6,14 +6,9 @@ | |
| 6 6 | 
             
              width: 100%;
         | 
| 7 7 | 
             
              z-index: 1;
         | 
| 8 8 |  | 
| 9 | 
            -
              s72-availability-status | 
| 10 | 
            -
             | 
| 11 | 
            -
                 | 
| 12 | 
            -
              }
         | 
| 13 | 
            -
             | 
| 14 | 
            -
              s72-availability-label {
         | 
| 15 | 
            -
                bottom: $meta-item-availability-tag-margin;
         | 
| 16 | 
            -
                left: $meta-item-availability-tag-margin;
         | 
| 9 | 
            +
              s72-availability-status,
         | 
| 10 | 
            +
              s72-plan-label {
         | 
| 11 | 
            +
                color: $button-text-color;
         | 
| 17 12 | 
             
              }
         | 
| 18 13 |  | 
| 19 14 | 
             
              .poster-overlay-top {
         | 
| @@ -21,7 +16,6 @@ | |
| 21 16 | 
             
                @extend .justify-content-between;
         | 
| 22 17 | 
             
                @extend .position-absolute;
         | 
| 23 18 |  | 
| 24 | 
            -
                @extend .p-p5;
         | 
| 25 19 | 
             
                @extend .mw-100;
         | 
| 26 20 | 
             
                width: 100%;
         | 
| 27 21 |  | 
| @@ -0,0 +1,86 @@ | |
| 1 | 
            +
            s72-share-modal .fa-share-alt {
         | 
| 2 | 
            +
              font-size: 20px;
         | 
| 3 | 
            +
            }
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            .s72-share-modal {
         | 
| 6 | 
            +
              .s72-modal-dialog {
         | 
| 7 | 
            +
                @extend .p-0;
         | 
| 8 | 
            +
                max-width: 320px;
         | 
| 9 | 
            +
                top: 50%;
         | 
| 10 | 
            +
                transform: translateY(-50%);
         | 
| 11 | 
            +
             | 
| 12 | 
            +
                @include media-breakpoint-up(sm) {
         | 
| 13 | 
            +
                  top: 90px;
         | 
| 14 | 
            +
                  transform: none;
         | 
| 15 | 
            +
                }
         | 
| 16 | 
            +
                .s72-modal-content {
         | 
| 17 | 
            +
                  @extend .p-0;
         | 
| 18 | 
            +
                }
         | 
| 19 | 
            +
              }
         | 
| 20 | 
            +
             | 
| 21 | 
            +
              .modal-header {
         | 
| 22 | 
            +
                border-bottom: 1px solid rgba(var(--body-color-rgb), 0.2);
         | 
| 23 | 
            +
              }
         | 
| 24 | 
            +
             | 
| 25 | 
            +
              .modal-title {
         | 
| 26 | 
            +
                color: var(--body-color);
         | 
| 27 | 
            +
                word-break: break-word;
         | 
| 28 | 
            +
              }
         | 
| 29 | 
            +
             | 
| 30 | 
            +
              .s72-modal-content {
         | 
| 31 | 
            +
                background: none;
         | 
| 32 | 
            +
              }
         | 
| 33 | 
            +
             | 
| 34 | 
            +
              .modal-content {
         | 
| 35 | 
            +
                background-color: var(--body-bg);
         | 
| 36 | 
            +
                border: 0;
         | 
| 37 | 
            +
              }
         | 
| 38 | 
            +
             | 
| 39 | 
            +
              ul {
         | 
| 40 | 
            +
                @extend .mb-0;
         | 
| 41 | 
            +
              }
         | 
| 42 | 
            +
             | 
| 43 | 
            +
              li {
         | 
| 44 | 
            +
                @extend .list-unstyled;
         | 
| 45 | 
            +
                @extend .position-relative;
         | 
| 46 | 
            +
                i {
         | 
| 47 | 
            +
                  @extend .position-absolute;
         | 
| 48 | 
            +
                  font-size: 20px;
         | 
| 49 | 
            +
                  left: -30px;
         | 
| 50 | 
            +
                }
         | 
| 51 | 
            +
              }
         | 
| 52 | 
            +
             | 
| 53 | 
            +
              a {
         | 
| 54 | 
            +
                @extend .d-flex;
         | 
| 55 | 
            +
                @extend .align-items-center;
         | 
| 56 | 
            +
                color: var(--body-color);
         | 
| 57 | 
            +
                padding: 0.7rem 0;
         | 
| 58 | 
            +
                text-decoration: inherit;
         | 
| 59 | 
            +
                word-break: break-word;
         | 
| 60 | 
            +
             | 
| 61 | 
            +
                &:hover {
         | 
| 62 | 
            +
                  color: var(--link-color-hover);
         | 
| 63 | 
            +
                }
         | 
| 64 | 
            +
              }
         | 
| 65 | 
            +
             | 
| 66 | 
            +
              [type='button'] {
         | 
| 67 | 
            +
                // for testers on their ipod touch
         | 
| 68 | 
            +
                appearance: none;
         | 
| 69 | 
            +
              }
         | 
| 70 | 
            +
             | 
| 71 | 
            +
              .close {
         | 
| 72 | 
            +
                align-self: center;
         | 
| 73 | 
            +
                color: var(--body-color);
         | 
| 74 | 
            +
                opacity: 1;
         | 
| 75 | 
            +
                text-shadow: none;
         | 
| 76 | 
            +
             | 
| 77 | 
            +
                &:hover {
         | 
| 78 | 
            +
                  opacity: 0.8;
         | 
| 79 | 
            +
                }
         | 
| 80 | 
            +
              }
         | 
| 81 | 
            +
            }
         | 
| 82 | 
            +
             | 
| 83 | 
            +
            // Close gap if wishlist button isn't present
         | 
| 84 | 
            +
            s72-userwishlist-button:empty + .social-media-buttons {
         | 
| 85 | 
            +
              margin-left: -10px;
         | 
| 86 | 
            +
            }
         | 
| @@ -9,10 +9,17 @@ | |
| 9 9 | 
             
              .s72-icon {
         | 
| 10 10 | 
             
                margin-left: 0.3em;
         | 
| 11 11 | 
             
              }
         | 
| 12 | 
            +
             | 
| 13 | 
            +
              &:focus:not(:focus-visible) {
         | 
| 14 | 
            +
                box-shadow: none;
         | 
| 15 | 
            +
              }
         | 
| 12 16 | 
             
            }
         | 
| 13 17 |  | 
| 18 | 
            +
            // exists once in <s72-searchresults/>
         | 
| 14 19 | 
             
            .s72-btn-search {
         | 
| 15 20 | 
             
              @extend .btn-primary-override;
         | 
| 21 | 
            +
              font-size: 24px;
         | 
| 22 | 
            +
              line-height: 0;
         | 
| 16 23 | 
             
            }
         | 
| 17 24 |  | 
| 18 25 | 
             
            .s72-btn-purchase {
         | 
| @@ -1,11 +1,11 @@ | |
| 1 | 
            -
            @use  | 
| 1 | 
            +
            @use 'sass:math';
         | 
| 2 2 |  | 
| 3 3 | 
             
            // This file contains any variables used by the site.
         | 
| 4 4 | 
             
            // These variables should be reasonably generic so that overrides are placed in main.scss.
         | 
| 5 5 |  | 
| 6 6 | 
             
            :root {
         | 
| 7 | 
            -
              --primary-rgb:  | 
| 8 | 
            -
              --secondary-rgb:  | 
| 7 | 
            +
              --primary-rgb: 0, 163, 255;
         | 
| 8 | 
            +
              --secondary-rgb: 102, 199, 255;
         | 
| 9 9 | 
             
              --body-color-rgb: 255, 255, 255;
         | 
| 10 10 | 
             
              --body-bg-rgb: 15, 15, 15;
         | 
| 11 11 | 
             
              --body-bg-accent-rgb: 25, 25, 25; // darken(body-bg, 10%) OR lighten(body-bg, 10%)
         | 
| @@ -98,6 +98,8 @@ $spacers: ( | |
| 98 98 | 
             
              // 7.5px
         | 
| 99 99 | 
             
              '1': $spacer,
         | 
| 100 100 | 
             
              // 10px
         | 
| 101 | 
            +
              '1p5': $spacer * 1.5,
         | 
| 102 | 
            +
              // 15px
         | 
| 101 103 | 
             
              '2': $spacer * 2,
         | 
| 102 104 | 
             
              // 20px
         | 
| 103 105 | 
             
              '2p5': $spacer * 2.5,
         | 
| @@ -108,7 +110,7 @@ $spacers: ( | |
| 108 110 | 
             
              // 40px
         | 
| 109 111 | 
             
              '5': $spacer * 5,
         | 
| 110 112 | 
             
              // 50px
         | 
| 111 | 
            -
              '1rem': 1rem
         | 
| 113 | 
            +
              '1rem': 1rem,
         | 
| 112 114 | 
             
            );
         | 
| 113 115 |  | 
| 114 116 | 
             
            // Cookie Consent
         | 
| @@ -137,8 +139,8 @@ $subnav-nav-item-active-background-color: var(--primary) !default; | |
| 137 139 | 
             
            $subnav-dropdown-background: var(--body-bg-accent) !default;
         | 
| 138 140 |  | 
| 139 141 | 
             
            // Buttons
         | 
| 140 | 
            -
            $button-text-color: var(--body- | 
| 141 | 
            -
            $button-text-color-hover: var(--body- | 
| 142 | 
            +
            $button-text-color: var(--body-bg) !default;
         | 
| 143 | 
            +
            $button-text-color-hover: var(--body-bg) !default;
         | 
| 142 144 | 
             
            $button-background: var(--primary) !default;
         | 
| 143 145 | 
             
            $button-background-hover: var(--secondary) !default;
         | 
| 144 146 | 
             
            $trailer-button-text-color: var(--body-color) !default;
         | 
| @@ -190,11 +192,10 @@ $letterboxd-color: var(--body-color) !default; | |
| 190 192 |  | 
| 191 193 | 
             
            // Meta Items
         | 
| 192 194 | 
             
            // ------------------------------------
         | 
| 193 | 
            -
            $meta-item-border-radius:  | 
| 195 | 
            +
            $meta-item-border-radius: 4px !default;
         | 
| 194 196 | 
             
            $featured-meta-item-body-padding: 10px !default;
         | 
| 195 197 | 
             
            $meta-item-body-color: var(--body-color) !default;
         | 
| 196 198 | 
             
            $meta-item-tagline-classification-border-radius: $meta-item-border-radius !default;
         | 
| 197 | 
            -
            $meta-item-availability-tag-margin: 5px !default;
         | 
| 198 199 |  | 
| 199 200 | 
             
            // Posters
         | 
| 200 201 | 
             
            // ------------------------------------
         | 
    
        package/site/styles/main.scss
    CHANGED
    
    | @@ -4,7 +4,6 @@ | |
| 4 4 | 
             
            @import '_mixins';
         | 
| 5 5 | 
             
            @import '_globals';
         | 
| 6 6 | 
             
            @import '_shift72';
         | 
| 7 | 
            -
            @import 'font-awesome/scss/font-awesome';
         | 
| 8 7 |  | 
| 9 8 | 
             
            @import '_icons';
         | 
| 10 9 | 
             
            @import '_buttons';
         | 
| @@ -37,7 +36,7 @@ | |
| 37 36 | 
             
            @import '_devices';
         | 
| 38 37 | 
             
            @import '_gradients';
         | 
| 39 38 |  | 
| 40 | 
            -
            @import ' | 
| 39 | 
            +
            @import '_share-modal';
         | 
| 41 40 | 
             
            @import '_cookie-consent';
         | 
| 42 41 | 
             
            @import '_pin-codes';
         | 
| 43 42 | 
             
            @import '_language-selector';
         | 
| @@ -47,6 +46,8 @@ | |
| 47 46 |  | 
| 48 47 | 
             
            @import '_awards';
         | 
| 49 48 |  | 
| 49 | 
            +
            @import '_tooltips';
         | 
| 50 | 
            +
             | 
| 50 51 | 
             
            @import '_legacy';
         | 
| 51 52 |  | 
| 52 53 | 
             
            // @import local must be last in this file.
         |