fortitude-sass 0.7.7 → 0.7.8
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/app/assets/stylesheets/fortitude/api/components/_badge.scss +2 -2
- data/app/assets/stylesheets/fortitude/api/components/_box.scss +4 -1
- data/app/assets/stylesheets/fortitude/api/components/_button.scss +3 -3
- data/app/assets/stylesheets/fortitude/api/components/_flashbar.scss +4 -1
- data/app/assets/stylesheets/fortitude/api/components/_input.scss +7 -7
- data/app/assets/stylesheets/fortitude/api/components/_tooltip.scss +4 -2
- data/app/assets/stylesheets/fortitude/utilities/_responsive-line-height.scss +1 -1
- data/app/assets/stylesheets/fortitude.scss +0 -2
- data/bower.json +1 -1
- data/lib/fortitude-sass/version.rb +1 -1
- metadata +2 -4
- data/app/assets/stylesheets/fortitude/api/components/_ui-list.scss +0 -45
- data/app/assets/stylesheets/fortitude/components/_ui-list.scss +0 -31
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 6281d76f55854859b24019ed9a7b26f252849d14
         | 
| 4 | 
            +
              data.tar.gz: 828bf9d7f599d64b04eb93c9641a00d789239016
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 53ae4254b2e8ace29d090febf496e8c92fdf022eef2e7c038109be18219b61d79b0aab046b395d6baae97e0865d15b74d87b6b17dce9d1c7ddcb4bbfb41d74c0
         | 
| 7 | 
            +
              data.tar.gz: 83871a3753028707d65d896fe73a50cdb4444a8eff306fee1d73662b0325f3de1bc099621a8601b8d8fae7ea718bf8e393b9b15b2a37320c50f88c32c3bf6e4e
         | 
    
        data/Gemfile.lock
    CHANGED
    
    
| @@ -7,7 +7,7 @@ $fortitude-badge-border-style: solid !default; | |
| 7 7 | 
             
            $fortitude-badge-border-width: 0 !default;
         | 
| 8 8 | 
             
            $fortitude-badge-font-size: $fortitude-base-font-size !default;
         | 
| 9 9 |  | 
| 10 | 
            -
            $fortitude-badge-height--default:  | 
| 10 | 
            +
            $fortitude-badge-height--default: 2rem !default;
         | 
| 11 11 | 
             
            $fortitude-badge-horizontal-padding--default: 1rem !default;
         | 
| 12 12 |  | 
| 13 13 | 
             
            $fortitude-badge-height--small: 2rem !default;
         | 
| @@ -28,7 +28,7 @@ $fortitude-enable-badge--pill: false !default; | |
| 28 28 | 
             
              background-color: transparent;
         | 
| 29 29 | 
             
              border-color: transparent;
         | 
| 30 30 | 
             
              border-style: $fortitude-badge-border-style;
         | 
| 31 | 
            -
              border-width: $fortitude-badge-border-width;
         | 
| 31 | 
            +
              border-width: fortitude-rem-to-px($fortitude-badge-border-width);
         | 
| 32 32 | 
             
              display: inline-block;
         | 
| 33 33 | 
             
              font-size: $fortitude-badge-font-size;
         | 
| 34 34 | 
             
              font: inherit;
         | 
| @@ -11,8 +11,11 @@ $fortitude-box-border-radius--rounded: 0.2rem !default; | |
| 11 11 | 
             
              $is-rounded: fortitude-contains($extensions, rounded);
         | 
| 12 12 |  | 
| 13 13 | 
             
              @include fortitude-clearfix;
         | 
| 14 | 
            +
             | 
| 15 | 
            +
              border-color: transparent;
         | 
| 16 | 
            +
              border-style: $fortitude-box-border-style;
         | 
| 17 | 
            +
              border-width: fortitude-rem-to-px($fortitude-box-border-width);
         | 
| 14 18 | 
             
              display: block;
         | 
| 15 | 
            -
              border: $fortitude-box-border-width $fortitude-box-border-style transparent;
         | 
| 16 19 |  | 
| 17 20 | 
             
              @if $is-rounded {
         | 
| 18 21 | 
             
                @include fortitude-box--rounded;
         | 
| @@ -4,7 +4,7 @@ | |
| 4 4 |  | 
| 5 5 | 
             
            $fortitude-button-border-radius: 0.2rem !default;
         | 
| 6 6 | 
             
            $fortitude-button-border-style: solid !default;
         | 
| 7 | 
            -
            $fortitude-button-border-width: 0 !default;
         | 
| 7 | 
            +
            $fortitude-button-border-width: 0.1rem !default;
         | 
| 8 8 |  | 
| 9 9 | 
             
            $fortitude-button-height--default: 3.6rem !default;
         | 
| 10 10 | 
             
            $fortitude-button-horizontal-padding--default: 2rem !default;
         | 
| @@ -12,7 +12,7 @@ $fortitude-button-horizontal-padding--default: 2rem !default; | |
| 12 12 | 
             
            $fortitude-button-height--small: 3rem !default;
         | 
| 13 13 | 
             
            $fortitude-button-horizontal-padding--small: 1rem !default;
         | 
| 14 14 |  | 
| 15 | 
            -
            $fortitude-button-height--large:  | 
| 15 | 
            +
            $fortitude-button-height--large: 5rem !default;
         | 
| 16 16 | 
             
            $fortitude-button-horizontal-padding--large: 3rem !default;
         | 
| 17 17 |  | 
| 18 18 | 
             
            $fortitude-enable-button--small: false !default;
         | 
| @@ -30,7 +30,7 @@ $fortitude-global-border-box: false !default; | |
| 30 30 |  | 
| 31 31 | 
             
              background-color: transparent;
         | 
| 32 32 | 
             
              border-style: $fortitude-button-border-style;
         | 
| 33 | 
            -
              border-width: $fortitude-button-border-width;
         | 
| 33 | 
            +
              border-width: fortitude-rem-to-px($fortitude-button-border-width);
         | 
| 34 34 | 
             
              border-color: transparent;
         | 
| 35 35 | 
             
              display: inline-block;
         | 
| 36 36 | 
             
              vertical-align: middle;
         | 
| @@ -12,7 +12,10 @@ $fortitude-flashbar__close-text-decoration: none !default; | |
| 12 12 |  | 
| 13 13 | 
             
            @mixin fortitude-flashbar($extensions: ()) {
         | 
| 14 14 | 
             
              @include fortitude-clearfix;
         | 
| 15 | 
            -
             | 
| 15 | 
            +
             | 
| 16 | 
            +
              border-color: transparent;
         | 
| 17 | 
            +
              border-style: $fortitude-flashbar-border-style;
         | 
| 18 | 
            +
              border-width: fortitude-rem-to-px($fortitude-flashbar-border-width);
         | 
| 16 19 | 
             
              position: relative;
         | 
| 17 20 | 
             
            }
         | 
| 18 21 |  | 
| @@ -82,7 +82,7 @@ $fortitude-global-border-box: false !default; | |
| 82 82 |  | 
| 83 83 | 
             
              border-color: transparent;
         | 
| 84 84 | 
             
              border-style: $fortitude-text-input-border-style;
         | 
| 85 | 
            -
              border-width: if($fortitude-text-input-border-width != 0, $fortitude-text-input-border-width, 0);
         | 
| 85 | 
            +
              border-width: if($fortitude-text-input-border-width != 0, fortitude-rem-to-px($fortitude-text-input-border-width), 0);
         | 
| 86 86 | 
             
              height: $fortitude-text-input-height;
         | 
| 87 87 | 
             
              margin: fortitude-block-margin($fortitude-text-input-height, $fortitude-text-input-border-width, $fortitude-base-line-height) 0;
         | 
| 88 88 | 
             
              padding: fortitude-block-padding($fortitude-text-input-height, $fortitude-text-input-border-width, $fortitude-base-line-height) ($fortitude-text-input-horizontal-padding - $fortitude-text-input-border-width);
         | 
| @@ -106,7 +106,7 @@ $fortitude-global-border-box: false !default; | |
| 106 106 |  | 
| 107 107 | 
             
              border-color: transparent;
         | 
| 108 108 | 
             
              border-style: $fortitude-textarea-input-border-style;
         | 
| 109 | 
            -
              border-width: if($fortitude-textarea-input-border-width != 0, $fortitude-textarea-input-border-width, 0);
         | 
| 109 | 
            +
              border-width: if($fortitude-textarea-input-border-width != 0, fortitude-rem-to-px($fortitude-textarea-input-border-width), 0);
         | 
| 110 110 | 
             
              margin: fortitude-block-margin($fortitude-textarea-input-height, $fortitude-textarea-input-border-width, $fortitude-base-line-height) 0;
         | 
| 111 111 | 
             
              min-height: $fortitude-textarea-input-min-height;
         | 
| 112 112 | 
             
              padding: fortitude-block-padding($fortitude-textarea-input-height, $fortitude-textarea-input-border-width, $fortitude-base-line-height)  ($fortitude-textarea-input-horizontal-padding - $fortitude-textarea-input-border-width);
         | 
| @@ -130,7 +130,7 @@ $fortitude-global-border-box: false !default; | |
| 130 130 |  | 
| 131 131 | 
             
              border-color: transparent;
         | 
| 132 132 | 
             
              border-style: $fortitude-select-input-border-style;
         | 
| 133 | 
            -
              border-width: if($fortitude-select-input-border-width != 0, $fortitude-select-input-border-width, 0);
         | 
| 133 | 
            +
              border-width: if($fortitude-select-input-border-width != 0, fortitude-rem-to-px($fortitude-select-input-border-width), 0);
         | 
| 134 134 | 
             
              height: $fortitude-select-input-height;
         | 
| 135 135 | 
             
              margin: fortitude-block-margin($fortitude-select-input-height, $fortitude-select-input-border-width, $fortitude-base-line-height) 0;
         | 
| 136 136 | 
             
              padding: fortitude-block-padding($fortitude-select-input-height, $fortitude-select-input-border-width, $fortitude-base-line-height)  ($fortitude-select-input-horizontal-padding - $fortitude-select-input-border-width);
         | 
| @@ -157,7 +157,7 @@ $fortitude-global-border-box: false !default; | |
| 157 157 |  | 
| 158 158 | 
             
              border-color: transparent;
         | 
| 159 159 | 
             
              border-style: $fortitude-checkbox-input-border-style;
         | 
| 160 | 
            -
              border-width: if($fortitude-checkbox-input-border-width != 0, $fortitude-checkbox-input-border-width, 0);
         | 
| 160 | 
            +
              border-width: if($fortitude-checkbox-input-border-width != 0, fortitude-rem-to-px($fortitude-checkbox-input-border-width), 0);
         | 
| 161 161 | 
             
              height: $fortitude-checkbox-input-size;
         | 
| 162 162 | 
             
              margin: fortitude-block-margin($fortitude-checkbox-input-size + 0.2rem, $fortitude-checkbox-input-border-width, $fortitude-base-line-height) 0;
         | 
| 163 163 | 
             
              padding: fortitude-block-padding($fortitude-checkbox-input-size, $fortitude-checkbox-input-border-width, $fortitude-base-line-height);
         | 
| @@ -177,7 +177,7 @@ $fortitude-global-border-box: false !default; | |
| 177 177 |  | 
| 178 178 | 
             
              border-color: transparent;
         | 
| 179 179 | 
             
              border-style: $fortitude-radio-input-border-style;
         | 
| 180 | 
            -
              border-width: if($fortitude-radio-input-border-width != 0, $fortitude-radio-input-border-width, 0);
         | 
| 180 | 
            +
              border-width: if($fortitude-radio-input-border-width != 0, fortitude-rem-to-px($fortitude-radio-input-border-width), 0);
         | 
| 181 181 | 
             
              height: $fortitude-radio-input-size;
         | 
| 182 182 | 
             
              margin: fortitude-block-margin($fortitude-radio-input-size + 0.4rem, $fortitude-radio-input-border-width, $fortitude-base-line-height) 0;
         | 
| 183 183 | 
             
              padding: fortitude-block-padding($fortitude-radio-input-size, $fortitude-radio-input-border-width, $fortitude-base-line-height);
         | 
| @@ -198,7 +198,7 @@ $fortitude-global-border-box: false !default; | |
| 198 198 |  | 
| 199 199 | 
             
              border-color: transparent;
         | 
| 200 200 | 
             
              border-style: $fortitude-range-input-border-style;
         | 
| 201 | 
            -
              border-width: if($fortitude-range-input-border-width != 0, $fortitude-range-input-border-width, 0);
         | 
| 201 | 
            +
              border-width: if($fortitude-range-input-border-width != 0, fortitude-rem-to-px($fortitude-range-input-border-width), 0);
         | 
| 202 202 | 
             
              height: $fortitude-range-input-height;
         | 
| 203 203 | 
             
              margin: fortitude-block-margin($fortitude-range-input-height, $fortitude-range-input-border-width, $fortitude-base-line-height) 0;
         | 
| 204 204 | 
             
              padding: fortitude-block-padding($fortitude-range-input-height, $fortitude-range-input-border-width, $fortitude-base-line-height)  ($fortitude-range-input-horizontal-padding - $fortitude-range-input-border-width);
         | 
| @@ -222,7 +222,7 @@ $fortitude-global-border-box: false !default; | |
| 222 222 |  | 
| 223 223 | 
             
              border-color: transparent;
         | 
| 224 224 | 
             
              border-style: $fortitude-color-input-border-style;
         | 
| 225 | 
            -
              border-width: if($fortitude-color-input-border-width != 0, $fortitude-color-input-border-width, 0);
         | 
| 225 | 
            +
              border-width: if($fortitude-color-input-border-width != 0, fortitude-rem-to-px($fortitude-color-input-border-width), 0);
         | 
| 226 226 | 
             
              height: $fortitude-color-input-height;
         | 
| 227 227 | 
             
              margin: fortitude-block-margin($fortitude-color-input-height, $fortitude-color-input-border-width, $fortitude-base-line-height) 0;
         | 
| 228 228 | 
             
              padding: fortitude-block-padding($fortitude-color-input-height, $fortitude-color-input-border-width, $fortitude-base-line-height) ($fortitude-color-input-horizontal-padding - $fortitude-color-input-border-width);
         | 
| @@ -40,10 +40,12 @@ $fortitude-tooltip-min-height: $fortitude-tooltip-line-height + $fortitude-toolt | |
| 40 40 | 
             
              }
         | 
| 41 41 |  | 
| 42 42 | 
             
              &::before {
         | 
| 43 | 
            -
                z-index: 1001;
         | 
| 44 | 
            -
                border: $fortitude-tooltip-arrow-size solid transparent;
         | 
| 45 43 | 
             
                background: transparent;
         | 
| 44 | 
            +
                border-color: transparent;
         | 
| 45 | 
            +
                border-style: solid;
         | 
| 46 | 
            +
                border-width: fortitude-rem-to-px($fortitude-tooltip-arrow-size);
         | 
| 46 47 | 
             
                content: "";
         | 
| 48 | 
            +
                z-index: 1001;
         | 
| 47 49 | 
             
              }
         | 
| 48 50 |  | 
| 49 51 | 
             
              &::after {
         | 
| @@ -24,7 +24,6 @@ | |
| 24 24 | 
             
            @import "fortitude/api/components/tabs-navigation";
         | 
| 25 25 | 
             
            @import "fortitude/api/components/text";
         | 
| 26 26 | 
             
            @import "fortitude/api/components/tooltip";
         | 
| 27 | 
            -
            @import "fortitude/api/components/ui-list";
         | 
| 28 27 | 
             
            @import "fortitude/api/components/wings";
         | 
| 29 28 | 
             
            @import "fortitude/generic/box-sizing";
         | 
| 30 29 | 
             
            @import "fortitude/generic/clearfix";
         | 
| @@ -57,7 +56,6 @@ | |
| 57 56 | 
             
            @import "fortitude/components/tabs-navigation";
         | 
| 58 57 | 
             
            @import "fortitude/components/text";
         | 
| 59 58 | 
             
            @import "fortitude/components/tooltip";
         | 
| 60 | 
            -
            @import "fortitude/components/ui-list";
         | 
| 61 59 | 
             
            @import "fortitude/components/wings";
         | 
| 62 60 | 
             
            @import "fortitude/utilities/responsive-border";
         | 
| 63 61 | 
             
            @import "fortitude/utilities/responsive-column";
         | 
    
        data/bower.json
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: fortitude-sass
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.7. | 
| 4 | 
            +
              version: 0.7.8
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Aaron Reisman
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2015-10- | 
| 11 | 
            +
            date: 2015-10-05 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: sass
         | 
| @@ -144,7 +144,6 @@ files: | |
| 144 144 | 
             
            - app/assets/stylesheets/fortitude/api/components/_tabs.scss
         | 
| 145 145 | 
             
            - app/assets/stylesheets/fortitude/api/components/_text.scss
         | 
| 146 146 | 
             
            - app/assets/stylesheets/fortitude/api/components/_tooltip.scss
         | 
| 147 | 
            -
            - app/assets/stylesheets/fortitude/api/components/_ui-list.scss
         | 
| 148 147 | 
             
            - app/assets/stylesheets/fortitude/api/components/_wings.scss
         | 
| 149 148 | 
             
            - app/assets/stylesheets/fortitude/base/_hr.scss
         | 
| 150 149 | 
             
            - app/assets/stylesheets/fortitude/base/_images.scss
         | 
| @@ -174,7 +173,6 @@ files: | |
| 174 173 | 
             
            - app/assets/stylesheets/fortitude/components/_tabs.scss
         | 
| 175 174 | 
             
            - app/assets/stylesheets/fortitude/components/_text.scss
         | 
| 176 175 | 
             
            - app/assets/stylesheets/fortitude/components/_tooltip.scss
         | 
| 177 | 
            -
            - app/assets/stylesheets/fortitude/components/_ui-list.scss
         | 
| 178 176 | 
             
            - app/assets/stylesheets/fortitude/components/_wings.scss
         | 
| 179 177 | 
             
            - app/assets/stylesheets/fortitude/generic/_box-sizing.scss
         | 
| 180 178 | 
             
            - app/assets/stylesheets/fortitude/generic/_clearfix.scss
         | 
| @@ -1,45 +0,0 @@ | |
| 1 | 
            -
            /*------------------------------------*\
         | 
| 2 | 
            -
                #UI-LIST
         | 
| 3 | 
            -
            \*------------------------------------*/
         | 
| 4 | 
            -
             | 
| 5 | 
            -
            $fortitude-ui-list-padding--default: $fortitude-base-spacing-unit !default;
         | 
| 6 | 
            -
            $fortitude-ui-list-padding--small: fortitude-halve($fortitude-ui-list-padding--default) !default;
         | 
| 7 | 
            -
            $fortitude-ui-list-padding--large: fortitude-double($fortitude-ui-list-padding--default) !default;
         | 
| 8 | 
            -
            $fortitude-ui-list-border-width: 0.1rem !default;
         | 
| 9 | 
            -
            $fortitude-ui-list-border-style: solid !default;
         | 
| 10 | 
            -
            $fortitude-ui-list-border-color: #ccc !default;
         | 
| 11 | 
            -
             | 
| 12 | 
            -
            $fortitude-enable-ui-list--small: false !default;
         | 
| 13 | 
            -
            $fortitude-enable-ui-list--large: false !default;
         | 
| 14 | 
            -
             | 
| 15 | 
            -
            @mixin fortitude-ui-list($extensions: ()) {
         | 
| 16 | 
            -
              border: 0 $fortitude-ui-list-border-style $fortitude-ui-list-border-color;
         | 
| 17 | 
            -
              margin: 0;
         | 
| 18 | 
            -
              padding: 0;
         | 
| 19 | 
            -
              list-style: none;
         | 
| 20 | 
            -
              border-top-width: $fortitude-ui-list-border-width;
         | 
| 21 | 
            -
            }
         | 
| 22 | 
            -
             | 
| 23 | 
            -
            @mixin fortitude-ui-list__item($extensions: ()) {
         | 
| 24 | 
            -
              $is-small: fortitude-contains($extensions, small);
         | 
| 25 | 
            -
              $is-large: fortitude-contains($extensions, large);
         | 
| 26 | 
            -
             | 
| 27 | 
            -
              border: 0 $fortitude-ui-list-border-style $fortitude-ui-list-border-color;
         | 
| 28 | 
            -
              border-bottom-width: $fortitude-ui-list-border-width;
         | 
| 29 | 
            -
             | 
| 30 | 
            -
              @if $is-small {
         | 
| 31 | 
            -
                @include fortitude-ui-list__item--small;
         | 
| 32 | 
            -
              } @else if $is-large {
         | 
| 33 | 
            -
                @include fortitude-ui-list__item--small;
         | 
| 34 | 
            -
              } @else {
         | 
| 35 | 
            -
                padding: $fortitude-ui-list-padding--default;
         | 
| 36 | 
            -
              }
         | 
| 37 | 
            -
            }
         | 
| 38 | 
            -
             | 
| 39 | 
            -
            @mixin fortitude-ui-list__item--small {
         | 
| 40 | 
            -
              padding: $fortitude-ui-list-padding--small;
         | 
| 41 | 
            -
            }
         | 
| 42 | 
            -
             | 
| 43 | 
            -
            @mixin fortitude-ui-list__item--large {
         | 
| 44 | 
            -
              padding: $fortitude-ui-list-padding--large;
         | 
| 45 | 
            -
            }
         | 
| @@ -1,31 +0,0 @@ | |
| 1 | 
            -
            $fortitude-enable-ui-list: true;
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            .#{$fortitude-namespace}ui-list {
         | 
| 4 | 
            -
              @include fortitude-ui-list;
         | 
| 5 | 
            -
            }
         | 
| 6 | 
            -
             | 
| 7 | 
            -
            .#{$fortitude-namespace}ui-list__item {
         | 
| 8 | 
            -
              @include fortitude-ui-list__item;
         | 
| 9 | 
            -
            }
         | 
| 10 | 
            -
             | 
| 11 | 
            -
            @if $fortitude-enable-ui-list--small == true {
         | 
| 12 | 
            -
              /**
         | 
| 13 | 
            -
               * Small ui-lists.
         | 
| 14 | 
            -
              **/
         | 
| 15 | 
            -
              .#{$fortitude-namespace}ui-list--small {
         | 
| 16 | 
            -
                > .#{$fortitude-namespace}ui-list__item {
         | 
| 17 | 
            -
                  @include fortitude-ui-list__item--small;
         | 
| 18 | 
            -
                }
         | 
| 19 | 
            -
              }
         | 
| 20 | 
            -
            }
         | 
| 21 | 
            -
             | 
| 22 | 
            -
            @if $fortitude-enable-ui-list--large == true {
         | 
| 23 | 
            -
              /**
         | 
| 24 | 
            -
               * Large ui-lists.
         | 
| 25 | 
            -
              **/
         | 
| 26 | 
            -
              .#{$fortitude-namespace}ui-list--large {
         | 
| 27 | 
            -
                > .#{$fortitude-namespace}ui-list__item {
         | 
| 28 | 
            -
                  @include fortitude-ui-list__item--large;
         | 
| 29 | 
            -
                }
         | 
| 30 | 
            -
              }
         | 
| 31 | 
            -
            }
         |