diff --git a/themes/grav/app/updates/index.js b/themes/grav/app/updates/index.js index 8df2f620..38051c89 100644 --- a/themes/grav/app/updates/index.js +++ b/themes/grav/app/updates/index.js @@ -133,11 +133,14 @@ export default class Updates { let container = $(`[data-gpm-${singles[index]}="${item}"]`); let element = container.find('.gpm-name'); let url = element.find('a'); + let content_wrapper = container.parents('.content-wrapper'); if (type === 'plugins' && !element.find('.badge.update').length) { element.append(`${translations.PLUGIN_ADMIN.UPDATE_AVAILABLE}!`); + content_wrapper.addClass('has-updates'); } else if (type === 'themes') { element.append(`
`); + content_wrapper.addClass('has-updates'); } // details page @@ -161,6 +164,8 @@ export default class Updates { $('[data-update-packages]').removeClass('hidden'); }); + $('.content-wrapper').addClass('updates-checked'); + if (!is_current_package_latest) { $('.warning-reinstall-not-latest-release').removeClass('hidden'); } diff --git a/themes/grav/css-compiled/fonts.css b/themes/grav/css-compiled/fonts.css index b08f57a5..4890d75d 100644 --- a/themes/grav/css-compiled/fonts.css +++ b/themes/grav/css-compiled/fonts.css @@ -1,15 +1,3 @@ -@import url("//fonts.googleapis.com/css?family=Montserrat:400|Lato:300,400,700|Inconsolata:400,700"); -body, h5, h6, -.badge, .note, .grav-mdeditor-preview, -input, select, textarea, button, .selectize-input { - font-family: "Lato", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif; } +@import url("//fonts.googleapis.com/css?family=Montserrat:400|Lato:300,400,700|Inconsolata:400,700");body,h5,h6,.badge,.note,.grav-mdeditor-preview,input,select,textarea,button,.selectize-input{font-family:"Lato","Helvetica","Tahoma","Geneva","Arial",sans-serif}h1,h2,h3,h4,#admin-menu li,.form-tabs>label,.label{font-family:"Montserrat","Helvetica","Tahoma","Geneva","Arial",sans-serif}code,kbd,pre,samp,body .CodeMirror{font-family:"Inconsolata","Monaco","Consolas","Lucida Console",monospace !important} -h1, h2, h3, h4, -#admin-menu li, .form-tabs > label, .label { - font-family: "Montserrat", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif; } - -code, kbd, pre, samp, -body .CodeMirror { - font-family: "Inconsolata", "Monaco", "Consolas", "Lucida Console", monospace !important; } - -/*# sourceMappingURL=../css-compiled/fonts.css.map */ \ No newline at end of file +/*# sourceMappingURL=fonts.css.map */ diff --git a/themes/grav/css-compiled/fonts.css.map b/themes/grav/css-compiled/fonts.css.map index 68279215..c6d7ad7f 100644 --- a/themes/grav/css-compiled/fonts.css.map +++ b/themes/grav/css-compiled/fonts.css.map @@ -1,11 +1 @@ -{ - "version": 3, - "file": "../scss/fonts.css", - "sources": [ - "../scss/fonts.scss", - "../hdr0", - "../scss/configuration/fonts/_support.scss" - ], - "mappings": "AE+DA,OAAO,CAAC,4FAAI;AAtBR,AAAA,IAAI,EAAE,AAAA,EAAE,EAAE,AAAA,EAAE;AACZ,AAAA,MAAM,EAAE,AAAA,KAAK,EAAE,AAAA,sBAAsB;AACrC,AAAA,KAAK,EAAE,AAAA,MAAM,EAAE,AAAA,QAAQ,EAAE,AAAA,MAAM,EAAE,AAAA,gBAAgB,CAAC;EAC9C,WAAW,EAAE,MAAU,EAAE,WAAW,EAAE,QAAQ,EAAE,QAAQ,EAAE,OAAO,EAAE,UAAU,GAChF;;AAID,AAAA,EAAE,EAAE,AAAA,EAAE,EAAE,AAAA,EAAE,EAAE,AAAA,EAAE;AACd,AAAY,WAAD,CAAC,EAAE,EAAE,AAAa,UAAH,GAAG,KAAK,EAAE,AAAA,MAAM,CAAC;EACvC,WAAW,EAAE,YAAU,EAAE,WAAW,EAAE,QAAQ,EAAE,QAAQ,EAAE,OAAO,EAAE,UAAU,GAChF;;AAID,AAAA,IAAI,EAAE,AAAA,GAAG,EAAE,AAAA,GAAG,EAAE,AAAA,IAAI;AACpB,AAAK,IAAD,CAAC,WAAW,CAAC;EACb,WAAW,EAAE,aAAU,EAAE,QAAQ,EAAE,UAAU,EAAE,gBAAgB,EAAE,SAAS,CAAC,UAAU,GACxF", - "names": [] -} \ No newline at end of file +{"version":3,"file":"fonts.css","sources":["fonts.scss","configuration/fonts/_support.scss"],"sourcesContent":["$fonts-default: 'Lato' !default;\n$fonts-header: 'Montserrat' !default;\n$fonts-mono: 'Inconsolata' !default;\n\n$font-definitions: (\n Montserrat: '400',\n Lato: '300,400,700',\n Inconsolata: '400,700'\n);\n\n@import \"configuration/fonts/support\";\n\n\n\n\n","@function str-replace($string, $search, $replace: '') {\n $index: str-index($string, $search);\n\n @if $index {\n @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);\n }\n\n @return $string;\n}\n\n@function admin-font-faces($fonts) {\n $url: \"//fonts.googleapis.com/css?family=\";\n $nb: 0;\n\n @each $fontname, $weights in $fonts {\n\n @if $fontname == $fonts-default or\n $fontname == $fonts-header or\n $fontname == $fonts-mono {\n\n $nb: $nb + 1;\n $nb-word: 0;\n\n $fontname: str-replace(\"#{$fontname}\", \" \", \"+\");\n\n $url: $url + $fontname;\n\n @if $weights != null {\n $url: $url + \":\" + $weights;\n }\n\n @if $nb < 3 {\n $url: $url + \"|\";\n }\n }\n }\n\n @return $url;\n}\n\n@mixin body-fonts($font) {\n body, h5, h6,\n .badge, .note, .grav-mdeditor-preview,\n input, select, textarea, button, .selectize-input {\n font-family: \"#{$font}\", \"Helvetica\", \"Tahoma\", \"Geneva\", \"Arial\", sans-serif;\n }\n}\n\n@mixin header-fonts($font) {\n h1, h2, h3, h4,\n #admin-menu li, .form-tabs > label, .label {\n font-family: \"#{$font}\", \"Helvetica\", \"Tahoma\", \"Geneva\", \"Arial\", sans-serif;\n }\n}\n\n@mixin mono-fonts($font) {\n code, kbd, pre, samp,\n body .CodeMirror {\n font-family: \"#{$font}\", \"Monaco\", \"Consolas\", \"Lucida Console\", monospace !important;\n }\n}\n$font-url: admin-font-faces($font-definitions);\n\n@import url(\"#{$font-url}\");\n\n@include body-fonts($fonts-default);\n\n@include header-fonts($fonts-header);\n\n@include mono-fonts($fonts-mono);\n\n\n\n\n\n"],"mappings":"AC+DA,OAAO,CAAC,4FAAI,CAtBR,AAAA,IAAI,CAAE,AAAA,EAAE,CAAE,AAAA,EAAE,CACZ,AAAA,MAAM,CAAE,AAAA,KAAK,CAAE,AAAA,sBAAsB,CACrC,AAAA,KAAK,CAAE,AAAA,MAAM,CAAE,AAAA,QAAQ,CAAE,AAAA,MAAM,CAAE,AAAA,gBAAgB,AAAC,CAC9C,WAAW,CAAE,MAAU,CAAE,WAAW,CAAE,QAAQ,CAAE,QAAQ,CAAE,OAAO,CAAE,UAAU,CAChF,AAID,AAAA,EAAE,CAAE,AAAA,EAAE,CAAE,AAAA,EAAE,CAAE,AAAA,EAAE,CACd,AAAY,WAAD,CAAC,EAAE,CAAE,AAAa,UAAH,CAAG,KAAK,CAAE,AAAA,MAAM,AAAC,CACvC,WAAW,CAAE,YAAU,CAAE,WAAW,CAAE,QAAQ,CAAE,QAAQ,CAAE,OAAO,CAAE,UAAU,CAChF,AAID,AAAA,IAAI,CAAE,AAAA,GAAG,CAAE,AAAA,GAAG,CAAE,AAAA,IAAI,CACpB,AAAK,IAAD,CAAC,WAAW,AAAC,CACb,WAAW,CAAE,aAAU,CAAE,QAAQ,CAAE,UAAU,CAAE,gBAAgB,CAAE,SAAS,CAAC,UAAU,CACxF","names":[]} \ No newline at end of file diff --git a/themes/grav/css-compiled/nucleus.css b/themes/grav/css-compiled/nucleus.css index e29a828b..6006576a 100644 --- a/themes/grav/css-compiled/nucleus.css +++ b/themes/grav/css-compiled/nucleus.css @@ -1,623 +1,3 @@ -*, *::before, *::after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; } +*,*::before,*::after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@-webkit-viewport{width:device-width}@-moz-viewport{width:device-width}@-ms-viewport{width:device-width}@-o-viewport{width:device-width}@viewport{width:device-width}html{font-size:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent;text-decoration:none}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}mark{background:#ff0;color:#000}sub,sup{font-size:.75rem;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0;max-width:100%}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0}pre{overflow:auto}code,kbd,pre,samp{font-size:1rem}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0;table-layout:fixed;width:100%}tr,td,th{vertical-align:middle}th,td{padding:.425rem 0}th{text-align:left}.container{width:75em;margin:0 auto;padding:0}@media only all and (min-width: 60em) and (max-width: 74.938em){.container{width:60em}}@media only all and (min-width: 48em) and (max-width: 59.938em){.container{width:48em}}@media only all and (min-width: 30.063em) and (max-width: 47.938em){.container{width:30em}}@media only all and (max-width: 30em){.container{width:100%}}.grid{display:-webkit-box;display:-moz-box;display:box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row;-moz-flex-flow:row;flex-flow:row;list-style:none;margin:0;padding:0}@media only all and (max-width: 47.938em){.grid{-webkit-flex-flow:row wrap;-moz-flex-flow:row wrap;flex-flow:row wrap}}.block{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;-webkit-flex:1;-moz-flex:1;-ms-flex:1;flex:1}@media only all and (max-width: 47.938em){.block{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 100%;-moz-flex:0 100%;-ms-flex:0 100%;flex:0 100%}}.content{margin:.625rem;padding:.938rem}@media only all and (max-width: 47.938em){body [class*="size-"]{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 100%;-moz-flex:0 100%;-ms-flex:0 100%;flex:0 100%}}.size-1-2{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 50%;-moz-flex:0 50%;-ms-flex:0 50%;flex:0 50%}.size-1-3{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 33.33333%;-moz-flex:0 33.33333%;-ms-flex:0 33.33333%;flex:0 33.33333%}.size-1-4{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 25%;-moz-flex:0 25%;-ms-flex:0 25%;flex:0 25%}.size-1-5{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 20%;-moz-flex:0 20%;-ms-flex:0 20%;flex:0 20%}.size-1-6{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 16.66667%;-moz-flex:0 16.66667%;-ms-flex:0 16.66667%;flex:0 16.66667%}.size-1-7{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 14.28571%;-moz-flex:0 14.28571%;-ms-flex:0 14.28571%;flex:0 14.28571%}.size-1-8{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 12.5%;-moz-flex:0 12.5%;-ms-flex:0 12.5%;flex:0 12.5%}.size-1-9{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 11.11111%;-moz-flex:0 11.11111%;-ms-flex:0 11.11111%;flex:0 11.11111%}.size-1-10{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 10%;-moz-flex:0 10%;-ms-flex:0 10%;flex:0 10%}.size-1-11{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 9.09091%;-moz-flex:0 9.09091%;-ms-flex:0 9.09091%;flex:0 9.09091%}.size-1-12{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 8.33333%;-moz-flex:0 8.33333%;-ms-flex:0 8.33333%;flex:0 8.33333%}@media only all and (min-width: 48em) and (max-width: 59.938em){.size-tablet-1-2{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 50%;-moz-flex:0 50%;-ms-flex:0 50%;flex:0 50%}.size-tablet-1-3{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 33.33333%;-moz-flex:0 33.33333%;-ms-flex:0 33.33333%;flex:0 33.33333%}.size-tablet-1-4{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 25%;-moz-flex:0 25%;-ms-flex:0 25%;flex:0 25%}.size-tablet-1-5{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 20%;-moz-flex:0 20%;-ms-flex:0 20%;flex:0 20%}.size-tablet-1-6{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 16.66667%;-moz-flex:0 16.66667%;-ms-flex:0 16.66667%;flex:0 16.66667%}.size-tablet-1-7{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 14.28571%;-moz-flex:0 14.28571%;-ms-flex:0 14.28571%;flex:0 14.28571%}.size-tablet-1-8{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 12.5%;-moz-flex:0 12.5%;-ms-flex:0 12.5%;flex:0 12.5%}.size-tablet-1-9{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 11.11111%;-moz-flex:0 11.11111%;-ms-flex:0 11.11111%;flex:0 11.11111%}.size-tablet-1-10{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 10%;-moz-flex:0 10%;-ms-flex:0 10%;flex:0 10%}.size-tablet-1-11{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 9.09091%;-moz-flex:0 9.09091%;-ms-flex:0 9.09091%;flex:0 9.09091%}.size-tablet-1-12{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;-webkit-flex:0 8.33333%;-moz-flex:0 8.33333%;-ms-flex:0 8.33333%;flex:0 8.33333%}}@media only all and (max-width: 47.938em){@supports not (flex-wrap: wrap){.grid{display:block;-webkit-box-lines:inherit;-moz-box-lines:inherit;box-lines:inherit;-webkit-flex-wrap:inherit;-moz-flex-wrap:inherit;-ms-flex-wrap:inherit;flex-wrap:inherit}.block{display:block;-webkit-box-flex:inherit;-moz-box-flex:inherit;box-flex:inherit;-webkit-flex:inherit;-moz-flex:inherit;-ms-flex:inherit;flex:inherit}}}.first-block{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.last-block{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.fixed-blocks{-webkit-flex-flow:row wrap;-moz-flex-flow:row wrap;flex-flow:row wrap}.fixed-blocks .block{-webkit-box-flex:inherit;-moz-box-flex:inherit;box-flex:inherit;-webkit-flex:inherit;-moz-flex:inherit;-ms-flex:inherit;flex:inherit;width:25%}@media only all and (min-width: 60em) and (max-width: 74.938em){.fixed-blocks .block{width:33.33333%}}@media only all and (min-width: 48em) and (max-width: 59.938em){.fixed-blocks .block{width:50%}}@media only all and (max-width: 47.938em){.fixed-blocks .block{width:100%}}@supports not (flex-wrap: wrap){.fixed-blocks{display:block;-webkit-flex-flow:inherit;-moz-flex-flow:inherit;flex-flow:inherit}}body{font-size:1rem;line-height:1.7}h1,h2,h3,h4,h5,h6{margin:1.7rem 0 .85rem 0;text-rendering:optimizeLegibility}h1{font-size:3.2rem}h2{font-size:2.5rem}h3{font-size:2.1rem}h4{font-size:1.75rem}h5{font-size:1.35rem}h6{font-size:.85rem}p{margin:.85rem 0 1.7rem}ul,ol{margin-top:1.7rem;margin-bottom:1.7rem}ul ul,ul ol,ol ul,ol ol{margin-top:0;margin-bottom:0}blockquote{margin:1.7rem 0;padding-left:.85rem}cite{display:block;font-size:.875rem}cite:before{content:"\2014 \0020"}pre{margin:1.7rem 0;padding:.938rem}code{vertical-align:bottom}small{font-size:.875rem}hr{border-left:none;border-right:none;border-top:none;margin:1.7rem 0}fieldset{border:0;padding:.938rem;margin:0 0 1.7rem 0}input,label,select{display:block}label{margin-bottom:.425rem}label.required:after{content:"*"}label abbr{display:none}textarea,input[type="email"],input[type="number"],input[type="password"],input[type="search"],input[type="tel"],input[type="text"],input[type="url"],input[type="color"],input[type="date"],input[type="datetime"],input[type="datetime-local"],input[type="month"],input[type="time"],input[type="week"],select[multiple=multiple]{-webkit-transition:border-color;-moz-transition:border-color;transition:border-color;border-radius:.1875rem;padding:.425rem .425rem;width:100%}textarea:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="password"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="text"]:focus,input[type="url"]:focus,input[type="color"]:focus,input[type="date"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,select[multiple=multiple]:focus{outline:none}textarea{resize:vertical}input[type="checkbox"],input[type="radio"]{display:inline;margin-right:.425rem}input[type="file"]{width:100%}select{width:auto;max-width:100%;margin-bottom:1.7rem}button,input[type="submit"]{cursor:pointer;user-select:none;vertical-align:middle;white-space:nowrap;border:inherit} -@-webkit-viewport { - width: device-width; } - -@-moz-viewport { - width: device-width; } - -@-ms-viewport { - width: device-width; } - -@-o-viewport { - width: device-width; } - -@viewport { - width: device-width; } - -html { - font-size: 100%; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; } - -body { - margin: 0; } - -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -nav, -section, -summary { - display: block; } - -audio, -canvas, -progress, -video { - display: inline-block; - vertical-align: baseline; } - -audio:not([controls]) { - display: none; - height: 0; } - -[hidden], -template { - display: none; } - -a { - background: transparent; - text-decoration: none; } - -a:active, -a:hover { - outline: 0; } - -abbr[title] { - border-bottom: 1px dotted; } - -b, -strong { - font-weight: bold; } - -dfn { - font-style: italic; } - -mark { - background: #ff0; - color: #000; } - -sub, -sup { - font-size: 0.75rem; - line-height: 0; - position: relative; - vertical-align: baseline; } - -sup { - top: -0.5em; } - -sub { - bottom: -0.25em; } - -img { - border: 0; - max-width: 100%; } - -svg:not(:root) { - overflow: hidden; } - -figure { - margin: 1em 40px; } - -hr { - height: 0; } - -pre { - overflow: auto; } - -code, -kbd, -pre, -samp { - font-size: 1rem; } - -button, -input, -optgroup, -select, -textarea { - color: inherit; - font: inherit; - margin: 0; } - -button { - overflow: visible; } - -button, -select { - text-transform: none; } - -button, -html input[type="button"], -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; - cursor: pointer; } - -button[disabled], -html input[disabled] { - cursor: default; } - -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; } - -input { - line-height: normal; } - -input[type="checkbox"], -input[type="radio"] { - padding: 0; } - -input[type="number"]::-webkit-inner-spin-button, -input[type="number"]::-webkit-outer-spin-button { - height: auto; } - -input[type="search"] { - -webkit-appearance: textfield; } - -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; } - -legend { - border: 0; - padding: 0; } - -textarea { - overflow: auto; } - -optgroup { - font-weight: bold; } - -table { - border-collapse: collapse; - border-spacing: 0; - table-layout: fixed; - width: 100%; } - -tr, td, th { - vertical-align: middle; } - -th, td { - padding: 0.425rem 0; } - -th { - text-align: left; } - -.container { - width: 75em; - margin: 0 auto; - padding: 0; } - @media only all and (min-width: 60em) and (max-width: 74.938em) { - .container { - width: 60em; } } - @media only all and (min-width: 48em) and (max-width: 59.938em) { - .container { - width: 48em; } } - @media only all and (min-width: 30.063em) and (max-width: 47.938em) { - .container { - width: 30em; } } - @media only all and (max-width: 30em) { - .container { - width: 100%; } } - -.grid { - display: -webkit-box; - display: -moz-box; - display: box; - display: -webkit-flex; - display: -moz-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-flow: row; - -moz-flex-flow: row; - flex-flow: row; - list-style: none; - margin: 0; - padding: 0; } - @media only all and (max-width: 47.938em) { - .grid { - -webkit-flex-flow: row wrap; - -moz-flex-flow: row wrap; - flex-flow: row wrap; } } - -.block { - -webkit-box-flex: 1; - -moz-box-flex: 1; - box-flex: 1; - -webkit-flex: 1; - -moz-flex: 1; - -ms-flex: 1; - flex: 1; } - @media only all and (max-width: 47.938em) { - .block { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 100%; - -moz-flex: 0 100%; - -ms-flex: 0 100%; - flex: 0 100%; } } - -.content { - margin: 0.625rem; - padding: 0.938rem; } - -@media only all and (max-width: 47.938em) { - body [class*="size-"] { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 100%; - -moz-flex: 0 100%; - -ms-flex: 0 100%; - flex: 0 100%; } } - -.size-1-2 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 50%; - -moz-flex: 0 50%; - -ms-flex: 0 50%; - flex: 0 50%; } - -.size-1-3 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 33.33333%; - -moz-flex: 0 33.33333%; - -ms-flex: 0 33.33333%; - flex: 0 33.33333%; } - -.size-1-4 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 25%; - -moz-flex: 0 25%; - -ms-flex: 0 25%; - flex: 0 25%; } - -.size-1-5 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 20%; - -moz-flex: 0 20%; - -ms-flex: 0 20%; - flex: 0 20%; } - -.size-1-6 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 16.66667%; - -moz-flex: 0 16.66667%; - -ms-flex: 0 16.66667%; - flex: 0 16.66667%; } - -.size-1-7 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 14.28571%; - -moz-flex: 0 14.28571%; - -ms-flex: 0 14.28571%; - flex: 0 14.28571%; } - -.size-1-8 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 12.5%; - -moz-flex: 0 12.5%; - -ms-flex: 0 12.5%; - flex: 0 12.5%; } - -.size-1-9 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 11.11111%; - -moz-flex: 0 11.11111%; - -ms-flex: 0 11.11111%; - flex: 0 11.11111%; } - -.size-1-10 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 10%; - -moz-flex: 0 10%; - -ms-flex: 0 10%; - flex: 0 10%; } - -.size-1-11 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 9.09091%; - -moz-flex: 0 9.09091%; - -ms-flex: 0 9.09091%; - flex: 0 9.09091%; } - -.size-1-12 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 8.33333%; - -moz-flex: 0 8.33333%; - -ms-flex: 0 8.33333%; - flex: 0 8.33333%; } - -@media only all and (min-width: 48em) and (max-width: 59.938em) { - .size-tablet-1-2 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 50%; - -moz-flex: 0 50%; - -ms-flex: 0 50%; - flex: 0 50%; } - .size-tablet-1-3 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 33.33333%; - -moz-flex: 0 33.33333%; - -ms-flex: 0 33.33333%; - flex: 0 33.33333%; } - .size-tablet-1-4 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 25%; - -moz-flex: 0 25%; - -ms-flex: 0 25%; - flex: 0 25%; } - .size-tablet-1-5 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 20%; - -moz-flex: 0 20%; - -ms-flex: 0 20%; - flex: 0 20%; } - .size-tablet-1-6 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 16.66667%; - -moz-flex: 0 16.66667%; - -ms-flex: 0 16.66667%; - flex: 0 16.66667%; } - .size-tablet-1-7 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 14.28571%; - -moz-flex: 0 14.28571%; - -ms-flex: 0 14.28571%; - flex: 0 14.28571%; } - .size-tablet-1-8 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 12.5%; - -moz-flex: 0 12.5%; - -ms-flex: 0 12.5%; - flex: 0 12.5%; } - .size-tablet-1-9 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 11.11111%; - -moz-flex: 0 11.11111%; - -ms-flex: 0 11.11111%; - flex: 0 11.11111%; } - .size-tablet-1-10 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 10%; - -moz-flex: 0 10%; - -ms-flex: 0 10%; - flex: 0 10%; } - .size-tablet-1-11 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 9.09091%; - -moz-flex: 0 9.09091%; - -ms-flex: 0 9.09091%; - flex: 0 9.09091%; } - .size-tablet-1-12 { - -webkit-box-flex: 0; - -moz-box-flex: 0; - box-flex: 0; - -webkit-flex: 0 8.33333%; - -moz-flex: 0 8.33333%; - -ms-flex: 0 8.33333%; - flex: 0 8.33333%; } } - -@media only all and (max-width: 47.938em) { - @supports not (flex-wrap: wrap) { - .grid { - display: block; - -webkit-box-lines: inherit; - -moz-box-lines: inherit; - box-lines: inherit; - -webkit-flex-wrap: inherit; - -moz-flex-wrap: inherit; - -ms-flex-wrap: inherit; - flex-wrap: inherit; } - .block { - display: block; - -webkit-box-flex: inherit; - -moz-box-flex: inherit; - box-flex: inherit; - -webkit-flex: inherit; - -moz-flex: inherit; - -ms-flex: inherit; - flex: inherit; } } } - -.first-block { - -webkit-box-ordinal-group: 0; - -webkit-order: -1; - -ms-flex-order: -1; - order: -1; } - -.last-block { - -webkit-box-ordinal-group: 2; - -webkit-order: 1; - -ms-flex-order: 1; - order: 1; } - -.fixed-blocks { - -webkit-flex-flow: row wrap; - -moz-flex-flow: row wrap; - flex-flow: row wrap; } - .fixed-blocks .block { - -webkit-box-flex: inherit; - -moz-box-flex: inherit; - box-flex: inherit; - -webkit-flex: inherit; - -moz-flex: inherit; - -ms-flex: inherit; - flex: inherit; - width: 25%; } - @media only all and (min-width: 60em) and (max-width: 74.938em) { - .fixed-blocks .block { - width: 33.33333%; } } - @media only all and (min-width: 48em) and (max-width: 59.938em) { - .fixed-blocks .block { - width: 50%; } } - @media only all and (max-width: 47.938em) { - .fixed-blocks .block { - width: 100%; } } - -@supports not (flex-wrap: wrap) { - .fixed-blocks { - display: block; - -webkit-flex-flow: inherit; - -moz-flex-flow: inherit; - flex-flow: inherit; } } - -body { - font-size: 1rem; - line-height: 1.7; } - -h1, h2, h3, h4, h5, h6 { - margin: 1.7rem 0 0.85rem 0; - text-rendering: optimizeLegibility; } - -h1 { - font-size: 3.2rem; } - -h2 { - font-size: 2.5rem; } - -h3 { - font-size: 2.1rem; } - -h4 { - font-size: 1.75rem; } - -h5 { - font-size: 1.35rem; } - -h6 { - font-size: 0.85rem; } - -p { - margin: 0.85rem 0 1.7rem; } - -ul, ol { - margin-top: 1.7rem; - margin-bottom: 1.7rem; } - ul ul, ul ol, ol ul, ol ol { - margin-top: 0; - margin-bottom: 0; } - -blockquote { - margin: 1.7rem 0; - padding-left: 0.85rem; } - -cite { - display: block; - font-size: 0.875rem; } - cite:before { - content: "\2014 \0020"; } - -pre { - margin: 1.7rem 0; - padding: 0.938rem; } - -code { - vertical-align: bottom; } - -small { - font-size: 0.875rem; } - -hr { - border-left: none; - border-right: none; - border-top: none; - margin: 1.7rem 0; } - -fieldset { - border: 0; - padding: 0.938rem; - margin: 0 0 1.7rem 0; } - -input, -label, -select { - display: block; } - -label { - margin-bottom: 0.425rem; } - label.required:after { - content: "*"; } - label abbr { - display: none; } - -textarea, input[type="email"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="url"], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="time"], input[type="week"], select[multiple=multiple] { - -webkit-transition: border-color; - -moz-transition: border-color; - transition: border-color; - border-radius: 0.1875rem; - padding: 0.425rem 0.425rem; - width: 100%; } - textarea:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, select[multiple=multiple]:focus { - outline: none; } - -textarea { - resize: vertical; } - -input[type="checkbox"], input[type="radio"] { - display: inline; - margin-right: 0.425rem; } - -input[type="file"] { - width: 100%; } - -select { - width: auto; - max-width: 100%; - margin-bottom: 1.7rem; } - -button, -input[type="submit"] { - cursor: pointer; - user-select: none; - vertical-align: middle; - white-space: nowrap; - border: inherit; } - -/*# sourceMappingURL=../css-compiled/nucleus.css.map */ \ No newline at end of file +/*# sourceMappingURL=nucleus.css.map */ diff --git a/themes/grav/css-compiled/nucleus.css.map b/themes/grav/css-compiled/nucleus.css.map index 7fbc2616..7807194e 100644 --- a/themes/grav/css-compiled/nucleus.css.map +++ b/themes/grav/css-compiled/nucleus.css.map @@ -1,93 +1 @@ -{ - "version": 3, - "file": "../scss/nucleus.css", - "sources": [ - "../scss/nucleus.scss", - "../hdr0", - "../scss/vendor/bourbon/_bourbon.scss", - "../scss/vendor/bourbon/settings/_prefixer.scss", - "../scss/vendor/bourbon/settings/_px-to-em.scss", - "../scss/vendor/bourbon/helpers/_convert-units.scss", - "../scss/vendor/bourbon/helpers/_gradient-positions-parser.scss", - "../scss/vendor/bourbon/helpers/_is-num.scss", - "../scss/vendor/bourbon/helpers/_linear-angle-parser.scss", - "../scss/vendor/bourbon/helpers/_linear-gradient-parser.scss", - "../scss/vendor/bourbon/helpers/_linear-positions-parser.scss", - "../scss/vendor/bourbon/helpers/_linear-side-corner-parser.scss", - "../scss/vendor/bourbon/helpers/_radial-arg-parser.scss", - "../scss/vendor/bourbon/helpers/_radial-positions-parser.scss", - "../scss/vendor/bourbon/helpers/_radial-gradient-parser.scss", - "../scss/vendor/bourbon/helpers/_render-gradients.scss", - "../scss/vendor/bourbon/helpers/_shape-size-stripper.scss", - "../scss/vendor/bourbon/helpers/_str-to-num.scss", - "../scss/vendor/bourbon/functions/_assign.scss", - "../scss/vendor/bourbon/functions/_color-lightness.scss", - "../scss/vendor/bourbon/functions/_flex-grid.scss", - "../scss/vendor/bourbon/functions/_golden-ratio.scss", - "../scss/vendor/bourbon/functions/_grid-width.scss", - "../scss/vendor/bourbon/functions/_modular-scale.scss", - "../scss/vendor/bourbon/functions/_px-to-em.scss", - "../scss/vendor/bourbon/functions/_px-to-rem.scss", - "../scss/vendor/bourbon/functions/_strip-units.scss", - "../scss/vendor/bourbon/functions/_tint-shade.scss", - "../scss/vendor/bourbon/functions/_transition-property-name.scss", - "../scss/vendor/bourbon/functions/_unpack.scss", - "../scss/vendor/bourbon/css3/_animation.scss", - "../scss/vendor/bourbon/css3/_appearance.scss", - "../scss/vendor/bourbon/css3/_backface-visibility.scss", - "../scss/vendor/bourbon/css3/_background.scss", - "../scss/vendor/bourbon/css3/_background-image.scss", - "../scss/vendor/bourbon/css3/_border-image.scss", - "../scss/vendor/bourbon/css3/_border-radius.scss", - "../scss/vendor/bourbon/css3/_box-sizing.scss", - "../scss/vendor/bourbon/css3/_calc.scss", - "../scss/vendor/bourbon/css3/_columns.scss", - "../scss/vendor/bourbon/css3/_filter.scss", - "../scss/vendor/bourbon/css3/_flex-box.scss", - "../scss/vendor/bourbon/css3/_font-face.scss", - "../scss/vendor/bourbon/css3/_hyphens.scss", - "../scss/vendor/bourbon/css3/_hidpi-media-query.scss", - "../scss/vendor/bourbon/css3/_image-rendering.scss", - "../scss/vendor/bourbon/css3/_keyframes.scss", - "../scss/vendor/bourbon/css3/_linear-gradient.scss", - "../scss/vendor/bourbon/css3/_perspective.scss", - "../scss/vendor/bourbon/css3/_radial-gradient.scss", - "../scss/vendor/bourbon/css3/_transform.scss", - "../scss/vendor/bourbon/css3/_transition.scss", - "../scss/vendor/bourbon/css3/_user-select.scss", - "../scss/vendor/bourbon/css3/_placeholder.scss", - "../scss/vendor/bourbon/addons/_button.scss", - "../scss/vendor/bourbon/addons/_clearfix.scss", - "../scss/vendor/bourbon/addons/_directional-values.scss", - "../scss/vendor/bourbon/addons/_ellipsis.scss", - "../scss/vendor/bourbon/addons/_font-family.scss", - "../scss/vendor/bourbon/addons/_hide-text.scss", - "../scss/vendor/bourbon/addons/_html5-input-types.scss", - "../scss/vendor/bourbon/addons/_position.scss", - "../scss/vendor/bourbon/addons/_prefixer.scss", - "../scss/vendor/bourbon/addons/_retina-image.scss", - "../scss/vendor/bourbon/addons/_size.scss", - "../scss/vendor/bourbon/addons/_timing-functions.scss", - "../scss/vendor/bourbon/addons/_triangle.scss", - "../scss/vendor/bourbon/addons/_word-wrap.scss", - "../scss/vendor/bourbon/_bourbon-deprecated-upcoming.scss", - "../scss/configuration/nucleus/_base.scss", - "../scss/configuration/nucleus/_core.scss", - "../scss/configuration/nucleus/_breakpoints.scss", - "../scss/configuration/nucleus/_layout.scss", - "../scss/configuration/nucleus/_typography.scss", - "../scss/configuration/nucleus/_nav.scss", - "../scss/nucleus/functions/_base.scss", - "../scss/nucleus/functions/_direction.scss", - "../scss/nucleus/functions/_range.scss", - "../scss/nucleus/mixins/_base.scss", - "../scss/nucleus/mixins/_breakpoints.scss", - "../scss/nucleus/mixins/_utilities.scss", - "../scss/nucleus/_core.scss", - "../scss/nucleus/_flex.scss", - "../scss/nucleus/_typography.scss", - "../scss/nucleus/_forms.scss" - ], - "mappings": "AiFAA,AAAA,CAAC,EAAE,AAAC,CAAA,AAAA,QAAQ,EAAE,AAAC,CAAA,AAAA,OAAO,CAAC;EnBSf,kBAAoB,EmBRP,UAAU;EnBavB,eAAiB,EmBbJ,UAAU;EnB4BvB,UAAY,EmB5BC,UAAU,GAC9B;;AAED,iBAAiB;EAAC,KAAK,EAAC,YAAa;;AACrC,cAAc;EAAC,KAAK,EAAC,YAAa;;AAClC,aAAa;EAAC,KAAK,EAAC,YAAa;;AACjC,YAAY;EAAC,KAAK,EAAC,YAAa;;AAChC,SAAS;EAAC,KAAK,EAAC,YAAa;;AAE7B,AAAA,IAAI,CAAC;EACJ,SAAS,EAAE,IAAK;EAChB,oBAAoB,EAAE,IAAK;EAC3B,wBAAwB,EAAE,IAAK,GAC/B;;AAED,AAAA,IAAI,CAAC;EACJ,MAAM,EAAE,CAAE,GACV;;AAED,AAAA,OAAO;AACP,AAAA,KAAK;AACL,AAAA,OAAO;AACP,AAAA,UAAU;AACV,AAAA,MAAM;AACN,AAAA,MAAM;AACN,AAAA,MAAM;AACN,AAAA,MAAM;AACN,AAAA,IAAI;AACJ,AAAA,GAAG;AACH,AAAA,OAAO;AACP,AAAA,OAAO,CAAC;EACP,OAAO,EAAE,KAAM,GACf;;AAED,AAAA,KAAK;AACL,AAAA,MAAM;AACN,AAAA,QAAQ;AACR,AAAA,KAAK,CAAC;EACL,OAAO,EAAE,YAAa;EACtB,cAAc,EAAE,QAAS,GACzB;;AAED,AAAoB,KAAf,AAAA,IAAK,EAAA,AAAA,AAAS,QAAR,AAAA,GAAW;EACrB,OAAO,EAAE,IAAK;EACd,MAAM,EAAE,CAAE,GACV;;CAED,AAAA,AAAO,MAAN,AAAA;AACD,AAAA,QAAQ,CAAC;EACR,OAAO,EAAE,IAAK,GACd;;AAED,AAAA,CAAC,CAAC;EACD,UAAU,EAAE,WAAY;EACxB,eAAe,EAAE,IAAK,GACtB;;AAED,AAAC,CAAA,AAAA,OAAO;AACR,AAAC,CAAA,AAAA,MAAM,CAAC;EACP,OAAO,EAAE,CAAE,GACX;;AAED,AAAU,IAAN,CAAA,AAAA,KAAC,AAAA,EAAO;EACX,aAAa,EAAE,UAAW,GAC1B;;AAED,AAAA,CAAC;AACD,AAAA,MAAM,CAAC;EACN,WAAW,EAAE,IAAK,GAClB;;AAED,AAAA,GAAG,CAAC;EACH,UAAU,EAAE,MAAO,GACnB;;AAED,AAAA,IAAI,CAAC;EACJ,UAAU,EAAE,IAAK;EACjB,KAAK,EAAE,IAAK,GACZ;;AAED,AAAA,GAAG;AACH,AAAA,GAAG,CAAC;EACH,SAAS,EAAE,OAAe;EAC1B,WAAW,EAAE,CAAE;EACf,QAAQ,EAAE,QAAS;EACnB,cAAc,EAAE,QAAS,GACzB;;AAED,AAAA,GAAG,CAAC;EACH,GAAG,EAAE,MAAO,GACZ;;AAED,AAAA,GAAG,CAAC;EACH,MAAM,EAAE,OAAQ,GAChB;;AAED,AAAA,GAAG,CAAC;EACH,MAAM,EAAE,CAAE;EACV,SAAS,EAAE,IAAK,GAChB;;AAED,AAAa,GAAV,AAAA,IAAK,CAAA,AAAA,KAAK,EAAE;EACd,QAAQ,EAAE,MAAO,GACjB;;AAED,AAAA,MAAM,CAAC;EACN,MAAM,EAAE,QAAS,GACjB;;AAED,AAAA,EAAE,CAAC;EACF,MAAM,EAAE,CAAE,GACV;;AAED,AAAA,GAAG,CAAC;EACH,QAAQ,EAAE,IAAK,GACf;;AAED,AAAA,IAAI;AACJ,AAAA,GAAG;AACH,AAAA,GAAG;AACH,AAAA,IAAI,CAAC;EACJ,SAAS,ERzHU,IAAI,GQ0HvB;;AAED,AAAA,MAAM;AACN,AAAA,KAAK;AACL,AAAA,QAAQ;AACR,AAAA,MAAM;AACN,AAAA,QAAQ,CAAC;EACR,KAAK,EAAE,OAAQ;EACf,IAAI,EAAE,OAAQ;EACd,MAAM,EAAE,CAAE,GACV;;AAED,AAAA,MAAM,CAAC;EACN,QAAQ,EAAE,OAAQ,GAClB;;AAED,AAAA,MAAM;AACN,AAAA,MAAM,CAAC;EACN,cAAc,EAAE,IAAK,GACrB;;AAED,AAAA,MAAM;AACN,AAAwB,IAApB,CAAC,KAAK,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb;AACX,AAAkB,KAAb,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ;AACN,AAAmB,KAAd,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,EAAe;EACpB,kBAAkB,EAAE,MAAO;EAC3B,MAAM,EAAE,OAAQ,GAChB;;AAED,AAAe,MAAT,CAAA,AAAA,QAAC,AAAA;AACP,AAAmB,IAAf,CAAC,KAAK,CAAA,AAAA,QAAC,AAAA,EAAU;EACpB,MAAM,EAAE,OAAQ,GAChB;;AAED,AAAM,MAAA,AAAA,kBAAkB;AACxB,AAAK,KAAA,AAAA,kBAAkB,CAAC;EACvB,MAAM,EAAE,CAAE;EACV,OAAO,EAAE,CAAE,GACX;;AAED,AAAA,KAAK,CAAC;EACL,WAAW,EAAE,MAAO,GACpB;;AAED,AAAqB,KAAhB,CAAA,AAAA,IAAC,CAAK,UAAU,AAAf;AACN,AAAkB,KAAb,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,EAAc;EACnB,OAAO,EAAE,CAAE,GACX;;AAED,AAAoB,KAAf,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,2BAA2B;AAC/C,AAAoB,KAAf,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,2BAA2B,CAAC;EAC/C,MAAM,EAAE,IAAK,GACb;;AAED,AAAmB,KAAd,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,EAAe;EACpB,kBAAkB,EAAE,SAAU,GAC9B;;AAED,AAAoB,KAAf,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,8BAA8B;AAClD,AAAoB,KAAf,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,CAAc,2BAA2B,CAAC;EAC/C,kBAAkB,EAAE,IAAK,GACzB;;AAED,AAAA,MAAM,CAAC;EACN,MAAM,EAAE,CAAE;EACV,OAAO,EAAE,CAAE,GACX;;AAED,AAAA,QAAQ,CAAC;EACR,QAAQ,EAAE,IAAK,GACf;;AAED,AAAA,QAAQ,CAAC;EACR,WAAW,EAAE,IAAK,GAClB;;AAED,AAAA,KAAK,CAAC;EACL,eAAe,EAAE,QAAS;EAC1B,cAAc,EAAE,CAAE;EAClB,YAAY,EAAE,KAAM;EACpB,KAAK,EAAE,IAAK,GACZ;;AAED,AAAA,EAAE,EAAE,AAAA,EAAE,EAAE,AAAA,EAAE,CAAC;EACV,cAAc,EAAE,MAAO,GACvB;;AAED,AAAA,EAAE,EAAE,AAAA,EAAE,CAAC;EACN,OAAO,EAAG,QAAe,CAAM,CAAC,GAChC;;AAED,AAAA,EAAE,CAAC;EACF,UAAU,EAAE,IAAK,GACjB;;ACvND,AAAA,UAAU,CAAC;EACV,KAAK,EXDqB,IAAQ;EWElC,MAAM,EAAE,MAAO;EACf,OAAO,EAAE,CAAE,GAaX;EHVW,MAAM,MAAD,GAAG,MAAM,SAAS,EAAE,IAAI,OAAO,SAAS,EAAE,QAAQ;IGNnE,AAAA,UAAU,CAAC;MAKT,KAAK,EXJgB,IAAQ,GWe9B;EHPW,MAAM,MAAD,GAAG,MAAM,SAAS,EAAE,IAAI,OAAO,SAAS,EAAE,QAAQ;IGTnE,AAAA,UAAU,CAAC;MAQT,KAAK,EXNe,IAAQ,GWc7B;EHJW,MAAM,MAAD,GAAG,MAAM,SAAS,EAAE,QAAQ,OAAO,SAAS,EAAE,QAAQ;IGZvE,AAAA,UAAU,CAAC;MAWT,KAAK,EXRmB,IAAQ,GWajC;EHEW,MAAM,MAAD,GAAG,MAAM,SAAS,EAAE,IAAI;IGlBzC,AAAA,UAAU,CAAC;MAcT,KAAK,EXVe,IAAI,GWYzB;;AAGD,AAAA,KAAK,CAAC;EzCiDE,OAAO,EAAE,WAAY;EACrB,OAAO,EAAE,QAAS;EAClB,OAAO,EAAE,GAAI;EAGb,OAAO,EAAE,YAAa;EACtB,OAAO,EAAE,SAAU;EACnB,OAAO,EAAE,WAAY;EACrB,OAAO,EAAE,IAAK;EqBpEd,iBAAoB,EoBaR,GAAG;EpBRf,cAAiB,EoBQL,GAAG;EpBOf,SAAY,EoBPA,GAAG;EACtB,UAAU,EAAE,IAAK;EACjB,MAAM,EAAE,CAAE;EACV,OAAO,EAAE,CAAE,GAIX;EHJW,MAAM,MAAD,GAAG,MAAM,SAAS,EAAE,QAAQ;IGL7C,AAAA,KAAK,CAAC;MpBXE,iBAAoB,EoBkBP,GAAG,CAAC,IAAI;MpBbrB,cAAiB,EoBaJ,GAAG,CAAC,IAAI;MpBErB,SAAY,EoBFC,GAAG,CAAC,IAAI,GAE5B;;AAED,AAAA,MAAM,CAAC;EpBtBC,gBAAoB,EoBuBb,CAAC;EpBlBR,aAAiB,EoBkBV,CAAC;EpBHR,QAAY,EoBGL,CAAC;EpBvBR,YAAoB,EoBuBb,CAAC;EpBlBR,SAAiB,EoBkBV,CAAC;EpBbR,QAAgB,EoBaT,CAAC;EpBHR,IAAY,EoBGL,CAAC,GAIf;EHXW,MAAM,MAAD,GAAG,MAAM,SAAS,EAAE,QAAQ;IGM7C,AAAA,MAAM,CAAC;MpBtBC,gBAAoB,EoByBZ,CAAC;MpBpBT,aAAiB,EoBoBT,CAAC;MpBLT,QAAY,EoBKJ,CAAC;MpBzBT,YAAoB,EoByBZ,CAAC,CAAC,IAAI;MpBpBd,SAAiB,EoBoBT,CAAC,CAAC,IAAI;MpBfd,QAAgB,EoBeR,CAAC,CAAC,IAAI;MpBLd,IAAY,EoBKJ,CAAC,CAAC,IAAI,GAErB;;AAGD,AAAA,QAAQ,CAAC;EACR,MAAM,EVvCa,QAAQ;EUwC3B,OAAO,EVvCa,QAAQ,GUwC5B;;AHjBW,MAAM,MAAD,GAAG,MAAM,SAAS,EAAE,QAAQ;EGmB7C,AAAoB,IAAhB,EAAC,AAAA,KAAC,EAAO,OAAO,AAAd,EAAgB;IpBnCd,gBAAoB,EoBqCZ,CAAC;IpBhCT,aAAiB,EoBgCT,CAAC;IpBjBT,QAAY,EoBiBJ,CAAC;IpBrCT,YAAoB,EoBqCZ,CAAC,CAAC,IAAI;IpBhCd,SAAiB,EoBgCT,CAAC,CAAC,IAAI;IpB3Bd,QAAgB,EoB2BR,CAAC,CAAC,IAAI;IpBjBd,IAAY,EoBiBJ,CAAC,CAAC,IAAI,GAErB;;AAGD,AAAA,SAAS,CAAC;EpB1CF,gBAAoB,EoB2Cb,CAAC;EpBtCR,aAAiB,EoBsCV,CAAC;EpBvBR,QAAY,EoBuBL,CAAC;EpB3CR,YAAoB,EoB2Cb,CAAC,CAAC,GAAU;EpBtCnB,SAAiB,EoBsCV,CAAC,CAAC,GAAU;EpBjCnB,QAAgB,EoBiCT,CAAC,CAAC,GAAU;EpBvBnB,IAAY,EoBuBL,CAAC,CAAC,GAAU,GAC1B;;AAED,AAAA,SAAS,CAAC;EpB9CF,gBAAoB,EoB+Cb,CAAC;EpB1CR,aAAiB,EoB0CV,CAAC;EpB3BR,QAAY,EoB2BL,CAAC;EpB/CR,YAAoB,EoB+Cb,CAAC,CAAC,SAAU;EpB1CnB,SAAiB,EoB0CV,CAAC,CAAC,SAAU;EpBrCnB,QAAgB,EoBqCT,CAAC,CAAC,SAAU;EpB3BnB,IAAY,EoB2BL,CAAC,CAAC,SAAU,GAC1B;;AAED,AAAA,SAAS,CAAC;EpBlDF,gBAAoB,EoBmDb,CAAC;EpB9CR,aAAiB,EoB8CV,CAAC;EpB/BR,QAAY,EoB+BL,CAAC;EpBnDR,YAAoB,EoBmDb,CAAC,CAAC,GAAU;EpB9CnB,SAAiB,EoB8CV,CAAC,CAAC,GAAU;EpBzCnB,QAAgB,EoByCT,CAAC,CAAC,GAAU;EpB/BnB,IAAY,EoB+BL,CAAC,CAAC,GAAU,GAC1B;;AAED,AAAA,SAAS,CAAC;EpBtDF,gBAAoB,EoBuDb,CAAC;EpBlDR,aAAiB,EoBkDV,CAAC;EpBnCR,QAAY,EoBmCL,CAAC;EpBvDR,YAAoB,EoBuDb,CAAC,CAAC,GAAU;EpBlDnB,SAAiB,EoBkDV,CAAC,CAAC,GAAU;EpB7CnB,QAAgB,EoB6CT,CAAC,CAAC,GAAU;EpBnCnB,IAAY,EoBmCL,CAAC,CAAC,GAAU,GAC1B;;AAED,AAAA,SAAS,CAAC;EpB1DF,gBAAoB,EoB2Db,CAAC;EpBtDR,aAAiB,EoBsDV,CAAC;EpBvCR,QAAY,EoBuCL,CAAC;EpB3DR,YAAoB,EoB2Db,CAAC,CAAC,SAAU;EpBtDnB,SAAiB,EoBsDV,CAAC,CAAC,SAAU;EpBjDnB,QAAgB,EoBiDT,CAAC,CAAC,SAAU;EpBvCnB,IAAY,EoBuCL,CAAC,CAAC,SAAU,GAC1B;;AAED,AAAA,SAAS,CAAC;EpB9DF,gBAAoB,EoB+Db,CAAC;EpB1DR,aAAiB,EoB0DV,CAAC;EpB3CR,QAAY,EoB2CL,CAAC;EpB/DR,YAAoB,EoB+Db,CAAC,CAAC,SAAU;EpB1DnB,SAAiB,EoB0DV,CAAC,CAAC,SAAU;EpBrDnB,QAAgB,EoBqDT,CAAC,CAAC,SAAU;EpB3CnB,IAAY,EoB2CL,CAAC,CAAC,SAAU,GAC1B;;AAED,AAAA,SAAS,CAAC;EpBlEF,gBAAoB,EoBmEb,CAAC;EpB9DR,aAAiB,EoB8DV,CAAC;EpB/CR,QAAY,EoB+CL,CAAC;EpBnER,YAAoB,EoBmEb,CAAC,CAAC,KAAU;EpB9DnB,SAAiB,EoB8DV,CAAC,CAAC,KAAU;EpBzDnB,QAAgB,EoByDT,CAAC,CAAC,KAAU;EpB/CnB,IAAY,EoB+CL,CAAC,CAAC,KAAU,GAC1B;;AAED,AAAA,SAAS,CAAC;EpBtEF,gBAAoB,EoBuEb,CAAC;EpBlER,aAAiB,EoBkEV,CAAC;EpBnDR,QAAY,EoBmDL,CAAC;EpBvER,YAAoB,EoBuEb,CAAC,CAAC,SAAU;EpBlEnB,SAAiB,EoBkEV,CAAC,CAAC,SAAU;EpB7DnB,QAAgB,EoB6DT,CAAC,CAAC,SAAU;EpBnDnB,IAAY,EoBmDL,CAAC,CAAC,SAAU,GAC1B;;AAED,AAAA,UAAU,CAAC;EpB1EH,gBAAoB,EoB2Eb,CAAC;EpBtER,aAAiB,EoBsEV,CAAC;EpBvDR,QAAY,EoBuDL,CAAC;EpB3ER,YAAoB,EoB2Eb,CAAC,CAAC,GAAU;EpBtEnB,SAAiB,EoBsEV,CAAC,CAAC,GAAU;EpBjEnB,QAAgB,EoBiET,CAAC,CAAC,GAAU;EpBvDnB,IAAY,EoBuDL,CAAC,CAAC,GAAU,GAC1B;;AAED,AAAA,UAAU,CAAC;EpB9EH,gBAAoB,EoB+Eb,CAAC;EpB1ER,aAAiB,EoB0EV,CAAC;EpB3DR,QAAY,EoB2DL,CAAC;EpB/ER,YAAoB,EoB+Eb,CAAC,CAAC,QAAU;EpB1EnB,SAAiB,EoB0EV,CAAC,CAAC,QAAU;EpBrEnB,QAAgB,EoBqET,CAAC,CAAC,QAAU;EpB3DnB,IAAY,EoB2DL,CAAC,CAAC,QAAU,GAC1B;;AAED,AAAA,UAAU,CAAC;EpBlFH,gBAAoB,EoBmFb,CAAC;EpB9ER,aAAiB,EoB8EV,CAAC;EpB/DR,QAAY,EoB+DL,CAAC;EpBnFR,YAAoB,EoBmFb,CAAC,CAAC,QAAU;EpB9EnB,SAAiB,EoB8EV,CAAC,CAAC,QAAU;EpBzEnB,QAAgB,EoByET,CAAC,CAAC,QAAU;EpB/DnB,IAAY,EoB+DL,CAAC,CAAC,QAAU,GAC1B;;AHnFW,MAAM,MAAD,GAAG,MAAM,SAAS,EAAE,IAAI,OAAO,SAAS,EAAE,QAAQ;EGsFlE,AAAA,gBAAgB,CAAC;IpBvFV,gBAAoB,EoBwFZ,CAAC;IpBnFT,aAAiB,EoBmFT,CAAC;IpBpET,QAAY,EoBoEJ,CAAC;IpBxFT,YAAoB,EoBwFZ,CAAC,CAAC,GAAU;IpBnFpB,SAAiB,EoBmFT,CAAC,CAAC,GAAU;IpB9EpB,QAAgB,EoB8ER,CAAC,CAAC,GAAU;IpBpEpB,IAAY,EoBoEJ,CAAC,CAAC,GAAU,GAC1B;EAED,AAAA,gBAAgB,CAAC;IpB3FV,gBAAoB,EoB4FZ,CAAC;IpBvFT,aAAiB,EoBuFT,CAAC;IpBxET,QAAY,EoBwEJ,CAAC;IpB5FT,YAAoB,EoB4FZ,CAAC,CAAC,SAAU;IpBvFpB,SAAiB,EoBuFT,CAAC,CAAC,SAAU;IpBlFpB,QAAgB,EoBkFR,CAAC,CAAC,SAAU;IpBxEpB,IAAY,EoBwEJ,CAAC,CAAC,SAAU,GAC1B;EAED,AAAA,gBAAgB,CAAC;IpB/FV,gBAAoB,EoBgGZ,CAAC;IpB3FT,aAAiB,EoB2FT,CAAC;IpB5ET,QAAY,EoB4EJ,CAAC;IpBhGT,YAAoB,EoBgGZ,CAAC,CAAC,GAAU;IpB3FpB,SAAiB,EoB2FT,CAAC,CAAC,GAAU;IpBtFpB,QAAgB,EoBsFR,CAAC,CAAC,GAAU;IpB5EpB,IAAY,EoB4EJ,CAAC,CAAC,GAAU,GAC1B;EAED,AAAA,gBAAgB,CAAC;IpBnGV,gBAAoB,EoBoGZ,CAAC;IpB/FT,aAAiB,EoB+FT,CAAC;IpBhFT,QAAY,EoBgFJ,CAAC;IpBpGT,YAAoB,EoBoGZ,CAAC,CAAC,GAAU;IpB/FpB,SAAiB,EoB+FT,CAAC,CAAC,GAAU;IpB1FpB,QAAgB,EoB0FR,CAAC,CAAC,GAAU;IpBhFpB,IAAY,EoBgFJ,CAAC,CAAC,GAAU,GAC1B;EAED,AAAA,gBAAgB,CAAC;IpBvGV,gBAAoB,EoBwGZ,CAAC;IpBnGT,aAAiB,EoBmGT,CAAC;IpBpFT,QAAY,EoBoFJ,CAAC;IpBxGT,YAAoB,EoBwGZ,CAAC,CAAC,SAAU;IpBnGpB,SAAiB,EoBmGT,CAAC,CAAC,SAAU;IpB9FpB,QAAgB,EoB8FR,CAAC,CAAC,SAAU;IpBpFpB,IAAY,EoBoFJ,CAAC,CAAC,SAAU,GAC1B;EAED,AAAA,gBAAgB,CAAC;IpB3GV,gBAAoB,EoB4GZ,CAAC;IpBvGT,aAAiB,EoBuGT,CAAC;IpBxFT,QAAY,EoBwFJ,CAAC;IpB5GT,YAAoB,EoB4GZ,CAAC,CAAC,SAAU;IpBvGpB,SAAiB,EoBuGT,CAAC,CAAC,SAAU;IpBlGpB,QAAgB,EoBkGR,CAAC,CAAC,SAAU;IpBxFpB,IAAY,EoBwFJ,CAAC,CAAC,SAAU,GAC1B;EAED,AAAA,gBAAgB,CAAC;IpB/GV,gBAAoB,EoBgHZ,CAAC;IpB3GT,aAAiB,EoB2GT,CAAC;IpB5FT,QAAY,EoB4FJ,CAAC;IpBhHT,YAAoB,EoBgHZ,CAAC,CAAC,KAAU;IpB3GpB,SAAiB,EoB2GT,CAAC,CAAC,KAAU;IpBtGpB,QAAgB,EoBsGR,CAAC,CAAC,KAAU;IpB5FpB,IAAY,EoB4FJ,CAAC,CAAC,KAAU,GAC1B;EAED,AAAA,gBAAgB,CAAC;IpBnHV,gBAAoB,EoBoHZ,CAAC;IpB/GT,aAAiB,EoB+GT,CAAC;IpBhGT,QAAY,EoBgGJ,CAAC;IpBpHT,YAAoB,EoBoHZ,CAAC,CAAC,SAAU;IpB/GpB,SAAiB,EoB+GT,CAAC,CAAC,SAAU;IpB1GpB,QAAgB,EoB0GR,CAAC,CAAC,SAAU;IpBhGpB,IAAY,EoBgGJ,CAAC,CAAC,SAAU,GAC1B;EAED,AAAA,iBAAiB,CAAC;IpBvHX,gBAAoB,EoBwHZ,CAAC;IpBnHT,aAAiB,EoBmHT,CAAC;IpBpGT,QAAY,EoBoGJ,CAAC;IpBxHT,YAAoB,EoBwHZ,CAAC,CAAC,GAAU;IpBnHpB,SAAiB,EoBmHT,CAAC,CAAC,GAAU;IpB9GpB,QAAgB,EoB8GR,CAAC,CAAC,GAAU;IpBpGpB,IAAY,EoBoGJ,CAAC,CAAC,GAAU,GAC1B;EAED,AAAA,iBAAiB,CAAC;IpB3HX,gBAAoB,EoB4HZ,CAAC;IpBvHT,aAAiB,EoBuHT,CAAC;IpBxGT,QAAY,EoBwGJ,CAAC;IpB5HT,YAAoB,EoB4HZ,CAAC,CAAC,QAAU;IpBvHpB,SAAiB,EoBuHT,CAAC,CAAC,QAAU;IpBlHpB,QAAgB,EoBkHR,CAAC,CAAC,QAAU;IpBxGpB,IAAY,EoBwGJ,CAAC,CAAC,QAAU,GAC1B;EAED,AAAA,iBAAiB,CAAC;IpB/HX,gBAAoB,EoBgIZ,CAAC;IpB3HT,aAAiB,EoB2HT,CAAC;IpB5GT,QAAY,EoB4GJ,CAAC;IpBhIT,YAAoB,EoBgIZ,CAAC,CAAC,QAAU;IpB3HpB,SAAiB,EoB2HT,CAAC,CAAC,QAAU;IpBtHpB,QAAgB,EoBsHR,CAAC,CAAC,QAAU;IpB5GpB,IAAY,EoB4GJ,CAAC,CAAC,QAAU,GAC1B;;AHjHU,MAAM,MAAD,GAAG,MAAM,SAAS,EAAE,QAAQ;EGsHb,SAAC,CAAD,GAAC,EAAjB,SAAS,EAAE,IAAI;IAC7B,AAAA,KAAK,CAAC;MACL,OAAO,EAAE,KAAM;MpBxIV,iBAAoB,EoByIN,OAAO;MpBpIrB,cAAiB,EoBoIH,OAAO;MpBrHrB,SAAY,EoBqHE,OAAO;MpBzIrB,iBAAoB,EoByIN,OAAO;MpBpIrB,cAAiB,EoBoIH,OAAO;MpB/HrB,aAAgB,EoB+HF,OAAO;MpBrHrB,SAAY,EoBqHE,OAAO,GAC1B;IACD,AAAA,MAAM,CAAC;MACN,OAAO,EAAE,KAAM;MpB5IV,gBAAoB,EoB6IX,OAAO;MpBxIhB,aAAiB,EoBwIR,OAAO;MpBzHhB,QAAY,EoByHH,OAAO;MpB7IhB,YAAoB,EoB6IX,OAAO;MpBxIhB,SAAiB,EoBwIR,OAAO;MpBnIhB,QAAgB,EoBmIP,OAAO;MpBzHhB,IAAY,EoByHH,OAAO,GACrB;;AAKH,AAAA,YAAY,CAAC;EACX,yBAAyB,EAAE,CAAE;EAC7B,aAAa,EAAE,EAAG;EAClB,cAAc,EAAE,EAAG;EACnB,KAAK,EAAE,EAAG,GACX;;AAED,AAAA,WAAW,CAAC;EACV,yBAAyB,EAAE,CAAE;EAC7B,aAAa,EAAE,CAAE;EACjB,cAAc,EAAE,CAAE;EAClB,KAAK,EAAE,CAAE,GACV;;AAGD,AAAA,aAAa,CAAC;EpBlKN,iBAAoB,EoBmKR,GAAG,CAAC,IAAI;EpB9JpB,cAAiB,EoB8JL,GAAG,CAAC,IAAI;EpB/IpB,SAAY,EoB+IA,GAAG,CAAC,IAAI,GAc3B;EAfD,AAEC,aAFY,CAEZ,MAAM,CAAC;IpBpKA,gBAAoB,EoBqKZ,OAAO;IpBhKf,aAAiB,EoBgKT,OAAO;IpBjJf,QAAY,EoBiJJ,OAAO;IpBrKf,YAAoB,EoBqKZ,OAAO;IpBhKf,SAAiB,EoBgKT,OAAO;IpB3Jf,QAAgB,EoB2JR,OAAO;IpBjJf,IAAY,EoBiJJ,OAAO;IACrB,KAAK,EV1Ke,GAAU,GUoL9B;IHlLU,MAAM,MAAD,GAAG,MAAM,SAAS,EAAE,IAAI,OAAO,SAAS,EAAE,QAAQ;MGoKnE,AAEC,aAFY,CAEZ,MAAM,CAAC;QAIL,KAAK,EV3KgB,SAAU,GUmLhC;IH/KU,MAAM,MAAD,GAAG,MAAM,SAAS,EAAE,IAAI,OAAO,SAAS,EAAE,QAAQ;MGiKnE,AAEC,aAFY,CAEZ,MAAM,CAAC;QAOL,KAAK,EV7Ke,GAAU,GUkL/B;IHhKU,MAAM,MAAD,GAAG,MAAM,SAAS,EAAE,QAAQ;MGkJ7C,AAEC,aAFY,CAEZ,MAAM,CAAC;QAUL,KAAK,EAAE,IAAK,GAEb;;AAI6B,SAAC,CAAD,GAAC,EAAjB,SAAS,EAAE,IAAI;EAC7B,AAAA,aAAa,CAAC;IACb,OAAO,EAAE,KAAM;IpBtLT,iBAAoB,EoBuLP,OAAO;IpBlLpB,cAAiB,EoBkLJ,OAAO;IpBnKpB,SAAY,EoBmKC,OAAO,GAC1B;;AChMF,AAAA,IAAI,CAAC;EACJ,SAAS,EVDU,IAAI;EUEvB,WAAW,EVDU,GAAG,GUExB;;AAGD,AAAA,EAAE,EAAE,AAAA,EAAE,EAAE,AAAA,EAAE,EAAE,AAAA,EAAE,EAAE,AAAA,EAAE,EAAE,AAAA,EAAE,CAAC;EACtB,MAAM,EVKa,MAAiB,CULZ,CAAC,CAAC,OAAe,CAAK,CAAC;EAC/C,cAAc,EAAE,kBAAmB,GACnC;;AAED,AAAA,EAAE,CAAC;EACF,SAAS,EVRS,MAAe,GUSjC;;AAED,AAAA,EAAE,CAAC;EACF,SAAS,EVXS,MAAe,GUYjC;;AAED,AAAA,EAAE,CAAC;EACF,SAAS,EVdS,MAAe,GUejC;;AAED,AAAA,EAAE,CAAC;EACF,SAAS,EVjBS,OAAe,GUkBjC;;AAED,AAAA,EAAE,CAAC;EACF,SAAS,EVpBS,OAAe,GUqBjC;;AAED,AAAA,EAAE,CAAC;EACF,SAAS,EVvBS,OAAe,GUwBjC;;AAGD,AAAA,CAAC,CAAC;EACD,MAAM,EAAE,OAAe,CAAK,CAAC,CVzBV,MAAiB,GU0BpC;;AAGD,AAAA,EAAE,EAAE,AAAA,EAAE,CAAC;EACN,UAAU,EV9BS,MAAiB;EU+BpC,aAAa,EV/BM,MAAiB,GUoCpC;EAPD,AAGC,EAHC,CAGD,EAAE,EAHH,AAGK,EAHH,CAGG,EAAE,EAHH,AAGH,EAHK,CAGL,EAAE,EAHC,AAGC,EAHC,CAGD,EAAE,CAAC;IACN,UAAU,EAAE,CAAE;IACd,aAAa,EAAE,CAAE,GACjB;;AAIF,AAAA,UAAU,CAAC;EACV,MAAM,EVxCa,MAAiB,CUwCZ,CAAC;EACzB,YAAY,EAAE,OAAe,GAC7B;;AAED,AAAA,IAAI,CAAC;EACJ,OAAO,EAAE,KAAM;EACf,SAAS,EAAE,QAAe,GAI1B;EAND,AAAA,IAAI,AAGF,OAAO,CAAC;IACJ,OAAO,EAAE,aAAc,GACxB;;AAIL,AAAA,GAAG,CAAC;EACH,MAAM,EVtDa,MAAiB,CUsDZ,CAAC;EACxB,OAAO,EXlEY,QAAQ,GWmE5B;;AAED,AAAA,IAAI,CAAC;EACJ,cAAc,EAAE,MAAO,GACvB;;AAGD,AAAA,KAAK,CAAC;EACL,SAAS,EAAE,QAAe,GAC1B;;AAED,AAAA,EAAE,CAAC;EACF,WAAW,EAAE,IAAK;EAClB,YAAY,EAAE,IAAK;EACnB,UAAU,EAAE,IAAK;EACjB,MAAM,EVvEa,MAAiB,CUuEZ,CAAC,GACzB;;ACrFD,AAAA,QAAQ,CAAC;EACR,MAAM,EAAE,CAAE;EACV,OAAO,EZAa,QAAQ;EYC5B,MAAM,EAAE,CAAC,CAAC,CAAC,CXUQ,MAAiB,CWVR,CAAC,GAC7B;;AAED,AAAA,KAAK;AACL,AAAA,KAAK;AACL,AAAA,MAAM,CAAC;EACN,OAAO,EAAE,KAAM,GACf;;AAED,AAAA,KAAK,CAAC;EACL,aAAa,EAAE,QAAe,GAS9B;EAVD,AAAA,KAAK,AAGH,SAAS,AAAA,MAAM,CAAC;IAChB,OAAO,EAAE,GAAI,GACb;EALF,AAOC,KAPI,CAOJ,IAAI,CAAC;IACJ,OAAO,EAAE,IAAK,GACd;;AAGF,AAAA,QAAQ,EAAE,AAAkB,KAAb,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,GAAe,AAAmB,KAAd,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,GAAgB,AAAqB,KAAhB,CAAA,AAAA,IAAC,CAAK,UAAU,AAAf,GAAkB,AAAmB,KAAd,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,GAAgB,AAAgB,KAAX,CAAA,AAAA,IAAC,CAAK,KAAK,AAAV,GAAa,AAAiB,KAAZ,CAAA,AAAA,IAAC,CAAK,MAAM,AAAX,GAAc,AAAgB,KAAX,CAAA,AAAA,IAAC,CAAK,KAAK,AAAV,GAAa,AAAkB,KAAb,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,GAAe,AAAiB,KAAZ,CAAA,AAAA,IAAC,CAAK,MAAM,AAAX,GAAc,AAAqB,KAAhB,CAAA,AAAA,IAAC,CAAK,UAAU,AAAf,GAAkB,AAA2B,KAAtB,CAAA,AAAA,IAAC,CAAK,gBAAgB,AAArB,GAAwB,AAAkB,KAAb,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,GAAe,AAAiB,KAAZ,CAAA,AAAA,IAAC,CAAK,MAAM,AAAX,GAAc,AAAiB,KAAZ,CAAA,AAAA,IAAC,CAAK,MAAM,AAAX,GAAc,AAAwB,MAAlB,CAAA,AAAA,QAAC,CAAD,QAAC,AAAA,EAAhU;EtBfQ,kBAAoB,EsBgBP,YAAY;EtBXzB,eAAiB,EsBWJ,YAAY;EtBIzB,UAAY,EsBJC,YAAY;EAChC,aAAa,E3DbH,SAAM;E2DchB,OAAO,EAAG,QAAe,CAAO,QAAe;EAC/C,KAAK,EAAE,IAAK,GAKZ;EATD,AAAA,QAAQ,AAMN,MAAM,EANE,AAAkB,KAAb,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAMd,MAAM,EANuB,AAAmB,KAAd,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,CAMnC,MAAM,EAN6C,AAAqB,KAAhB,CAAA,AAAA,IAAC,CAAK,UAAU,AAAf,CAMzD,MAAM,EANqE,AAAmB,KAAd,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,CAMjF,MAAM,EAN2F,AAAgB,KAAX,CAAA,AAAA,IAAC,CAAK,KAAK,AAAV,CAMvG,MAAM,EAN8G,AAAiB,KAAZ,CAAA,AAAA,IAAC,CAAK,MAAM,AAAX,CAM1H,MAAM,EANkI,AAAgB,KAAX,CAAA,AAAA,IAAC,CAAK,KAAK,AAAV,CAM9I,MAAM,EANqJ,AAAkB,KAAb,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAMjK,MAAM,EAN0K,AAAiB,KAAZ,CAAA,AAAA,IAAC,CAAK,MAAM,AAAX,CAMtL,MAAM,EAN8L,AAAqB,KAAhB,CAAA,AAAA,IAAC,CAAK,UAAU,AAAf,CAM1M,MAAM,EANsN,AAA2B,KAAtB,CAAA,AAAA,IAAC,CAAK,gBAAgB,AAArB,CAMlO,MAAM,EANoP,AAAkB,KAAb,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,CAMhQ,MAAM,EANyQ,AAAiB,KAAZ,CAAA,AAAA,IAAC,CAAK,MAAM,AAAX,CAMrR,MAAM,EAN6R,AAAiB,KAAZ,CAAA,AAAA,IAAC,CAAK,MAAM,AAAX,CAMzS,MAAM,EANiT,AAAwB,MAAlB,CAAA,AAAA,QAAC,CAAD,QAAC,AAAA,CAM9T,MAAM,CAAC;IACP,OAAO,EAAE,IAAK,GACd;;AAGF,AAAA,QAAQ,CAAC;EACR,MAAM,EAAE,QAAS,GACjB;;AAED,AAAqB,KAAhB,CAAA,AAAA,IAAC,CAAK,UAAU,AAAf,GAAkB,AAAkB,KAAb,CAAA,AAAA,IAAC,CAAK,OAAO,AAAZ,EAAc;EAC3C,OAAO,EAAE,MAAO;EAChB,YAAY,EAAE,QAAe,GAC7B;;AAED,AAAiB,KAAZ,CAAA,AAAA,IAAC,CAAK,MAAM,AAAX,EAAa;EAClB,KAAK,EAAE,IAAK,GACZ;;AAED,AAAA,MAAM,CAAC;EACN,KAAK,EAAE,IAAK;EACZ,SAAS,EAAE,IAAK;EAChB,aAAa,EXtCM,MAAiB,GWuCpC;;AAED,AAAA,MAAM;AACN,AAAmB,KAAd,CAAA,AAAA,IAAC,CAAK,QAAQ,AAAb,EAAe;EACpB,MAAM,EAAE,OAAQ;EAChB,WAAW,EAAE,IAAK;EAClB,cAAc,EAAE,MAAO;EACvB,WAAW,EAAE,MAAO;EACpB,MAAM,EAAE,OAAQ,GAChB", - "names": [] -} \ No newline at end of file +{"version":3,"file":"nucleus.css","sources":["nucleus.scss","vendor/bourbon/_bourbon.scss","vendor/bourbon/settings/_prefixer.scss","vendor/bourbon/settings/_px-to-em.scss","vendor/bourbon/helpers/_convert-units.scss","vendor/bourbon/helpers/_gradient-positions-parser.scss","vendor/bourbon/helpers/_is-num.scss","vendor/bourbon/helpers/_linear-angle-parser.scss","vendor/bourbon/helpers/_linear-gradient-parser.scss","vendor/bourbon/helpers/_linear-positions-parser.scss","vendor/bourbon/helpers/_linear-side-corner-parser.scss","vendor/bourbon/helpers/_radial-arg-parser.scss","vendor/bourbon/helpers/_radial-positions-parser.scss","vendor/bourbon/helpers/_radial-gradient-parser.scss","vendor/bourbon/helpers/_render-gradients.scss","vendor/bourbon/helpers/_shape-size-stripper.scss","vendor/bourbon/helpers/_str-to-num.scss","vendor/bourbon/functions/_assign.scss","vendor/bourbon/functions/_color-lightness.scss","vendor/bourbon/functions/_flex-grid.scss","vendor/bourbon/functions/_golden-ratio.scss","vendor/bourbon/functions/_grid-width.scss","vendor/bourbon/functions/_modular-scale.scss","vendor/bourbon/functions/_px-to-em.scss","vendor/bourbon/functions/_px-to-rem.scss","vendor/bourbon/functions/_strip-units.scss","vendor/bourbon/functions/_tint-shade.scss","vendor/bourbon/functions/_transition-property-name.scss","vendor/bourbon/functions/_unpack.scss","vendor/bourbon/css3/_animation.scss","vendor/bourbon/css3/_appearance.scss","vendor/bourbon/css3/_backface-visibility.scss","vendor/bourbon/css3/_background.scss","vendor/bourbon/css3/_background-image.scss","vendor/bourbon/css3/_border-image.scss","vendor/bourbon/css3/_border-radius.scss","vendor/bourbon/css3/_box-sizing.scss","vendor/bourbon/css3/_calc.scss","vendor/bourbon/css3/_columns.scss","vendor/bourbon/css3/_filter.scss","vendor/bourbon/css3/_flex-box.scss","vendor/bourbon/css3/_font-face.scss","vendor/bourbon/css3/_hyphens.scss","vendor/bourbon/css3/_hidpi-media-query.scss","vendor/bourbon/css3/_image-rendering.scss","vendor/bourbon/css3/_keyframes.scss","vendor/bourbon/css3/_linear-gradient.scss","vendor/bourbon/css3/_perspective.scss","vendor/bourbon/css3/_radial-gradient.scss","vendor/bourbon/css3/_transform.scss","vendor/bourbon/css3/_transition.scss","vendor/bourbon/css3/_user-select.scss","vendor/bourbon/css3/_placeholder.scss","vendor/bourbon/addons/_button.scss","vendor/bourbon/addons/_clearfix.scss","vendor/bourbon/addons/_directional-values.scss","vendor/bourbon/addons/_ellipsis.scss","vendor/bourbon/addons/_font-family.scss","vendor/bourbon/addons/_hide-text.scss","vendor/bourbon/addons/_html5-input-types.scss","vendor/bourbon/addons/_position.scss","vendor/bourbon/addons/_prefixer.scss","vendor/bourbon/addons/_retina-image.scss","vendor/bourbon/addons/_size.scss","vendor/bourbon/addons/_timing-functions.scss","vendor/bourbon/addons/_triangle.scss","vendor/bourbon/addons/_word-wrap.scss","vendor/bourbon/_bourbon-deprecated-upcoming.scss","configuration/nucleus/_base.scss","configuration/nucleus/_core.scss","configuration/nucleus/_breakpoints.scss","configuration/nucleus/_layout.scss","configuration/nucleus/_typography.scss","configuration/nucleus/_nav.scss","nucleus/functions/_base.scss","nucleus/functions/_direction.scss","nucleus/functions/_range.scss","nucleus/mixins/_base.scss","nucleus/mixins/_breakpoints.scss","nucleus/mixins/_utilities.scss","nucleus/_core.scss","nucleus/_flex.scss","nucleus/_typography.scss","nucleus/_forms.scss"],"sourcesContent":["// REQUIRED DEPENDENCIES - DO NOT CHANGE\n\n// Load Third Party Libraries\n@import \"vendor/bourbon/bourbon\";\n\n// Load Nucleus Configuration\n@import \"configuration/nucleus/base\";\n\n// Load Nucleus Mixins and Functions\n@import \"nucleus/functions/base\";\n@import \"nucleus/mixins/base\";\n\n//-------------------------------------------\n\n// LOAD NUCLEUS COMPONENTS\n\n// Core\n@import \"nucleus/core\";\n\n// Flex\n@import \"nucleus/flex\";\n\n// Typography\n@import \"nucleus/typography\";\n\n// Forms\n@import \"nucleus/forms\";\n","// Settings\n@import \"settings/prefixer\";\n@import \"settings/px-to-em\";\n\n// Custom Helpers\n@import \"helpers/convert-units\";\n@import \"helpers/gradient-positions-parser\";\n@import \"helpers/is-num\";\n@import \"helpers/linear-angle-parser\";\n@import \"helpers/linear-gradient-parser\";\n@import \"helpers/linear-positions-parser\";\n@import \"helpers/linear-side-corner-parser\";\n@import \"helpers/radial-arg-parser\";\n@import \"helpers/radial-positions-parser\";\n@import \"helpers/radial-gradient-parser\";\n@import \"helpers/render-gradients\";\n@import \"helpers/shape-size-stripper\";\n@import \"helpers/str-to-num\";\n\n// Custom Functions\n@import \"functions/assign\";\n@import \"functions/color-lightness\";\n@import \"functions/flex-grid\";\n@import \"functions/golden-ratio\";\n@import \"functions/grid-width\";\n@import \"functions/modular-scale\";\n@import \"functions/px-to-em\";\n@import \"functions/px-to-rem\";\n@import \"functions/strip-units\";\n@import \"functions/tint-shade\";\n@import \"functions/transition-property-name\";\n@import \"functions/unpack\";\n\n// CSS3 Mixins\n@import \"css3/animation\";\n@import \"css3/appearance\";\n@import \"css3/backface-visibility\";\n@import \"css3/background\";\n@import \"css3/background-image\";\n@import \"css3/border-image\";\n@import \"css3/border-radius\";\n@import \"css3/box-sizing\";\n@import \"css3/calc\";\n@import \"css3/columns\";\n@import \"css3/filter\";\n@import \"css3/flex-box\";\n@import \"css3/font-face\";\n@import \"css3/hyphens\";\n@import \"css3/hidpi-media-query\";\n@import \"css3/image-rendering\";\n@import \"css3/keyframes\";\n@import \"css3/linear-gradient\";\n@import \"css3/perspective\";\n@import \"css3/radial-gradient\";\n@import \"css3/transform\";\n@import \"css3/transition\";\n@import \"css3/user-select\";\n@import \"css3/placeholder\";\n\n// Addons & other mixins\n@import \"addons/button\";\n@import \"addons/clearfix\";\n@import \"addons/directional-values\";\n@import \"addons/ellipsis\";\n@import \"addons/font-family\";\n@import \"addons/hide-text\";\n@import \"addons/html5-input-types\";\n@import \"addons/position\";\n@import \"addons/prefixer\";\n@import \"addons/retina-image\";\n@import \"addons/size\";\n@import \"addons/timing-functions\";\n@import \"addons/triangle\";\n@import \"addons/word-wrap\";\n\n// Soon to be deprecated Mixins\n@import \"bourbon-deprecated-upcoming\";\n","// Variable settings for /addons/prefixer.scss\n$prefix-for-webkit: true !default;\n$prefix-for-mozilla: true !default;\n$prefix-for-microsoft: true !default;\n$prefix-for-opera: true !default;\n$prefix-for-spec: true !default; // required for keyframe mixin\n","$em-base: 16px !default;\n","//************************************************************************//\n// Helper function for str-to-num fn.\n// Source: http://sassmeister.com/gist/9647408\n//************************************************************************//\n@function _convert-units($number, $unit) {\n $strings: 'px' 'cm' 'mm' '%' 'ch' 'pica' 'in' 'em' 'rem' 'pt' 'pc' 'ex' 'vw' 'vh' 'vmin' 'vmax', 'deg', 'rad', 'grad', 'turn';\n $units: 1px 1cm 1mm 1% 1ch 1pica 1in 1em 1rem 1pt 1pc 1ex 1vw 1vh 1vmin 1vmax, 1deg, 1rad, 1grad, 1turn;\n $index: index($strings, $unit);\n\n @if not $index {\n @warn \"Unknown unit `#{$unit}`.\";\n @return false;\n }\n @return $number * nth($units, $index);\n}\n","@function _gradient-positions-parser($gradient-type, $gradient-positions) {\n @if $gradient-positions\n and ($gradient-type == linear)\n and (type-of($gradient-positions) != color) {\n $gradient-positions: _linear-positions-parser($gradient-positions);\n }\n @else if $gradient-positions\n and ($gradient-type == radial)\n and (type-of($gradient-positions) != color) {\n $gradient-positions: _radial-positions-parser($gradient-positions);\n }\n @return $gradient-positions;\n}\n","//************************************************************************//\n// Helper for linear-gradient-parser\n//************************************************************************//\n@function _is-num($char) {\n $values: '0' '1' '2' '3' '4' '5' '6' '7' '8' '9' 0 1 2 3 4 5 6 7 8 9;\n $index: index($values, $char);\n @return if($index, true, false);\n}\n","// Private function for linear-gradient-parser\n@function _linear-angle-parser($image, $first-val, $prefix, $suffix) {\n $offset: null;\n $unit-short: str-slice($first-val, str-length($first-val) - 2, str-length($first-val));\n $unit-long: str-slice($first-val, str-length($first-val) - 3, str-length($first-val));\n\n @if ($unit-long == \"grad\") or\n ($unit-long == \"turn\") {\n $offset: if($unit-long == \"grad\", -100grad * 3, -0.75turn);\n }\n\n @else if ($unit-short == \"deg\") or\n ($unit-short == \"rad\") {\n $offset: if($unit-short == \"deg\", -90 * 3, 1.6rad);\n }\n\n @if $offset {\n $num: _str-to-num($first-val);\n\n @return (\n webkit-image: -webkit- + $prefix + ($offset - $num) + $suffix,\n spec-image: $image\n );\n }\n}\n","@function _linear-gradient-parser($image) {\n $image: unquote($image);\n $gradients: ();\n $start: str-index($image, \"(\");\n $end: str-index($image, \",\");\n $first-val: str-slice($image, $start + 1, $end - 1);\n\n $prefix: str-slice($image, 0, $start);\n $suffix: str-slice($image, $end, str-length($image));\n\n $has-multiple-vals: str-index($first-val, \" \");\n $has-single-position: unquote(_position-flipper($first-val) + \"\");\n $has-angle: _is-num(str-slice($first-val, 0, 0));\n\n @if $has-multiple-vals {\n $gradients: _linear-side-corner-parser($image, $first-val, $prefix, $suffix, $has-multiple-vals);\n }\n\n @else if $has-single-position != \"\" {\n $pos: unquote($has-single-position + \"\");\n\n $gradients: (\n webkit-image: -webkit- + $image,\n spec-image: $prefix + \"to \" + $pos + $suffix\n );\n }\n\n @else if $has-angle {\n // Rotate degree for webkit\n $gradients: _linear-angle-parser($image, $first-val, $prefix, $suffix);\n }\n\n @else {\n $gradients: (\n webkit-image: -webkit- + $image,\n spec-image: $image\n );\n }\n\n @return $gradients;\n}\n","@function _linear-positions-parser($pos) {\n $type: type-of(nth($pos, 1));\n $spec: null;\n $degree: null;\n $side: null;\n $corner: null;\n $length: length($pos);\n // Parse Side and corner positions\n @if ($length > 1) {\n @if nth($pos, 1) == \"to\" { // Newer syntax\n $side: nth($pos, 2);\n\n @if $length == 2 { // eg. to top\n // Swap for backwards compatability\n $degree: _position-flipper(nth($pos, 2));\n }\n @else if $length == 3 { // eg. to top left\n $corner: nth($pos, 3);\n }\n }\n @else if $length == 2 { // Older syntax (\"top left\")\n $side: _position-flipper(nth($pos, 1));\n $corner: _position-flipper(nth($pos, 2));\n }\n\n @if (\"#{$side} #{$corner}\" == \"left top\") or (\"#{$side} #{$corner}\" == \"top left\") {\n $degree: _position-flipper(#{$side}) _position-flipper(#{$corner});\n }\n @else if (\"#{$side} #{$corner}\" == \"right top\") or (\"#{$side} #{$corner}\" == \"top right\") {\n $degree: _position-flipper(#{$side}) _position-flipper(#{$corner});\n }\n @else if (\"#{$side} #{$corner}\" == \"right bottom\") or (\"#{$side} #{$corner}\" == \"bottom right\") {\n $degree: _position-flipper(#{$side}) _position-flipper(#{$corner});\n }\n @else if (\"#{$side} #{$corner}\" == \"left bottom\") or (\"#{$side} #{$corner}\" == \"bottom left\") {\n $degree: _position-flipper(#{$side}) _position-flipper(#{$corner});\n }\n $spec: to $side $corner;\n }\n @else if $length == 1 {\n // Swap for backwards compatability\n @if $type == string {\n $degree: $pos;\n $spec: to _position-flipper($pos);\n }\n @else {\n $degree: -270 - $pos; //rotate the gradient opposite from spec\n $spec: $pos;\n }\n }\n $degree: unquote($degree + \",\");\n $spec: unquote($spec + \",\");\n @return $degree $spec;\n}\n\n@function _position-flipper($pos) {\n @return if($pos == left, right, null)\n if($pos == right, left, null)\n if($pos == top, bottom, null)\n if($pos == bottom, top, null);\n}\n","// Private function for linear-gradient-parser\n@function _linear-side-corner-parser($image, $first-val, $prefix, $suffix, $has-multiple-vals) {\n $val-1: str-slice($first-val, 0, $has-multiple-vals - 1 );\n $val-2: str-slice($first-val, $has-multiple-vals + 1, str-length($first-val));\n $val-3: null;\n $has-val-3: str-index($val-2, \" \");\n\n @if $has-val-3 {\n $val-3: str-slice($val-2, $has-val-3 + 1, str-length($val-2));\n $val-2: str-slice($val-2, 0, $has-val-3 - 1);\n }\n\n $pos: _position-flipper($val-1) _position-flipper($val-2) _position-flipper($val-3);\n $pos: unquote($pos + \"\");\n\n // Use old spec for webkit\n @if $val-1 == \"to\" {\n @return (\n webkit-image: -webkit- + $prefix + $pos + $suffix,\n spec-image: $image\n );\n }\n\n // Bring the code up to spec\n @else {\n @return (\n webkit-image: -webkit- + $image,\n spec-image: $prefix + \"to \" + $pos + $suffix\n );\n }\n}\n","@function _radial-arg-parser($G1, $G2, $pos, $shape-size) {\n @each $value in $G1, $G2 {\n $first-val: nth($value, 1);\n $pos-type: type-of($first-val);\n $spec-at-index: null;\n\n // Determine if spec was passed to mixin\n @if type-of($value) == list {\n $spec-at-index: if(index($value, at), index($value, at), false);\n }\n @if $spec-at-index {\n @if $spec-at-index > 1 {\n @for $i from 1 through ($spec-at-index - 1) {\n $shape-size: $shape-size nth($value, $i);\n }\n @for $i from ($spec-at-index + 1) through length($value) {\n $pos: $pos nth($value, $i);\n }\n }\n @else if $spec-at-index == 1 {\n @for $i from ($spec-at-index + 1) through length($value) {\n $pos: $pos nth($value, $i);\n }\n }\n $G1: null;\n }\n\n // If not spec calculate correct values\n @else {\n @if ($pos-type != color) or ($first-val != \"transparent\") {\n @if ($pos-type == number)\n or ($first-val == \"center\")\n or ($first-val == \"top\")\n or ($first-val == \"right\")\n or ($first-val == \"bottom\")\n or ($first-val == \"left\") {\n\n $pos: $value;\n\n @if $pos == $G1 {\n $G1: null;\n }\n }\n\n @else if\n ($first-val == \"ellipse\")\n or ($first-val == \"circle\")\n or ($first-val == \"closest-side\")\n or ($first-val == \"closest-corner\")\n or ($first-val == \"farthest-side\")\n or ($first-val == \"farthest-corner\")\n or ($first-val == \"contain\")\n or ($first-val == \"cover\") {\n\n $shape-size: $value;\n\n @if $value == $G1 {\n $G1: null;\n }\n\n @else if $value == $G2 {\n $G2: null;\n }\n }\n }\n }\n }\n @return $G1, $G2, $pos, $shape-size;\n}\n","@function _radial-positions-parser($gradient-pos) {\n $shape-size: nth($gradient-pos, 1);\n $pos: nth($gradient-pos, 2);\n $shape-size-spec: _shape-size-stripper($shape-size);\n\n $pre-spec: unquote(if($pos, \"#{$pos}, \", null))\n unquote(if($shape-size, \"#{$shape-size},\", null));\n $pos-spec: if($pos, \"at #{$pos}\", null);\n\n $spec: \"#{$shape-size-spec} #{$pos-spec}\";\n\n // Add comma\n @if ($spec != ' ') {\n $spec: \"#{$spec},\"\n }\n\n @return $pre-spec $spec;\n}\n","@function _radial-gradient-parser($image) {\n $image: unquote($image);\n $gradients: ();\n $start: str-index($image, \"(\");\n $end: str-index($image, \",\");\n $first-val: str-slice($image, $start + 1, $end - 1);\n\n $prefix: str-slice($image, 0, $start);\n $suffix: str-slice($image, $end, str-length($image));\n\n $is-spec-syntax: str-index($first-val, \"at\");\n\n @if $is-spec-syntax and $is-spec-syntax > 1 {\n $keyword: str-slice($first-val, 1, $is-spec-syntax - 2);\n $pos: str-slice($first-val, $is-spec-syntax + 3, str-length($first-val));\n $pos: append($pos, $keyword, comma);\n\n $gradients: (\n webkit-image: -webkit- + $prefix + $pos + $suffix,\n spec-image: $image\n )\n }\n\n @else if $is-spec-syntax == 1 {\n $pos: str-slice($first-val, $is-spec-syntax + 3, str-length($first-val));\n\n $gradients: (\n webkit-image: -webkit- + $prefix + $pos + $suffix,\n spec-image: $image\n )\n }\n\n @else if str-index($image, \"cover\") or str-index($image, \"contain\") {\n @warn \"Radial-gradient needs to be updated to conform to latest spec.\";\n\n $gradients: (\n webkit-image: null,\n spec-image: $image\n )\n }\n\n @else {\n $gradients: (\n webkit-image: -webkit- + $image,\n spec-image: $image\n )\n }\n\n @return $gradients;\n}\n","// User for linear and radial gradients within background-image or border-image properties\n\n@function _render-gradients($gradient-positions, $gradients, $gradient-type, $vendor: false) {\n $pre-spec: null;\n $spec: null;\n $vendor-gradients: null;\n @if $gradient-type == linear {\n @if $gradient-positions {\n $pre-spec: nth($gradient-positions, 1);\n $spec: nth($gradient-positions, 2);\n }\n }\n @else if $gradient-type == radial {\n $pre-spec: nth($gradient-positions, 1);\n $spec: nth($gradient-positions, 2);\n }\n\n @if $vendor {\n $vendor-gradients: -#{$vendor}-#{$gradient-type}-gradient(#{$pre-spec} $gradients);\n }\n @else if $vendor == false {\n $vendor-gradients: \"#{$gradient-type}-gradient(#{$spec} #{$gradients})\";\n $vendor-gradients: unquote($vendor-gradients);\n }\n @return $vendor-gradients;\n}\n","@function _shape-size-stripper($shape-size) {\n $shape-size-spec: null;\n @each $value in $shape-size {\n @if ($value == \"cover\") or ($value == \"contain\") {\n $value: null;\n }\n $shape-size-spec: \"#{$shape-size-spec} #{$value}\";\n }\n @return $shape-size-spec;\n}\n","//************************************************************************//\n// Helper function for linear/radial-gradient-parsers.\n// Source: http://sassmeister.com/gist/9647408\n//************************************************************************//\n@function _str-to-num($string) {\n // Matrices\n $strings: '0' '1' '2' '3' '4' '5' '6' '7' '8' '9';\n $numbers: 0 1 2 3 4 5 6 7 8 9;\n\n // Result\n $result: 0;\n $divider: 0;\n $minus: false;\n\n // Looping through all characters\n @for $i from 1 through str-length($string) {\n $character: str-slice($string, $i, $i);\n $index: index($strings, $character);\n\n @if $character == '-' {\n $minus: true;\n }\n\n @else if $character == '.' {\n $divider: 1;\n }\n\n @else {\n @if not $index {\n $result: if($minus, $result * -1, $result);\n @return _convert-units($result, str-slice($string, $i));\n }\n\n $number: nth($numbers, $index);\n\n @if $divider == 0 {\n $result: $result * 10;\n }\n\n @else {\n // Move the decimal dot to the left\n $divider: $divider * 10;\n $number: $number / $divider;\n }\n\n $result: $result + $number;\n }\n }\n @return if($minus, $result * -1, $result);\n}\n","@function assign-inputs($inputs, $pseudo: null) {\n $list : ();\n\n @each $input in $inputs {\n $input: unquote($input);\n $input: if($pseudo, $input + \":\" + $pseudo, $input);\n $list: append($list, $input, comma);\n }\n\n @return $list;\n}","// Programatically determines whether a color is light or dark\n// Returns a boolean\n// More details here http://robots.thoughtbot.com/closer-look-color-lightness\n\n@function is-light($hex-color) {\n $-local-red: red(rgba($hex-color, 1.0));\n $-local-green: green(rgba($hex-color, 1.0));\n $-local-blue: blue(rgba($hex-color, 1.0));\n\n $-local-lightness: ($-local-red * 0.2126 + $-local-green * 0.7152 + $-local-blue * 0.0722) / 255;\n\n @return $-local-lightness > .6;\n}\n","// Flexible grid\n@function flex-grid($columns, $container-columns: $fg-max-columns) {\n $width: $columns * $fg-column + ($columns - 1) * $fg-gutter;\n $container-width: $container-columns * $fg-column + ($container-columns - 1) * $fg-gutter;\n @return percentage($width / $container-width);\n}\n\n// Flexible gutter\n@function flex-gutter($container-columns: $fg-max-columns, $gutter: $fg-gutter) {\n $container-width: $container-columns * $fg-column + ($container-columns - 1) * $fg-gutter;\n @return percentage($gutter / $container-width);\n}\n\n// The $fg-column, $fg-gutter and $fg-max-columns variables must be defined in your base stylesheet to properly use the flex-grid function.\n// This function takes the fluid grid equation (target / context = result) and uses columns to help define each.\n//\n// The calculation presumes that your column structure will be missing the last gutter:\n//\n// -- column -- gutter -- column -- gutter -- column\n//\n// $fg-column: 60px; // Column Width\n// $fg-gutter: 25px; // Gutter Width\n// $fg-max-columns: 12; // Total Columns For Main Container\n//\n// div {\n// width: flex-grid(4); // returns (315px / 995px) = 31.65829%;\n// margin-left: flex-gutter(); // returns (25px / 995px) = 2.51256%;\n//\n// p {\n// width: flex-grid(2, 4); // returns (145px / 315px) = 46.031746%;\n// float: left;\n// margin: flex-gutter(4); // returns (25px / 315px) = 7.936508%;\n// }\n//\n// blockquote {\n// float: left;\n// width: flex-grid(2, 4); // returns (145px / 315px) = 46.031746%;\n// }\n// }","@function golden-ratio($value, $increment) {\n @return modular-scale($value, $increment, $golden)\n}\n","@function grid-width($n) {\n @return $n * $gw-column + ($n - 1) * $gw-gutter;\n}\n\n// The $gw-column and $gw-gutter variables must be defined in your base stylesheet to properly use the grid-width function.\n//\n// $gw-column: 100px; // Column Width\n// $gw-gutter: 40px; // Gutter Width\n//\n// div {\n// width: grid-width(4); // returns 520px;\n// margin-left: $gw-gutter; // returns 40px;\n// }\n","// Scaling Variables\n$golden: 1.618;\n$minor-second: 1.067;\n$major-second: 1.125;\n$minor-third: 1.2;\n$major-third: 1.25;\n$perfect-fourth: 1.333;\n$augmented-fourth: 1.414;\n$perfect-fifth: 1.5;\n$minor-sixth: 1.6;\n$major-sixth: 1.667;\n$minor-seventh: 1.778;\n$major-seventh: 1.875;\n$octave: 2;\n$major-tenth: 2.5;\n$major-eleventh: 2.667;\n$major-twelfth: 3;\n$double-octave: 4;\n\n@function modular-scale($value, $increment, $ratio) {\n $v1: nth($value, 1);\n $v2: nth($value, length($value));\n $value: $v1;\n\n // scale $v2 to just above $v1\n @while $v2 > $v1 {\n $v2: ($v2 / $ratio); // will be off-by-1\n }\n @while $v2 < $v1 {\n $v2: ($v2 * $ratio); // will fix off-by-1\n }\n\n // check AFTER scaling $v2 to prevent double-counting corner-case\n $double-stranded: $v2 > $v1;\n\n @if $increment > 0 {\n @for $i from 1 through $increment {\n @if $double-stranded and ($v1 * $ratio) > $v2 {\n $value: $v2;\n $v2: ($v2 * $ratio);\n } @else {\n $v1: ($v1 * $ratio);\n $value: $v1;\n }\n }\n }\n\n @if $increment < 0 {\n // adjust $v2 to just below $v1\n @if $double-stranded {\n $v2: ($v2 / $ratio);\n }\n\n @for $i from $increment through -1 {\n @if $double-stranded and ($v1 / $ratio) < $v2 {\n $value: $v2;\n $v2: ($v2 / $ratio);\n } @else {\n $v1: ($v1 / $ratio);\n $value: $v1;\n }\n }\n }\n\n @return $value;\n}\n","// Convert pixels to ems\n// eg. for a relational value of 12px write em(12) when the parent is 16px\n// if the parent is another value say 24px write em(12, 24)\n\n@function em($pxval, $base: $em-base) {\n @if not unitless($pxval) {\n $pxval: strip-units($pxval);\n }\n @if not unitless($base) {\n $base: strip-units($base);\n }\n @return ($pxval / $base) * 1em;\n}\n","// Convert pixels to rems\n// eg. for a relational value of 12px write rem(12)\n// Assumes $em-base is the font-size of \n\n@function rem($pxval) {\n @if not unitless($pxval) {\n $pxval: strip-units($pxval);\n }\n\n $base: $em-base;\n @if not unitless($base) {\n $base: strip-units($base);\n }\n @return ($pxval / $base) * 1rem;\n}\n","// Srtips the units from a value. e.g. 12px -> 12\n\n@function strip-units($val) {\n @return ($val / ($val * 0 + 1));\n}\n","// Add percentage of white to a color\n@function tint($color, $percent){\n @return mix(white, $color, $percent);\n}\n\n// Add percentage of black to a color\n@function shade($color, $percent){\n @return mix(black, $color, $percent);\n}\n","// Return vendor-prefixed property names if appropriate\n// Example: transition-property-names((transform, color, background), moz) -> -moz-transform, color, background\n//************************************************************************//\n@function transition-property-names($props, $vendor: false) {\n\t$new-props: ();\n\t\n\t@each $prop in $props {\n\t\t$new-props: append($new-props, transition-property-name($prop, $vendor), comma);\n\t}\n\n\t@return $new-props;\n}\n\n@function transition-property-name($prop, $vendor: false) {\n\t// put other properties that need to be prefixed here aswell\n\t@if $vendor and $prop == transform {\n\t\t@return unquote('-'+$vendor+'-'+$prop);\n\t}\n\t@else {\n\t\t@return $prop;\n\t}\n}","// Convert shorthand to the 4-value syntax\n\n@function unpack($shorthand) {\n @if length($shorthand) == 1 {\n @return nth($shorthand, 1) nth($shorthand, 1) nth($shorthand, 1) nth($shorthand, 1);\n }\n @else if length($shorthand) == 2 {\n @return nth($shorthand, 1) nth($shorthand, 2) nth($shorthand, 1) nth($shorthand, 2);\n }\n @else if length($shorthand) == 3 {\n @return nth($shorthand, 1) nth($shorthand, 2) nth($shorthand, 3) nth($shorthand, 2);\n }\n @else {\n @return $shorthand;\n }\n}\n\n","// http://www.w3.org/TR/css3-animations/#the-animation-name-property-\n// 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.\n\n// Official animation shorthand property.\n@mixin animation ($animations...) {\n @include prefixer(animation, $animations, webkit moz spec);\n}\n\n// Individual Animation Properties\n@mixin animation-name ($names...) {\n @include prefixer(animation-name, $names, webkit moz spec);\n}\n\n\n@mixin animation-duration ($times...) {\n @include prefixer(animation-duration, $times, webkit moz spec);\n}\n\n\n@mixin animation-timing-function ($motions...) {\n// ease | linear | ease-in | ease-out | ease-in-out\n @include prefixer(animation-timing-function, $motions, webkit moz spec);\n}\n\n\n@mixin animation-iteration-count ($values...) {\n// infinite |"+t.stack+"":"";u.default.error("Fetch Failed: \n '+l.translations.PLUGIN_ADMIN.UPDATE+" "+l.translations.PLUGIN_ADMIN.ALL+" "+c+'\n \n '+a+" "+l.translations.PLUGIN_ADMIN.OF_YOUR+" "+o+" "+l.translations.PLUGIN_ADMIN.HAVE_AN_UPDATE_AVAILABLE+"\n
\n ");var d=(0,s.default)("[data-update-packages]").attr("data-packages-slugs")||"";d=d?d.split(","):[];var h=(0,u.default)(d.concat(Object.keys(r))).join();(0,s.default)("[data-update-packages]").attr("data-packages-slugs",""+h),Object.keys(r).forEach(function(e){var a=(0,s.default)("[data-gpm-"+n[i]+'="'+e+'"]'),c=a.find(".gpm-name"),u=c.find("a");if("plugins"!==o||c.find(".badge.update").length?"themes"===o&&c.append('"):c.append(''+l.translations.PLUGIN_ADMIN.UPDATE_AVAILABLE+"!"),a.length){var f=(0,s.default)(".grav-update."+n[i]);if(f.length){var d="testing"===r[e].type?'test release':"";f.html('\n\n '+l.translations.PLUGIN_ADMIN.UPDATE+" "+(n[i].charAt(0).toUpperCase()+n[i].substr(1).toLowerCase())+'\n \n v'+r[e].available+" "+d+" "+l.translations.PLUGIN_ADMIN.OF_THIS+" "+n[i]+" "+l.translations.PLUGIN_ADMIN.IS_NOW_AVAILABLE+"!\n
\n ").css("display","block"),t=!1}}}),(0,s.default)("[data-update-packages]").removeClass("hidden")}}),void(t||(0,s.default)(".warning-reinstall-not-latest-release").removeClass("hidden"))):this}}]),t}();e.default=y;var _=new y;e.Instance=_,e.Notifications=m.default,e.Feed=g.default,h.Instance.on("fetched",function(t,e){_.setPayload(t.payload||{}),_.grav().resources()}),"1"===l.config.enable_auto_updates_check&&h.Instance.fetch()},function(t,e,n){function r(t,e){return e=e||i,a(t,function(t,n,r){for(var i=r.length;++n ul").show();switch(r.find("div").remove(),r.find(".fa-warning").removeClass("fa-warning").addClass("fa-refresh fa-spin"),t.type||(t.type="note"),t.type){case"note":t.intro_text="Note";break;case"info":t.intro_text="Info";break;case"warning":t.intro_text="Warning"}var a="";if(e>9&&(a=" hidden "),t.link)i.append('\n"+t.message+"
").text();i.append('\n"+h.translations.PLUGIN_ADMIN.FILE_ERROR_UPLOAD+" "+e.name+"
\n"+n.message+""})}},{key:"onDropzoneComplete",value:function(e){if(!e.accepted&&!e.rejected){var n={status:"error",message:h.translations.PLUGIN_ADMIN.FILE_UNSUPPORTED+": "+e.name.match(/\..+/).join("")};return this.handleError({file:e,data:n,mode:"removeFile",msg:"
"+h.translations.PLUGIN_ADMIN.FILE_ERROR_ADD+" "+e.name+"
\n"+n.message+""})}this.options.reloadPage&&t.location.reload()}},{key:"b64_to_utf8",value:function(t){return t=t.replace(/\s/g,""),decodeURIComponent(escape(window.atob(t)))}},{key:"onDropzoneRemovedFile",value:function(t){var e=this;if(t.accepted&&!t.rejected){var n=t.removeUrl||this.urls.delete,r=(n||"").match(/path:(.*)\//),i={filename:t.name};t.sessionParams&&(i.task="filessessionremove",i.session=t.sessionParams),(0,d.default)(n,{method:"post",body:i},function(){if(r){r=e.b64_to_utf8(r[1]);var t=e.container.find('[name][type="hidden"]'),n=JSON.parse(t.val()||"{}");delete n[r],t.val(JSON.stringify(n))}})}}},{key:"onDropzoneError",value:function(t,e,n){var r=n?e.error.message:e;return(0,c.default)(t.previewElement).find("[data-dz-errormessage]").html(r),this.handleError({file:t,data:{status:"error"},msg:"
"+r+""})}},{key:"handleError",value:function(t){var e=t.file,n=t.data,r=t.mode,i=t.msg;if("error"===n.status||"unauthorized"===n.status){switch(r){case"addBack":e instanceof File?this.dropzone.addFile.call(this.dropzone,e):(this.dropzone.files.push(e),this.dropzone.options.addedfile.call(this.dropzone,e),this.dropzone.options.thumbnail.call(this.dropzone,e,e.extras.url));break;case"removeFile":default:~this.dropzone.files.indexOf(e)&&(e.rejected=!0,this.dropzone.removeFile.call(this.dropzone,e,{silent:!0}))}var a=(0,c.default)('[data-remodal-id="generic"]');a.find(".error-content").html(i),c.default.remodal.lookup[a.data("remodal")].open()}}}]),e}();e.default=v;var g=[],y=(0,c.default)(),_=function(t,e){var n=(0,c.default)(e).find(".dropzone.files-upload");n.length&&n.each(function(t,e){e=(0,c.default)(e),~y.index(e)||b(e)})},b=function(t){t=(0,c.default)(t);var e=t.find('input[type="file"]'),n=t.data("grav-file-settings")||{};n.accept&&~n.accept.indexOf("*")&&(n.accept=[""]);var r={url:t.data("file-url-add")||(t.closest("form").attr("action")||h.config.current_url)+".json",paramName:n.paramName||"file",dotNotation:n.name||"file",acceptedFiles:n.accept?n.accept.join(","):e.attr("accept")||t.data("media-types"),maxFilesize:"undefined"!=typeof n.filesize?n.filesize:256,maxFiles:n.limit||null};y=y.add(t),t=t[0],g.push(new v({container:t,options:r}))};e.Instances=function(){return(0,c.default)(".dropzone.files-upload").each(function(t,e){return b(e)}),(0,c.default)("body").on("mutation._grav",_),g}()}).call(e,function(){return this}())},,,function(t,e,n){(function(t){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0}),e.Instance=e.Toolbar=void 0;var a=function(){function t(t,e){for(var n=0;n
"+t.stack+"":"";u.default.error("Fetch Failed: \n '+l.translations.PLUGIN_ADMIN.UPDATE+" "+l.translations.PLUGIN_ADMIN.ALL+" "+c+'\n \n '+a+" "+l.translations.PLUGIN_ADMIN.OF_YOUR+" "+o+" "+l.translations.PLUGIN_ADMIN.HAVE_AN_UPDATE_AVAILABLE+"\n
\n ");var d=(0,s.default)("[data-update-packages]").attr("data-packages-slugs")||"";d=d?d.split(","):[];var h=(0,u.default)(d.concat(Object.keys(r))).join();(0,s.default)("[data-update-packages]").attr("data-packages-slugs",""+h),Object.keys(r).forEach(function(e){var a=(0,s.default)("[data-gpm-"+n[i]+'="'+e+'"]'),c=a.find(".gpm-name"),u=c.find("a"),f=a.parents(".content-wrapper");if("plugins"!==o||c.find(".badge.update").length?"themes"===o&&(c.append('"),f.addClass("has-updates")):(c.append(''+l.translations.PLUGIN_ADMIN.UPDATE_AVAILABLE+"!"),f.addClass("has-updates")),a.length){var d=(0,s.default)(".grav-update."+n[i]);if(d.length){var h="testing"===r[e].type?'test release':"";d.html('\n\n '+l.translations.PLUGIN_ADMIN.UPDATE+" "+(n[i].charAt(0).toUpperCase()+n[i].substr(1).toLowerCase())+'\n \n v'+r[e].available+" "+h+" "+l.translations.PLUGIN_ADMIN.OF_THIS+" "+n[i]+" "+l.translations.PLUGIN_ADMIN.IS_NOW_AVAILABLE+"!\n
\n ").css("display","block"),t=!1}}}),(0,s.default)("[data-update-packages]").removeClass("hidden")}}),(0,s.default)(".content-wrapper").addClass("updates-checked"),void(t||(0,s.default)(".warning-reinstall-not-latest-release").removeClass("hidden"))):this}}]),t}();e.default=y;var _=new y;e.Instance=_,e.Notifications=m.default,e.Feed=g.default,h.Instance.on("fetched",function(t,e){_.setPayload(t.payload||{}),_.grav().resources()}),"1"===l.config.enable_auto_updates_check&&h.Instance.fetch()},function(t,e,n){function r(t,e){return e=e||i,a(t,function(t,n,r){for(var i=r.length;++n ul").show();switch(r.find("div").remove(),r.find(".fa-warning").removeClass("fa-warning").addClass("fa-refresh fa-spin"),t.type||(t.type="note"),t.type){case"note":t.intro_text="Note";break;case"info":t.intro_text="Info";break;case"warning":t.intro_text="Warning"}var a="";if(e>9&&(a=" hidden "),t.link)i.append('\n"+t.message+"
").text();i.append('\n"+h.translations.PLUGIN_ADMIN.FILE_ERROR_UPLOAD+" "+e.name+"
\n"+n.message+""})}},{key:"onDropzoneComplete",value:function(e){if(!e.accepted&&!e.rejected){var n={status:"error",message:h.translations.PLUGIN_ADMIN.FILE_UNSUPPORTED+": "+e.name.match(/\..+/).join("")};return this.handleError({file:e,data:n,mode:"removeFile",msg:"
"+h.translations.PLUGIN_ADMIN.FILE_ERROR_ADD+" "+e.name+"
\n"+n.message+""})}this.options.reloadPage&&t.location.reload()}},{key:"b64_to_utf8",value:function(t){return t=t.replace(/\s/g,""),decodeURIComponent(escape(window.atob(t)))}},{key:"onDropzoneRemovedFile",value:function(t){var e=this;if(t.accepted&&!t.rejected){var n=t.removeUrl||this.urls.delete,r=(n||"").match(/path:(.*)\//),i={filename:t.name};t.sessionParams&&(i.task="filessessionremove",i.session=t.sessionParams),(0,d.default)(n,{method:"post",body:i},function(){if(r){r=e.b64_to_utf8(r[1]);var t=e.container.find('[name][type="hidden"]'),n=JSON.parse(t.val()||"{}");delete n[r],t.val(JSON.stringify(n))}})}}},{key:"onDropzoneError",value:function(t,e,n){var r=n?e.error.message:e;return(0,c.default)(t.previewElement).find("[data-dz-errormessage]").html(r),this.handleError({file:t,data:{status:"error"},msg:"
"+r+""})}},{key:"handleError",value:function(t){var e=t.file,n=t.data,r=t.mode,i=t.msg;if("error"===n.status||"unauthorized"===n.status){switch(r){case"addBack":e instanceof File?this.dropzone.addFile.call(this.dropzone,e):(this.dropzone.files.push(e),this.dropzone.options.addedfile.call(this.dropzone,e),this.dropzone.options.thumbnail.call(this.dropzone,e,e.extras.url));break;case"removeFile":default:~this.dropzone.files.indexOf(e)&&(e.rejected=!0,this.dropzone.removeFile.call(this.dropzone,e,{silent:!0}))}var a=(0,c.default)('[data-remodal-id="generic"]');a.find(".error-content").html(i),c.default.remodal.lookup[a.data("remodal")].open()}}}]),e}();e.default=v;var g=[],y=(0,c.default)(),_=function(t,e){var n=(0,c.default)(e).find(".dropzone.files-upload");n.length&&n.each(function(t,e){e=(0,c.default)(e),~y.index(e)||b(e)})},b=function(t){t=(0,c.default)(t);var e=t.find('input[type="file"]'),n=t.data("grav-file-settings")||{};n.accept&&~n.accept.indexOf("*")&&(n.accept=[""]);var r={url:t.data("file-url-add")||(t.closest("form").attr("action")||h.config.current_url)+".json",paramName:n.paramName||"file",dotNotation:n.name||"file",acceptedFiles:n.accept?n.accept.join(","):e.attr("accept")||t.data("media-types"),maxFilesize:"undefined"!=typeof n.filesize?n.filesize:256,maxFiles:n.limit||null};y=y.add(t),t=t[0],g.push(new v({container:t,options:r}))};e.Instances=function(){return(0,c.default)(".dropzone.files-upload").each(function(t,e){return b(e)}),(0,c.default)("body").on("mutation._grav",_),g}()}).call(e,function(){return this}())},,,function(t,e,n){(function(t){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0}),e.Instance=e.Toolbar=void 0;var a=function(){function t(t,e){for(var n=0;n