diff --git a/app/package-lock.json b/app/package-lock.json index 3a527d6686..9eef3fe360 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -16,6 +16,8 @@ "@testing-library/react": "^12.1.5", "array-move": "^4.0.0", "axios": "^1.4.0", + "bourbon": "^7.3.0", + "bourbon-neat": "4.0.0", "classnames": "^2.3.2", "date-fns": "^2.30.0", "font-awesome": "^4.7.0", @@ -6403,6 +6405,16 @@ "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" }, + "node_modules/bourbon": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/bourbon/-/bourbon-7.3.0.tgz", + "integrity": "sha512-u9ZUqmaX7K7nkarKODlFT4/XYfWafLRoadlv2Lye8hytrIA4Urg/50rav1eFdbdbO6o9GnK9a6qf7zwq808atA==" + }, + "node_modules/bourbon-neat": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/bourbon-neat/-/bourbon-neat-4.0.0.tgz", + "integrity": "sha512-Ql1JdvjNvK9NbGvcBpsDkfuRRMK8fZ/mx1gRyZEy3PM/kqQ8QX0PcmKEqnZMl18YLfKaDwC0qa+e36TlDmT49g==" + }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -25056,6 +25068,16 @@ "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" }, + "bourbon": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/bourbon/-/bourbon-7.3.0.tgz", + "integrity": "sha512-u9ZUqmaX7K7nkarKODlFT4/XYfWafLRoadlv2Lye8hytrIA4Urg/50rav1eFdbdbO6o9GnK9a6qf7zwq808atA==" + }, + "bourbon-neat": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/bourbon-neat/-/bourbon-neat-4.0.0.tgz", + "integrity": "sha512-Ql1JdvjNvK9NbGvcBpsDkfuRRMK8fZ/mx1gRyZEy3PM/kqQ8QX0PcmKEqnZMl18YLfKaDwC0qa+e36TlDmT49g==" + }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", diff --git a/app/package.json b/app/package.json index 39a3e88aee..3b8f0446bb 100644 --- a/app/package.json +++ b/app/package.json @@ -12,6 +12,8 @@ "@testing-library/react": "^12.1.5", "array-move": "^4.0.0", "axios": "^1.4.0", + "bourbon": "^7.3.0", + "bourbon-neat": "4.0.0", "classnames": "^2.3.2", "date-fns": "^2.30.0", "font-awesome": "^4.7.0", diff --git a/app/src/styles/components/_alerts.scss b/app/src/styles/components/_alerts.scss index cf813e480c..db9a2739b0 100644 --- a/app/src/styles/components/_alerts.scss +++ b/app/src/styles/components/_alerts.scss @@ -146,7 +146,7 @@ right: 10px; font-size: 20px; margin-top: 9px; - @include transition($alert-transition); + transition: $alert-transition; text-decoration: none; color: inherit; } diff --git a/app/src/styles/components/_cal.scss b/app/src/styles/components/_cal.scss index 4264cccd0b..853d4906da 100644 --- a/app/src/styles/components/_cal.scss +++ b/app/src/styles/components/_cal.scss @@ -60,7 +60,7 @@ text-align: center; margin: -1px -1px 0px -1px; border: $thin-border-stroke darken($l-blue, 10%); - @include linear-gradient(top, #388ed6, #2b77b9); + background: linear-gradient(to bottom, #388ed6, #2b77b9); a { display: block; diff --git a/app/src/styles/components/_dropdowns.scss b/app/src/styles/components/_dropdowns.scss index 979b71438a..368bc97017 100644 --- a/app/src/styles/components/_dropdowns.scss +++ b/app/src/styles/components/_dropdowns.scss @@ -32,10 +32,10 @@ cursor: pointer; position: relative; vertical-align: middle; - @include user-select(none); + user-select: none; // Pulled from Button Mixin (keep in sync with those styles) - @include linear-gradient(#fff, #f7f7f7); + background: linear-gradient(#fff, #f7f7f7); border: $thin-border-stroke $main-border-color; box-shadow: inset 0px 1px 0px 0px #fff, 0px 1px 2px rgba(0,0,0,.05); outline: none; @@ -44,7 +44,7 @@ &:hover { border: $thin-border-stroke darken($main-border-color, 2%); - @include linear-gradient(darken(#fff, 1%), darken(#f7f7f7, 1%)); + background: linear-gradient(darken(#fff, 1%), darken(#f7f7f7, 1%)); color: $medium-prim-color; } @@ -86,7 +86,7 @@ > ul { position: absolute; - @include transition(all 200ms); + transition: all 200ms; background: $off-white; list-style: none; @include border-bottom-radius($main-border-radius); @@ -103,7 +103,7 @@ text-shadow: 0 1px 0 $white; display: block; position: relative; - @include transition(all 200ms); + transition: all 200ms; button { display: block; @@ -154,7 +154,7 @@ cursor: pointer; position: relative; vertical-align: middle; - @include user-select(none); + user-select: none; background-repeat: repeat-x; &:focus { @@ -169,7 +169,7 @@ > ul { position: absolute; - @include transition(all 200ms); + transition: all 200ms; background: $off-white; list-style: none; @include border-bottom-radius($main-border-radius); @@ -188,7 +188,7 @@ cursor: default; display: block; position: relative; - @include transition(all 200ms); + transition: all 200ms; span { padding: 3px 15px 3px 45px; @@ -245,7 +245,7 @@ @include border-bottom-radius(0); &:after { - @include transform(rotate(180deg)); + transform: rotate(180deg); } > ul { diff --git a/app/src/styles/components/_footer.scss b/app/src/styles/components/_footer.scss index ff012b60bf..49a0a24998 100644 --- a/app/src/styles/components/_footer.scss +++ b/app/src/styles/components/_footer.scss @@ -58,7 +58,7 @@ $footer-background-color: darken($body-background, 5%); right: 0; a { - @include transition(all .2s); + transition: all .2s; @include footer-component-padding(); border-left: 1px solid $footer-border-color; text-align: center; diff --git a/app/src/styles/components/_header.scss b/app/src/styles/components/_header.scss index c0cca3a167..508325578c 100644 --- a/app/src/styles/components/_header.scss +++ b/app/src/styles/components/_header.scss @@ -30,7 +30,7 @@ box-shadow: 0 1px 3px 1px rgba($black, 0.3); position: relative; border-bottom: 1px solid #1d3041; - @include linear-gradient(top, #388ed6, #2075b1); + background: linear-gradient(to bottom, #388ed6, #2075b1); .header-branding { float: left; @@ -413,11 +413,11 @@ text-shadow: 0 1px 0 rgba($black, 0.2); border: 1px solid $l-blue; - @include linear-gradient(top, lighten($mid-blue, 20%), lighten($mid-blue, 10%)); + background: linear-gradient(to bottom, lighten($mid-blue, 20%), lighten($mid-blue, 10%)); box-shadow: inset 0 1px 0 0 rgba($white, 0.2), 0 2px 3px 1px rgba($black, 0.05); &:hover { - @include linear-gradient(top, lighten($mid-blue, 20%), lighten($mid-blue, 10%)); + background: linear-gradient(to bottom, lighten($mid-blue, 20%), lighten($mid-blue, 10%)); } &:active { diff --git a/app/src/styles/components/_inputs.scss b/app/src/styles/components/_inputs.scss index 5b1b71c897..9e83ccae0d 100644 --- a/app/src/styles/components/_inputs.scss +++ b/app/src/styles/components/_inputs.scss @@ -49,7 +49,7 @@ textarea { font-weight: 600; color: $medium-prim-color; - @include placeholder { + &::placeholder { color: $light-prim-color; } @@ -71,21 +71,24 @@ textarea { // ---------------------------------------- &#email { - @include retina-image("#{$img-path}user-input-icon", 23px 20px); + background-image: url("#{$img-path}user-input-icon.png"); + background-size: 23px 20px; background-repeat: no-repeat; background-position: 14px center; } &#password { - @include retina-image("#{$img-path}key-icon", 16px 20px); + background-image: url("#{$img-path}key-icon.png"); + background-size: 16px 20px; background-repeat: no-repeat; background-position: 19px center; } &.search, &#search { - @include appearance(none); - @include retina-image("#{$img-path}search", 13px 13px); + appearance: none; + background-image: url("#{$img-path}search.png"); + background-size: 13px 13px; background-repeat: no-repeat; background-position: 14px center; vertical-align: top; @@ -93,7 +96,7 @@ textarea { height: 40px; &.expand { - @include transition(width 0.2s ease-in); + transition: width 0.2s ease-in; &:focus { width: 200px; @@ -142,7 +145,7 @@ input[type="radio"].ios { cursor: pointer; height: 28px; position: relative; - @include transition(border $transition-duration 150ms, box-shadow $transition-duration 300ms, padding $transition-duration); + transition: border $transition-duration 150ms, box-shadow $transition-duration 300ms, padding $transition-duration; width: 44px; vertical-align: top; @@ -158,20 +161,20 @@ input[type="radio"].ios { position: absolute; right: 16px; top: 0; - @include transition(border 250ms 150ms, left 250ms 100ms, right 150ms 175ms); + transition: border 250ms 150ms, left 250ms 100ms, right 150ms 175ms; } &:checked { border-color: $green; box-shadow: inset 0 0 0 13px $green; padding-left: 18px; - @include transition(border 250ms, box-shadow 250ms, padding 250ms 150ms); + transition: border 250ms, box-shadow 250ms, padding 250ms 150ms; &:after { border-color: $green; left: 16px; right: 0; - @include transition(border 250ms, left 150ms 250ms, right 250ms 175ms); + transition: border 250ms, left 150ms 250ms, right 250ms 175ms; } } } diff --git a/app/src/styles/components/_menu-dropdown.scss b/app/src/styles/components/_menu-dropdown.scss index f8fc8aeba8..1cb7c18b79 100644 --- a/app/src/styles/components/_menu-dropdown.scss +++ b/app/src/styles/components/_menu-dropdown.scss @@ -54,9 +54,9 @@ overflow: visible; display: block; padding: $link-padding; - @include transition-property($link-transition-property); - @include transition-duration(250ms); - @include transition-timing-function(ease-in); + transition-property: $link-transition-property; + transition-duration: 250ms; + transition-timing-function: ease-in; text-overflow: ellipsis; white-space: nowrap; font-weight: $weight-semibold; diff --git a/app/src/styles/components/_menu.scss b/app/src/styles/components/_menu.scss index abdab5cf0a..5fc011c653 100644 --- a/app/src/styles/components/_menu.scss +++ b/app/src/styles/components/_menu.scss @@ -62,7 +62,7 @@ vertical-align: middle; position: relative; line-height: 50px; - @include transition(all .2s); + transition: all .2s; color: #c6c6c6; } diff --git a/app/src/styles/components/_progress-bar.scss b/app/src/styles/components/_progress-bar.scss index 66bee87a20..63b17cfe89 100644 --- a/app/src/styles/components/_progress-bar.scss +++ b/app/src/styles/components/_progress-bar.scss @@ -44,9 +44,9 @@ text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.2); text-align: center; background-color: $progress-bar-color; - @include linear-gradient(top, #388ed6, #2b77b9); + background: linear-gradient(to bottom, #388ed6, #2b77b9); border-right: 1px solid darken(#388ed6, 15%); - @include transition(width 600ms ease); + transition: width 600ms ease; &[aria-valuenow="1"], &[aria-valuenow="2"] { diff --git a/app/src/styles/components/_statistics-graph.scss b/app/src/styles/components/_statistics-graph.scss index bc3da6791b..4e29018b1d 100644 --- a/app/src/styles/components/_statistics-graph.scss +++ b/app/src/styles/components/_statistics-graph.scss @@ -49,7 +49,7 @@ > input[type="radio"]:checked + label { cursor: pointer; border: $thin-border-stroke darken($main-border-color, 2%); - @include linear-gradient(darken(#fff, 4%), darken(#f7f7f7, 10%)); + background: linear-gradient(darken(#fff, 4%), darken(#f7f7f7, 10%)); color: $medium-prim-color; box-shadow: inset 0px 1px 6px 2px rgba(0,0,0,.1); } diff --git a/app/src/styles/components/_steps.scss b/app/src/styles/components/_steps.scss index 6c0ba34fb0..f4d34402b3 100644 --- a/app/src/styles/components/_steps.scss +++ b/app/src/styles/components/_steps.scss @@ -45,7 +45,7 @@ width: 100%; height: 1px; background: $main-border-color; - @include linear-gradient( + background: linear-gradient( left, rgba($modal-nav-border-color, 0) 5%, rgba($modal-nav-border-color, 1) 25%, @@ -59,7 +59,7 @@ margin: 0 10px; position: relative; line-height: $height + 30; - @include user-select(none); + user-select: none; // Dot &:after { @@ -76,12 +76,12 @@ // First line &:first-child:before { - @include linear-gradient(left, $modal-nav-bg-color, $modal-nav-border-color); + background: linear-gradient(to right, $modal-nav-bg-color, $modal-nav-border-color); } // Last line &:last-child:before { - @include linear-gradient(left, $modal-nav-border-color, $modal-nav-bg-color); + background: linear-gradient(to right, $modal-nav-border-color, $modal-nav-bg-color); } // Active step diff --git a/app/src/styles/components/_tables.scss b/app/src/styles/components/_tables.scss index 8ea3ee7b3d..ea866eef41 100644 --- a/app/src/styles/components/_tables.scss +++ b/app/src/styles/components/_tables.scss @@ -54,7 +54,7 @@ &.sortable { cursor: pointer; &:hover { - @include linear-gradient(top, $off-white, darken(#f1f3f5, 3%)); + background: linear-gradient(to bottom, $off-white, darken(#f1f3f5, 3%)); } &:active { box-shadow: inset 0 3px 10px 2px rgba($black, 0.05); @@ -82,8 +82,8 @@ border-right: 1px solid #c9d0d6; border-left: 1px solid #fff; border-bottom: 1px solid $border-color; - @include user-select(none); - @include linear-gradient(top, darken($off-white, 1%), darken(#f1f3f5, 3%)); + user-select: none; + background: linear-gradient(to bottom, darken($off-white, 1%), darken(#f1f3f5, 3%)); // Typography line-height: 35px; @@ -415,7 +415,7 @@ opacity: 0; visibility: hidden; float: right; - @include transition(all .2s); + transition: all .2s; } &.js-active:after { @@ -456,7 +456,7 @@ padding-left: 3px; &.open { - @include transform(rotate(90deg)); + transform: rotate(90deg); } } } diff --git a/app/src/styles/components/_toggle-buttons.scss b/app/src/styles/components/_toggle-buttons.scss index c605545fda..70f83a37f7 100644 --- a/app/src/styles/components/_toggle-buttons.scss +++ b/app/src/styles/components/_toggle-buttons.scss @@ -44,7 +44,7 @@ text-shadow: 0px 1px 0px rgba(0,0,0,0.2); border: 1px solid $l-blue; border-right: 1px solid darken($l-blue, 10%); - @include linear-gradient(top, lighten(#2b77b9, 5%), #388ed6); + background: linear-gradient(to bottom, lighten(#2b77b9, 5%), #388ed6); box-shadow: 0px 2px 3px 1px rgba(0,0,0,.05); } } diff --git a/app/src/styles/components/data-filter/_add-button.scss b/app/src/styles/components/data-filter/_add-button.scss index 3cbb0e47c1..4734f8eec2 100644 --- a/app/src/styles/components/data-filter/_add-button.scss +++ b/app/src/styles/components/data-filter/_add-button.scss @@ -24,9 +24,9 @@ @include btn(white); @include fa-icon($fa-var-plus, before, inline-block, 0 8px 0 0, 0, inherit, 11px); - @include transition-property(width, padding, border-radius); - @include transition-duration(200ms); - @include transition-timing-function(ease-in); + transition-property: width, padding, border-radius; + transition-duration: 200ms; + transition-timing-function: ease-in; float: left; padding: 12px 10px; @@ -42,7 +42,7 @@ // Transition Properties for @include fa-icon(...); mixin &:before { - @include transition(color 200ms ease-in); + transition: color 200ms ease-in; } .js-df-state-new-filter & { diff --git a/app/src/styles/components/data-filter/_base.scss b/app/src/styles/components/data-filter/_base.scss index 1c5c4f1e11..318a96f295 100644 --- a/app/src/styles/components/data-filter/_base.scss +++ b/app/src/styles/components/data-filter/_base.scss @@ -24,7 +24,7 @@ box-sizing: border-box; display: inline-block; vertical-align: top; - @include user-select(none); + user-select: none; } $df-height: 42px; diff --git a/app/src/styles/components/data-filter/_clear-filters.scss b/app/src/styles/components/data-filter/_clear-filters.scss index 04896cbc64..e5800ede07 100644 --- a/app/src/styles/components/data-filter/_clear-filters.scss +++ b/app/src/styles/components/data-filter/_clear-filters.scss @@ -29,7 +29,7 @@ position: absolute; top: 0; right: 0; - @include background-image(linear-gradient(right, #F7F7F7 50%, rgba(#F7F7F7, 0))); + background-image: linear-gradient(to left, #F7F7F7 50%, rgba(#F7F7F7, 0)); .df-clear-button { display: block; @@ -42,13 +42,13 @@ font-family: "Open Sans", sans-serif; color: #555; - @include transition-property(visibility, opacity); - @include transition-duration(300ms); - @include transition-timing-function(ease-in-out); - @include transition-delay(160ms); + transition-property: visibility, opacity; + transition-duration: 300ms; + transition-timing-function: ease-in-out; + transition-delay: 160ms; &:before { - @include transition(color 250ms ease-in-out); + transition: color 250ms ease-in-out; } &:hover { diff --git a/app/src/styles/components/data-filter/_filter-profiles.scss b/app/src/styles/components/data-filter/_filter-profiles.scss index 15eabf1115..aa15707285 100644 --- a/app/src/styles/components/data-filter/_filter-profiles.scss +++ b/app/src/styles/components/data-filter/_filter-profiles.scss @@ -40,7 +40,7 @@ // Common Elements header { - @include linear-gradient(#fff, #f7f7f7); + background: linear-gradient(#fff, #f7f7f7); border-top-left-radius: $main-border-radius; border-top-right-radius: $main-border-radius; border-bottom: 1px solid $main-border-color; @@ -57,7 +57,7 @@ } } // header .footer-btn { - @include linear-gradient(#fafafa, #f0f2f5); + background: linear-gradient(#fafafa, #f0f2f5); border-top: 1px solid darken(#f0f2f5, 10%); border-bottom-left-radius: $main-border-radius; border-bottom-right-radius: $main-border-radius; @@ -90,13 +90,13 @@ font-family: "Open Sans", sans-serif; color: #555; - @include transition-property(visibility, opacity); - @include transition-duration(300ms); - @include transition-timing-function(ease-in-out); - @include transition-delay(160ms); + transition-property: visibility, opacity; + transition-duration: 300ms; + transition-timing-function: ease-in-out; + transition-delay: 160ms; &:before { - @include transition(color 250ms ease-in-out); + transition: color 250ms ease-in-out; } &:hover { diff --git a/app/src/styles/components/data-filter/_input-base.scss b/app/src/styles/components/data-filter/_input-base.scss index 8926b668df..50b8bc96d0 100644 --- a/app/src/styles/components/data-filter/_input-base.scss +++ b/app/src/styles/components/data-filter/_input-base.scss @@ -24,10 +24,10 @@ position: relative; box-sizing: border-box; - @include transition-property(width, padding, visibility, opacity); - @include transition-duration(300ms); - @include transition-timing-function(ease-in-out); - @include transition-delay(80ms); + transition-property: width, padding, visibility, opacity; + transition-duration: 300ms; + transition-timing-function: ease-in-out; + transition-delay: 80ms; float: left; width: 0px; diff --git a/app/src/styles/components/data-filter/_input-button.scss b/app/src/styles/components/data-filter/_input-button.scss index 8d29e817e3..6d93c30a87 100644 --- a/app/src/styles/components/data-filter/_input-button.scss +++ b/app/src/styles/components/data-filter/_input-button.scss @@ -23,15 +23,15 @@ .df-popout-button { box-sizing: border-box; @include btn(white); - @include user-select(none); + user-select: none; $icon-pseudo-position: before; @include fa-icon($fa-var-ellipsis-v, $icon-pseudo-position, inline-block, 0 8px 0 0, 0, inherit, 14px); - @include transition-property(padding, visibility, opacity); - @include transition-duration(300ms); - @include transition-timing-function(ease-in-out); - @include transition-delay(80ms); + transition-property: padding, visibility, opacity; + transition-duration: 300ms; + transition-timing-function: ease-in-out; + transition-delay: 80ms; float: left; width: 15px; diff --git a/app/src/styles/components/data-filter/_label.scss b/app/src/styles/components/data-filter/_label.scss index bc47cedd20..52c0fb4770 100644 --- a/app/src/styles/components/data-filter/_label.scss +++ b/app/src/styles/components/data-filter/_label.scss @@ -31,12 +31,12 @@ // Hide Behind Parent position: relative; z-index: -1; - @include transform(translateY(15px)); + transform: translateY(15px); - @include transition-property(visibility, opacity, transform); - @include transition-duration(300ms); - @include transition-timing-function(ease-in-out); - @include transition-delay(80ms); + transition-property: visibility, opacity, transform; + transition-duration: 300ms; + transition-timing-function: ease-in-out; + transition-delay: 80ms; .js-df-state-new-filter & { visibility: visible; @@ -44,6 +44,6 @@ // Reveal from origin z-index: 1; - @include transform(translateY(0px)); + transform: translateY(0px); } } \ No newline at end of file diff --git a/app/src/styles/components/data-filter/_popout.scss b/app/src/styles/components/data-filter/_popout.scss index 6889172e0d..0e14acfd94 100644 --- a/app/src/styles/components/data-filter/_popout.scss +++ b/app/src/styles/components/data-filter/_popout.scss @@ -54,7 +54,7 @@ } .df-popout-header { - @include linear-gradient($white, #f7f7f7); + background: linear-gradient($white, #f7f7f7); border-top-left-radius: $main-border-radius; border-top-right-radius: $main-border-radius; border-bottom: $thin-border-stroke $main-border-color; @@ -65,30 +65,47 @@ } .df-table { - @include outer-container(100%); + // @include outer-container(100%); + @include grid-container; + margin-left: auto; + margin-right: auto; + max-width: 100%; + padding: 5px 10px; max-height: 150px; overflow: auto; // Row .row { - @include fill-parent(); - @include row(table); + // @include fill-parent(); + width: 100%; + box-sizing: border-box; + // @include row(table); + *zoom: 1; + display: block; + } + .row:before, .element:after { + content: " "; + display: table; + } + .row:after { + clear: both; } // Columns .df-saved-name { - @include span-columns(9); - @include pad(5px 0); + @include grid-column(9); + padding: 5px 0; font-size: 12px; font-weight: $weight-semibold; } .df-saved-actions { - @include span-columns(3); - @include reset-display; - @include pad(5px 0); + @include grid-column(3); + // @include reset-display; + display: block; + padding: 5px 0; } } @@ -135,7 +152,12 @@ $df-saved-actions-font-size: 11px; // Filter Set Form .df-save-set-container { - @include outer-container(100%); + // @include outer-container(100%); + @include grid-container; + margin-left: auto; + margin-right: auto; + max-width: 100%; + padding: 10px; .row { @@ -168,7 +190,7 @@ $df-saved-actions-font-size: 11px; } %df-save-set-button { - @include span-columns(6); + @include grid-column(6); text-shadow: none; text-align: center; } diff --git a/app/src/styles/components/data-filter/_select-dropdown.scss b/app/src/styles/components/data-filter/_select-dropdown.scss index 5e6b1d7f9c..1184e2fd04 100644 --- a/app/src/styles/components/data-filter/_select-dropdown.scss +++ b/app/src/styles/components/data-filter/_select-dropdown.scss @@ -42,7 +42,7 @@ $df-select-dropdown-horizontal-padding: 6px; .df-select-dropdown { box-sizing: border-box; @include btn(white); - @include appearance(none); + appearance: none; display: inline-block; float: left; width: auto; @@ -63,7 +63,7 @@ $df-select-dropdown-horizontal-padding: 6px; &:not(.df-paired-dropdown) { @extend .animated !optional; @extend .flipInX !optional; - @include animation-delay(400ms); + animation-delay: 400ms; } &.df-paired-dropdown { @@ -99,7 +99,7 @@ $df-select-dropdown-horizontal-padding: 6px; text-align: left; &:hover { - @include background(linear-gradient(#fff, #f7f7f7)); + background: linear-gradient(#fff, #f7f7f7); border: $thin-border-stroke $main-border-color; color: $medium-prim-color; } @@ -145,13 +145,13 @@ $df-select-dropdown-horizontal-padding: 6px; @include fa-icon-color(before, $light-prim-color); } - @include transition-property(visibility, opacity); - @include transition-duration(300ms); - @include transition-timing-function(ease-in-out); - @include transition-delay(160ms); + transition-property: visibility, opacity; + transition-duration: 300ms; + transition-timing-function: ease-in-out; + transition-delay: 160ms; &:before { - @include transition(color 250ms ease-in-out); + transition: color 250ms ease-in-out; } &:hover:not(.disabled) { diff --git a/app/src/styles/components/data-filter/_select-options.scss b/app/src/styles/components/data-filter/_select-options.scss index 624d056d8e..33b5ea1bdc 100644 --- a/app/src/styles/components/data-filter/_select-options.scss +++ b/app/src/styles/components/data-filter/_select-options.scss @@ -42,9 +42,9 @@ background: rgba($white, 0.98); box-shadow: 0 1px 3px rgba($black, 0.06); - @include transition-property(visibility, opacity); - @include transition-duration(100ms); - @include transition-timing-function(ease-in); + transition-property: visibility, opacity; + transition-duration: 100ms; + transition-timing-function: ease-in; a { display: block; @@ -56,9 +56,9 @@ text-shadow: none; cursor: pointer; - @include transition-property(color, background); - @include transition-duration(50ms); - @include transition-timing-function(ease-in); + transition-property: color, background; + transition-duration: 50ms; + transition-timing-function: ease-in; // ---------------------------------------- diff --git a/app/src/styles/components/modals/_header.scss b/app/src/styles/components/modals/_header.scss index db7af7d1fd..72bb60acf8 100644 --- a/app/src/styles/components/modals/_header.scss +++ b/app/src/styles/components/modals/_header.scss @@ -27,7 +27,7 @@ width: 100%; height: 40px; line-height: 40px; - @include linear-gradient(top, #fbfbfb, #e8e8e8); + background: linear-gradient(to bottom, #fbfbfb, #e8e8e8); border-bottom: 1px solid $main-border-color; @include border-top-radius($main-border-radius); padding: 0 20px; @@ -63,7 +63,7 @@ border-radius: $main-border-radius !important; &:after { - @include transform(rotate(180deg)); + transform: rotate(180deg); } } diff --git a/app/src/styles/components/modals/_important-messages.scss b/app/src/styles/components/modals/_important-messages.scss index 509c7bd83a..af8025c064 100644 --- a/app/src/styles/components/modals/_important-messages.scss +++ b/app/src/styles/components/modals/_important-messages.scss @@ -78,7 +78,8 @@ z-index: $max-z; width: $w; height: $h; - @include retina-image("#{$img-path}#{$image-name}", $w $h); + background-image: url("#{$img-path}#{$image-name}.png"); + background-size: $w $h; } } } diff --git a/app/src/styles/components/modals/_modal-base.scss b/app/src/styles/components/modals/_modal-base.scss index 395c6b136f..94815dec1d 100644 --- a/app/src/styles/components/modals/_modal-base.scss +++ b/app/src/styles/components/modals/_modal-base.scss @@ -53,7 +53,7 @@ visibility: hidden; opacity: 0; display: none; - @include transition(all .2s); + transition: all .2s; z-index: ($max-z + 2); width: $modal-width; height: auto; @@ -81,7 +81,7 @@ font-size: 50px; color: rgba($white, 0.7); text-shadow: 0 0 10px rgba($black, 0.4); - @include transition(all 0.2s); + transition: all 0.2s; &.fa-chevron-left { left: $spacing; @@ -106,7 +106,7 @@ // Hide overlay visibility: hidden; opacity: 0; - @include transition(all .15s); + transition: all .15s; &.active { opacity: 1; @@ -118,7 +118,8 @@ width: 100%; height: 100%; z-index: $max-z + 1; - @include radial-gradient(rgba($black, 0.2), rgba($black, 0.4)); + background-color: rgba($black, 0.2); + background-image: radial-gradient(rgba($black, 0.2), rgba($black, 0.4)); } @@ -175,7 +176,7 @@ header { $height: 35px; @include accordion-header($height); - @include user-select(none); + user-select: none; position: static; &.expand { diff --git a/app/src/styles/components/modals/_modal-components.scss b/app/src/styles/components/modals/_modal-components.scss index d34689c42a..f50c7ebf0f 100644 --- a/app/src/styles/components/modals/_modal-components.scss +++ b/app/src/styles/components/modals/_modal-components.scss @@ -359,7 +359,7 @@ .remove-file-button { // Reset - @include appearance(none); + appearance: none; background: none; outline: none; border: none; @@ -394,7 +394,7 @@ } .progress-bar { - @include linear-gradient(top, lighten($bright-blue, 5%), $bright-blue); + background: linear-gradient(to bottom, lighten($bright-blue, 5%), $bright-blue); } button { @@ -513,9 +513,9 @@ z-index: $z-60; width: 500px; height: 100%; - @include calc(max-width, "100% - 10px"); - @include calc(max-height, "100% - 12px"); - @include linear-gradient(top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)); + max-width: calc(100% - 10px); + max-height: calc(100% - 12px); + background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)); overflow: hidden; } @@ -528,7 +528,7 @@ .watermark-preview, .watermark-config { - @include span-columns(6); + @include grid-column(6); } .watermark-preview { @@ -628,7 +628,7 @@ line-height: 22px; font-weight: $weight-semibold; text-align: center; - @include calc(max-height, "100% - 0px"); + max-height: calc(100% - 0px); &.left-aligned { text-align: left; @@ -685,7 +685,7 @@ // for legal or other small print &.paragraph-meta { - @include linear-gradient(top, rgba($black, 0.8), rgba($black, 0.2)); + background: linear-gradient(to bottom, rgba($black, 0.8), rgba($black, 0.2)); height: 100%; font-size: 12px; line-height: 18px; diff --git a/app/src/styles/components/video/_video-controls.scss b/app/src/styles/components/video/_video-controls.scss index 521eff14f4..6b4781efb5 100644 --- a/app/src/styles/components/video/_video-controls.scss +++ b/app/src/styles/components/video/_video-controls.scss @@ -23,7 +23,7 @@ .video-controls { @include clearfix(); box-sizing: border-box; - @include linear-gradient(top, #fff, #f7f7f7); + background: linear-gradient(to bottom, #fff, #f7f7f7); border: $thin-border-stroke $main-border-color; height: 50px; padding: 0 15px; @@ -80,7 +80,7 @@ } input { - @include appearance(none); + appearance: none; border-radius: 4px; height: 2px; } @@ -222,7 +222,7 @@ $playback-icon-font-size: 16px; input[type="number"] { box-sizing: border-box; - @include appearance(none); + appearance: none; @include font-smoothing(on); background: none; border: 0; diff --git a/app/src/styles/components/video/_video-editor.scss b/app/src/styles/components/video/_video-editor.scss index 41664d7c5f..7722e4cbba 100644 --- a/app/src/styles/components/video/_video-editor.scss +++ b/app/src/styles/components/video/_video-editor.scss @@ -484,7 +484,7 @@ $segment-deleted-selected: saturate(darken($segment-deleted, 25%), 5%); position: absolute; display: none; - @include transition(all 800ms); + transition: all 800ms; } .arrow_box:after, .arrow_box:before { diff --git a/app/src/styles/components/video/_video-event-area.scss b/app/src/styles/components/video/_video-event-area.scss index 06d51b04e0..f5ea128ca4 100644 --- a/app/src/styles/components/video/_video-event-area.scss +++ b/app/src/styles/components/video/_video-event-area.scss @@ -215,7 +215,7 @@ header { $height: 35px; @include accordion-header($height); - @include user-select(none); + user-select: none; position: static; &.expand { diff --git a/app/src/styles/components/video/popover/_animation.scss b/app/src/styles/components/video/popover/_animation.scss index 3fb5821942..5e33ea2c6b 100644 --- a/app/src/styles/components/video/popover/_animation.scss +++ b/app/src/styles/components/video/popover/_animation.scss @@ -52,6 +52,6 @@ .shortcuts-popover { visibility: visible; opacity: 1; - @include transition-delay(0ms); + transition-delay: 0ms; } } diff --git a/app/src/styles/components/video/popover/_base.scss b/app/src/styles/components/video/popover/_base.scss index 1dd4f0c373..ed38817c67 100644 --- a/app/src/styles/components/video/popover/_base.scss +++ b/app/src/styles/components/video/popover/_base.scss @@ -46,7 +46,7 @@ content: ""; display: block; margin: 0; - @include transition(margin 350ms ease-in-out); + transition: margin 350ms ease-in-out; } .keyboard-shortcuts.active .shortcuts-popover::after { @@ -74,7 +74,7 @@ $parent-border-stroke: 1px; .popover-header { @extend .popover-container; - @include linear-gradient(top, #fff, #f7f7f7); + background: linear-gradient(to bottom, #fff, #f7f7f7); border: $thin-border-stroke $main-border-color; @include border-top-radius($main-border-radius); box-shadow: inset 0 1px 0px 0px #fff, 0 0 2px rgba(0,0,0,.05); diff --git a/app/src/styles/extensions/components/_drag-and-drop.scss b/app/src/styles/extensions/components/_drag-and-drop.scss index 34e4615ac5..712a4ee2cf 100644 --- a/app/src/styles/extensions/components/_drag-and-drop.scss +++ b/app/src/styles/extensions/components/_drag-and-drop.scss @@ -25,13 +25,13 @@ padding: 15px 10px; .drag-item { - @include user-select(none); + user-select: none; height: 35px; width: 100%; border-radius: $main-border-radius; cursor: move; border: $thin-border-stroke $main-border-color; - @include linear-gradient(top, #fff, #f3f5f6); + background: linear-gradient(to bottom, #fff, #f3f5f6); color: darken(#8c939b, 10%); font-weight: 600; text-shadow: 0px 1px 0px #fff; @@ -39,7 +39,7 @@ position: relative; margin: 10px 0; box-shadow: 0 0 0 rgba(0,0,0,0); - @include transition(box-shadow .3s ease-in-out); + transition: box-shadow .3s ease-in-out; .title { padding: 10px; @@ -47,12 +47,12 @@ } &:hover { - @include linear-gradient(top, #fff, darken(#f3f5f6, 2%)); + background: linear-gradient(to bottom, #fff, darken(#f3f5f6, 2%)); } &:active, &.being-dragged { - @include linear-gradient(top, darken(#fff, 2%), darken(#f3f5f6, 3%)); + background: linear-gradient(to bottom, darken(#fff, 2%), darken(#f3f5f6, 3%)); cursor: move; border: $thin-border-stroke darken($main-border-color, 5%); box-shadow: 0 0 4px rgba(0,0,0,0.1); @@ -75,7 +75,8 @@ position: absolute; top: 12px; left: 10px; - @include retina-image("#{$img-path}grip", 13px 14px); + background-image: url("#{$img-path}grip.png"); + background-size: 13px 14px; } // Item Move Buttons @@ -88,11 +89,13 @@ right: 10px; &.add { - @include retina-image("#{$img-path}plus-icon", 17px 17px); + background-image: url("#{$img-path}plus-icon.png"); + background-size: 17px 17px; } &.remove { - @include retina-image("#{$img-path}remove-icon", 17px 17px); + background-image: url("#{$img-path}remove-icon.png"); + background-size: 17px 17px; } } } diff --git a/app/src/styles/extensions/components/_tables.scss b/app/src/styles/extensions/components/_tables.scss index 7e860f51c1..302f4c622e 100644 --- a/app/src/styles/extensions/components/_tables.scss +++ b/app/src/styles/extensions/components/_tables.scss @@ -42,7 +42,7 @@ border-bottom: none; border-top-left-radius: $main-border-radius; border-top-right-radius: $main-border-radius; - @include linear-gradient(top, #fff, #f7f7f7); + background: linear-gradient(to bottom, #fff, #f7f7f7); $action-icon-margin: 0 4px 0 0; @@ -92,7 +92,7 @@ vertical-align: middle; position: relative; cursor: pointer; - @include user-select(none); + user-select: none; width: 25px; height: 22px; @include btn(white); @@ -123,7 +123,7 @@ background: $body-background; border: $thin-border-stroke $main-border-color; border-radius: $main-border-radius; - @include transition(visibility 200ms, opacity 200ms); + transition: visibility 200ms, opacity 200ms; &:before, &:after { diff --git a/app/src/styles/main.scss b/app/src/styles/main.scss index fbfb6114f5..589b754c97 100644 --- a/app/src/styles/main.scss +++ b/app/src/styles/main.scss @@ -26,8 +26,8 @@ $disable-warnings: true !default; // disables deprecation warnings // Imports -@import "vendor/bourbon/bourbon"; -@import "vendor/neat/neat"; +@import "../../node_modules/bourbon/core/bourbon"; +@import "../../node_modules/bourbon-neat/core/neat"; // Foundation // ---------------------------------------- @@ -99,6 +99,15 @@ $disable-warnings: true !default; // disables deprecation warnings } } +// We rely on border-box to center elements and cut down padding +// This had to be added during the bourbon upgrade from 4 to 7 +html { + box-sizing: border-box; +} +*, *::before, *::after { + box-sizing: inherit; +} + // All anchors should behave clickable (even without href attributes) a { cursor: pointer; @@ -536,7 +545,7 @@ table.main-tbl { font-size: 18px; opacity: 0; visibility: hidden; - @include transition(all .2s); + transition: all .2s; &.active { opacity: 1; diff --git a/app/src/styles/mixins/_button.scss b/app/src/styles/mixins/_button.scss index cac652bc2d..7f00338107 100644 --- a/app/src/styles/mixins/_button.scss +++ b/app/src/styles/mixins/_button.scss @@ -31,18 +31,18 @@ @if $color == green-dark-bg { box-shadow: inset 0px 1px 0px 0px $primary-color-green-light-1, 0px 2px 3px 1px rgba(0,0,0,.05); - @include linear-gradient($primary-color-green, $primary-color-green-dark-1); + background: linear-gradient($primary-color-green, $primary-color-green-dark-1); border: $thin-border-stroke $dark-bg-border-color; &:hover { cursor: pointer; - @include linear-gradient($primary-color-green-light-1, darken($primary-color-green-dark-2, 5%)); + background: linear-gradient($primary-color-green-light-1, darken($primary-color-green-dark-2, 5%)); } &:focus { cursor: pointer; - @include linear-gradient($primary-color-green-light-1, darken($primary-color-green-dark-2, 5%)); + background: linear-gradient($primary-color-green-light-1, darken($primary-color-green-dark-2, 5%)); } &:active { @@ -55,18 +55,18 @@ @else if $color == blue-dark-bg { box-shadow: inset 0px 1px 0px 0px #456c8e, 0px 2px 3px 1px rgba(0,0,0,.05); - @include linear-gradient(#3a5e7e, #2c9966); + background: linear-gradient(#3a5e7e, #2c9966); border: $thin-border-stroke $dark-bg-border-color; &:hover { cursor: pointer; - @include linear-gradient(lighten(#3a5e7e, 5%), darken(#2c9966, 10%)); + background: linear-gradient(lighten(#3a5e7e, 5%), darken(#2c9966, 10%)); } &:focus { cursor: pointer; - @include linear-gradient(lighten(#3a5e7e, 5%), darken(#2c9966, 10%)); + background: linear-gradient(lighten(#3a5e7e, 5%), darken(#2c9966, 10%)); } &:active { @@ -78,18 +78,18 @@ @else if $color == green { box-shadow: inset 0px 1px 0px 0px $primary-color-green-light-1, 0px 2px 3px 1px rgba(0,0,0,.05); - @include linear-gradient($primary-color-green, $primary-color-green-dark-1); + background: linear-gradient($primary-color-green, $primary-color-green-dark-1); border: $thin-border-stroke $primary-color-green-dark-3; &:hover { cursor: pointer; - @include linear-gradient($primary-color-green-light-1, darken($primary-color-green-dark-2, 10%)); + background: linear-gradient($primary-color-green-light-1, darken($primary-color-green-dark-2, 10%)); } &:focus { cursor: pointer; - @include linear-gradient($primary-color-green-light-1, darken($primary-color-green-dark-2, 10%)); + background: linear-gradient($primary-color-green-light-1, darken($primary-color-green-dark-2, 10%)); } &:active { @@ -102,18 +102,18 @@ @else if $color == blue { box-shadow: inset 0px 1px 0px 0px #456c8e, 0px 2px 3px 1px rgba(0,0,0,.05); - @include linear-gradient(#3a5e7e, #2c9966); + background: linear-gradient(#3a5e7e, #2c9966); border: $thin-border-stroke $dark-bg-border-color; &:hover { cursor: pointer; - @include linear-gradient(darken(#3a5e7e, 1%), darken(#2c9966, 10%)); + background: linear-gradient(darken(#3a5e7e, 1%), darken(#2c9966, 10%)); } &:focus { cursor: pointer; - @include linear-gradient(darken(#3a5e7e, 1%), darken(#2c9966, 10%)); + background: linear-gradient(darken(#3a5e7e, 1%), darken(#2c9966, 10%)); } &:active { @@ -126,18 +126,18 @@ box-shadow: inset 0px 1px 0px 0px lighten(#388ed6, 10%), 0px 2px 3px 1px rgba(0,0,0,.05); - @include linear-gradient(#388ed6, #2b77b9); + background: linear-gradient(#388ed6, #2b77b9); border: $thin-border-stroke darken(#2b77b9, 5%); &:hover { cursor: pointer; - @include linear-gradient(lighten(#388ed6, 10%), darken(#2b77b9, 10%)); + background: linear-gradient(lighten(#388ed6, 10%), darken(#2b77b9, 10%)); } &:focus { cursor: pointer; - @include linear-gradient(lighten(#388ed6, 10%), darken(#2b77b9, 10%)); + background: linear-gradient(lighten(#388ed6, 10%), darken(#2b77b9, 10%)); } &:active { @@ -150,18 +150,18 @@ box-shadow: inset 0px 1px 0px 0px lighten(#55cef2, 10%), 0px 2px 3px 1px rgba(0,0,0,.05); - @include linear-gradient(#55cef2, #4da1f7); + background: linear-gradient(#55cef2, #4da1f7); border: $thin-border-stroke darken(#4da1f7, 10%); &:hover { cursor: pointer; - @include linear-gradient(lighten(#55cef2, 5%), darken(#4da1f7, 10%)); + background: linear-gradient(lighten(#55cef2, 5%), darken(#4da1f7, 10%)); } &:focus { cursor: pointer; - @include linear-gradient(lighten(#55cef2, 5%), darken(#4da1f7, 10%)); + background: linear-gradient(lighten(#55cef2, 5%), darken(#4da1f7, 10%)); } &:active { @@ -173,20 +173,20 @@ @else if $color == red { box-shadow: inset 0px 1px 0px 0px lighten($alt-red, 10%), 0px 2px 3px 1px rgba(0,0,0,.05); - @include linear-gradient(lighten($alt-red, 5%), darken($alt-red, 5%)); + background: linear-gradient(lighten($alt-red, 5%), darken($alt-red, 5%)); border: $thin-border-stroke darken($alt-red, 20%); &:hover { cursor: pointer; border: $thin-border-stroke darken($alt-red, 30%); - @include linear-gradient(lighten($alt-red, 10%), darken($alt-red, 10%)); + background: linear-gradient(lighten($alt-red, 10%), darken($alt-red, 10%)); } &:focus { cursor: pointer; border: $thin-border-stroke darken($alt-red, 30%); - @include linear-gradient(lighten($alt-red, 10%), darken($alt-red, 10%)); + background: linear-gradient(lighten($alt-red, 10%), darken($alt-red, 10%)); } &:active { @@ -197,7 +197,7 @@ @else if $color == white { - @include linear-gradient(#fff, #f7f7f7); + background: linear-gradient(#fff, #f7f7f7); border: $thin-border-stroke $main-border-color; box-shadow: inset 0px 1px 0px 0px #fff, 0px 1px 2px rgba(0,0,0,.05); outline: none; @@ -207,14 +207,14 @@ &:hover { cursor: pointer; border: $thin-border-stroke darken($main-border-color, 2%); - @include linear-gradient(darken(#fff, 4%), darken(#f7f7f7, 10%)); + background: linear-gradient(darken(#fff, 4%), darken(#f7f7f7, 10%)); color: $medium-prim-color; } &:focus { cursor: pointer; border: $thin-border-stroke darken($main-border-color, 2%); - @include linear-gradient(darken(#fff, 4%), darken(#f7f7f7, 10%)); + background: linear-gradient(darken(#fff, 4%), darken(#f7f7f7, 10%)); color: $medium-prim-color; } diff --git a/app/src/styles/mixins/_mixins-config.scss b/app/src/styles/mixins/_mixins-config.scss index d6f703fac8..c1490874d1 100644 --- a/app/src/styles/mixins/_mixins-config.scss +++ b/app/src/styles/mixins/_mixins-config.scss @@ -45,7 +45,8 @@ left: $left; width: $width; height: $height; - @include retina-image("#{$img-path}#{$image}", $width $height); + background-image: url("#{$img-path}#{$image}.png"); + background-size: $width $height; } @@ -63,7 +64,7 @@ box-sizing: border-box; height: $height; line-height: $height; - @include linear-gradient(top, #fff, #f3f5f6); + background: linear-gradient(to bottom, #fff, #f3f5f6); border-bottom: 1px solid $main-border-color; @include border-top-radius($main-border-radius); margin: 0; @@ -80,11 +81,11 @@ @include fa-icon($fa-var-chevron-down, after, inline-block, 10px 0); &:hover { - @include linear-gradient(top, #fff, darken(#f3f5f6, 2%)); + background: linear-gradient(to bottom, #fff, darken(#f3f5f6, 2%)); } &:active { - @include linear-gradient(top, darken(#fff, 2%), darken(#f3f5f6, 3%)); + background: linear-gradient(to bottom, darken(#fff, 2%), darken(#f3f5f6, 3%)); } &:after { @@ -102,14 +103,14 @@ z-index: $max-z - 9; visibility: hidden; opacity: 0; - @include transition(all 200ms); + transition: all 200ms; background: $white; border: $thin-border-stroke $main-border-color; border-radius: $main-border-radius; width: $width; header { - @include linear-gradient($white, #f7f7f7); + background: linear-gradient($white, #f7f7f7); @include border-top-radius($main-border-radius); border-bottom: $thin-border-stroke $main-border-color; height: 30px; @@ -121,7 +122,7 @@ } .footer-btn { - @include linear-gradient($off-white, #f0f2f5); + background: linear-gradient($off-white, #f0f2f5); border-top: $thin-border-stroke darken(#f0f2f5, 10%); @include border-bottom-radius($main-border-radius); display: block; diff --git a/app/src/styles/vendor/bourbon/_bourbon-deprecated-upcoming.scss b/app/src/styles/vendor/bourbon/_bourbon-deprecated-upcoming.scss deleted file mode 100755 index e6d1b8cec0..0000000000 --- a/app/src/styles/vendor/bourbon/_bourbon-deprecated-upcoming.scss +++ /dev/null @@ -1,411 +0,0 @@ -// The following features have been deprecated and will be removed in the next MAJOR version release - -@mixin inline-block { - display: inline-block; - - @warn "The inline-block mixin is deprecated and will be removed in the next major version release"; -} - -@mixin button ($style: simple, $base-color: #4294f0, $text-size: inherit, $padding: 7px 18px) { - - @if type-of($style) == string and type-of($base-color) == color { - @include buttonstyle($style, $base-color, $text-size, $padding); - } - - @if type-of($style) == string and type-of($base-color) == number { - $padding: $text-size; - $text-size: $base-color; - $base-color: #4294f0; - - @if $padding == inherit { - $padding: 7px 18px; - } - - @include buttonstyle($style, $base-color, $text-size, $padding); - } - - @if type-of($style) == color and type-of($base-color) == color { - $base-color: $style; - $style: simple; - @include buttonstyle($style, $base-color, $text-size, $padding); - } - - @if type-of($style) == color and type-of($base-color) == number { - $padding: $text-size; - $text-size: $base-color; - $base-color: $style; - $style: simple; - - @if $padding == inherit { - $padding: 7px 18px; - } - - @include buttonstyle($style, $base-color, $text-size, $padding); - } - - @if type-of($style) == number { - $padding: $base-color; - $text-size: $style; - $base-color: #4294f0; - $style: simple; - - @if $padding == #4294f0 { - $padding: 7px 18px; - } - - @include buttonstyle($style, $base-color, $text-size, $padding); - } - - &:disabled { - cursor: not-allowed; - opacity: 0.5; - } - - @warn "The button mixin is deprecated and will be removed in the next major version release"; -} - -// Selector Style Button -@mixin buttonstyle($type, $b-color, $t-size, $pad) { - // Grayscale button - @if $type == simple and $b-color == grayscale($b-color) { - @include simple($b-color, true, $t-size, $pad); - } - - @if $type == shiny and $b-color == grayscale($b-color) { - @include shiny($b-color, true, $t-size, $pad); - } - - @if $type == pill and $b-color == grayscale($b-color) { - @include pill($b-color, true, $t-size, $pad); - } - - @if $type == flat and $b-color == grayscale($b-color) { - @include flat($b-color, true, $t-size, $pad); - } - - // Colored button - @if $type == simple { - @include simple($b-color, false, $t-size, $pad); - } - - @else if $type == shiny { - @include shiny($b-color, false, $t-size, $pad); - } - - @else if $type == pill { - @include pill($b-color, false, $t-size, $pad); - } - - @else if $type == flat { - @include flat($b-color, false, $t-size, $pad); - } -} - -// Simple Button -@mixin simple($base-color, $grayscale: false, $textsize: inherit, $padding: 7px 18px) { - $color: hsl(0, 0, 100%); - $border: adjust-color($base-color, $saturation: 9%, $lightness: -14%); - $inset-shadow: adjust-color($base-color, $saturation: -8%, $lightness: 15%); - $stop-gradient: adjust-color($base-color, $saturation: 9%, $lightness: -11%); - $text-shadow: adjust-color($base-color, $saturation: 15%, $lightness: -18%); - - @if is-light($base-color) { - $color: hsl(0, 0, 20%); - $text-shadow: adjust-color($base-color, $saturation: 10%, $lightness: 4%); - } - - @if $grayscale == true { - $border: grayscale($border); - $inset-shadow: grayscale($inset-shadow); - $stop-gradient: grayscale($stop-gradient); - $text-shadow: grayscale($text-shadow); - } - - border: 1px solid $border; - border-radius: 3px; - box-shadow: inset 0 1px 0 0 $inset-shadow; - color: $color; - display: inline-block; - font-size: $textsize; - font-weight: bold; - @include linear-gradient ($base-color, $stop-gradient); - padding: $padding; - text-decoration: none; - text-shadow: 0 1px 0 $text-shadow; - background-clip: padding-box; - - &:hover:not(:disabled) { - $base-color-hover: adjust-color($base-color, $saturation: -4%, $lightness: -5%); - $inset-shadow-hover: adjust-color($base-color, $saturation: -7%, $lightness: 5%); - $stop-gradient-hover: adjust-color($base-color, $saturation: 8%, $lightness: -14%); - - @if $grayscale == true { - $base-color-hover: grayscale($base-color-hover); - $inset-shadow-hover: grayscale($inset-shadow-hover); - $stop-gradient-hover: grayscale($stop-gradient-hover); - } - - @include linear-gradient ($base-color-hover, $stop-gradient-hover); - - box-shadow: inset 0 1px 0 0 $inset-shadow-hover; - cursor: pointer; - } - - &:active:not(:disabled), - &:focus:not(:disabled) { - $border-active: adjust-color($base-color, $saturation: 9%, $lightness: -14%); - $inset-shadow-active: adjust-color($base-color, $saturation: 7%, $lightness: -17%); - - @if $grayscale == true { - $border-active: grayscale($border-active); - $inset-shadow-active: grayscale($inset-shadow-active); - } - - border: 1px solid $border-active; - box-shadow: inset 0 0 8px 4px $inset-shadow-active, inset 0 0 8px 4px $inset-shadow-active; - } -} - -// Shiny Button -@mixin shiny($base-color, $grayscale: false, $textsize: inherit, $padding: 7px 18px) { - $color: hsl(0, 0, 100%); - $border: adjust-color($base-color, $red: -117, $green: -111, $blue: -81); - $border-bottom: adjust-color($base-color, $red: -126, $green: -127, $blue: -122); - $fourth-stop: adjust-color($base-color, $red: -79, $green: -70, $blue: -46); - $inset-shadow: adjust-color($base-color, $red: 37, $green: 29, $blue: 12); - $second-stop: adjust-color($base-color, $red: -56, $green: -50, $blue: -33); - $text-shadow: adjust-color($base-color, $red: -140, $green: -141, $blue: -114); - $third-stop: adjust-color($base-color, $red: -86, $green: -75, $blue: -48); - - @if is-light($base-color) { - $color: hsl(0, 0, 20%); - $text-shadow: adjust-color($base-color, $saturation: 10%, $lightness: 4%); - } - - @if $grayscale == true { - $border: grayscale($border); - $border-bottom: grayscale($border-bottom); - $fourth-stop: grayscale($fourth-stop); - $inset-shadow: grayscale($inset-shadow); - $second-stop: grayscale($second-stop); - $text-shadow: grayscale($text-shadow); - $third-stop: grayscale($third-stop); - } - - @include linear-gradient(top, $base-color 0%, $second-stop 50%, $third-stop 50%, $fourth-stop 100%); - - border: 1px solid $border; - border-bottom: 1px solid $border-bottom; - border-radius: 5px; - box-shadow: inset 0 1px 0 0 $inset-shadow; - color: $color; - display: inline-block; - font-size: $textsize; - font-weight: bold; - padding: $padding; - text-align: center; - text-decoration: none; - text-shadow: 0 -1px 1px $text-shadow; - - &:hover:not(:disabled) { - $first-stop-hover: adjust-color($base-color, $red: -13, $green: -15, $blue: -18); - $second-stop-hover: adjust-color($base-color, $red: -66, $green: -62, $blue: -51); - $third-stop-hover: adjust-color($base-color, $red: -93, $green: -85, $blue: -66); - $fourth-stop-hover: adjust-color($base-color, $red: -86, $green: -80, $blue: -63); - - @if $grayscale == true { - $first-stop-hover: grayscale($first-stop-hover); - $second-stop-hover: grayscale($second-stop-hover); - $third-stop-hover: grayscale($third-stop-hover); - $fourth-stop-hover: grayscale($fourth-stop-hover); - } - - @include linear-gradient(top, $first-stop-hover 0%, - $second-stop-hover 50%, - $third-stop-hover 50%, - $fourth-stop-hover 100%); - cursor: pointer; - } - - &:active:not(:disabled), - &:focus:not(:disabled) { - $inset-shadow-active: adjust-color($base-color, $red: -111, $green: -116, $blue: -122); - - @if $grayscale == true { - $inset-shadow-active: grayscale($inset-shadow-active); - } - - box-shadow: inset 0 0 20px 0 $inset-shadow-active; - } -} - -// Pill Button -@mixin pill($base-color, $grayscale: false, $textsize: inherit, $padding: 7px 18px) { - $color: hsl(0, 0, 100%); - $border-bottom: adjust-color($base-color, $hue: 8, $saturation: -11%, $lightness: -26%); - $border-sides: adjust-color($base-color, $hue: 4, $saturation: -21%, $lightness: -21%); - $border-top: adjust-color($base-color, $hue: -1, $saturation: -30%, $lightness: -15%); - $inset-shadow: adjust-color($base-color, $hue: -1, $saturation: -1%, $lightness: 7%); - $stop-gradient: adjust-color($base-color, $hue: 8, $saturation: 14%, $lightness: -10%); - $text-shadow: adjust-color($base-color, $hue: 5, $saturation: -19%, $lightness: -15%); - - @if is-light($base-color) { - $color: hsl(0, 0, 20%); - $text-shadow: adjust-color($base-color, $saturation: 10%, $lightness: 4%); - } - - @if $grayscale == true { - $border-bottom: grayscale($border-bottom); - $border-sides: grayscale($border-sides); - $border-top: grayscale($border-top); - $inset-shadow: grayscale($inset-shadow); - $stop-gradient: grayscale($stop-gradient); - $text-shadow: grayscale($text-shadow); - } - - border: 1px solid $border-top; - border-color: $border-top $border-sides $border-bottom; - border-radius: 16px; - box-shadow: inset 0 1px 0 0 $inset-shadow; - color: $color; - display: inline-block; - font-size: $textsize; - font-weight: normal; - line-height: 1; - @include linear-gradient ($base-color, $stop-gradient); - padding: $padding; - text-align: center; - text-decoration: none; - text-shadow: 0 -1px 1px $text-shadow; - background-clip: padding-box; - - &:hover:not(:disabled) { - $base-color-hover: adjust-color($base-color, $lightness: -4.5%); - $border-bottom: adjust-color($base-color, $hue: 8, $saturation: 13.5%, $lightness: -32%); - $border-sides: adjust-color($base-color, $hue: 4, $saturation: -2%, $lightness: -27%); - $border-top: adjust-color($base-color, $hue: -1, $saturation: -17%, $lightness: -21%); - $inset-shadow-hover: adjust-color($base-color, $saturation: -1%, $lightness: 3%); - $stop-gradient-hover: adjust-color($base-color, $hue: 8, $saturation: -4%, $lightness: -15.5%); - $text-shadow-hover: adjust-color($base-color, $hue: 5, $saturation: -5%, $lightness: -22%); - - @if $grayscale == true { - $base-color-hover: grayscale($base-color-hover); - $border-bottom: grayscale($border-bottom); - $border-sides: grayscale($border-sides); - $border-top: grayscale($border-top); - $inset-shadow-hover: grayscale($inset-shadow-hover); - $stop-gradient-hover: grayscale($stop-gradient-hover); - $text-shadow-hover: grayscale($text-shadow-hover); - } - - @include linear-gradient ($base-color-hover, $stop-gradient-hover); - - background-clip: padding-box; - border: 1px solid $border-top; - border-color: $border-top $border-sides $border-bottom; - box-shadow: inset 0 1px 0 0 $inset-shadow-hover; - cursor: pointer; - text-shadow: 0 -1px 1px $text-shadow-hover; - } - - &:active:not(:disabled), - &:focus:not(:disabled) { - $active-color: adjust-color($base-color, $hue: 4, $saturation: -12%, $lightness: -10%); - $border-active: adjust-color($base-color, $hue: 6, $saturation: -2.5%, $lightness: -30%); - $border-bottom-active: adjust-color($base-color, $hue: 11, $saturation: 6%, $lightness: -31%); - $inset-shadow-active: adjust-color($base-color, $hue: 9, $saturation: 2%, $lightness: -21.5%); - $text-shadow-active: adjust-color($base-color, $hue: 5, $saturation: -12%, $lightness: -21.5%); - - @if $grayscale == true { - $active-color: grayscale($active-color); - $border-active: grayscale($border-active); - $border-bottom-active: grayscale($border-bottom-active); - $inset-shadow-active: grayscale($inset-shadow-active); - $text-shadow-active: grayscale($text-shadow-active); - } - - background: $active-color; - border: 1px solid $border-active; - border-bottom: 1px solid $border-bottom-active; - box-shadow: inset 0 0 6px 3px $inset-shadow-active; - text-shadow: 0 -1px 1px $text-shadow-active; - } -} - -// Flat Button -@mixin flat($base-color, $grayscale: false, $textsize: inherit, $padding: 7px 18px) { - $color: hsl(0, 0, 100%); - - @if is-light($base-color) { - $color: hsl(0, 0, 20%); - } - - background-color: $base-color; - border-radius: 3px; - border: 0; - color: $color; - display: inline-block; - font-size: $textsize; - font-weight: bold; - padding: $padding; - text-decoration: none; - background-clip: padding-box; - - &:hover:not(:disabled){ - $base-color-hover: adjust-color($base-color, $saturation: 4%, $lightness: 5%); - - @if $grayscale == true { - $base-color-hover: grayscale($base-color-hover); - } - - background-color: $base-color-hover; - cursor: pointer; - } - - &:active:not(:disabled), - &:focus:not(:disabled) { - $base-color-active: adjust-color($base-color, $saturation: -4%, $lightness: -5%); - - @if $grayscale == true { - $base-color-active: grayscale($base-color-active); - } - - background-color: $base-color-active; - cursor: pointer; - } -} - -// Flexible grid -@function flex-grid($columns, $container-columns: $fg-max-columns) { - $width: $columns * $fg-column + ($columns - 1) * $fg-gutter; - $container-width: $container-columns * $fg-column + ($container-columns - 1) * $fg-gutter; - @return percentage($width / $container-width); - - @warn "The flex-grid function is deprecated and will be removed in the next major version release"; -} - -// Flexible gutter -@function flex-gutter($container-columns: $fg-max-columns, $gutter: $fg-gutter) { - $container-width: $container-columns * $fg-column + ($container-columns - 1) * $fg-gutter; - @return percentage($gutter / $container-width); - - @warn "The flex-gutter function is deprecated and will be removed in the next major version release"; -} - -@function grid-width($n) { - @return $n * $gw-column + ($n - 1) * $gw-gutter; - - @warn "The grid-width function is deprecated and will be removed in the next major version release"; -} - -@function golden-ratio($value, $increment) { - @return modular-scale($increment, $value, $ratio: $golden); - - @warn "The golden-ratio function is deprecated and will be removed in the next major version release. Please use the modular-scale function, instead."; -} - -@mixin box-sizing($box) { - @include prefixer(box-sizing, $box, webkit moz spec); - - @warn "The box-sizing mixin is deprecated and will be removed in the next major version release. This property can now be used un-prefixed."; -} diff --git a/app/src/styles/vendor/bourbon/_bourbon.scss b/app/src/styles/vendor/bourbon/_bourbon.scss deleted file mode 100755 index 2808e60d1f..0000000000 --- a/app/src/styles/vendor/bourbon/_bourbon.scss +++ /dev/null @@ -1,87 +0,0 @@ -// Bourbon 4.1.1 -// http://bourbon.io -// Copyright 2011-2015 thoughtbot, inc. -// MIT License - -@import "settings/prefixer"; -@import "settings/px-to-em"; -@import "settings/asset-pipeline"; - -@import "functions/assign-inputs"; -@import "functions/contains"; -@import "functions/contains-falsy"; -@import "functions/is-length"; -@import "functions/is-light"; -@import "functions/is-number"; -@import "functions/is-size"; -@import "functions/px-to-em"; -@import "functions/px-to-rem"; -@import "functions/shade"; -@import "functions/strip-units"; -@import "functions/tint"; -@import "functions/transition-property-name"; -@import "functions/unpack"; -@import "functions/modular-scale"; - -@import "helpers/convert-units"; -@import "helpers/directional-values"; -@import "helpers/font-source-declaration"; -@import "helpers/gradient-positions-parser"; -@import "helpers/linear-angle-parser"; -@import "helpers/linear-gradient-parser"; -@import "helpers/linear-positions-parser"; -@import "helpers/linear-side-corner-parser"; -@import "helpers/radial-arg-parser"; -@import "helpers/radial-positions-parser"; -@import "helpers/radial-gradient-parser"; -@import "helpers/render-gradients"; -@import "helpers/shape-size-stripper"; -@import "helpers/str-to-num"; - -@import "css3/animation"; -@import "css3/appearance"; -@import "css3/backface-visibility"; -@import "css3/background"; -@import "css3/background-image"; -@import "css3/border-image"; -@import "css3/calc"; -@import "css3/columns"; -@import "css3/filter"; -@import "css3/flex-box"; -@import "css3/font-face"; -@import "css3/font-feature-settings"; -@import "css3/hidpi-media-query"; -@import "css3/hyphens"; -@import "css3/image-rendering"; -@import "css3/keyframes"; -@import "css3/linear-gradient"; -@import "css3/perspective"; -@import "css3/placeholder"; -@import "css3/radial-gradient"; -@import "css3/selection"; -@import "css3/text-decoration"; -@import "css3/transform"; -@import "css3/transition"; -@import "css3/user-select"; - -@import "addons/border-color"; -@import "addons/border-radius"; -@import "addons/border-style"; -@import "addons/border-width"; -@import "addons/buttons"; -@import "addons/clearfix"; -@import "addons/ellipsis"; -@import "addons/font-stacks"; -@import "addons/hide-text"; -@import "addons/margin"; -@import "addons/padding"; -@import "addons/position"; -@import "addons/prefixer"; -@import "addons/retina-image"; -@import "addons/size"; -@import "addons/text-inputs"; -@import "addons/timing-functions"; -@import "addons/triangle"; -@import "addons/word-wrap"; - -@import "bourbon-deprecated-upcoming"; diff --git a/app/src/styles/vendor/bourbon/addons/_border-color.scss b/app/src/styles/vendor/bourbon/addons/_border-color.scss deleted file mode 100755 index 6f6ab36c4e..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_border-color.scss +++ /dev/null @@ -1,26 +0,0 @@ -@charset "UTF-8"; - -/// Provides a quick method for targeting `border-color` on specific sides of a box. Use a `null` value to “skip” a side. -/// -/// @param {Arglist} $vals -/// List of arguments -/// -/// @example scss - Usage -/// .element { -/// @include border-color(#a60b55 #76cd9c null #e8ae1a); -/// } -/// -/// @example css - CSS Output -/// .element { -/// border-left-color: #e8ae1a; -/// border-right-color: #76cd9c; -/// border-top-color: #a60b55; -/// } -/// -/// @require {mixin} directional-property -/// -/// @output `border-color` - -@mixin border-color($vals...) { - @include directional-property(border, color, $vals...); -} diff --git a/app/src/styles/vendor/bourbon/addons/_border-radius.scss b/app/src/styles/vendor/bourbon/addons/_border-radius.scss deleted file mode 100755 index 1f6586335c..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_border-radius.scss +++ /dev/null @@ -1,48 +0,0 @@ -@charset "UTF-8"; - -/// Provides a quick method for targeting `border-radius` on both corners on the side of a box. -/// -/// @param {Number} $radii -/// List of arguments -/// -/// @example scss - Usage -/// .element-one { -/// @include border-top-radius(5px); -/// } -/// -/// .element-two { -/// @include border-left-radius(3px); -/// } -/// -/// @example css - CSS Output -/// .element-one { -/// border-top-left-radius: 5px; -/// border-top-right-radius: 5px; -/// } -/// -/// .element-two { -/// border-bottom-left-radius: 3px; -/// border-top-left-radius: 3px; -/// } -/// -/// @output `border-radius` - -@mixin border-top-radius($radii) { - border-top-left-radius: $radii; - border-top-right-radius: $radii; -} - -@mixin border-right-radius($radii) { - border-bottom-right-radius: $radii; - border-top-right-radius: $radii; -} - -@mixin border-bottom-radius($radii) { - border-bottom-left-radius: $radii; - border-bottom-right-radius: $radii; -} - -@mixin border-left-radius($radii) { - border-bottom-left-radius: $radii; - border-top-left-radius: $radii; -} diff --git a/app/src/styles/vendor/bourbon/addons/_border-style.scss b/app/src/styles/vendor/bourbon/addons/_border-style.scss deleted file mode 100755 index d86ee79d93..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_border-style.scss +++ /dev/null @@ -1,25 +0,0 @@ -@charset "UTF-8"; - -/// Provides a quick method for targeting `border-style` on specific sides of a box. Use a `null` value to “skip” a side. -/// -/// @param {Arglist} $vals -/// List of arguments -/// -/// @example scss - Usage -/// .element { -/// @include border-style(dashed null solid); -/// } -/// -/// @example css - CSS Output -/// .element { -/// border-bottom-style: solid; -/// border-top-style: dashed; -/// } -/// -/// @require {mixin} directional-property -/// -/// @output `border-style` - -@mixin border-style($vals...) { - @include directional-property(border, style, $vals...); -} diff --git a/app/src/styles/vendor/bourbon/addons/_border-width.scss b/app/src/styles/vendor/bourbon/addons/_border-width.scss deleted file mode 100755 index 0ea2d4b71d..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_border-width.scss +++ /dev/null @@ -1,25 +0,0 @@ -@charset "UTF-8"; - -/// Provides a quick method for targeting `border-width` on specific sides of a box. Use a `null` value to “skip” a side. -/// -/// @param {Arglist} $vals -/// List of arguments -/// -/// @example scss - Usage -/// .element { -/// @include border-width(1em null 20px); -/// } -/// -/// @example css - CSS Output -/// .element { -/// border-bottom-width: 20px; -/// border-top-width: 1em; -/// } -/// -/// @require {mixin} directional-property -/// -/// @output `border-width` - -@mixin border-width($vals...) { - @include directional-property(border, width, $vals...); -} diff --git a/app/src/styles/vendor/bourbon/addons/_buttons.scss b/app/src/styles/vendor/bourbon/addons/_buttons.scss deleted file mode 100755 index debeabc539..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_buttons.scss +++ /dev/null @@ -1,64 +0,0 @@ -@charset "UTF-8"; - -/// Generates variables for all buttons. Please note that you must use interpolation on the variable: `#{$all-buttons}`. -/// -/// @example scss - Usage -/// #{$all-buttons} { -/// background-color: #f00; -/// } -/// -/// #{$all-buttons-focus}, -/// #{$all-buttons-hover} { -/// background-color: #0f0; -/// } -/// -/// #{$all-buttons-active} { -/// background-color: #00f; -/// } -/// -/// @example css - CSS Output -/// button, -/// input[type="button"], -/// input[type="reset"], -/// input[type="submit"] { -/// background-color: #f00; -/// } -/// -/// button:focus, -/// input[type="button"]:focus, -/// input[type="reset"]:focus, -/// input[type="submit"]:focus, -/// button:hover, -/// input[type="button"]:hover, -/// input[type="reset"]:hover, -/// input[type="submit"]:hover { -/// background-color: #0f0; -/// } -/// -/// button:active, -/// input[type="button"]:active, -/// input[type="reset"]:active, -/// input[type="submit"]:active { -/// background-color: #00f; -/// } -/// -/// @require assign-inputs -/// -/// @type List -/// -/// @todo Remove double assigned variables (Lines 59–62) in v5.0.0 - -$buttons-list: 'button', - 'input[type="button"]', - 'input[type="reset"]', - 'input[type="submit"]'; - -$all-buttons: assign-inputs($buttons-list); -$all-buttons-active: assign-inputs($buttons-list, active); -$all-buttons-focus: assign-inputs($buttons-list, focus); -$all-buttons-hover: assign-inputs($buttons-list, hover); - -$all-button-inputs: $all-buttons; -$all-button-inputs-active: $all-buttons-active; -$all-button-inputs-focus: $all-buttons-focus; -$all-button-inputs-hover: $all-buttons-hover; diff --git a/app/src/styles/vendor/bourbon/addons/_clearfix.scss b/app/src/styles/vendor/bourbon/addons/_clearfix.scss deleted file mode 100755 index 11313d66f1..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_clearfix.scss +++ /dev/null @@ -1,25 +0,0 @@ -@charset "UTF-8"; - -/// Provides an easy way to include a clearfix for containing floats. -/// -/// @link http://cssmojo.com/latest_new_clearfix_so_far/ -/// -/// @example scss - Usage -/// .element { -/// @include clearfix; -/// } -/// -/// @example css - CSS Output -/// .element::after { -/// clear: both; -/// content: ""; -/// display: table; -/// } - -@mixin clearfix { - &::after { - clear: both; - content: ""; - display: table; - } -} diff --git a/app/src/styles/vendor/bourbon/addons/_ellipsis.scss b/app/src/styles/vendor/bourbon/addons/_ellipsis.scss deleted file mode 100755 index a367f651c1..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_ellipsis.scss +++ /dev/null @@ -1,30 +0,0 @@ -@charset "UTF-8"; - -/// Truncates text and adds an ellipsis to represent overflow. -/// -/// @param {Number} $width [100%] -/// Max-width for the string to respect before being truncated -/// -/// @example scss - Usage -/// .element { -/// @include ellipsis; -/// } -/// -/// @example css - CSS Output -/// .element { -/// display: inline-block; -/// max-width: 100%; -/// overflow: hidden; -/// text-overflow: ellipsis; -/// white-space: nowrap; -/// word-wrap: normal; -/// } - -@mixin ellipsis($width: 100%) { - display: inline-block; - max-width: $width; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - word-wrap: normal; -} diff --git a/app/src/styles/vendor/bourbon/addons/_font-stacks.scss b/app/src/styles/vendor/bourbon/addons/_font-stacks.scss deleted file mode 100755 index 57128f422a..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_font-stacks.scss +++ /dev/null @@ -1,31 +0,0 @@ -@charset "UTF-8"; - -/// Georgia font stack. -/// -/// @type List - -$georgia: "Georgia", "Cambria", "Times New Roman", "Times", serif; - -/// Helvetica font stack. -/// -/// @type List - -$helvetica: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif; - -/// Lucida Grande font stack. -/// -/// @type List - -$lucida-grande: "Lucida Grande", "Tahoma", "Verdana", "Arial", sans-serif; - -/// Monospace font stack. -/// -/// @type List - -$monospace: "Bitstream Vera Sans Mono", "Consolas", "Courier", monospace; - -/// Verdana font stack. -/// -/// @type List - -$verdana: "Verdana", "Geneva", sans-serif; diff --git a/app/src/styles/vendor/bourbon/addons/_hide-text.scss b/app/src/styles/vendor/bourbon/addons/_hide-text.scss deleted file mode 100755 index 4caf20ed58..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_hide-text.scss +++ /dev/null @@ -1,27 +0,0 @@ -/// Hides the text in an element, commonly used to show an image. Some elements will need block-level styles applied. -/// -/// @link http://zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement -/// -/// @example scss - Usage -/// .element { -/// @include hide-text; -/// } -/// -/// @example css - CSS Output -/// .element { -/// overflow: hidden; -/// text-indent: 101%; -/// white-space: nowrap; -/// } -/// -/// @todo Remove height argument in v5.0.0 - -@mixin hide-text($height: null) { - overflow: hidden; - text-indent: 101%; - white-space: nowrap; - - @if $height { - @warn "The `hide-text` mixin has changed and no longer requires a height. The height argument will no longer be accepted in v5.0.0"; - } -} diff --git a/app/src/styles/vendor/bourbon/addons/_margin.scss b/app/src/styles/vendor/bourbon/addons/_margin.scss deleted file mode 100755 index 674f4e5f6e..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_margin.scss +++ /dev/null @@ -1,26 +0,0 @@ -@charset "UTF-8"; - -/// Provides a quick method for targeting `margin` on specific sides of a box. Use a `null` value to “skip” a side. -/// -/// @param {Arglist} $vals -/// List of arguments -/// -/// @example scss - Usage -/// .element { -/// @include margin(null 10px 3em 20vh); -/// } -/// -/// @example css - CSS Output -/// .element { -/// margin-bottom: 3em; -/// margin-left: 20vh; -/// margin-right: 10px; -/// } -/// -/// @require {mixin} directional-property -/// -/// @output `margin` - -@mixin margin($vals...) { - @include directional-property(margin, false, $vals...); -} diff --git a/app/src/styles/vendor/bourbon/addons/_padding.scss b/app/src/styles/vendor/bourbon/addons/_padding.scss deleted file mode 100755 index 40a5f006b2..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_padding.scss +++ /dev/null @@ -1,26 +0,0 @@ -@charset "UTF-8"; - -/// Provides a quick method for targeting `padding` on specific sides of a box. Use a `null` value to “skip” a side. -/// -/// @param {Arglist} $vals -/// List of arguments -/// -/// @example scss - Usage -/// .element { -/// @include padding(12vh null 10px 5%); -/// } -/// -/// @example css - CSS Output -/// .element { -/// padding-bottom: 10px; -/// padding-left: 5%; -/// padding-top: 12vh; -/// } -/// -/// @require {mixin} directional-property -/// -/// @output `padding` - -@mixin padding($vals...) { - @include directional-property(padding, false, $vals...); -} diff --git a/app/src/styles/vendor/bourbon/addons/_position.scss b/app/src/styles/vendor/bourbon/addons/_position.scss deleted file mode 100755 index e460f3ffdb..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_position.scss +++ /dev/null @@ -1,48 +0,0 @@ -@charset "UTF-8"; - -/// Provides a quick method for setting an element’s position. Use a `null` value to “skip” a side. -/// -/// @param {Position} $position [relative] -/// A CSS position value -/// -/// @param {Arglist} $coordinates [null null null null] -/// List of values that correspond to the 4-value syntax for the edges of a box -/// -/// @example scss - Usage -/// .element { -/// @include position(absolute, 0 null null 10em); -/// } -/// -/// @example css - CSS Output -/// .element { -/// left: 10em; -/// position: absolute; -/// top: 0; -/// } -/// -/// @require {function} is-length -/// @require {function} unpack - -@mixin position($position: relative, $coordinates: null null null null) { - @if type-of($position) == list { - $coordinates: $position; - $position: relative; - } - - $coordinates: unpack($coordinates); - - $offsets: ( - top: nth($coordinates, 1), - right: nth($coordinates, 2), - bottom: nth($coordinates, 3), - left: nth($coordinates, 4) - ); - - position: $position; - - @each $offset, $value in $offsets { - @if is-length($value) { - #{$offset}: $value; - } - } -} diff --git a/app/src/styles/vendor/bourbon/addons/_prefixer.scss b/app/src/styles/vendor/bourbon/addons/_prefixer.scss deleted file mode 100755 index 2b6f731383..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_prefixer.scss +++ /dev/null @@ -1,66 +0,0 @@ -@charset "UTF-8"; - -/// A mixin for generating vendor prefixes on non-standardized properties. -/// -/// @param {String} $property -/// Property to prefix -/// -/// @param {*} $value -/// Value to use -/// -/// @param {List} $prefixes -/// Prefixes to define -/// -/// @example scss - Usage -/// .element { -/// @include prefixer(border-radius, 10px, webkit ms spec); -/// } -/// -/// @example css - CSS Output -/// .element { -/// -webkit-border-radius: 10px; -/// -moz-border-radius: 10px; -/// border-radius: 10px; -/// } -/// -/// @require {variable} $prefix-for-webkit -/// @require {variable} $prefix-for-mozilla -/// @require {variable} $prefix-for-microsoft -/// @require {variable} $prefix-for-opera -/// @require {variable} $prefix-for-spec - -@mixin prefixer($property, $value, $prefixes) { - @each $prefix in $prefixes { - @if $prefix == webkit { - @if $prefix-for-webkit { - -webkit-#{$property}: $value; - } - } @else if $prefix == moz { - @if $prefix-for-mozilla { - -moz-#{$property}: $value; - } - } @else if $prefix == ms { - @if $prefix-for-microsoft { - -ms-#{$property}: $value; - } - } @else if $prefix == o { - @if $prefix-for-opera { - -o-#{$property}: $value; - } - } @else if $prefix == spec { - @if $prefix-for-spec { - #{$property}: $value; - } - } @else { - @warn "Unrecognized prefix: #{$prefix}"; - } - } -} - -@mixin disable-prefix-for-all() { - $prefix-for-webkit: false !global; - $prefix-for-mozilla: false !global; - $prefix-for-microsoft: false !global; - $prefix-for-opera: false !global; - $prefix-for-spec: false !global; -} diff --git a/app/src/styles/vendor/bourbon/addons/_retina-image.scss b/app/src/styles/vendor/bourbon/addons/_retina-image.scss deleted file mode 100755 index 3995c1970a..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_retina-image.scss +++ /dev/null @@ -1,31 +0,0 @@ -@mixin retina-image($filename, $background-size, $extension: png, $retina-filename: null, $retina-suffix: _2x, $asset-pipeline: $asset-pipeline) { - @if $asset-pipeline { - background-image: image-url("#{$filename}.#{$extension}"); - } - @else { - background-image: url("#{$filename}.#{$extension}"); - } - - @include hidpi { - @if $asset-pipeline { - @if $retina-filename { - background-image: image-url("#{$retina-filename}.#{$extension}"); - } - @else { - background-image: image-url("#{$filename}#{$retina-suffix}.#{$extension}"); - } - } - - @else { - @if $retina-filename { - background-image: url("#{$retina-filename}.#{$extension}"); - } - @else { - background-image: url("#{$filename}#{$retina-suffix}.#{$extension}"); - } - } - - background-size: $background-size; - - } -} diff --git a/app/src/styles/vendor/bourbon/addons/_size.scss b/app/src/styles/vendor/bourbon/addons/_size.scss deleted file mode 100755 index 922fd120ce..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_size.scss +++ /dev/null @@ -1,55 +0,0 @@ -@charset "UTF-8"; - -/// Sets the `width` and `height` of the element. -/// -/// @param {List} $size -/// A list of at most 2 size values. -/// -/// If there is only a single value in `$size` it is used for both width and height. All units are supported. -/// -/// @example scss - Usage -/// .first-element { -/// @include size(2em); -/// } -/// -/// .second-element { -/// @include size(auto 10em); -/// } -/// -/// @example css - CSS Output -/// .first-element { -/// width: 2em; -/// height: 2em; -/// } -/// -/// .second-element { -/// width: auto; -/// height: 10em; -/// } -/// -/// @todo Refactor in 5.0.0 to use a comma-separated argument - -@mixin size($value) { - $width: nth($value, 1); - $height: $width; - - @if length($value) > 1 { - $height: nth($value, 2); - } - - @if is-size($height) { - height: $height; - } - - @else { - @warn "`#{$height}` is not a valid length for the `$height` parameter in the `size` mixin."; - } - - @if is-size($width) { - width: $width; - } - - @else { - @warn "`#{$width}` is not a valid length for the `$width` parameter in the `size` mixin."; - } -} diff --git a/app/src/styles/vendor/bourbon/addons/_text-inputs.scss b/app/src/styles/vendor/bourbon/addons/_text-inputs.scss deleted file mode 100755 index 20164d4ce5..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_text-inputs.scss +++ /dev/null @@ -1,112 +0,0 @@ -@charset "UTF-8"; - -/// Generates variables for all text-based inputs. Please note that you must use interpolation on the variable: `#{$all-text-inputs}`. -/// -/// @example scss - Usage -/// #{$all-text-inputs} { -/// border: 1px solid #f00; -/// } -/// -/// #{$all-text-inputs-focus}, -/// #{$all-text-inputs-hover} { -/// border: 1px solid #0f0; -/// } -/// -/// #{$all-text-inputs-active} { -/// border: 1px solid #00f; -/// } -/// -/// @example css - CSS Output -/// input[type="color"], -/// input[type="date"], -/// input[type="datetime"], -/// input[type="datetime-local"], -/// input[type="email"], -/// input[type="month"], -/// input[type="number"], -/// input[type="password"], -/// input[type="search"], -/// input[type="tel"], -/// input[type="text"], -/// input[type="time"], -/// input[type="url"], -/// input[type="week"], -/// textarea { -/// border: 1px solid #f00; -/// } -/// -/// input[type="color"]:focus, -/// input[type="date"]:focus, -/// input[type="datetime"]:focus, -/// input[type="datetime-local"]:focus, -/// input[type="email"]:focus, -/// input[type="month"]:focus, -/// input[type="number"]:focus, -/// input[type="password"]:focus, -/// input[type="search"]:focus, -/// input[type="tel"]:focus, -/// input[type="text"]:focus, -/// input[type="time"]:focus, -/// input[type="url"]:focus, -/// input[type="week"]:focus, -/// textarea:focus, -/// input[type="color"]:hover, -/// input[type="date"]:hover, -/// input[type="datetime"]:hover, -/// input[type="datetime-local"]:hover, -/// input[type="email"]:hover, -/// input[type="month"]:hover, -/// input[type="number"]:hover, -/// input[type="password"]:hover, -/// input[type="search"]:hover, -/// input[type="tel"]:hover, -/// input[type="text"]:hover, -/// input[type="time"]:hover, -/// input[type="url"]:hover, -/// input[type="week"]:hover, -/// textarea:hover { -/// border: 1px solid #0f0; -/// } -/// -/// input[type="color"]:active, -/// input[type="date"]:active, -/// input[type="datetime"]:active, -/// input[type="datetime-local"]:active, -/// input[type="email"]:active, -/// input[type="month"]:active, -/// input[type="number"]:active, -/// input[type="password"]:active, -/// input[type="search"]:active, -/// input[type="tel"]:active, -/// input[type="text"]:active, -/// input[type="time"]:active, -/// input[type="url"]:active, -/// input[type="week"]:active, -/// textarea:active { -/// border: 1px solid #00f; -/// } -/// -/// @require assign-inputs -/// -/// @type List - -$text-inputs-list: 'input[type="color"]', - 'input[type="date"]', - 'input[type="datetime"]', - 'input[type="datetime-local"]', - 'input[type="email"]', - 'input[type="month"]', - 'input[type="number"]', - 'input[type="password"]', - 'input[type="search"]', - 'input[type="tel"]', - 'input[type="text"]', - 'input[type="time"]', - 'input[type="url"]', - 'input[type="week"]', - 'textarea'; - -$all-text-inputs: assign-inputs($text-inputs-list); -$all-text-inputs-active: assign-inputs($text-inputs-list, active); -$all-text-inputs-focus: assign-inputs($text-inputs-list, focus); -$all-text-inputs-hover: assign-inputs($text-inputs-list, hover); diff --git a/app/src/styles/vendor/bourbon/addons/_timing-functions.scss b/app/src/styles/vendor/bourbon/addons/_timing-functions.scss deleted file mode 100755 index 20e5f1d402..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_timing-functions.scss +++ /dev/null @@ -1,34 +0,0 @@ -@charset "UTF-8"; - -/// CSS cubic-bezier timing functions. Timing functions courtesy of jquery.easie (github.com/jaukia/easie) -/// -/// Timing functions are the same as demoed here: http://jqueryui.com/resources/demos/effect/easing.html -/// -/// @type cubic-bezier - -$ease-in-quad: cubic-bezier(0.550, 0.085, 0.680, 0.530); -$ease-in-cubic: cubic-bezier(0.550, 0.055, 0.675, 0.190); -$ease-in-quart: cubic-bezier(0.895, 0.030, 0.685, 0.220); -$ease-in-quint: cubic-bezier(0.755, 0.050, 0.855, 0.060); -$ease-in-sine: cubic-bezier(0.470, 0.000, 0.745, 0.715); -$ease-in-expo: cubic-bezier(0.950, 0.050, 0.795, 0.035); -$ease-in-circ: cubic-bezier(0.600, 0.040, 0.980, 0.335); -$ease-in-back: cubic-bezier(0.600, -0.280, 0.735, 0.045); - -$ease-out-quad: cubic-bezier(0.250, 0.460, 0.450, 0.940); -$ease-out-cubic: cubic-bezier(0.215, 0.610, 0.355, 1.000); -$ease-out-quart: cubic-bezier(0.165, 0.840, 0.440, 1.000); -$ease-out-quint: cubic-bezier(0.230, 1.000, 0.320, 1.000); -$ease-out-sine: cubic-bezier(0.390, 0.575, 0.565, 1.000); -$ease-out-expo: cubic-bezier(0.190, 1.000, 0.220, 1.000); -$ease-out-circ: cubic-bezier(0.075, 0.820, 0.165, 1.000); -$ease-out-back: cubic-bezier(0.175, 0.885, 0.320, 1.275); - -$ease-in-out-quad: cubic-bezier(0.455, 0.030, 0.515, 0.955); -$ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1.000); -$ease-in-out-quart: cubic-bezier(0.770, 0.000, 0.175, 1.000); -$ease-in-out-quint: cubic-bezier(0.860, 0.000, 0.070, 1.000); -$ease-in-out-sine: cubic-bezier(0.445, 0.050, 0.550, 0.950); -$ease-in-out-expo: cubic-bezier(1.000, 0.000, 0.000, 1.000); -$ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.150, 0.860); -$ease-in-out-back: cubic-bezier(0.680, -0.550, 0.265, 1.550); diff --git a/app/src/styles/vendor/bourbon/addons/_triangle.scss b/app/src/styles/vendor/bourbon/addons/_triangle.scss deleted file mode 100755 index 9fe9eec918..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_triangle.scss +++ /dev/null @@ -1,83 +0,0 @@ -@mixin triangle ($size, $color, $direction) { - height: 0; - width: 0; - - $width: nth($size, 1); - $height: nth($size, length($size)); - - $foreground-color: nth($color, 1); - $background-color: if(length($color) == 2, nth($color, 2), transparent); - - @if ($direction == up) or ($direction == down) or ($direction == right) or ($direction == left) { - - $width: $width / 2; - $height: if(length($size) > 1, $height, $height/2); - - @if $direction == up { - border-bottom: $height solid $foreground-color; - border-left: $width solid $background-color; - border-right: $width solid $background-color; - - } @else if $direction == right { - border-bottom: $width solid $background-color; - border-left: $height solid $foreground-color; - border-top: $width solid $background-color; - - } @else if $direction == down { - border-left: $width solid $background-color; - border-right: $width solid $background-color; - border-top: $height solid $foreground-color; - - } @else if $direction == left { - border-bottom: $width solid $background-color; - border-right: $height solid $foreground-color; - border-top: $width solid $background-color; - } - } - - @else if ($direction == up-right) or ($direction == up-left) { - border-top: $height solid $foreground-color; - - @if $direction == up-right { - border-left: $width solid $background-color; - - } @else if $direction == up-left { - border-right: $width solid $background-color; - } - } - - @else if ($direction == down-right) or ($direction == down-left) { - border-bottom: $height solid $foreground-color; - - @if $direction == down-right { - border-left: $width solid $background-color; - - } @else if $direction == down-left { - border-right: $width solid $background-color; - } - } - - @else if ($direction == inset-up) { - border-color: $background-color $background-color $foreground-color; - border-style: solid; - border-width: $height $width; - } - - @else if ($direction == inset-down) { - border-color: $foreground-color $background-color $background-color; - border-style: solid; - border-width: $height $width; - } - - @else if ($direction == inset-right) { - border-color: $background-color $background-color $background-color $foreground-color; - border-style: solid; - border-width: $width $height; - } - - @else if ($direction == inset-left) { - border-color: $background-color $foreground-color $background-color $background-color; - border-style: solid; - border-width: $width $height; - } -} diff --git a/app/src/styles/vendor/bourbon/addons/_word-wrap.scss b/app/src/styles/vendor/bourbon/addons/_word-wrap.scss deleted file mode 100755 index 64856a925a..0000000000 --- a/app/src/styles/vendor/bourbon/addons/_word-wrap.scss +++ /dev/null @@ -1,29 +0,0 @@ -@charset "UTF-8"; - -/// Provides an easy way to change the `word-wrap` property. -/// -/// @param {String} $wrap [break-word] -/// Value for the `word-break` property. -/// -/// @example scss - Usage -/// .wrapper { -/// @include word-wrap(break-word); -/// } -/// -/// @example css - CSS Output -/// .wrapper { -/// overflow-wrap: break-word; -/// word-break: break-all; -/// word-wrap: break-word; -/// } - -@mixin word-wrap($wrap: break-word) { - overflow-wrap: $wrap; - word-wrap: $wrap; - - @if $wrap == break-word { - word-break: break-all; - } @else { - word-break: $wrap; - } -} diff --git a/app/src/styles/vendor/bourbon/css3/_animation.scss b/app/src/styles/vendor/bourbon/css3/_animation.scss deleted file mode 100755 index aac675f5a1..0000000000 --- a/app/src/styles/vendor/bourbon/css3/_animation.scss +++ /dev/null @@ -1,43 +0,0 @@ -// http://www.w3.org/TR/css3-animations/#the-animation-name-property- -// Each of these mixins support comma separated lists of values, which allows different transitions for individual properties to be described in a single style rule. Each value in the list corresponds to the value at that same position in the other properties. - -@mixin animation($animations...) { - @include prefixer(animation, $animations, webkit moz spec); -} - -@mixin animation-name($names...) { - @include prefixer(animation-name, $names, webkit moz spec); -} - -@mixin animation-duration($times...) { - @include prefixer(animation-duration, $times, webkit moz spec); -} - -@mixin animation-timing-function($motions...) { - // ease | linear | ease-in | ease-out | ease-in-out - @include prefixer(animation-timing-function, $motions, webkit moz spec); -} - -@mixin animation-iteration-count($values...) { - // infinite | - @include prefixer(animation-iteration-count, $values, webkit moz spec); -} - -@mixin animation-direction($directions...) { - // normal | alternate - @include prefixer(animation-direction, $directions, webkit moz spec); -} - -@mixin animation-play-state($states...) { - // running | paused - @include prefixer(animation-play-state, $states, webkit moz spec); -} - -@mixin animation-delay($times...) { - @include prefixer(animation-delay, $times, webkit moz spec); -} - -@mixin animation-fill-mode($modes...) { - // none | forwards | backwards | both - @include prefixer(animation-fill-mode, $modes, webkit moz spec); -} diff --git a/app/src/styles/vendor/bourbon/css3/_appearance.scss b/app/src/styles/vendor/bourbon/css3/_appearance.scss deleted file mode 100755 index abddc02047..0000000000 --- a/app/src/styles/vendor/bourbon/css3/_appearance.scss +++ /dev/null @@ -1,3 +0,0 @@ -@mixin appearance($value) { - @include prefixer(appearance, $value, webkit moz ms o spec); -} diff --git a/app/src/styles/vendor/bourbon/css3/_backface-visibility.scss b/app/src/styles/vendor/bourbon/css3/_backface-visibility.scss deleted file mode 100755 index fc68e2dd02..0000000000 --- a/app/src/styles/vendor/bourbon/css3/_backface-visibility.scss +++ /dev/null @@ -1,3 +0,0 @@ -@mixin backface-visibility($visibility) { - @include prefixer(backface-visibility, $visibility, webkit spec); -} diff --git a/app/src/styles/vendor/bourbon/css3/_background-image.scss b/app/src/styles/vendor/bourbon/css3/_background-image.scss deleted file mode 100755 index d09f9b8203..0000000000 --- a/app/src/styles/vendor/bourbon/css3/_background-image.scss +++ /dev/null @@ -1,42 +0,0 @@ -//************************************************************************// -// Background-image property for adding multiple background images with -// gradients, or for stringing multiple gradients together. -//************************************************************************// - -@mixin background-image($images...) { - $webkit-images: (); - $spec-images: (); - - @each $image in $images { - $webkit-image: (); - $spec-image: (); - - @if (type-of($image) == string) { - $url-str: str-slice($image, 0, 3); - $gradient-type: str-slice($image, 0, 6); - - @if $url-str == "url" { - $webkit-image: $image; - $spec-image: $image; - } - - @else if $gradient-type == "linear" { - $gradients: _linear-gradient-parser($image); - $webkit-image: map-get($gradients, webkit-image); - $spec-image: map-get($gradients, spec-image); - } - - @else if $gradient-type == "radial" { - $gradients: _radial-gradient-parser($image); - $webkit-image: map-get($gradients, webkit-image); - $spec-image: map-get($gradients, spec-image); - } - } - - $webkit-images: append($webkit-images, $webkit-image, comma); - $spec-images: append($spec-images, $spec-image, comma); - } - - background-image: $webkit-images; - background-image: $spec-images; -} diff --git a/app/src/styles/vendor/bourbon/css3/_background.scss b/app/src/styles/vendor/bourbon/css3/_background.scss deleted file mode 100755 index efb4285779..0000000000 --- a/app/src/styles/vendor/bourbon/css3/_background.scss +++ /dev/null @@ -1,55 +0,0 @@ -//************************************************************************// -// Background property for adding multiple backgrounds using shorthand -// notation. -//************************************************************************// - -@mixin background($backgrounds...) { - $webkit-backgrounds: (); - $spec-backgrounds: (); - - @each $background in $backgrounds { - $webkit-background: (); - $spec-background: (); - $background-type: type-of($background); - - @if $background-type == string or $background-type == list { - $background-str: if($background-type == list, nth($background, 1), $background); - - $url-str: str-slice($background-str, 0, 3); - $gradient-type: str-slice($background-str, 0, 6); - - @if $url-str == "url" { - $webkit-background: $background; - $spec-background: $background; - } - - @else if $gradient-type == "linear" { - $gradients: _linear-gradient-parser("#{$background}"); - $webkit-background: map-get($gradients, webkit-image); - $spec-background: map-get($gradients, spec-image); - } - - @else if $gradient-type == "radial" { - $gradients: _radial-gradient-parser("#{$background}"); - $webkit-background: map-get($gradients, webkit-image); - $spec-background: map-get($gradients, spec-image); - } - - @else { - $webkit-background: $background; - $spec-background: $background; - } - } - - @else { - $webkit-background: $background; - $spec-background: $background; - } - - $webkit-backgrounds: append($webkit-backgrounds, $webkit-background, comma); - $spec-backgrounds: append($spec-backgrounds, $spec-background, comma); - } - - background: $webkit-backgrounds; - background: $spec-backgrounds; -} diff --git a/app/src/styles/vendor/bourbon/css3/_border-image.scss b/app/src/styles/vendor/bourbon/css3/_border-image.scss deleted file mode 100755 index e74efc05c4..0000000000 --- a/app/src/styles/vendor/bourbon/css3/_border-image.scss +++ /dev/null @@ -1,59 +0,0 @@ -@mixin border-image($borders...) { - $webkit-borders: (); - $spec-borders: (); - - @each $border in $borders { - $webkit-border: (); - $spec-border: (); - $border-type: type-of($border); - - @if $border-type == string or list { - $border-str: if($border-type == list, nth($border, 1), $border); - - $url-str: str-slice($border-str, 0, 3); - $gradient-type: str-slice($border-str, 0, 6); - - @if $url-str == "url" { - $webkit-border: $border; - $spec-border: $border; - } - - @else if $gradient-type == "linear" { - $gradients: _linear-gradient-parser("#{$border}"); - $webkit-border: map-get($gradients, webkit-image); - $spec-border: map-get($gradients, spec-image); - } - - @else if $gradient-type == "radial" { - $gradients: _radial-gradient-parser("#{$border}"); - $webkit-border: map-get($gradients, webkit-image); - $spec-border: map-get($gradients, spec-image); - } - - @else { - $webkit-border: $border; - $spec-border: $border; - } - } - - @else { - $webkit-border: $border; - $spec-border: $border; - } - - $webkit-borders: append($webkit-borders, $webkit-border, comma); - $spec-borders: append($spec-borders, $spec-border, comma); - } - - -webkit-border-image: $webkit-borders; - border-image: $spec-borders; - border-style: solid; -} - -//Examples: -// @include border-image(url("image.png")); -// @include border-image(url("image.png") 20 stretch); -// @include border-image(linear-gradient(45deg, orange, yellow)); -// @include border-image(linear-gradient(45deg, orange, yellow) stretch); -// @include border-image(linear-gradient(45deg, orange, yellow) 20 30 40 50 stretch round); -// @include border-image(radial-gradient(top, cover, orange, yellow, orange)); diff --git a/app/src/styles/vendor/bourbon/css3/_calc.scss b/app/src/styles/vendor/bourbon/css3/_calc.scss deleted file mode 100755 index 0bfc738ddc..0000000000 --- a/app/src/styles/vendor/bourbon/css3/_calc.scss +++ /dev/null @@ -1,4 +0,0 @@ -@mixin calc($property, $value) { - #{$property}: -webkit-calc(#{$value}); - #{$property}: calc(#{$value}); -} diff --git a/app/src/styles/vendor/bourbon/css3/_columns.scss b/app/src/styles/vendor/bourbon/css3/_columns.scss deleted file mode 100755 index 96117670cc..0000000000 --- a/app/src/styles/vendor/bourbon/css3/_columns.scss +++ /dev/null @@ -1,47 +0,0 @@ -@mixin columns($arg: auto) { - // || - @include prefixer(columns, $arg, webkit moz spec); -} - -@mixin column-count($int: auto) { - // auto || integer - @include prefixer(column-count, $int, webkit moz spec); -} - -@mixin column-gap($length: normal) { - // normal || length - @include prefixer(column-gap, $length, webkit moz spec); -} - -@mixin column-fill($arg: auto) { - // auto || length - @include prefixer(column-fill, $arg, webkit moz spec); -} - -@mixin column-rule($arg) { - // || || - @include prefixer(column-rule, $arg, webkit moz spec); -} - -@mixin column-rule-color($color) { - @include prefixer(column-rule-color, $color, webkit moz spec); -} - -@mixin column-rule-style($style: none) { - // none | hidden | dashed | dotted | double | groove | inset | inset | outset | ridge | solid - @include prefixer(column-rule-style, $style, webkit moz spec); -} - -@mixin column-rule-width ($width: none) { - @include prefixer(column-rule-width, $width, webkit moz spec); -} - -@mixin column-span($arg: none) { - // none || all - @include prefixer(column-span, $arg, webkit moz spec); -} - -@mixin column-width($length: auto) { - // auto || length - @include prefixer(column-width, $length, webkit moz spec); -} diff --git a/app/src/styles/vendor/bourbon/css3/_filter.scss b/app/src/styles/vendor/bourbon/css3/_filter.scss deleted file mode 100755 index b8f8ffb0e7..0000000000 --- a/app/src/styles/vendor/bourbon/css3/_filter.scss +++ /dev/null @@ -1,4 +0,0 @@ -@mixin filter($function: none) { - // [ - @include prefixer(perspective, $depth, webkit moz spec); -} - -@mixin perspective-origin($value: 50% 50%) { - @include prefixer(perspective-origin, $value, webkit moz spec); -} diff --git a/app/src/styles/vendor/bourbon/css3/_placeholder.scss b/app/src/styles/vendor/bourbon/css3/_placeholder.scss deleted file mode 100755 index 5682fd097a..0000000000 --- a/app/src/styles/vendor/bourbon/css3/_placeholder.scss +++ /dev/null @@ -1,8 +0,0 @@ -@mixin placeholder { - $placeholders: ":-webkit-input" ":-moz" "-moz" "-ms-input"; - @each $placeholder in $placeholders { - &:#{$placeholder}-placeholder { - @content; - } - } -} diff --git a/app/src/styles/vendor/bourbon/css3/_radial-gradient.scss b/app/src/styles/vendor/bourbon/css3/_radial-gradient.scss deleted file mode 100755 index 8da076e28a..0000000000 --- a/app/src/styles/vendor/bourbon/css3/_radial-gradient.scss +++ /dev/null @@ -1,39 +0,0 @@ -// Requires Sass 3.1+ -@mixin radial-gradient($g1, $g2, - $g3: null, $g4: null, - $g5: null, $g6: null, - $g7: null, $g8: null, - $g9: null, $g10: null, - $pos: null, - $shape-size: null, - $fallback: null) { - - $data: _radial-arg-parser($g1, $g2, $pos, $shape-size); - $g1: nth($data, 1); - $g2: nth($data, 2); - $pos: nth($data, 3); - $shape-size: nth($data, 4); - - $full: $g1, $g2, $g3, $g4, $g5, $g6, $g7, $g8, $g9, $g10; - - // Strip deprecated cover/contain for spec - $shape-size-spec: _shape-size-stripper($shape-size); - - // Set $g1 as the default fallback color - $first-color: nth($full, 1); - $fallback-color: nth($first-color, 1); - - @if (type-of($fallback) == color) or ($fallback == "transparent") { - $fallback-color: $fallback; - } - - // Add Commas and spaces - $shape-size: if($shape-size, "#{$shape-size}, ", null); - $pos: if($pos, "#{$pos}, ", null); - $pos-spec: if($pos, "at #{$pos}", null); - $shape-size-spec: if(($shape-size-spec != " ") and ($pos == null), "#{$shape-size-spec}, ", "#{$shape-size-spec} "); - - background-color: $fallback-color; - background-image: -webkit-radial-gradient(unquote(#{$pos}#{$shape-size}#{$full})); - background-image: unquote("radial-gradient(#{$shape-size-spec}#{$pos-spec}#{$full})"); -} diff --git a/app/src/styles/vendor/bourbon/css3/_selection.scss b/app/src/styles/vendor/bourbon/css3/_selection.scss deleted file mode 100755 index 23303ab557..0000000000 --- a/app/src/styles/vendor/bourbon/css3/_selection.scss +++ /dev/null @@ -1,42 +0,0 @@ -@charset "UTF-8"; - -/// Outputs the spec and prefixed versions of the `::selection` pseudo-element. -/// -/// @param {Bool} $current-selector [false] -/// If set to `true`, it takes the current element into consideration. -/// -/// @example scss - Usage -/// .element { -/// @include selection(true) { -/// background-color: #ffbb52; -/// } -/// } -/// -/// @example css - CSS Output -/// .element::-moz-selection { -/// background-color: #ffbb52; -/// } -/// -/// .element::selection { -/// background-color: #ffbb52; -/// } - -@mixin selection($current-selector: false) { - @if $current-selector { - &::-moz-selection { - @content; - } - - &::selection { - @content; - } - } @else { - ::-moz-selection { - @content; - } - - ::selection { - @content; - } - } -} diff --git a/app/src/styles/vendor/bourbon/css3/_text-decoration.scss b/app/src/styles/vendor/bourbon/css3/_text-decoration.scss deleted file mode 100755 index 9222746ce1..0000000000 --- a/app/src/styles/vendor/bourbon/css3/_text-decoration.scss +++ /dev/null @@ -1,19 +0,0 @@ -@mixin text-decoration($value) { -// || || - @include prefixer(text-decoration, $value, moz); -} - -@mixin text-decoration-line($line: none) { -// none || underline || overline || line-through - @include prefixer(text-decoration-line, $line, moz); -} - -@mixin text-decoration-style($style: solid) { -// solid || double || dotted || dashed || wavy - @include prefixer(text-decoration-style, $style, moz webkit); -} - -@mixin text-decoration-color($color: currentColor) { -// currentColor || - @include prefixer(text-decoration-color, $color, moz); -} diff --git a/app/src/styles/vendor/bourbon/css3/_transform.scss b/app/src/styles/vendor/bourbon/css3/_transform.scss deleted file mode 100755 index 8ee6509ff6..0000000000 --- a/app/src/styles/vendor/bourbon/css3/_transform.scss +++ /dev/null @@ -1,15 +0,0 @@ -@mixin transform($property: none) { - // none | - @include prefixer(transform, $property, webkit moz ms o spec); -} - -@mixin transform-origin($axes: 50%) { - // x-axis - left | center | right | length | % - // y-axis - top | center | bottom | length | % - // z-axis - length - @include prefixer(transform-origin, $axes, webkit moz ms o spec); -} - -@mixin transform-style($style: flat) { - @include prefixer(transform-style, $style, webkit moz ms o spec); -} diff --git a/app/src/styles/vendor/bourbon/css3/_transition.scss b/app/src/styles/vendor/bourbon/css3/_transition.scss deleted file mode 100755 index 3c785ed527..0000000000 --- a/app/src/styles/vendor/bourbon/css3/_transition.scss +++ /dev/null @@ -1,71 +0,0 @@ -// Shorthand mixin. Supports multiple parentheses-deliminated values for each variable. -// Example: @include transition (all 2s ease-in-out); -// @include transition (opacity 1s ease-in 2s, width 2s ease-out); -// @include transition-property (transform, opacity); - -@mixin transition($properties...) { - // Fix for vendor-prefix transform property - $needs-prefixes: false; - $webkit: (); - $moz: (); - $spec: (); - - // Create lists for vendor-prefixed transform - @each $list in $properties { - @if nth($list, 1) == "transform" { - $needs-prefixes: true; - $list1: -webkit-transform; - $list2: -moz-transform; - $list3: (); - - @each $var in $list { - $list3: join($list3, $var); - - @if $var != "transform" { - $list1: join($list1, $var); - $list2: join($list2, $var); - } - } - - $webkit: append($webkit, $list1); - $moz: append($moz, $list2); - $spec: append($spec, $list3); - } @else { - $webkit: append($webkit, $list, comma); - $moz: append($moz, $list, comma); - $spec: append($spec, $list, comma); - } - } - - @if $needs-prefixes { - -webkit-transition: $webkit; - -moz-transition: $moz; - transition: $spec; - } @else { - @if length($properties) >= 1 { - @include prefixer(transition, $properties, webkit moz spec); - } @else { - $properties: all 0.15s ease-out 0s; - @include prefixer(transition, $properties, webkit moz spec); - } - } -} - -@mixin transition-property($properties...) { - -webkit-transition-property: transition-property-names($properties, "webkit"); - -moz-transition-property: transition-property-names($properties, "moz"); - transition-property: transition-property-names($properties, false); -} - -@mixin transition-duration($times...) { - @include prefixer(transition-duration, $times, webkit moz spec); -} - -@mixin transition-timing-function($motions...) { - // ease | linear | ease-in | ease-out | ease-in-out | cubic-bezier() - @include prefixer(transition-timing-function, $motions, webkit moz spec); -} - -@mixin transition-delay($times...) { - @include prefixer(transition-delay, $times, webkit moz spec); -} diff --git a/app/src/styles/vendor/bourbon/css3/_user-select.scss b/app/src/styles/vendor/bourbon/css3/_user-select.scss deleted file mode 100755 index d4e555100d..0000000000 --- a/app/src/styles/vendor/bourbon/css3/_user-select.scss +++ /dev/null @@ -1,3 +0,0 @@ -@mixin user-select($value: none) { - @include prefixer(user-select, $value, webkit moz ms spec); -} diff --git a/app/src/styles/vendor/bourbon/functions/_assign-inputs.scss b/app/src/styles/vendor/bourbon/functions/_assign-inputs.scss deleted file mode 100755 index f8aba96783..0000000000 --- a/app/src/styles/vendor/bourbon/functions/_assign-inputs.scss +++ /dev/null @@ -1,11 +0,0 @@ -@function assign-inputs($inputs, $pseudo: null) { - $list: (); - - @each $input in $inputs { - $input: unquote($input); - $input: if($pseudo, $input + ":" + $pseudo, $input); - $list: append($list, $input, comma); - } - - @return $list; -} diff --git a/app/src/styles/vendor/bourbon/functions/_contains-falsy.scss b/app/src/styles/vendor/bourbon/functions/_contains-falsy.scss deleted file mode 100755 index c096fdb92c..0000000000 --- a/app/src/styles/vendor/bourbon/functions/_contains-falsy.scss +++ /dev/null @@ -1,20 +0,0 @@ -@charset "UTF-8"; - -/// Checks if a list does not contains a value. -/// -/// @access private -/// -/// @param {List} $list -/// The list to check against. -/// -/// @return {Bool} - -@function contains-falsy($list) { - @each $item in $list { - @if not $item { - @return true; - } - } - - @return false; -} diff --git a/app/src/styles/vendor/bourbon/functions/_contains.scss b/app/src/styles/vendor/bourbon/functions/_contains.scss deleted file mode 100755 index 3dec27db82..0000000000 --- a/app/src/styles/vendor/bourbon/functions/_contains.scss +++ /dev/null @@ -1,26 +0,0 @@ -@charset "UTF-8"; - -/// Checks if a list contains a value(s). -/// -/// @access private -/// -/// @param {List} $list -/// The list to check against. -/// -/// @param {List} $values -/// A single value or list of values to check for. -/// -/// @example scss - Usage -/// contains($list, $value) -/// -/// @return {Bool} - -@function contains($list, $values...) { - @each $value in $values { - @if type-of(index($list, $value)) != "number" { - @return false; - } - } - - @return true; -} diff --git a/app/src/styles/vendor/bourbon/functions/_is-length.scss b/app/src/styles/vendor/bourbon/functions/_is-length.scss deleted file mode 100755 index f56aa8b1b1..0000000000 --- a/app/src/styles/vendor/bourbon/functions/_is-length.scss +++ /dev/null @@ -1,11 +0,0 @@ -@charset "UTF-8"; - -/// Checks for a valid CSS length. -/// -/// @param {String} $value - -@function is-length($value) { - @return type-of($value) != "null" and (str-slice($value + "", 1, 4) == 'calc' - or index(auto inherit initial 0, $value) - or (type-of($value) == "number" and not(unitless($value)))); -} diff --git a/app/src/styles/vendor/bourbon/functions/_is-light.scss b/app/src/styles/vendor/bourbon/functions/_is-light.scss deleted file mode 100755 index 92d90ac3cc..0000000000 --- a/app/src/styles/vendor/bourbon/functions/_is-light.scss +++ /dev/null @@ -1,21 +0,0 @@ -@charset "UTF-8"; - -/// Programatically determines whether a color is light or dark. -/// -/// @link http://robots.thoughtbot.com/closer-look-color-lightness -/// -/// @param {Color (Hex)} $color -/// -/// @example scss - Usage -/// is-light($color) -/// -/// @return {Bool} - -@function is-light($hex-color) { - $-local-red: red(rgba($hex-color, 1)); - $-local-green: green(rgba($hex-color, 1)); - $-local-blue: blue(rgba($hex-color, 1)); - $-local-lightness: ($-local-red * 0.2126 + $-local-green * 0.7152 + $-local-blue * 0.0722) / 255; - - @return $-local-lightness > 0.6; -} diff --git a/app/src/styles/vendor/bourbon/functions/_is-number.scss b/app/src/styles/vendor/bourbon/functions/_is-number.scss deleted file mode 100755 index a64e0bf219..0000000000 --- a/app/src/styles/vendor/bourbon/functions/_is-number.scss +++ /dev/null @@ -1,11 +0,0 @@ -@charset "UTF-8"; - -/// Checks for a valid number. -/// -/// @param {Number} $value -/// -/// @require {function} contains - -@function is-number($value) { - @return contains("0" "1" "2" "3" "4" "5" "6" "7" "8" "9" 0 1 2 3 4 5 6 7 8 9, $value); -} diff --git a/app/src/styles/vendor/bourbon/functions/_is-size.scss b/app/src/styles/vendor/bourbon/functions/_is-size.scss deleted file mode 100755 index 661789ab49..0000000000 --- a/app/src/styles/vendor/bourbon/functions/_is-size.scss +++ /dev/null @@ -1,13 +0,0 @@ -@charset "UTF-8"; - -/// Checks for a valid CSS size. -/// -/// @param {String} $value -/// -/// @require {function} contains -/// @require {function} is-length - -@function is-size($value) { - @return is-length($value) - or contains("fill" "fit-content" "min-content" "max-content", $value); -} diff --git a/app/src/styles/vendor/bourbon/functions/_modular-scale.scss b/app/src/styles/vendor/bourbon/functions/_modular-scale.scss deleted file mode 100755 index 20fa38812d..0000000000 --- a/app/src/styles/vendor/bourbon/functions/_modular-scale.scss +++ /dev/null @@ -1,69 +0,0 @@ -// Scaling Variables -$golden: 1.618; -$minor-second: 1.067; -$major-second: 1.125; -$minor-third: 1.2; -$major-third: 1.25; -$perfect-fourth: 1.333; -$augmented-fourth: 1.414; -$perfect-fifth: 1.5; -$minor-sixth: 1.6; -$major-sixth: 1.667; -$minor-seventh: 1.778; -$major-seventh: 1.875; -$octave: 2; -$major-tenth: 2.5; -$major-eleventh: 2.667; -$major-twelfth: 3; -$double-octave: 4; - -$modular-scale-ratio: $perfect-fourth !default; -$modular-scale-base: em($em-base) !default; - -@function modular-scale($increment, $value: $modular-scale-base, $ratio: $modular-scale-ratio) { - $v1: nth($value, 1); - $v2: nth($value, length($value)); - $value: $v1; - - // scale $v2 to just above $v1 - @while $v2 > $v1 { - $v2: ($v2 / $ratio); // will be off-by-1 - } - @while $v2 < $v1 { - $v2: ($v2 * $ratio); // will fix off-by-1 - } - - // check AFTER scaling $v2 to prevent double-counting corner-case - $double-stranded: $v2 > $v1; - - @if $increment > 0 { - @for $i from 1 through $increment { - @if $double-stranded and ($v1 * $ratio) > $v2 { - $value: $v2; - $v2: ($v2 * $ratio); - } @else { - $v1: ($v1 * $ratio); - $value: $v1; - } - } - } - - @if $increment < 0 { - // adjust $v2 to just below $v1 - @if $double-stranded { - $v2: ($v2 / $ratio); - } - - @for $i from $increment through -1 { - @if $double-stranded and ($v1 / $ratio) < $v2 { - $value: $v2; - $v2: ($v2 / $ratio); - } @else { - $v1: ($v1 / $ratio); - $value: $v1; - } - } - } - - @return $value; -} diff --git a/app/src/styles/vendor/bourbon/functions/_px-to-em.scss b/app/src/styles/vendor/bourbon/functions/_px-to-em.scss deleted file mode 100755 index ae81a44ada..0000000000 --- a/app/src/styles/vendor/bourbon/functions/_px-to-em.scss +++ /dev/null @@ -1,13 +0,0 @@ -// Convert pixels to ems -// eg. for a relational value of 12px write em(12) when the parent is 16px -// if the parent is another value say 24px write em(12, 24) - -@function em($pxval, $base: $em-base) { - @if not unitless($pxval) { - $pxval: strip-units($pxval); - } - @if not unitless($base) { - $base: strip-units($base); - } - @return ($pxval / $base) * 1em; -} diff --git a/app/src/styles/vendor/bourbon/functions/_px-to-rem.scss b/app/src/styles/vendor/bourbon/functions/_px-to-rem.scss deleted file mode 100755 index 0ac941e76b..0000000000 --- a/app/src/styles/vendor/bourbon/functions/_px-to-rem.scss +++ /dev/null @@ -1,15 +0,0 @@ -// Convert pixels to rems -// eg. for a relational value of 12px write rem(12) -// Assumes $em-base is the font-size of - -@function rem($pxval) { - @if not unitless($pxval) { - $pxval: strip-units($pxval); - } - - $base: $em-base; - @if not unitless($base) { - $base: strip-units($base); - } - @return ($pxval / $base) * 1rem; -} diff --git a/app/src/styles/vendor/bourbon/functions/_shade.scss b/app/src/styles/vendor/bourbon/functions/_shade.scss deleted file mode 100755 index 8aaf2c6d28..0000000000 --- a/app/src/styles/vendor/bourbon/functions/_shade.scss +++ /dev/null @@ -1,24 +0,0 @@ -@charset "UTF-8"; - -/// Mixes a color with black. -/// -/// @param {Color} $color -/// -/// @param {Number (Percentage)} $percent -/// The amount of black to be mixed in. -/// -/// @example scss - Usage -/// .element { -/// background-color: shade(#ffbb52, 60%); -/// } -/// -/// @example css - CSS Output -/// .element { -/// background-color: #664a20; -/// } -/// -/// @return {Color} - -@function shade($color, $percent) { - @return mix(#000, $color, $percent); -} diff --git a/app/src/styles/vendor/bourbon/functions/_strip-units.scss b/app/src/styles/vendor/bourbon/functions/_strip-units.scss deleted file mode 100755 index 6c5f3e8104..0000000000 --- a/app/src/styles/vendor/bourbon/functions/_strip-units.scss +++ /dev/null @@ -1,17 +0,0 @@ -@charset "UTF-8"; - -/// Strips the unit from a number. -/// -/// @param {Number (With Unit)} $value -/// -/// @example scss - Usage -/// $dimension: strip-units(10em); -/// -/// @example css - CSS Output -/// $dimension: 10; -/// -/// @return {Number (Unitless)} - -@function strip-units($value) { - @return ($value / ($value * 0 + 1)); -} diff --git a/app/src/styles/vendor/bourbon/functions/_tint.scss b/app/src/styles/vendor/bourbon/functions/_tint.scss deleted file mode 100755 index 2e3381488d..0000000000 --- a/app/src/styles/vendor/bourbon/functions/_tint.scss +++ /dev/null @@ -1,24 +0,0 @@ -@charset "UTF-8"; - -/// Mixes a color with white. -/// -/// @param {Color} $color -/// -/// @param {Number (Percentage)} $percent -/// The amount of white to be mixed in. -/// -/// @example scss - Usage -/// .element { -/// background-color: tint(#6ecaa6, 40%); -/// } -/// -/// @example css - CSS Output -/// .element { -/// background-color: #a8dfc9; -/// } -/// -/// @return {Color} - -@function tint($color, $percent) { - @return mix(#fff, $color, $percent); -} diff --git a/app/src/styles/vendor/bourbon/functions/_transition-property-name.scss b/app/src/styles/vendor/bourbon/functions/_transition-property-name.scss deleted file mode 100755 index 18348b93ab..0000000000 --- a/app/src/styles/vendor/bourbon/functions/_transition-property-name.scss +++ /dev/null @@ -1,22 +0,0 @@ -// Return vendor-prefixed property names if appropriate -// Example: transition-property-names((transform, color, background), moz) -> -moz-transform, color, background -//************************************************************************// -@function transition-property-names($props, $vendor: false) { - $new-props: (); - - @each $prop in $props { - $new-props: append($new-props, transition-property-name($prop, $vendor), comma); - } - - @return $new-props; -} - -@function transition-property-name($prop, $vendor: false) { - // put other properties that need to be prefixed here aswell - @if $vendor and $prop == transform { - @return unquote('-'+$vendor+'-'+$prop); - } - @else { - @return $prop; - } -} diff --git a/app/src/styles/vendor/bourbon/functions/_unpack.scss b/app/src/styles/vendor/bourbon/functions/_unpack.scss deleted file mode 100755 index 4367935d52..0000000000 --- a/app/src/styles/vendor/bourbon/functions/_unpack.scss +++ /dev/null @@ -1,27 +0,0 @@ -@charset "UTF-8"; - -/// Converts shorthand to the 4-value syntax. -/// -/// @param {List} $shorthand -/// -/// @example scss - Usage -/// .element { -/// margin: unpack(1em 2em); -/// } -/// -/// @example css - CSS Output -/// .element { -/// margin: 1em 2em 1em 2em; -/// } - -@function unpack($shorthand) { - @if length($shorthand) == 1 { - @return nth($shorthand, 1) nth($shorthand, 1) nth($shorthand, 1) nth($shorthand, 1); - } @else if length($shorthand) == 2 { - @return nth($shorthand, 1) nth($shorthand, 2) nth($shorthand, 1) nth($shorthand, 2); - } @else if length($shorthand) == 3 { - @return nth($shorthand, 1) nth($shorthand, 2) nth($shorthand, 3) nth($shorthand, 2); - } @else { - @return $shorthand; - } -} diff --git a/app/src/styles/vendor/bourbon/helpers/_convert-units.scss b/app/src/styles/vendor/bourbon/helpers/_convert-units.scss deleted file mode 100755 index efae7c33b7..0000000000 --- a/app/src/styles/vendor/bourbon/helpers/_convert-units.scss +++ /dev/null @@ -1,15 +0,0 @@ -//************************************************************************// -// Helper function for str-to-num fn. -// Source: http://sassmeister.com/gist/9647408 -//************************************************************************// -@function _convert-units($number, $unit) { - $strings: "px" "cm" "mm" "%" "ch" "pica" "in" "em" "rem" "pt" "pc" "ex" "vw" "vh" "vmin" "vmax", "deg", "rad", "grad", "turn"; - $units: 1px 1cm 1mm 1% 1ch 1pica 1in 1em 1rem 1pt 1pc 1ex 1vw 1vh 1vmin 1vmax, 1deg, 1rad, 1grad, 1turn; - $index: index($strings, $unit); - - @if not $index { - @warn "Unknown unit `#{$unit}`."; - @return false; - } - @return $number * nth($units, $index); -} diff --git a/app/src/styles/vendor/bourbon/helpers/_directional-values.scss b/app/src/styles/vendor/bourbon/helpers/_directional-values.scss deleted file mode 100755 index 6ee538db48..0000000000 --- a/app/src/styles/vendor/bourbon/helpers/_directional-values.scss +++ /dev/null @@ -1,96 +0,0 @@ -@charset "UTF-8"; - -/// Directional-property mixins are shorthands for writing properties like the following -/// -/// @ignore You can also use `false` instead of `null`. -/// -/// @param {List} $vals -/// List of directional values -/// -/// @example scss - Usage -/// .element { -/// @include border-style(dotted null); -/// @include margin(null 0 10px); -/// } -/// -/// @example css - CSS Output -/// .element { -/// border-bottom-style: dotted; -/// border-top-style: dotted; -/// margin-bottom: 10px; -/// margin-left: 0; -/// margin-right: 0; -/// } -/// -/// @require {function} contains-falsy -/// -/// @return {List} - -@function collapse-directionals($vals) { - $output: null; - - $a: nth($vals, 1); - $b: if(length($vals) < 2, $a, nth($vals, 2)); - $c: if(length($vals) < 3, $a, nth($vals, 3)); - $d: if(length($vals) < 2, $a, nth($vals, if(length($vals) < 4, 2, 4))); - - @if $a == 0 { $a: 0; } - @if $b == 0 { $b: 0; } - @if $c == 0 { $c: 0; } - @if $d == 0 { $d: 0; } - - @if $a == $b and $a == $c and $a == $d { $output: $a; } - @else if $a == $c and $b == $d { $output: $a $b; } - @else if $b == $d { $output: $a $b $c; } - @else { $output: $a $b $c $d; } - - @return $output; -} - -/// Output directional properties, for instance `margin`. -/// -/// @access private -/// -/// @param {String} $pre -/// Prefix to use -/// @param {String} $suf -/// Suffix to use -/// @param {List} $vals -/// List of values -/// -/// @require {function} collapse-directionals -/// @require {function} contains-falsy - -@mixin directional-property($pre, $suf, $vals) { - // Property Names - $top: $pre + "-top" + if($suf, "-#{$suf}", ""); - $bottom: $pre + "-bottom" + if($suf, "-#{$suf}", ""); - $left: $pre + "-left" + if($suf, "-#{$suf}", ""); - $right: $pre + "-right" + if($suf, "-#{$suf}", ""); - $all: $pre + if($suf, "-#{$suf}", ""); - - $vals: collapse-directionals($vals); - - @if contains-falsy($vals) { - @if nth($vals, 1) { #{$top}: nth($vals, 1); } - - @if length($vals) == 1 { - @if nth($vals, 1) { #{$right}: nth($vals, 1); } - } @else { - @if nth($vals, 2) { #{$right}: nth($vals, 2); } - } - - @if length($vals) == 2 { - @if nth($vals, 1) { #{$bottom}: nth($vals, 1); } - @if nth($vals, 2) { #{$left}: nth($vals, 2); } - } @else if length($vals) == 3 { - @if nth($vals, 3) { #{$bottom}: nth($vals, 3); } - @if nth($vals, 2) { #{$left}: nth($vals, 2); } - } @else if length($vals) == 4 { - @if nth($vals, 3) { #{$bottom}: nth($vals, 3); } - @if nth($vals, 4) { #{$left}: nth($vals, 4); } - } - } @else { - #{$all}: $vals; - } -} diff --git a/app/src/styles/vendor/bourbon/helpers/_font-source-declaration.scss b/app/src/styles/vendor/bourbon/helpers/_font-source-declaration.scss deleted file mode 100755 index cca54f985c..0000000000 --- a/app/src/styles/vendor/bourbon/helpers/_font-source-declaration.scss +++ /dev/null @@ -1,44 +0,0 @@ -// Used for creating the source string for fonts using @font-face -// Reference: http://goo.gl/Ru1bKP - -@function font-url-prefixer($asset-pipeline) { - @if $asset-pipeline == true { - @return font-url; - } - @else { - @return url; - } -} - -@function font-source-declaration( - $font-family, - $file-path, - $asset-pipeline, - $file-formats, - $font-url) { - - $src: null; - - $formats-map: ( - eot: "#{$file-path}.eot?#iefix" format("embedded-opentype"), - woff2: "#{$file-path}.woff2" format("woff2"), - woff: "#{$file-path}.woff" format("woff"), - ttf: "#{$file-path}.ttf" format("truetype"), - svg: "#{$file-path}.svg##{$font-family}" format("svg") - ); - - @each $key, $values in $formats-map { - @if contains($file-formats, $key) { - $file-path: nth($values, 1); - $font-format: nth($values, 2); - - @if $asset-pipeline == true { - $src: append($src, font-url($file-path) $font-format, comma); - } @else { - $src: append($src, url($file-path) $font-format, comma); - } - } - } - - @return $src; -} diff --git a/app/src/styles/vendor/bourbon/helpers/_gradient-positions-parser.scss b/app/src/styles/vendor/bourbon/helpers/_gradient-positions-parser.scss deleted file mode 100755 index 07d30b6cf9..0000000000 --- a/app/src/styles/vendor/bourbon/helpers/_gradient-positions-parser.scss +++ /dev/null @@ -1,13 +0,0 @@ -@function _gradient-positions-parser($gradient-type, $gradient-positions) { - @if $gradient-positions - and ($gradient-type == linear) - and (type-of($gradient-positions) != color) { - $gradient-positions: _linear-positions-parser($gradient-positions); - } - @else if $gradient-positions - and ($gradient-type == radial) - and (type-of($gradient-positions) != color) { - $gradient-positions: _radial-positions-parser($gradient-positions); - } - @return $gradient-positions; -} diff --git a/app/src/styles/vendor/bourbon/helpers/_linear-angle-parser.scss b/app/src/styles/vendor/bourbon/helpers/_linear-angle-parser.scss deleted file mode 100755 index e0401ed8df..0000000000 --- a/app/src/styles/vendor/bourbon/helpers/_linear-angle-parser.scss +++ /dev/null @@ -1,25 +0,0 @@ -// Private function for linear-gradient-parser -@function _linear-angle-parser($image, $first-val, $prefix, $suffix) { - $offset: null; - $unit-short: str-slice($first-val, str-length($first-val) - 2, str-length($first-val)); - $unit-long: str-slice($first-val, str-length($first-val) - 3, str-length($first-val)); - - @if ($unit-long == "grad") or - ($unit-long == "turn") { - $offset: if($unit-long == "grad", -100grad * 3, -0.75turn); - } - - @else if ($unit-short == "deg") or - ($unit-short == "rad") { - $offset: if($unit-short == "deg", -90 * 3, 1.6rad); - } - - @if $offset { - $num: _str-to-num($first-val); - - @return ( - webkit-image: -webkit- + $prefix + ($offset - $num) + $suffix, - spec-image: $image - ); - } -} diff --git a/app/src/styles/vendor/bourbon/helpers/_linear-gradient-parser.scss b/app/src/styles/vendor/bourbon/helpers/_linear-gradient-parser.scss deleted file mode 100755 index 3d259312d4..0000000000 --- a/app/src/styles/vendor/bourbon/helpers/_linear-gradient-parser.scss +++ /dev/null @@ -1,41 +0,0 @@ -@function _linear-gradient-parser($image) { - $image: unquote($image); - $gradients: (); - $start: str-index($image, "("); - $end: str-index($image, ","); - $first-val: str-slice($image, $start + 1, $end - 1); - - $prefix: str-slice($image, 0, $start); - $suffix: str-slice($image, $end, str-length($image)); - - $has-multiple-vals: str-index($first-val, " "); - $has-single-position: unquote(_position-flipper($first-val) + ""); - $has-angle: is-number(str-slice($first-val, 0, 0)); - - @if $has-multiple-vals { - $gradients: _linear-side-corner-parser($image, $first-val, $prefix, $suffix, $has-multiple-vals); - } - - @else if $has-single-position != "" { - $pos: unquote($has-single-position + ""); - - $gradients: ( - webkit-image: -webkit- + $image, - spec-image: $prefix + "to " + $pos + $suffix - ); - } - - @else if $has-angle { - // Rotate degree for webkit - $gradients: _linear-angle-parser($image, $first-val, $prefix, $suffix); - } - - @else { - $gradients: ( - webkit-image: -webkit- + $image, - spec-image: $image - ); - } - - @return $gradients; -} diff --git a/app/src/styles/vendor/bourbon/helpers/_linear-positions-parser.scss b/app/src/styles/vendor/bourbon/helpers/_linear-positions-parser.scss deleted file mode 100755 index 6d5cb6e1f0..0000000000 --- a/app/src/styles/vendor/bourbon/helpers/_linear-positions-parser.scss +++ /dev/null @@ -1,61 +0,0 @@ -@function _linear-positions-parser($pos) { - $type: type-of(nth($pos, 1)); - $spec: null; - $degree: null; - $side: null; - $corner: null; - $length: length($pos); - // Parse Side and corner positions - @if ($length > 1) { - @if nth($pos, 1) == "to" { // Newer syntax - $side: nth($pos, 2); - - @if $length == 2 { // eg. to top - // Swap for backwards compatability - $degree: _position-flipper(nth($pos, 2)); - } - @else if $length == 3 { // eg. to top left - $corner: nth($pos, 3); - } - } - @else if $length == 2 { // Older syntax ("top left") - $side: _position-flipper(nth($pos, 1)); - $corner: _position-flipper(nth($pos, 2)); - } - - @if ("#{$side} #{$corner}" == "left top") or ("#{$side} #{$corner}" == "top left") { - $degree: _position-flipper(#{$side}) _position-flipper(#{$corner}); - } - @else if ("#{$side} #{$corner}" == "right top") or ("#{$side} #{$corner}" == "top right") { - $degree: _position-flipper(#{$side}) _position-flipper(#{$corner}); - } - @else if ("#{$side} #{$corner}" == "right bottom") or ("#{$side} #{$corner}" == "bottom right") { - $degree: _position-flipper(#{$side}) _position-flipper(#{$corner}); - } - @else if ("#{$side} #{$corner}" == "left bottom") or ("#{$side} #{$corner}" == "bottom left") { - $degree: _position-flipper(#{$side}) _position-flipper(#{$corner}); - } - $spec: to $side $corner; - } - @else if $length == 1 { - // Swap for backwards compatability - @if $type == string { - $degree: $pos; - $spec: to _position-flipper($pos); - } - @else { - $degree: -270 - $pos; //rotate the gradient opposite from spec - $spec: $pos; - } - } - $degree: unquote($degree + ","); - $spec: unquote($spec + ","); - @return $degree $spec; -} - -@function _position-flipper($pos) { - @return if($pos == left, right, null) - if($pos == right, left, null) - if($pos == top, bottom, null) - if($pos == bottom, top, null); -} diff --git a/app/src/styles/vendor/bourbon/helpers/_linear-side-corner-parser.scss b/app/src/styles/vendor/bourbon/helpers/_linear-side-corner-parser.scss deleted file mode 100755 index 86ad88fbb7..0000000000 --- a/app/src/styles/vendor/bourbon/helpers/_linear-side-corner-parser.scss +++ /dev/null @@ -1,31 +0,0 @@ -// Private function for linear-gradient-parser -@function _linear-side-corner-parser($image, $first-val, $prefix, $suffix, $has-multiple-vals) { - $val-1: str-slice($first-val, 0, $has-multiple-vals - 1 ); - $val-2: str-slice($first-val, $has-multiple-vals + 1, str-length($first-val)); - $val-3: null; - $has-val-3: str-index($val-2, " "); - - @if $has-val-3 { - $val-3: str-slice($val-2, $has-val-3 + 1, str-length($val-2)); - $val-2: str-slice($val-2, 0, $has-val-3 - 1); - } - - $pos: _position-flipper($val-1) _position-flipper($val-2) _position-flipper($val-3); - $pos: unquote($pos + ""); - - // Use old spec for webkit - @if $val-1 == "to" { - @return ( - webkit-image: -webkit- + $prefix + $pos + $suffix, - spec-image: $image - ); - } - - // Bring the code up to spec - @else { - @return ( - webkit-image: -webkit- + $image, - spec-image: $prefix + "to " + $pos + $suffix - ); - } -} diff --git a/app/src/styles/vendor/bourbon/helpers/_radial-arg-parser.scss b/app/src/styles/vendor/bourbon/helpers/_radial-arg-parser.scss deleted file mode 100755 index 56c6030b74..0000000000 --- a/app/src/styles/vendor/bourbon/helpers/_radial-arg-parser.scss +++ /dev/null @@ -1,69 +0,0 @@ -@function _radial-arg-parser($g1, $g2, $pos, $shape-size) { - @each $value in $g1, $g2 { - $first-val: nth($value, 1); - $pos-type: type-of($first-val); - $spec-at-index: null; - - // Determine if spec was passed to mixin - @if type-of($value) == list { - $spec-at-index: if(index($value, at), index($value, at), false); - } - @if $spec-at-index { - @if $spec-at-index > 1 { - @for $i from 1 through ($spec-at-index - 1) { - $shape-size: $shape-size nth($value, $i); - } - @for $i from ($spec-at-index + 1) through length($value) { - $pos: $pos nth($value, $i); - } - } - @else if $spec-at-index == 1 { - @for $i from ($spec-at-index + 1) through length($value) { - $pos: $pos nth($value, $i); - } - } - $g1: null; - } - - // If not spec calculate correct values - @else { - @if ($pos-type != color) or ($first-val != "transparent") { - @if ($pos-type == number) - or ($first-val == "center") - or ($first-val == "top") - or ($first-val == "right") - or ($first-val == "bottom") - or ($first-val == "left") { - - $pos: $value; - - @if $pos == $g1 { - $g1: null; - } - } - - @else if - ($first-val == "ellipse") - or ($first-val == "circle") - or ($first-val == "closest-side") - or ($first-val == "closest-corner") - or ($first-val == "farthest-side") - or ($first-val == "farthest-corner") - or ($first-val == "contain") - or ($first-val == "cover") { - - $shape-size: $value; - - @if $value == $g1 { - $g1: null; - } - - @else if $value == $g2 { - $g2: null; - } - } - } - } - } - @return $g1, $g2, $pos, $shape-size; -} diff --git a/app/src/styles/vendor/bourbon/helpers/_radial-gradient-parser.scss b/app/src/styles/vendor/bourbon/helpers/_radial-gradient-parser.scss deleted file mode 100755 index 1895db0a70..0000000000 --- a/app/src/styles/vendor/bourbon/helpers/_radial-gradient-parser.scss +++ /dev/null @@ -1,50 +0,0 @@ -@function _radial-gradient-parser($image) { - $image: unquote($image); - $gradients: (); - $start: str-index($image, "("); - $end: str-index($image, ","); - $first-val: str-slice($image, $start + 1, $end - 1); - - $prefix: str-slice($image, 0, $start); - $suffix: str-slice($image, $end, str-length($image)); - - $is-spec-syntax: str-index($first-val, "at"); - - @if $is-spec-syntax and $is-spec-syntax > 1 { - $keyword: str-slice($first-val, 1, $is-spec-syntax - 2); - $pos: str-slice($first-val, $is-spec-syntax + 3, str-length($first-val)); - $pos: append($pos, $keyword, comma); - - $gradients: ( - webkit-image: -webkit- + $prefix + $pos + $suffix, - spec-image: $image - ); - } - - @else if $is-spec-syntax == 1 { - $pos: str-slice($first-val, $is-spec-syntax + 3, str-length($first-val)); - - $gradients: ( - webkit-image: -webkit- + $prefix + $pos + $suffix, - spec-image: $image - ); - } - - @else if str-index($image, "cover") or str-index($image, "contain") { - @warn "Radial-gradient needs to be updated to conform to latest spec."; - - $gradients: ( - webkit-image: null, - spec-image: $image - ); - } - - @else { - $gradients: ( - webkit-image: -webkit- + $image, - spec-image: $image - ); - } - - @return $gradients; -} diff --git a/app/src/styles/vendor/bourbon/helpers/_radial-positions-parser.scss b/app/src/styles/vendor/bourbon/helpers/_radial-positions-parser.scss deleted file mode 100755 index 3c552ad791..0000000000 --- a/app/src/styles/vendor/bourbon/helpers/_radial-positions-parser.scss +++ /dev/null @@ -1,18 +0,0 @@ -@function _radial-positions-parser($gradient-pos) { - $shape-size: nth($gradient-pos, 1); - $pos: nth($gradient-pos, 2); - $shape-size-spec: _shape-size-stripper($shape-size); - - $pre-spec: unquote(if($pos, "#{$pos}, ", null)) - unquote(if($shape-size, "#{$shape-size},", null)); - $pos-spec: if($pos, "at #{$pos}", null); - - $spec: "#{$shape-size-spec} #{$pos-spec}"; - - // Add comma - @if ($spec != " ") { - $spec: "#{$spec},"; - } - - @return $pre-spec $spec; -} diff --git a/app/src/styles/vendor/bourbon/helpers/_render-gradients.scss b/app/src/styles/vendor/bourbon/helpers/_render-gradients.scss deleted file mode 100755 index 5765676838..0000000000 --- a/app/src/styles/vendor/bourbon/helpers/_render-gradients.scss +++ /dev/null @@ -1,26 +0,0 @@ -// User for linear and radial gradients within background-image or border-image properties - -@function _render-gradients($gradient-positions, $gradients, $gradient-type, $vendor: false) { - $pre-spec: null; - $spec: null; - $vendor-gradients: null; - @if $gradient-type == linear { - @if $gradient-positions { - $pre-spec: nth($gradient-positions, 1); - $spec: nth($gradient-positions, 2); - } - } - @else if $gradient-type == radial { - $pre-spec: nth($gradient-positions, 1); - $spec: nth($gradient-positions, 2); - } - - @if $vendor { - $vendor-gradients: -#{$vendor}-#{$gradient-type}-gradient(#{$pre-spec} $gradients); - } - @else if $vendor == false { - $vendor-gradients: "#{$gradient-type}-gradient(#{$spec} #{$gradients})"; - $vendor-gradients: unquote($vendor-gradients); - } - @return $vendor-gradients; -} diff --git a/app/src/styles/vendor/bourbon/helpers/_shape-size-stripper.scss b/app/src/styles/vendor/bourbon/helpers/_shape-size-stripper.scss deleted file mode 100755 index ee5eda4220..0000000000 --- a/app/src/styles/vendor/bourbon/helpers/_shape-size-stripper.scss +++ /dev/null @@ -1,10 +0,0 @@ -@function _shape-size-stripper($shape-size) { - $shape-size-spec: null; - @each $value in $shape-size { - @if ($value == "cover") or ($value == "contain") { - $value: null; - } - $shape-size-spec: "#{$shape-size-spec} #{$value}"; - } - @return $shape-size-spec; -} diff --git a/app/src/styles/vendor/bourbon/helpers/_str-to-num.scss b/app/src/styles/vendor/bourbon/helpers/_str-to-num.scss deleted file mode 100755 index 3ef1d873b4..0000000000 --- a/app/src/styles/vendor/bourbon/helpers/_str-to-num.scss +++ /dev/null @@ -1,50 +0,0 @@ -//************************************************************************// -// Helper function for linear/radial-gradient-parsers. -// Source: http://sassmeister.com/gist/9647408 -//************************************************************************// -@function _str-to-num($string) { - // Matrices - $strings: "0" "1" "2" "3" "4" "5" "6" "7" "8" "9"; - $numbers: 0 1 2 3 4 5 6 7 8 9; - - // Result - $result: 0; - $divider: 0; - $minus: false; - - // Looping through all characters - @for $i from 1 through str-length($string) { - $character: str-slice($string, $i, $i); - $index: index($strings, $character); - - @if $character == "-" { - $minus: true; - } - - @else if $character == "." { - $divider: 1; - } - - @else { - @if not $index { - $result: if($minus, $result * -1, $result); - @return _convert-units($result, str-slice($string, $i)); - } - - $number: nth($numbers, $index); - - @if $divider == 0 { - $result: $result * 10; - } - - @else { - // Move the decimal dot to the left - $divider: $divider * 10; - $number: $number / $divider; - } - - $result: $result + $number; - } - } - @return if($minus, $result * -1, $result); -} diff --git a/app/src/styles/vendor/bourbon/settings/_asset-pipeline.scss b/app/src/styles/vendor/bourbon/settings/_asset-pipeline.scss deleted file mode 100755 index 4c6afc5bb3..0000000000 --- a/app/src/styles/vendor/bourbon/settings/_asset-pipeline.scss +++ /dev/null @@ -1,7 +0,0 @@ -@charset "UTF-8"; - -/// A global setting to enable or disable the `$asset-pipeline` variable for all functions that accept it. -/// -/// @type Bool - -$asset-pipeline: false !default; diff --git a/app/src/styles/vendor/bourbon/settings/_prefixer.scss b/app/src/styles/vendor/bourbon/settings/_prefixer.scss deleted file mode 100755 index 8c390514d4..0000000000 --- a/app/src/styles/vendor/bourbon/settings/_prefixer.scss +++ /dev/null @@ -1,9 +0,0 @@ -@charset "UTF-8"; - -/// Global variables to enable or disable vendor prefixes - -$prefix-for-webkit: true !default; -$prefix-for-mozilla: true !default; -$prefix-for-microsoft: true !default; -$prefix-for-opera: true !default; -$prefix-for-spec: true !default; diff --git a/app/src/styles/vendor/bourbon/settings/_px-to-em.scss b/app/src/styles/vendor/bourbon/settings/_px-to-em.scss deleted file mode 100755 index f2f9a3e8de..0000000000 --- a/app/src/styles/vendor/bourbon/settings/_px-to-em.scss +++ /dev/null @@ -1 +0,0 @@ -$em-base: 16px !default; diff --git a/app/src/styles/vendor/neat/_neat-helpers.scss b/app/src/styles/vendor/neat/_neat-helpers.scss deleted file mode 100755 index 9c182d2ee8..0000000000 --- a/app/src/styles/vendor/neat/_neat-helpers.scss +++ /dev/null @@ -1,8 +0,0 @@ -// Functions -@import "functions/private"; -@import "functions/new-breakpoint"; - -// Settings -@import "settings/grid"; -@import "settings/visual-grid"; -@import "settings/disable-warnings"; diff --git a/app/src/styles/vendor/neat/_neat.scss b/app/src/styles/vendor/neat/_neat.scss deleted file mode 100755 index 9d9477df56..0000000000 --- a/app/src/styles/vendor/neat/_neat.scss +++ /dev/null @@ -1,23 +0,0 @@ -// Neat 1.7.1 -// http://neat.bourbon.io -// Copyright 2012-2015 thoughtbot, inc. -// MIT License - -// Helpers -@import "neat-helpers"; - -// Grid -@import "grid/private"; -@import "grid/box-sizing"; -@import "grid/omega"; -@import "grid/outer-container"; -@import "grid/span-columns"; -@import "grid/row"; -@import "grid/shift"; -@import "grid/pad"; -@import "grid/fill-parent"; -@import "grid/media"; -@import "grid/to-deprecate"; -@import "grid/visual-grid"; -@import "grid/display-context"; -@import "grid/direction-context"; diff --git a/app/src/styles/vendor/neat/functions/_new-breakpoint.scss b/app/src/styles/vendor/neat/functions/_new-breakpoint.scss deleted file mode 100755 index 1bebad50df..0000000000 --- a/app/src/styles/vendor/neat/functions/_new-breakpoint.scss +++ /dev/null @@ -1,49 +0,0 @@ -@charset "UTF-8"; - -/// Returns a media context (media query / grid context) that can be stored in a variable and passed to `media()` as a single-keyword argument. Media contexts defined using `new-breakpoint` are used by the visual grid, as long as they are defined before importing Neat. -/// -/// @param {List} $query -/// A list of media query features and values. Each `$feature` should have a corresponding `$value`. -/// -/// If there is only a single `$value` in `$query`, `$default-feature` is going to be used. -/// -/// The number of total columns in the grid can be set by passing `$columns` at the end of the list (overrides `$total-columns`). For a list of valid values for `$feature`, click [here](http://www.w3.org/TR/css3-mediaqueries/#media1). -/// -/// @param {Number (unitless)} $total-columns ($grid-columns) -/// - Number of columns to use in the new grid context. Can be set as a shorthand in the first parameter. -/// -/// @example scss - Usage -/// $mobile: new-breakpoint(max-width 480px 4); -/// -/// .element { -/// @include media($mobile) { -/// @include span-columns(4); -/// } -/// } -/// -/// @example css - CSS Output -/// @media screen and (max-width: 480px) { -/// .element { -/// display: block; -/// float: left; -/// margin-right: 7.42297%; -/// width: 100%; -/// } -/// .element:last-child { -/// margin-right: 0; -/// } -/// } - -@function new-breakpoint($query: $feature $value $columns, $total-columns: $grid-columns) { - @if length($query) == 1 { - $query: $default-feature nth($query, 1) $total-columns; - } @else if is-even(length($query)) { - $query: append($query, $total-columns); - } - - @if is-not(belongs-to($query, $visual-grid-breakpoints)) { - $visual-grid-breakpoints: append($visual-grid-breakpoints, $query, comma) !global; - } - - @return $query; -} diff --git a/app/src/styles/vendor/neat/functions/_private.scss b/app/src/styles/vendor/neat/functions/_private.scss deleted file mode 100755 index 872d4dc58d..0000000000 --- a/app/src/styles/vendor/neat/functions/_private.scss +++ /dev/null @@ -1,114 +0,0 @@ -// Not function for Libsass compatibility -// https://github.com/sass/libsass/issues/368 -@function is-not($value) { - @return if($value, false, true); -} - -// Checks if a number is even -@function is-even($int) { - @return $int % 2 == 0; -} - -// Checks if an element belongs to a list or not -@function belongs-to($tested-item, $list) { - @return is-not(not-belongs-to($tested-item, $list)); -} - -@function not-belongs-to($tested-item, $list) { - @return is-not(index($list, $tested-item)); -} - -// Contains display value -@function contains-display-value($query) { - @return belongs-to(table, $query) - or belongs-to(block, $query) - or belongs-to(inline-block, $query) - or belongs-to(inline, $query); -} - -// Parses the first argument of span-columns() -@function container-span($span: $span) { - @if length($span) == 3 { - $container-columns: nth($span, 3); - @return $container-columns; - } @else if length($span) == 2 { - $container-columns: nth($span, 2); - @return $container-columns; - } - - @return $grid-columns; -} - -@function container-shift($shift: $shift) { - $parent-columns: $grid-columns !default !global; - - @if length($shift) == 3 { - $container-columns: nth($shift, 3); - @return $container-columns; - } @else if length($shift) == 2 { - $container-columns: nth($shift, 2); - @return $container-columns; - } - - @return $parent-columns; -} - -// Generates a striped background -@function gradient-stops($grid-columns, $color: $visual-grid-color) { - $transparent: transparent; - - $column-width: flex-grid(1, $grid-columns); - $gutter-width: flex-gutter($grid-columns); - $column-offset: $column-width; - - $values: ($transparent 0, $color 0); - - @for $i from 1 to $grid-columns*2 { - @if is-even($i) { - $values: append($values, $transparent $column-offset, comma); - $values: append($values, $color $column-offset, comma); - $column-offset: $column-offset + $column-width; - } @else { - $values: append($values, $color $column-offset, comma); - $values: append($values, $transparent $column-offset, comma); - $column-offset: $column-offset + $gutter-width; - } - } - - @return $values; -} - -// Layout direction -@function get-direction($layout, $default) { - $direction: null; - - @if to-upper-case($layout) == "LTR" or to-upper-case($layout) == "RTL" { - $direction: direction-from-layout($layout); - } @else { - $direction: direction-from-layout($default); - } - - @return $direction; -} - -@function direction-from-layout($layout) { - $direction: null; - - @if to-upper-case($layout) == "LTR" { - $direction: right; - } @else { - $direction: left; - } - - @return $direction; -} - -@function get-opposite-direction($direction) { - $opposite-direction: left; - - @if $direction == "left" { - $opposite-direction: right; - } - - @return $opposite-direction; -} diff --git a/app/src/styles/vendor/neat/grid/_box-sizing.scss b/app/src/styles/vendor/neat/grid/_box-sizing.scss deleted file mode 100755 index b6d3fec334..0000000000 --- a/app/src/styles/vendor/neat/grid/_box-sizing.scss +++ /dev/null @@ -1,15 +0,0 @@ -@charset "UTF-8"; - -@if $border-box-sizing == true { - html { // http://bit.ly/1qk2tVR - box-sizing: border-box; - } - - * { - &, - &::after, - &::before { - box-sizing: inherit; - } - } -} diff --git a/app/src/styles/vendor/neat/grid/_direction-context.scss b/app/src/styles/vendor/neat/grid/_direction-context.scss deleted file mode 100755 index 99c0faf25f..0000000000 --- a/app/src/styles/vendor/neat/grid/_direction-context.scss +++ /dev/null @@ -1,33 +0,0 @@ -@charset "UTF-8"; - -/// Changes the direction property used by other mixins called in the code block argument. -/// -/// @param {String} $direction (left-to-right) -/// Layout direction to be used within the block. Can be `left-to-right` or `right-to-left`. -/// -/// @example scss - Usage -/// @include direction-context(right-to-left) { -/// .right-to-left-block { -/// @include span-columns(6); -/// } -/// } -/// -/// @example css - CSS Output -/// .right-to-left-block { -/// float: right; -/// ... -/// } - -@mixin direction-context($direction: left-to-right) { - $scope-direction: $layout-direction; - - @if to-lower-case($direction) == "left-to-right" { - $layout-direction: LTR !global; - } @else if to-lower-case($direction) == "right-to-left" { - $layout-direction: RTL !global; - } - - @content; - - $layout-direction: $scope-direction !global; -} diff --git a/app/src/styles/vendor/neat/grid/_display-context.scss b/app/src/styles/vendor/neat/grid/_display-context.scss deleted file mode 100755 index 6970a275fc..0000000000 --- a/app/src/styles/vendor/neat/grid/_display-context.scss +++ /dev/null @@ -1,28 +0,0 @@ -@charset "UTF-8"; - -/// Changes the display property used by other mixins called in the code block argument. -/// -/// @param {String} $display (block) -/// Display value to be used within the block. Can be `table` or `block`. -/// -/// @example scss -/// @include display-context(table) { -/// .display-table { -/// @include span-columns(6); -/// } -/// } -/// -/// @example css -/// .display-table { -/// display: table-cell; -/// ... -/// } - -@mixin display-context($display: block) { - $scope-display: $container-display-table; - $container-display-table: $display == table !global; - - @content; - - $container-display-table: $scope-display !global; -} diff --git a/app/src/styles/vendor/neat/grid/_fill-parent.scss b/app/src/styles/vendor/neat/grid/_fill-parent.scss deleted file mode 100755 index 415f0b1e54..0000000000 --- a/app/src/styles/vendor/neat/grid/_fill-parent.scss +++ /dev/null @@ -1,22 +0,0 @@ -@charset "UTF-8"; - -/// Forces the element to fill its parent container. -/// -/// @example scss - Usage -/// .element { -/// @include fill-parent; -/// } -/// -/// @example css - CSS Output -/// .element { -/// width: 100%; -/// box-sizing: border-box; -/// } - -@mixin fill-parent() { - width: 100%; - - @if $border-box-sizing == false { - box-sizing: border-box; - } -} diff --git a/app/src/styles/vendor/neat/grid/_media.scss b/app/src/styles/vendor/neat/grid/_media.scss deleted file mode 100755 index 2c23fb63ad..0000000000 --- a/app/src/styles/vendor/neat/grid/_media.scss +++ /dev/null @@ -1,92 +0,0 @@ -@charset "UTF-8"; - -/// Outputs a media-query block with an optional grid context (the total number of columns used in the grid). -/// -/// @param {List} $query -/// A list of media query features and values, where each `$feature` should have a corresponding `$value`. -/// For a list of valid values for `$feature`, click [here](http://www.w3.org/TR/css3-mediaqueries/#media1). -/// -/// If there is only a single `$value` in `$query`, `$default-feature` is going to be used. -/// -/// The number of total columns in the grid can be set by passing `$columns` at the end of the list (overrides `$total-columns`). -/// -/// -/// @param {Number (unitless)} $total-columns ($grid-columns) -/// - Number of columns to use in the new grid context. Can be set as a shorthand in the first parameter. -/// -/// @example scss - Usage -/// .responsive-element { -/// @include media(769px) { -/// @include span-columns(6); -/// } -/// } -/// -/// .new-context-element { -/// @include media(min-width 320px max-width 480px, 6) { -/// @include span-columns(6); -/// } -/// } -/// -/// @example css - CSS Output -/// @media screen and (min-width: 769px) { -/// .responsive-element { -/// display: block; -/// float: left; -/// margin-right: 2.35765%; -/// width: 48.82117%; -/// } -/// -/// .responsive-element:last-child { -/// margin-right: 0; -/// } -/// } -/// -/// @media screen and (min-width: 320px) and (max-width: 480px) { -/// .new-context-element { -/// display: block; -/// float: left; -/// margin-right: 4.82916%; -/// width: 100%; -/// } -/// -/// .new-context-element:last-child { -/// margin-right: 0; -/// } -/// } - -@mixin media($query: $feature $value $columns, $total-columns: $grid-columns) { - @if length($query) == 1 { - @media screen and ($default-feature: nth($query, 1)) { - $default-grid-columns: $grid-columns; - $grid-columns: $total-columns !global; - @content; - $grid-columns: $default-grid-columns !global; - } - } @else { - $loop-to: length($query); - $media-query: "screen and "; - $default-grid-columns: $grid-columns; - $grid-columns: $total-columns !global; - - @if is-not(is-even(length($query))) { - $grid-columns: nth($query, $loop-to) !global; - $loop-to: $loop-to - 1; - } - - $i: 1; - @while $i <= $loop-to { - $media-query: $media-query + "(" + nth($query, $i) + ": " + nth($query, $i + 1) + ") "; - - @if ($i + 1) != $loop-to { - $media-query: $media-query + "and "; - } - - $i: $i + 2; - } - - @media #{$media-query} { - @content; - $grid-columns: $default-grid-columns !global; - } - } -} diff --git a/app/src/styles/vendor/neat/grid/_omega.scss b/app/src/styles/vendor/neat/grid/_omega.scss deleted file mode 100755 index 075c2eed63..0000000000 --- a/app/src/styles/vendor/neat/grid/_omega.scss +++ /dev/null @@ -1,87 +0,0 @@ -@charset "UTF-8"; - -/// Removes the element's gutter margin, regardless of its position in the grid hierarchy or display property. It can target a specific element, or every `nth-child` occurrence. Works only with `block` layouts. -/// -/// @param {List} $query (block) -/// List of arguments. Supported arguments are `nth-child` selectors (targets a specific pseudo element) and `auto` (targets `last-child`). -/// -/// When passed an `nth-child` argument of type `*n` with `block` display, the omega mixin automatically adds a clear to the `*n+1` th element. Note that composite arguments such as `2n+1` do not support this feature. -/// -/// **Deprecation warning**: The omega mixin will no longer take a `$direction` argument. To change the layout direction, use `row($direction)` or set `$default-layout-direction` instead. -/// -/// @example scss - Usage -/// .element { -/// @include omega; -/// } -/// -/// .nth-element { -/// @include omega(4n); -/// } -/// -/// @example css - CSS Output -/// .element { -/// margin-right: 0; -/// } -/// -/// .nth-element:nth-child(4n) { -/// margin-right: 0; -/// } -/// -/// .nth-element:nth-child(4n+1) { -/// clear: left; -/// } - -@mixin omega($query: block, $direction: default) { - $table: belongs-to(table, $query); - $auto: belongs-to(auto, $query); - - @if $direction != default { - @include -neat-warn("The omega mixin will no longer take a $direction argument. To change the layout direction, use the direction(){...} mixin."); - } @else { - $direction: get-direction($layout-direction, $default-layout-direction); - } - - @if $table { - @include -neat-warn("The omega mixin no longer removes padding in table layouts."); - } - - @if length($query) == 1 { - @if $auto { - &:last-child { - margin-#{$direction}: 0; - } - } - - @else if contains-display-value($query) and $table == false { - margin-#{$direction}: 0; - } - - @else { - @include nth-child($query, $direction); - } - } @else if length($query) == 2 { - @if $auto { - &:last-child { - margin-#{$direction}: 0; - } - } @else { - @include nth-child(nth($query, 1), $direction); - } - } @else { - @include -neat-warn("Too many arguments passed to the omega() mixin."); - } -} - -@mixin nth-child($query, $direction) { - $opposite-direction: get-opposite-direction($direction); - - &:nth-child(#{$query}) { - margin-#{$direction}: 0; - } - - @if type-of($query) == number and unit($query) == "n" { - &:nth-child(#{$query}+1) { - clear: $opposite-direction; - } - } -} diff --git a/app/src/styles/vendor/neat/grid/_outer-container.scss b/app/src/styles/vendor/neat/grid/_outer-container.scss deleted file mode 100755 index 8ed32e49b8..0000000000 --- a/app/src/styles/vendor/neat/grid/_outer-container.scss +++ /dev/null @@ -1,38 +0,0 @@ -@charset "UTF-8"; - -/// Makes an element a outer container by centring it in the viewport, clearing its floats, and setting its `max-width`. -/// Although optional, using `outer-container` is recommended. The mixin can be called on more than one element per page, as long as they are not nested. -/// -/// @param {Number (unit)} $local-max-width ($max-width) -/// Max width to be applied to the element. Can be a percentage or a measure. -/// -/// @example scss - Usage -/// .element { -/// @include outer-container(100%); -/// } -/// -/// @example css - CSS Output -/// .element { -/// *zoom: 1; -/// max-width: 100%; -/// margin-left: auto; -/// margin-right: auto; -/// } -/// -/// .element:before, .element:after { -/// content: " "; -/// display: table; -/// } -/// -/// .element:after { -/// clear: both; -/// } - -@mixin outer-container($local-max-width: $max-width) { - @include clearfix; - max-width: $local-max-width; - margin: { - left: auto; - right: auto; - } -} diff --git a/app/src/styles/vendor/neat/grid/_pad.scss b/app/src/styles/vendor/neat/grid/_pad.scss deleted file mode 100755 index 77fd338678..0000000000 --- a/app/src/styles/vendor/neat/grid/_pad.scss +++ /dev/null @@ -1,25 +0,0 @@ -@charset "UTF-8"; - -/// Adds padding to the element. -/// -/// @param {List} $padding (flex-gutter()) -/// A list of padding value(s) to use. Passing `default` in the list will result in using the gutter width as a padding value. -/// -/// @example scss - Usage -/// .element { -/// @include pad(30px -20px 10px default); -/// } -/// -/// @example css - CSS Output -/// .element { -/// padding: 30px -20px 10px 2.35765%; -/// } - -@mixin pad($padding: flex-gutter()) { - $padding-list: null; - @each $value in $padding { - $value: if($value == 'default', flex-gutter(), $value); - $padding-list: join($padding-list, $value); - } - padding: $padding-list; -} diff --git a/app/src/styles/vendor/neat/grid/_private.scss b/app/src/styles/vendor/neat/grid/_private.scss deleted file mode 100755 index 4c4e18c177..0000000000 --- a/app/src/styles/vendor/neat/grid/_private.scss +++ /dev/null @@ -1,35 +0,0 @@ -$parent-columns: $grid-columns !default; -$fg-column: $column; -$fg-gutter: $gutter; -$fg-max-columns: $grid-columns; -$container-display-table: false !default; -$layout-direction: LTR !default; - -@function flex-grid($columns, $container-columns: $fg-max-columns) { - $width: $columns * $fg-column + ($columns - 1) * $fg-gutter; - $container-width: $container-columns * $fg-column + ($container-columns - 1) * $fg-gutter; - @return percentage($width / $container-width); -} - -@function flex-gutter($container-columns: $fg-max-columns, $gutter: $fg-gutter) { - $container-width: $container-columns * $fg-column + ($container-columns - 1) * $fg-gutter; - @return percentage($gutter / $container-width); -} - -@function grid-width($n) { - @return $n * $gw-column + ($n - 1) * $gw-gutter; -} - -@function get-parent-columns($columns) { - @if $columns != $grid-columns { - $parent-columns: $columns !global; - } @else { - $parent-columns: $grid-columns !global; - } - - @return $parent-columns; -} - -@function is-display-table($container-is-display-table, $display) { - @return $container-is-display-table == true or $display == table; -} diff --git a/app/src/styles/vendor/neat/grid/_row.scss b/app/src/styles/vendor/neat/grid/_row.scss deleted file mode 100755 index e7a65498a4..0000000000 --- a/app/src/styles/vendor/neat/grid/_row.scss +++ /dev/null @@ -1,52 +0,0 @@ -@charset "UTF-8"; - -/// Designates the element as a row of columns in the grid layout. It clears the floats on the element and sets its display property. Rows can't be nested, but there can be more than one row element—with different display properties—per layout. -/// -/// @param {String} $display (default) -/// Sets the display property of the element and the display context that will be used by its children. Can be `block` or `table`. -/// -/// @param {String} $direction ($default-layout-direction) -/// Sets the layout direction. Can be `LTR` (left-to-right) or `RTL` (right-to-left). -/// -/// @example scss - Usage -/// .element { -/// @include row(); -/// } -/// -/// @example css - CSS Output -/// .element { -/// *zoom: 1; -/// display: block; -/// } -/// -/// .element:before, .element:after { -/// content: " "; -/// display: table; -/// } -/// -/// .element:after { -/// clear: both; -/// } - -@mixin row($display: default, $direction: $default-layout-direction) { - @if $direction != $default-layout-direction { - @include -neat-warn("The $direction argument will be deprecated in future versions in favor of the direction(){...} mixin."); - } - - $layout-direction: $direction !global; - - @if $display != default { - @include -neat-warn("The $display argument will be deprecated in future versions in favor of the display(){...} mixin."); - } - - @if $display == table { - display: table; - @include fill-parent; - table-layout: fixed; - $container-display-table: true !global; - } @else { - @include clearfix; - display: block; - $container-display-table: false !global; - } -} diff --git a/app/src/styles/vendor/neat/grid/_shift.scss b/app/src/styles/vendor/neat/grid/_shift.scss deleted file mode 100755 index 24a267ba7f..0000000000 --- a/app/src/styles/vendor/neat/grid/_shift.scss +++ /dev/null @@ -1,50 +0,0 @@ -@charset "UTF-8"; - -/// Translates an element horizontally by a number of columns. Positive arguments shift the element to the active layout direction, while negative ones shift it to the opposite direction. -/// -/// @param {Number (unitless)} $n-columns (1) -/// Number of columns by which the element shifts. -/// -/// @example scss - Usage -/// .element { -/// @include shift(-3); -/// } -/// -/// @example css - CSS output -/// .element { -/// margin-left: -25.58941%; -/// } - -@mixin shift($n-columns: 1) { - @include shift-in-context($n-columns); -} - -/// Translates an element horizontally by a number of columns, in a specific nesting context. -/// -/// @param {List} $shift -/// A list containing the number of columns to shift (`$columns`) and the number of columns of the parent element (`$container-columns`). -/// -/// The two values can be separated with any string such as `of`, `/`, etc. -/// -/// @example scss - Usage -/// .element { -/// @include shift(-3 of 6); -/// } -/// -/// @example css - CSS output -/// .element { -/// margin-left: -52.41458%; -/// } - -@mixin shift-in-context($shift: $columns of $container-columns) { - $n-columns: nth($shift, 1); - $parent-columns: container-shift($shift) !global; - - $direction: get-direction($layout-direction, $default-layout-direction); - $opposite-direction: get-opposite-direction($direction); - - margin-#{$opposite-direction}: $n-columns * flex-grid(1, $parent-columns) + $n-columns * flex-gutter($parent-columns); - - // Reset nesting context - $parent-columns: $grid-columns !global; -} diff --git a/app/src/styles/vendor/neat/grid/_span-columns.scss b/app/src/styles/vendor/neat/grid/_span-columns.scss deleted file mode 100755 index 38b00c12b8..0000000000 --- a/app/src/styles/vendor/neat/grid/_span-columns.scss +++ /dev/null @@ -1,94 +0,0 @@ -@charset "UTF-8"; - -/// Specifies the number of columns an element should span. If the selector is nested the number of columns of its parent element should be passed as an argument as well. -/// -/// @param {List} $span -/// A list containing `$columns`, the unitless number of columns the element spans (required), and `$container-columns`, the number of columns the parent element spans (optional). -/// -/// If only one value is passed, it is assumed that it's `$columns` and that that `$container-columns` is equal to `$grid-columns`, the total number of columns in the grid. -/// -/// The values can be separated with any string such as `of`, `/`, etc. -/// -/// `$columns` also accepts decimals for when it's necessary to break out of the standard grid. E.g. Passing `2.4` in a standard 12 column grid will divide the row into 5 columns. -/// -/// @param {String} $display (block) -/// Sets the display property of the element. By default it sets the display propert of the element to `block`. -/// -/// If passed `block-collapse`, it also removes the margin gutter by adding it to the element width. -/// -/// If passed `table`, it sets the display property to `table-cell` and calculates the width of the element without taking gutters into consideration. The result does not align with the block-based grid. -/// -/// @example scss - Usage -/// .element { -/// @include span-columns(6); -/// -/// .nested-element { -/// @include span-columns(2 of 6); -/// } -/// } -/// -/// @example css - CSS Output -/// .element { -/// display: block; -/// float: left; -/// margin-right: 2.35765%; -/// width: 48.82117%; -/// } -/// -/// .element:last-child { -/// margin-right: 0; -/// } -/// -/// .element .nested-element { -/// display: block; -/// float: left; -/// margin-right: 4.82916%; -/// width: 30.11389%; -/// } -/// -/// .element .nested-element:last-child { -/// margin-right: 0; -/// } - -@mixin span-columns($span: $columns of $container-columns, $display: block) { - $columns: nth($span, 1); - $container-columns: container-span($span); - - $parent-columns: get-parent-columns($container-columns) !global; - - $direction: get-direction($layout-direction, $default-layout-direction); - $opposite-direction: get-opposite-direction($direction); - - $display-table: is-display-table($container-display-table, $display); - - @if $display-table { - display: table-cell; - width: percentage($columns / $container-columns); - } @else { - float: #{$opposite-direction}; - - @if $display != no-display { - display: block; - } - - @if $display == collapse { - @include -neat-warn("The 'collapse' argument will be deprecated. Use 'block-collapse' instead."); - } - - @if $display == collapse or $display == block-collapse { - width: flex-grid($columns, $container-columns) + flex-gutter($container-columns); - - &:last-child { - width: flex-grid($columns, $container-columns); - } - - } @else { - margin-#{$direction}: flex-gutter($container-columns); - width: flex-grid($columns, $container-columns); - - &:last-child { - margin-#{$direction}: 0; - } - } - } -} diff --git a/app/src/styles/vendor/neat/grid/_to-deprecate.scss b/app/src/styles/vendor/neat/grid/_to-deprecate.scss deleted file mode 100755 index aeea0795b8..0000000000 --- a/app/src/styles/vendor/neat/grid/_to-deprecate.scss +++ /dev/null @@ -1,97 +0,0 @@ -@charset "UTF-8"; - -@mixin breakpoint($query:$feature $value $columns, $total-columns: $grid-columns) { - @include -neat-warn("The breakpoint() mixin was renamed to media() in Neat 1.0. Please update your project with the new syntax before the next version bump."); - - @if length($query) == 1 { - @media screen and ($default-feature: nth($query, 1)) { - $default-grid-columns: $grid-columns; - $grid-columns: $total-columns; - @content; - $grid-columns: $default-grid-columns; - } - } @else if length($query) == 2 { - @media screen and (nth($query, 1): nth($query, 2)) { - $default-grid-columns: $grid-columns; - $grid-columns: $total-columns; - @content; - $grid-columns: $default-grid-columns; - } - } @else if length($query) == 3 { - @media screen and (nth($query, 1): nth($query, 2)) { - $default-grid-columns: $grid-columns; - $grid-columns: nth($query, 3); - @content; - $grid-columns: $default-grid-columns; - } - } @else if length($query) == 4 { - @media screen and (nth($query, 1): nth($query, 2)) and (nth($query, 3): nth($query, 4)) { - $default-grid-columns: $grid-columns; - $grid-columns: $total-columns; - @content; - $grid-columns: $default-grid-columns; - } - } @else if length($query) == 5 { - @media screen and (nth($query, 1): nth($query, 2)) and (nth($query, 3): nth($query, 4)) { - $default-grid-columns: $grid-columns; - $grid-columns: nth($query, 5); - @content; - $grid-columns: $default-grid-columns; - } - } @else { - @include -neat-warn("Wrong number of arguments for breakpoint(). Read the documentation for more details."); - } -} - -@mixin nth-omega($nth, $display: block, $direction: default) { - @include -neat-warn("The nth-omega() mixin is deprecated. Please use omega() instead."); - @include omega($nth $display, $direction); -} - -/// Resets the active display property to `block`. Particularly useful when changing the display property in a single row. -/// -/// @example scss - Usage -/// .element { -/// @include row(table); -/// // Context changed to table display -/// } -/// -/// @include reset-display; -/// // Context is reset to block display - -@mixin reset-display { - $container-display-table: false !global; - @include -neat-warn("Resetting $display will be deprecated in future versions in favor of the display(){...} mixin."); -} - -/// Resets the active layout direction to the default value set in `$default-layout-direction`. Particularly useful when changing the layout direction in a single row. -/// -/// @example scss - Usage -/// .element { -/// @include row($direction: RTL); -/// // Context changed to right-to-left -/// } -/// -/// @include reset-layout-direction; -/// // Context is reset to left-to-right - -@mixin reset-layout-direction { - $layout-direction: $default-layout-direction !global; - @include -neat-warn("Resetting $direction will be deprecated in future versions in favor of the direction(){...} mixin."); -} - -/// Resets both the active layout direction and the active display property. -/// -/// @example scss - Usage -/// .element { -/// @include row(table, RTL); -/// // Context changed to table table and right-to-left -/// } -/// -/// @include reset-all; -/// // Context is reset to block display and left-to-right - -@mixin reset-all { - @include reset-display; - @include reset-layout-direction; -} diff --git a/app/src/styles/vendor/neat/grid/_visual-grid.scss b/app/src/styles/vendor/neat/grid/_visual-grid.scss deleted file mode 100755 index 1192d82888..0000000000 --- a/app/src/styles/vendor/neat/grid/_visual-grid.scss +++ /dev/null @@ -1,42 +0,0 @@ -@charset "UTF-8"; - -@mixin grid-column-gradient($values...) { - background-image: -webkit-linear-gradient(left, $values); - background-image: -moz-linear-gradient(left, $values); - background-image: -ms-linear-gradient(left, $values); - background-image: -o-linear-gradient(left, $values); - background-image: unquote("linear-gradient(to left, #{$values})"); -} - -@if $visual-grid == true or $visual-grid == yes { - body:before { - @include grid-column-gradient(gradient-stops($grid-columns)); - content: ""; - display: inline-block; - height: 100%; - left: 0; - margin: 0 auto; - max-width: $max-width; - opacity: $visual-grid-opacity; - pointer-events: none; - position: fixed; - right: 0; - width: 100%; - - @if $visual-grid-index == back { - z-index: -1; - } - - @else if $visual-grid-index == front { - z-index: 9999; - } - - @each $breakpoint in $visual-grid-breakpoints { - @if $breakpoint { - @include media($breakpoint) { - @include grid-column-gradient(gradient-stops($grid-columns)); - } - } - } - } -} diff --git a/app/src/styles/vendor/neat/settings/_disable-warnings.scss b/app/src/styles/vendor/neat/settings/_disable-warnings.scss deleted file mode 100755 index 3f9b92a6a0..0000000000 --- a/app/src/styles/vendor/neat/settings/_disable-warnings.scss +++ /dev/null @@ -1,13 +0,0 @@ -@charset "UTF-8"; - -/// Disable all deprecation warnings. Defaults to `false`. Set with a `!global` flag. -/// -/// @type Bool - -$disable-warnings: false !default; - -@mixin -neat-warn($message) { - @if $disable-warnings == false { - @warn "#{$message}"; - } -} diff --git a/app/src/styles/vendor/neat/settings/_grid.scss b/app/src/styles/vendor/neat/settings/_grid.scss deleted file mode 100755 index c4e55dc167..0000000000 --- a/app/src/styles/vendor/neat/settings/_grid.scss +++ /dev/null @@ -1,51 +0,0 @@ -@charset "UTF-8"; - -/// Sets the relative width of a single grid column. The unit used should be the same one used to define `$gutter`. To learn more about modular-scale() see [Bourbon docs](http://bourbon.io/docs/#modular-scale). Set with a `!global` flag. -/// -/// @type Number (Unit) - -$column: modular-scale(3, 1em, $golden) !default; - -/// Sets the relative width of a single grid gutter. The unit used should be the same one used to define `$column`. To learn more about modular-scale() see [Bourbon docs](http://bourbon.io/docs/#modular-scale). Set with the `!global` flag. -/// -/// @type Number (Unit) - -$gutter: modular-scale(1, 1em, $golden) !default; - -/// Sets the total number of columns in the grid. Its value can be overridden inside a media query using the `media()` mixin. Set with the `!global` flag. -/// -/// @type Number (Unitless) - -$grid-columns: 12 !default; - -/// Sets the max-width property of the element that includes `outer-container()`. To learn more about `em()` see [Bourbon docs](http://bourbon.io/docs/#px-to-em). Set with the `!global` flag. -/// -/// @type Number (Unit) -/// -$max-width: em(1088) !default; - -/// When set to true, it sets the box-sizing property of all elements to `border-box`. Set with a `!global` flag. -/// -/// @type Bool -/// -/// @example css - CSS Output -/// html { -/// box-sizing: border-box; } -/// -/// *, *::after, *::before { -/// box-sizing: inherit; -/// } - -$border-box-sizing: true !default; - -/// Sets the default [media feature](http://www.w3.org/TR/css3-mediaqueries/#media) that `media()` and `new-breakpoint()` revert to when only a breakpoint value is passed. Set with a `!global` flag. -/// -/// @type String - -$default-feature: min-width; // Default @media feature for the breakpoint() mixin - -///Sets the default layout direction of the grid. Can be `LTR` or `RTL`. Set with a `!global` flag. -/// -///@type String - -$default-layout-direction: LTR !default; diff --git a/app/src/styles/vendor/neat/settings/_visual-grid.scss b/app/src/styles/vendor/neat/settings/_visual-grid.scss deleted file mode 100755 index 9cd1815a2b..0000000000 --- a/app/src/styles/vendor/neat/settings/_visual-grid.scss +++ /dev/null @@ -1,27 +0,0 @@ -@charset "UTF-8"; - -/// Displays the visual grid when set to true. The overlaid grid may be few pixels off depending on the browser's rendering engine and pixel rounding algorithm. Set with the `!global` flag. -/// -/// @type Bool - -$visual-grid: false !default; - -/// Sets the visual grid color. Set with `!global` flag. -/// -/// @type Color - -$visual-grid-color: #eee !default; - -/// Sets the `z-index` property of the visual grid. Can be `back` (behind content) or `front` (in front of content). Set with `!global` flag. -/// -/// @type String - -$visual-grid-index: back !default; - -/// Sets the opacity property of the visual grid. Set with `!global` flag. -/// -/// @type Number (unitless) - -$visual-grid-opacity: 0.4 !default; - -$visual-grid-breakpoints: () !default; diff --git a/app/src/styles/views/_core.scss b/app/src/styles/views/_core.scss index e4df3a2436..a02594dc0d 100644 --- a/app/src/styles/views/_core.scss +++ b/app/src/styles/views/_core.scss @@ -152,10 +152,10 @@ body { color: #717171; text-shadow: 0 1px 0 rgba($white, 1); border: $thin-border-stroke $main-border-color; - @include linear-gradient(top, #f8f8f8, #e9e9e9); + background: linear-gradient(to bottom, #f8f8f8, #e9e9e9); // Pulled from Button Mixin (keep in sync with those styles) - @include linear-gradient(#fff, #f7f7f7); + background: linear-gradient(#fff, #f7f7f7); border: $thin-border-stroke $main-border-color; box-shadow: inset 0px 1px 0px 0px #fff, 0px 1px 2px rgba(0,0,0,.05); outline: none; @@ -164,7 +164,7 @@ body { &:hover:not(.active) { border: $thin-border-stroke darken($main-border-color, 2%); - @include linear-gradient(darken(#fff, 1%), darken(#f7f7f7, 1%)); + background: linear-gradient(darken(#fff, 1%), darken(#f7f7f7, 1%)); color: $medium-prim-color; } diff --git a/app/src/styles/views/_login.scss b/app/src/styles/views/_login.scss index af4946d113..fd71cab489 100644 --- a/app/src/styles/views/_login.scss +++ b/app/src/styles/views/_login.scss @@ -31,7 +31,8 @@ position: relative; height: inherit; color: $global-text-color; - @include radial-gradient($off-white, #d8dfe4); + background-color: $off-white; + background-image: radial-gradient($off-white, #d8dfe4); } .login-container { @@ -131,7 +132,7 @@ text-align: center; border-radius: 4px; border: none; - @include transition(all .2s); + transition: all .2s; &:hover { background: lighten($l-blue, 5%); diff --git a/app/src/styles/views/_statistics.scss b/app/src/styles/views/_statistics.scss index 4c172b7daf..fdd773ac1b 100644 --- a/app/src/styles/views/_statistics.scss +++ b/app/src/styles/views/_statistics.scss @@ -3,7 +3,7 @@ width: 100%; height: 40px; line-height: 40px; - @include linear-gradient(top, #fbfbfb, #e8e8e8); + background: linear-gradient(to bottom, #fbfbfb, #e8e8e8); border-bottom: 1px solid $main-border-color; @include border-top-radius($main-border-radius); padding: 0 20px;