diff --git a/app/assets/javascripts/editor.js b/app/assets/javascripts/editor.js index 5ba62e5..254e756 100644 --- a/app/assets/javascripts/editor.js +++ b/app/assets/javascripts/editor.js @@ -1,10 +1,6 @@ (function() { var pens = {}; - Array.prototype.forEach.call(document.querySelectorAll('.textarea .editor'), function(editor) { - startEditing(editor); - }); - function startEditing(editor) { var name = editor.dataset.name; pens[name] = new Quill(editor, { @@ -22,89 +18,93 @@ return pens[name]; } - Array.prototype.forEach.call(document.querySelectorAll('form'), function(form) { - var shouldAllowAlert = false; - form.addEventListener('submit', function() { - if (shouldAllowAlert) { - return; + window.editorEndEdit = function(form) { + Array.prototype.forEach.call(form.querySelectorAll('.textarea'), function(editor) { + var name = editor.dataset.name; + var textarea = form.querySelector('textarea[name="' + name + '"]'); + if (!textarea) { + textarea = document.createElement('textarea'); + textarea.name = name; + textarea.style.display = 'none'; + form.appendChild(textarea); } - Array.prototype.forEach.call(document.querySelectorAll('.textarea'), function(editor) { - var name = editor.dataset.name; - var textarea = document.querySelector('textarea[name="' + name + '"]'); - if (!textarea) { - textarea = document.createElement('textarea'); - textarea.name = name; - textarea.style.display = 'none'; - form.appendChild(textarea); - } - textarea.value = editor.getElementsByClassName('ql-editor')[0].innerHTML; - if (pens[name]) { - pens[name].destroy(); - } - }); - }, false); - Array.prototype.forEach.call(form.querySelectorAll('button'), function(button) { - form.addEventListener('click', function(event) { - shouldAllowAlert = (event.target.value === 'cancel'); - }); - }); - }); - - Array.prototype.forEach.call(document.querySelectorAll('.check-box-field .other input'), function(input) { - var checkbox = document.getElementById(input.parentElement.parentElement.attributes.for.value); - input.addEventListener('keyup', function(event) { - if (event.target.value) { - checkbox.checked = true; + textarea.value = editor.getElementsByClassName('ql-editor')[0].innerHTML; + if (pens[name]) { + pens[name].destroy(); } }); - input.addEventListener('click', function(event) { - checkbox.checked = true; + }; + + var initEditor = function(node) { + Array.prototype.forEach.call(node.querySelectorAll('.textarea .editor'), function(editor) { + startEditing(editor); }); - var setRequired = function() { - if (checkbox.checked) { - input.setAttribute('required', 'required'); - } else { - input.removeAttribute('required'); - } - }; - Array.prototype.forEach.call(document.querySelectorAll('.check-box-field input'), function(_input) { - _input.addEventListener('change', function(event) { setRequired(); }); + + Array.prototype.forEach.call(node.querySelectorAll('form'), function(form) { + form.addEventListener('submit', function() { window.editorEndEdit(form); }, false); }); - }); - Array.prototype.forEach.call(document.querySelectorAll('[data-toggles]'), function(checkbox) { - var toggles = document.getElementById(checkbox.dataset.toggles); - toggles.classList.add('toggleable'); - var form = checkbox.parentNode; - while (form && form.nodeName != 'FORM') { - form = form.parentNode; - } - var toggle = function() { - toggles.classList[checkbox.checked ? 'add' : 'remove']('open'); - if (form) { + Array.prototype.forEach.call(node.querySelectorAll('.check-box-field .other input'), function(input) { + var checkbox = node.getElementById(input.parentElement.parentElement.attributes.for.value); + input.addEventListener('keyup', function(event) { + if (event.target.value) { + checkbox.checked = true; + } + }); + input.addEventListener('click', function(event) { + checkbox.checked = true; + }); + var setRequired = function() { if (checkbox.checked) { - form.removeAttribute('novalidate'); + input.setAttribute('required', 'required'); } else { - form.setAttribute('novalidate', 'novalidate'); + input.removeAttribute('required'); } + }; + Array.prototype.forEach.call(node.querySelectorAll('.check-box-field input'), function(_input) { + _input.addEventListener('change', function(event) { setRequired(); }); + }); + }); + + Array.prototype.forEach.call(node.querySelectorAll('[data-toggles]'), function(checkbox) { + var toggles = node.getElementById(checkbox.dataset.toggles); + toggles.classList.add('toggleable'); + var form = checkbox.parentNode; + while (form && form.nodeName != 'FORM') { + form = form.parentNode; } - }; - toggle(); - checkbox.addEventListener('change', function(event) { toggle(); }); - }); + var toggle = function() { + toggles.classList[checkbox.checked ? 'add' : 'remove']('open'); + if (form) { + if (checkbox.checked) { + form.removeAttribute('novalidate'); + } else { + form.setAttribute('novalidate', 'novalidate'); + } + } + }; + toggle(); + checkbox.addEventListener('change', function(event) { toggle(); }); + }); - Array.prototype.forEach.call(document.querySelectorAll('fieldset.translator'), function(translator) { - Array.prototype.forEach.call(translator.querySelectorAll('.locale-select a'), function(selector) { - selector.addEventListener('click', function(event) { - event.preventDefault(); - var locale = event.target.parentElement.getAttribute('data-locale'); - Array.prototype.forEach.call(translator.querySelectorAll('.locale-select li'), function(_selector) { - _selector.className = _selector.getAttribute('data-locale') == locale ? 'selected' : ''; - }); - Array.prototype.forEach.call(translator.querySelectorAll('.text-editors li'), function(editor) { - editor.className = editor.getAttribute('data-locale') == locale ? 'selected' : ''; + Array.prototype.forEach.call(node.querySelectorAll('fieldset.translator'), function(translator) { + Array.prototype.forEach.call(translator.querySelectorAll('.locale-select a'), function(selector) { + selector.addEventListener('click', function(event) { + event.preventDefault(); + var locale = event.target.parentElement.getAttribute('data-locale'); + Array.prototype.forEach.call(translator.querySelectorAll('.locale-select li'), function(_selector) { + _selector.className = _selector.getAttribute('data-locale') == locale ? 'selected' : ''; + }); + Array.prototype.forEach.call(translator.querySelectorAll('.text-editors li'), function(editor) { + editor.className = editor.getAttribute('data-locale') == locale ? 'selected' : ''; + }); }); }); }); - }); + }; + if (!window.initNodeFunctions) { + window.initNodeFunctions = []; + } + window.initNodeFunctions.push(initEditor); + initEditor(document); })(); diff --git a/app/assets/javascripts/main.js b/app/assets/javascripts/main.js index 6c6a535..74d971d 100644 --- a/app/assets/javascripts/main.js +++ b/app/assets/javascripts/main.js @@ -151,7 +151,10 @@ errorField.focus(); } - window.initNodeFunctions = [ function(node) { + if (!window.initNodeFunctions) { + window.initNodeFunctions = []; + } + window.initNodeFunctions.push(function(node) { forEachElement('.number-field,.email-field,.text-field,.password-field,.search-field', function(field) { var input = field.querySelector('input'); var positionLabel = function(input) { @@ -169,6 +172,7 @@ field.classList.add('focused'); }); }, node || document); + forEachElement('form.js-xhr', function(form) { if (form.addEventListener) { forEachElement('button', function(button) { @@ -178,12 +182,23 @@ }); }, form); form.addEventListener('submit', function(event) { + var btnvalue = form.getAttribute('data-button-value'); + var btnname = form.getAttribute('data-button-name'); + if (btnvalue) { + var btn = form.querySelector('button[name="' + btnname + '"][value="' + btnvalue + '"]'); + if (btn && btn.getAttribute('data-no-xhr') === '1') { + return; + } + } event.preventDefault(); + form.classList.add('requesting'); + if (typeof window.editorEndEdit === "function") { + window.editorEndEdit(form); + } var data = new FormData(form); - var button = form.getAttribute('data-button-value'); - if (button) { - data.append(form.getAttribute('data-button-name'), button); + if (btnname) { + data.append(btnname, btnvalue); } var request = new XMLHttpRequest(); request.onreadystatechange = function() { @@ -239,7 +254,7 @@ } }); }); - } ]; + }); window.initNode = function(node) { forEach(initNodeFunctions, function(fn) { fn(node); diff --git a/app/assets/stylesheets/_application.scss b/app/assets/stylesheets/_application.scss index 938694d..0f231bb 100644 --- a/app/assets/stylesheets/_application.scss +++ b/app/assets/stylesheets/_application.scss @@ -197,6 +197,18 @@ table, .table { width: 0.1rem; } + &#review tbody th { + width: auto; + vertical-align: top; + } + + &#review .scroller { + font-size: 0.75em; + max-width: 50em; + max-height: 25em; + overflow: auto; + } + &.admin-edit { width: 100%; } @@ -525,7 +537,7 @@ button, font-size: 0.9em; } - &.unstyled { + #main &.unstyled { height: 4em; margin: 0; padding: 0; @@ -535,10 +547,25 @@ button, color: $black; @include _(box-shadow, none); @include _(text-stroke, 0); + + &.secondary { + opacity: 0.5; + } + + &.edit { + height: 1.5em; + border: 0.1em solid; + padding: 0.125em 0.5em; + background-color: $light-gray; + margin-left: 1em; + font-size: 1em; + line-height: 1em; + float: right; + } } } -table.calendar { +#main table.calendar { width: 100%; table-layout: fixed; margin: 0; @@ -568,6 +595,8 @@ table.calendar { } #main .actions { + margin-top: 4em; + &.center { text-align: center; } @@ -584,6 +613,15 @@ table.calendar { float: left; background-color: $mid-gray; } + + button[value="review"] { + float: right; + background-color: $blue; + } + + button[value="cancel"], button.red { + background-color: $red; + } } #main { @@ -598,7 +636,6 @@ table.calendar { background-color: $white; &.selected { - // background-color: rgba($colour-1, 0.25); box-shadow: 0 0 0 0.25em rgba($colour-2, 0.5); } } @@ -611,12 +648,56 @@ table.calendar { .options { display: table-row; + + + fieldset { + margin: 2em 0; + } } button { display: table-cell; margin: 0 0.5em; height: 3em; + + &:first-child { + margin-left: 0; + } + + &:last-child { + margin-right: 0; + } + } + + .check-box-field { + box-shadow: none; + margin: 0; + font-size: 0.9em; + } + + .custom-option { + text-align: right; + border: 0.1rem solid $black; + background-color: $white; + + input { + display: table-cell; + width: 10em; + height: 3em; + margin: 0; + font-family: inherit; + border: 0; + border-right: 0; + text-align: center; + background-color: transparent; + } + + button { + width: 50%; + margin: 0; + border: 0; + border-left: inherit; + background-color: lighten($colour-1, 25%); + } } } @@ -639,7 +720,7 @@ table.calendar { text-align: center; margin-bottom: 1em; - &.error, &.complete { + &.error, &.complete, &.warning { display: block; } @@ -656,6 +737,16 @@ table.calendar { border-color: $red; background-color: rgba($red, 0.25); } + + &.complete .message { + border-color: $green; + background-color: rgba($green, 0.25); + } + + &.warning .message { + border-color: $yellow; + background-color: rgba($yellow, 0.25); + } } a.button { @@ -893,6 +984,10 @@ input { text-align: left; } +.text-area-field { + clear: both; +} + .telephone-field { max-width: 15em; } @@ -2774,9 +2869,9 @@ html :focus { button { background-color: $colour-4; - width: 6em; - font-size: 1.5em; - margin: 0.25em; + @include font-family(secondary); + margin-top: 1em; + margin-bottom: 1em; &.option-1 { background-color: $colour-3; @@ -3028,7 +3123,7 @@ body.policy .policy-agreement ul { .actions { position: relative; - margin: 0; + margin: 0 0 1em; @include _(box-shadow, 0 -1em 1em $white); } diff --git a/app/assets/stylesheets/admin/and_chr-57.scss b/app/assets/stylesheets/admin/and_chr-57.scss new file mode 100644 index 0000000..b39399b --- /dev/null +++ b/app/assets/stylesheets/admin/and_chr-57.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome for Android 57.0 (approximately 26.57% of all users) + * + */ + +$browser: and_chr; +$browser_prefix: webkit; +$browser_version: 57.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": a, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": n, + "stream": ax, + "svg-img": y, + "datalist": y, + "dataset": y, + "css-grid": y, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": y, + "user-select-none": y, + "input-file-accept": a, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": y, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": a, + "text-decoration": y, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": y, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": a, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": y, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": a, + "keyboardevent-charcode": y, + "keyboardevent-code": nd, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": n, + "subresource-integrity": y, + "custom-elementsv1": a, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": y, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": n, + "credential-management": y, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": y, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": u, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": y, + "shadowdomv1": y, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": y, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": y, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": nd, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": y, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/and_ff-52.scss b/app/assets/stylesheets/admin/and_ff-52.scss new file mode 100644 index 0000000..fce8f58 --- /dev/null +++ b/app/assets/stylesheets/admin/and_ff-52.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox for Android 52.0 (approximately 0.03% of all users) + * + */ + +$browser: and_ff; +$browser_prefix: moz; +$browser_version: 52.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": y, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": a, + "ogv": y, + "wordwrap": y, + "pointerlock": n, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": y, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": n, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": y, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": y, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": a, + "text-decoration": y, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": y, + "ambient-light": y, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": y, + "woff2": y, + "text-size-adjust": yx, + "web-animation": a, + "resource-timing": y, + "custom-elements": pd, + "imports": p, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": a, + "input-minlength": y, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": u, + "netinfo": y, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": a, + "keyboardevent-charcode": n, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": y, + "custom-elementsv1": p, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": y, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": u, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": n, + "wasm": y, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": nd, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": y, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/and_qq-1.2.scss b/app/assets/stylesheets/admin/and_qq-1.2.scss new file mode 100644 index 0000000..2101db5 --- /dev/null +++ b/app/assets/stylesheets/admin/and_qq-1.2.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: QQ Browser 1.2 (approximately 0.0% of all users) + * + */ + +$browser: and_qq; +$browser_prefix: webkit; +$browser_version: 1.2; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": y, + "font-feature": y, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": n, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": y, + "promises": y, + "css-sticky": nd, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": a, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": n, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": y, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": p, + "css-in-out-of-range": y, + "push-api": n, + "template-literals": u, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": nd, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": n, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": nd, + "shadowdomv1": y, + "urlsearchparams": n, + "css-font-rendering-controls": nd, + "wasm": nd, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": u, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/and_uc-11.scss b/app/assets/stylesheets/admin/and_uc-11.scss new file mode 100644 index 0000000..764ad86 --- /dev/null +++ b/app/assets/stylesheets/admin/and_uc-11.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: UC Browser for Android 11.0 (approximately 9.43% of all users) + * + */ + +$browser: and_uc; +$browser_prefix: webkit; +$browser_version: 11.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": y, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": ax, + "css-transitions": yx, + "font-feature": yx, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": n, + "css-masks": ax, + "console-basic": n, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": n, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": n, + "geolocation": y, + "flexbox": ax, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": a, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": y, + "mpeg4": a, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": ax, + "svg-img": y, + "datalist": y, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": n, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": yx, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": n, + "input-color": a, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": yx, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": n, + "style-scoped": y, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": n, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": yx, + "css-selection": n, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": n, + "srcset": y, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": y, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": yx, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": y, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": yx, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": yx, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": u, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": y, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": a, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": u, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/android-2.1.scss b/app/assets/stylesheets/admin/android-2.1.scss new file mode 100644 index 0000000..8bbb612 --- /dev/null +++ b/app/assets/stylesheets/admin/android-2.1.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Android Browser 2.1 (approximately 0.0% of all users) + * + */ + +$browser: android; +$browser_prefix: webkit; +$browser_version: 2.1; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": a, + "audio": n, + "contenteditable": n, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": n, + "html5semantic": a, + "css-line-clamp": u, + "offline-apps": y, + "webworkers": y, + "fontface": n, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": ax, + "css-table": y, + "css-gencontent": y, + "css-fixed": a, + "beacon": n, + "hashchange": n, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": ax, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": yx, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": ax, + "css-gradients": ax, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": n, + "svg-css": n, + "svg-smil": n, + "svg-fonts": n, + "svg-filters": n, + "svg-html": n, + "svg-html5": n, + "canvas": a, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": u, + "eventsource": n, + "x-doc-messaging": y, + "sni": n, + "datauri": y, + "wav": u, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": n, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": n, + "history": n, + "json": y, + "classlist": p, + "text-overflow": y, + "webm": n, + "mpeg4": a, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": n, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": n, + "touch": y, + "matchesselector": n, + "pointer-events": y, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": a, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": n, + "input-color": n, + "input-number": n, + "getboundingclientrect": u, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": n, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": n, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": u, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": n, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": a, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": u, + "ogg-vorbis": u, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": u, + "wbr-element": u, + "const": u, + "css-all": n, + "css-initial-value": u, + "css-letter-spacing": u, + "css-unset-value": n, + "insertadjacenthtml": u, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": u, + "addeventlistener": y, + "dispatchevent": u, + "documenthead": u, + "innertext": u, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": u, + "proxy": n, + "keyboardevent-which": u, + "keyboardevent-charcode": u, + "keyboardevent-code": n, + "keyboardevent-location": u, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": u, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": u, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": u, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": u, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/android-2.2.scss b/app/assets/stylesheets/admin/android-2.2.scss new file mode 100644 index 0000000..76eaa97 --- /dev/null +++ b/app/assets/stylesheets/admin/android-2.2.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Android Browser 2.2 (approximately 0.0% of all users) + * + */ + +$browser: android; +$browser_prefix: webkit; +$browser_version: 2.2; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": a, + "audio": n, + "contenteditable": n, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": n, + "html5semantic": a, + "css-line-clamp": u, + "offline-apps": y, + "webworkers": n, + "fontface": a, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": ax, + "css-table": y, + "css-gencontent": y, + "css-fixed": a, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": ax, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": ax, + "css-gradients": ax, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": n, + "svg-css": n, + "svg-smil": n, + "svg-fonts": n, + "svg-filters": n, + "svg-html": n, + "svg-html5": n, + "canvas": a, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": u, + "eventsource": n, + "x-doc-messaging": y, + "sni": n, + "datauri": y, + "wav": u, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": n, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": n, + "history": y, + "json": y, + "classlist": p, + "text-overflow": y, + "webm": n, + "mpeg4": a, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": n, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": a, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": n, + "input-color": n, + "input-number": n, + "getboundingclientrect": u, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": n, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": n, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": u, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": n, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": a, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": u, + "ogg-vorbis": u, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": u, + "wbr-element": u, + "const": u, + "css-all": n, + "css-initial-value": u, + "css-letter-spacing": u, + "css-unset-value": n, + "insertadjacenthtml": u, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": u, + "addeventlistener": y, + "dispatchevent": u, + "documenthead": u, + "innertext": u, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": a, + "setimmediate": n, + "es6-number": n, + "maxlength": u, + "proxy": n, + "keyboardevent-which": u, + "keyboardevent-charcode": u, + "keyboardevent-code": n, + "keyboardevent-location": u, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": u, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": u, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": u, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": u, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/android-2.3.scss b/app/assets/stylesheets/admin/android-2.3.scss new file mode 100644 index 0000000..1b0f5e7 --- /dev/null +++ b/app/assets/stylesheets/admin/android-2.3.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Android Browser 2.3 (approximately 0.0% of all users) + * + */ + +$browser: android; +$browser_prefix: webkit; +$browser_version: 2.3; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": n, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": n, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": n, + "fontface": a, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": ax, + "css-table": y, + "css-gencontent": y, + "css-fixed": a, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": ax, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": ax, + "css-gradients": ax, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": n, + "svg-css": n, + "svg-smil": n, + "svg-fonts": n, + "svg-filters": n, + "svg-html": n, + "svg-html5": n, + "canvas": a, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": y, + "eventsource": n, + "x-doc-messaging": y, + "sni": n, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": n, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": n, + "history": y, + "json": y, + "classlist": p, + "text-overflow": y, + "webm": a, + "mpeg4": a, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": n, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": a, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": n, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": n, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": n, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": a, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": a, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/android-3.scss b/app/assets/stylesheets/admin/android-3.scss new file mode 100644 index 0000000..a21aaec --- /dev/null +++ b/app/assets/stylesheets/admin/android-3.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Android Browser 3.0 (approximately 0.0% of all users) + * + */ + +$browser: android; +$browser_prefix: webkit; +$browser_version: 3.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": n, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": n, + "fontface": a, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": ax, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": ax, + "css-gradients": ax, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": a, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": n, + "svg-html": n, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": y, + "eventsource": n, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": n, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": a, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": y, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": n, + "history": n, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": a, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": a, + "script-defer": y, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": a, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": n, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": n, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": a, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": n, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": yx, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": a, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": u, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": u, + "async-functions": n, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/android-4.1.scss b/app/assets/stylesheets/admin/android-4.1.scss new file mode 100644 index 0000000..238bb91 --- /dev/null +++ b/app/assets/stylesheets/admin/android-4.1.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Android Browser 4.1 (approximately 0.18% of all users) + * + */ + +$browser: android; +$browser_prefix: webkit; +$browser_version: 4.1; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": n, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": n, + "fontface": y, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": a, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": n, + "svg-html": n, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": y, + "eventsource": n, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": n, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": a, + "shadowdom": n, + "websockets": n, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": n, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": a, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": n, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": a, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": a, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": a, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": p, + "css-selection": n, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": a, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": yx, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": a, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": u, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/android-4.2-4.3.scss b/app/assets/stylesheets/admin/android-4.2-4.3.scss new file mode 100644 index 0000000..7863855 --- /dev/null +++ b/app/assets/stylesheets/admin/android-4.2-4.3.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Android Browser 4.2 (approximately 0.43% of all users) + * + */ + +$browser: android; +$browser_prefix: webkit; +$browser_version: 4.2; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": n, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": n, + "fontface": y, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": a, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": n, + "svg-html": n, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": y, + "eventsource": n, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": n, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": a, + "shadowdom": n, + "websockets": n, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": a, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": n, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": p, + "css-selection": n, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": a, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": yx, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": a, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": u, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/android-4.4.3-4.4.4.scss b/app/assets/stylesheets/admin/android-4.4.3-4.4.4.scss new file mode 100644 index 0000000..be5672c --- /dev/null +++ b/app/assets/stylesheets/admin/android-4.4.3-4.4.4.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Android Browser 4.4 (approximately 0.61% of all users) + * + */ + +$browser: android; +$browser_prefix: webkit; +$browser_version: 4.4; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": n, + "fileapi": y, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": a, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": u, + "inline-block": y, + "notifications": ax, + "stream": n, + "svg-img": y, + "datalist": y, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": n, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": y, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": n, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": n, + "keyboardevent-which": a, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": u, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/android-4.4.scss b/app/assets/stylesheets/admin/android-4.4.scss new file mode 100644 index 0000000..d04a9f6 --- /dev/null +++ b/app/assets/stylesheets/admin/android-4.4.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Android Browser 4.4 (approximately 1.04% of all users) + * + */ + +$browser: android; +$browser_prefix: webkit; +$browser_version: 4.4; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": n, + "fileapi": a, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": a, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": ax, + "stream": n, + "svg-img": y, + "datalist": p, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": n, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": y, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": n, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": yx, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": n, + "keyboardevent-which": a, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": u, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/android-4.scss b/app/assets/stylesheets/admin/android-4.scss new file mode 100644 index 0000000..fafde01 --- /dev/null +++ b/app/assets/stylesheets/admin/android-4.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Android Browser 4.0 (approximately 0.03% of all users) + * + */ + +$browser: android; +$browser_prefix: webkit; +$browser_version: 4.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": n, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": n, + "fontface": y, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": a, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": n, + "svg-html": n, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": y, + "eventsource": n, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": n, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": a, + "shadowdom": n, + "websockets": n, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": n, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": a, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": n, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": a, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": n, + "input-color": n, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": a, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": a, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": p, + "css-selection": n, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": a, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": n, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": yx, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": a, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": u, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/android-56.scss b/app/assets/stylesheets/admin/android-56.scss new file mode 100644 index 0000000..ba98254 --- /dev/null +++ b/app/assets/stylesheets/admin/android-56.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Android Browser 56.0 (approximately 0.0% of all users) + * + */ + +$browser: android; +$browser_prefix: webkit; +$browser_version: 56.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": a, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": ax, + "stream": ax, + "svg-img": y, + "datalist": y, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": n, + "input-color": y, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": y, + "user-select-none": y, + "input-file-accept": n, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": a, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": y, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": y, + "font-unicode-range": y, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": n, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": n, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": y, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": n, + "subresource-integrity": y, + "custom-elementsv1": a, + "css-in-out-of-range": y, + "push-api": n, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": y, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": n, + "credential-management": y, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": y, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": u, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": n, + "shadowdomv1": y, + "urlsearchparams": y, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": y, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": y, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/bb-10.scss b/app/assets/stylesheets/admin/bb-10.scss new file mode 100644 index 0000000..71159c6 --- /dev/null +++ b/app/assets/stylesheets/admin/bb-10.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Blackberry Browser 10.0 (approximately 0.0% of all users) + * + */ + +$browser: bb; +$browser_prefix: webkit; +$browser_version: 10.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": n, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": n, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": y, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": u, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": yx, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": u, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/bb-7.scss b/app/assets/stylesheets/admin/bb-7.scss new file mode 100644 index 0000000..9495387 --- /dev/null +++ b/app/assets/stylesheets/admin/bb-7.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Blackberry Browser 7.0 (approximately 0.04% of all users) + * + */ + +$browser: bb; +$browser_prefix: webkit; +$browser_version: 7.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": n, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": a, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": a, + "css-boxshadow": yx, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": yx, + "css-gradients": ax, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": n, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": n, + "svg-html": n, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": n, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": n, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": n, + "script-async": y, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": y, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": n, + "input-color": y, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": n, + "css-selection": n, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": a, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": yx, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": u, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": u, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-10.scss b/app/assets/stylesheets/admin/chrome-10.scss new file mode 100644 index 0000000..e9775d2 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-10.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 10.0 (approximately 0.0% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 10.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": u, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": n, + "online-status": n, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": ax, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": ax, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": yx, + "audio-api": yx, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": n, + "getcomputedstyle": a, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": a, + "webp": a, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": u, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": yx, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": u, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": u, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": u, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": u, + "form-submit-attributes": u, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-11.scss b/app/assets/stylesheets/admin/chrome-11.scss new file mode 100644 index 0000000..f54d72a --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-11.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 11.0 (approximately 0.02% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 11.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": u, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": ax, + "online-status": n, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": ax, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": ax, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": yx, + "audio-api": yx, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": a, + "webp": a, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": u, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": yx, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": u, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": u, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": u, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": u, + "form-submit-attributes": u, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-12.scss b/app/assets/stylesheets/admin/chrome-12.scss new file mode 100644 index 0000000..52b2108 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-12.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 12.0 (approximately 0.0% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 12.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": u, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": ax, + "online-status": n, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": ax, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": ax, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": yx, + "audio-api": yx, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": a, + "webp": a, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": yx, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": u, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": u, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": u, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": u, + "form-submit-attributes": u, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-13.scss b/app/assets/stylesheets/admin/chrome-13.scss new file mode 100644 index 0000000..9f85247 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-13.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 13.0 (approximately 0.0% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 13.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": u, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": ax, + "online-status": n, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": ax, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": yx, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": a, + "webp": a, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": yx, + "customevent": u, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": u, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": u, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": u, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": u, + "form-submit-attributes": u, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-14.scss b/app/assets/stylesheets/admin/chrome-14.scss new file mode 100644 index 0000000..9be7a9a --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-14.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 14.0 (approximately 0.0% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 14.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": ax, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": ax, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": yx, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": n, + "user-select-none": yx, + "input-file-accept": a, + "webp": a, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": yx, + "customevent": u, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": u, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": u, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": u, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": u, + "form-submit-attributes": u, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-15.scss b/app/assets/stylesheets/admin/chrome-15.scss new file mode 100644 index 0000000..7034c68 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-15.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 15.0 (approximately 0.0% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 15.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": ax, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": ax, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": yx, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": ax, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": n, + "user-select-none": yx, + "input-file-accept": a, + "webp": a, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-16.scss b/app/assets/stylesheets/admin/chrome-16.scss new file mode 100644 index 0000000..6492fb4 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-16.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 16.0 (approximately 0.0% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 16.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": ax, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": ax, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": nd, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": ax, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": yx, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": ax, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": n, + "user-select-none": yx, + "input-file-accept": a, + "webp": a, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": u, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": u, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-17.scss b/app/assets/stylesheets/admin/chrome-17.scss new file mode 100644 index 0000000..978d668 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-17.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 17.0 (approximately 0.0% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 17.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": ax, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": ax, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": nd, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": ax, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": yx, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": ax, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": n, + "user-select-none": yx, + "input-file-accept": a, + "webp": a, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": u, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": u, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-18.scss b/app/assets/stylesheets/admin/chrome-18.scss new file mode 100644 index 0000000..8226244 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-18.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 18.0 (approximately 0.01% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 18.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": ax, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": ax, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": nd, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": ax, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": yx, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": ax, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": n, + "user-select-none": yx, + "input-file-accept": a, + "webp": a, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": yx, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": u, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": u, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-19.scss b/app/assets/stylesheets/admin/chrome-19.scss new file mode 100644 index 0000000..4d0c3b6 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-19.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 19.0 (approximately 0.02% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 19.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": ax, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": ax, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": nd, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": ax, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": yx, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": nd, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": n, + "user-select-none": yx, + "input-file-accept": a, + "webp": a, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": yx, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": u, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": u, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-20.scss b/app/assets/stylesheets/admin/chrome-20.scss new file mode 100644 index 0000000..4afd08a --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-20.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 20.0 (approximately 0.0% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 20.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": ax, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": ax, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": nd, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": ax, + "stream": n, + "svg-img": a, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": nd, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": a, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": nd, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": n, + "user-select-none": yx, + "input-file-accept": a, + "webp": a, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": yx, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": yx, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": nd, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-21.scss b/app/assets/stylesheets/admin/chrome-21.scss new file mode 100644 index 0000000..8df552d --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-21.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 21.0 (approximately 0.01% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 21.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": yx, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": ax, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": yx, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": nd, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": ax, + "stream": ax, + "svg-img": a, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": nd, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": a, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": nd, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": n, + "user-select-none": yx, + "input-file-accept": u, + "webp": a, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": yx, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": yx, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": nd, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": yx, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": yx, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-22.scss b/app/assets/stylesheets/admin/chrome-22.scss new file mode 100644 index 0000000..e26414f --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-22.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 22.0 (approximately 0.04% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 22.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": yx, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": ax, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": yx, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": a, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": nd, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": yx, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": a, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": nd, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": u, + "webp": a, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": yx, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": yx, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": nd, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": yx, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-23.scss b/app/assets/stylesheets/admin/chrome-23.scss new file mode 100644 index 0000000..cc36c38 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-23.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 23.0 (approximately 0.01% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 23.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": yx, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": yx, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": yx, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": yx, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": a, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": nd, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": yx, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": a, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": nd, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": u, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": yx, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": nd, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": yx, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": nd, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": yx, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-24.scss b/app/assets/stylesheets/admin/chrome-24.scss new file mode 100644 index 0000000..f3edbfd --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-24.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 24.0 (approximately 0.06% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 24.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": yx, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": yx, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": yx, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": a, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": nd, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": a, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": nd, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": u, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": yx, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": nd, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": nd, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": yx, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-25.scss b/app/assets/stylesheets/admin/chrome-25.scss new file mode 100644 index 0000000..cd4132e --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-25.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 25.0 (approximately 0.01% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 25.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": yx, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": yx, + "webgl": y, + "fileapi": a, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": yx, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": a, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": nd, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": a, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": nd, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": u, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": yx, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": nd, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": nd, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-26.scss b/app/assets/stylesheets/admin/chrome-26.scss new file mode 100644 index 0000000..2ea2f4f --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-26.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 26.0 (approximately 0.02% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 26.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": yx, + "webgl": y, + "fileapi": a, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": yx, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": a, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": nd, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": nd, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": yx, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": nd, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": nd, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-27.scss b/app/assets/stylesheets/admin/chrome-27.scss new file mode 100644 index 0000000..3c66877 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-27.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 27.0 (approximately 0.01% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 27.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": yx, + "webgl": y, + "fileapi": a, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": yx, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": a, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": nd, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": nd, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": nd, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": nd, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-28.scss b/app/assets/stylesheets/admin/chrome-28.scss new file mode 100644 index 0000000..a9ac682 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-28.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 28.0 (approximately 0.01% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 28.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": yx, + "webgl": y, + "fileapi": a, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": yx, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": nd, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": nd, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": nd, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": nd, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-29.scss b/app/assets/stylesheets/admin/chrome-29.scss new file mode 100644 index 0000000..1846e33 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-29.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 29.0 (approximately 0.02% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 29.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": yx, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": nd, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": nd, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": nd, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": nd, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": nd, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": a, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": yx, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-30.scss b/app/assets/stylesheets/admin/chrome-30.scss new file mode 100644 index 0000000..102bd8e --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-30.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 30.0 (approximately 0.03% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 30.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": yx, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": nd, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": nd, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": nd, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": nd, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": nd, + "imports": nd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": yx, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-31.scss b/app/assets/stylesheets/admin/chrome-31.scss new file mode 100644 index 0000000..e743fa4 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-31.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 31.0 (approximately 0.08% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 31.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": nd, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": nd, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": nd, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": nd, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": nd, + "imports": nd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": yx, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-32.scss b/app/assets/stylesheets/admin/chrome-32.scss new file mode 100644 index 0000000..b6e08c4 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-32.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 32.0 (approximately 0.03% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 32.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": nd, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": nd, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": a, + "css-sticky": nd, + "dialog": nd, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": nd, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": nd, + "imports": nd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": yx, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-33.scss b/app/assets/stylesheets/admin/chrome-33.scss new file mode 100644 index 0000000..4265d4f --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-33.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 33.0 (approximately 0.03% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 33.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": nd, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": nd, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": y, + "css-sticky": nd, + "dialog": nd, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": nd, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": y, + "imports": nd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-34.scss b/app/assets/stylesheets/admin/chrome-34.scss new file mode 100644 index 0000000..c0f17cd --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-34.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 34.0 (approximately 0.04% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 34.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": nd, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": nd, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": y, + "css-sticky": nd, + "dialog": nd, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": nd, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": a, + "ambient-light": n, + "will-change": n, + "css-shapes": nd, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": y, + "imports": nd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-35.scss b/app/assets/stylesheets/admin/chrome-35.scss new file mode 100644 index 0000000..d69a106 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-35.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 35.0 (approximately 0.05% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 35.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": nd, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": y, + "css-sticky": nd, + "dialog": nd, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": nd, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": a, + "ambient-light": n, + "will-change": n, + "css-shapes": nd, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": y, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": y, + "font-unicode-range": a, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-36.scss b/app/assets/stylesheets/admin/chrome-36.scss new file mode 100644 index 0000000..54ccd80 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-36.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 36.0 (approximately 0.07% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 36.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": nd, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": y, + "css-sticky": nd, + "dialog": nd, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": nd, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": a, + "ambient-light": n, + "will-change": y, + "css-shapes": nd, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-37.scss b/app/assets/stylesheets/admin/chrome-37.scss new file mode 100644 index 0000000..86c74f7 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-37.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 37.0 (approximately 0.02% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 37.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": nd, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": nd, + "serviceworkers": n, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": a, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": nd, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-38.scss b/app/assets/stylesheets/admin/chrome-38.scss new file mode 100644 index 0000000..7649903 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-38.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 38.0 (approximately 0.04% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 38.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": nd, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": n, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-39.scss b/app/assets/stylesheets/admin/chrome-39.scss new file mode 100644 index 0000000..5000d4b --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-39.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 39.0 (approximately 0.04% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 39.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": nd, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": n, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-4.scss b/app/assets/stylesheets/admin/chrome-4.scss new file mode 100644 index 0000000..1613ba1 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-4.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 4.0 (approximately 0.0% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 4.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": u, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": p, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": yx, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": yx, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": yx, + "css-gradients": ax, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": a, + "svg-fonts": y, + "svg-filters": n, + "svg-html": a, + "svg-html5": p, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": n, + "x-doc-messaging": y, + "sni": n, + "datauri": y, + "wav": n, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": a, + "flexbox": ax, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": a, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": n, + "history": n, + "json": y, + "classlist": p, + "text-overflow": y, + "webm": n, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": u, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": n, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": n, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": u, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": u, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": u, + "form-submit-attributes": u, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-40.scss b/app/assets/stylesheets/admin/chrome-40.scss new file mode 100644 index 0000000..93c43d3 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-40.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 40.0 (approximately 0.03% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 40.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": nd, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": a, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": a, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-41.scss b/app/assets/stylesheets/admin/chrome-41.scss new file mode 100644 index 0000000..0fa89ec --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-41.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 41.0 (approximately 0.04% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 41.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": a, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": a, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": n, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": a, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": nd, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-42.scss b/app/assets/stylesheets/admin/chrome-42.scss new file mode 100644 index 0000000..99e3c23 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-42.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 42.0 (approximately 0.04% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 42.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": a, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": n, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": a, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": nd, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": nd, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": a, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-43.scss b/app/assets/stylesheets/admin/chrome-43.scss new file mode 100644 index 0000000..696b63f --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-43.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 43.0 (approximately 0.21% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 43.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": a, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": a, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": nd, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": nd, + "css-scroll-behavior": nd, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": a, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-44.scss b/app/assets/stylesheets/admin/chrome-44.scss new file mode 100644 index 0000000..5d78798 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-44.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 44.0 (approximately 0.04% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 44.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": a, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": a, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": nd, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": nd, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": nd, + "css-scroll-behavior": nd, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": a, + "template-literals": y, + "flac": u, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": a, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-45.scss b/app/assets/stylesheets/admin/chrome-45.scss new file mode 100644 index 0000000..28225a0 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-45.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 45.0 (approximately 0.31% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 45.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": a, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": nd, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": nd, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": nd, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": a, + "template-literals": y, + "flac": u, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": a, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-46.scss b/app/assets/stylesheets/admin/chrome-46.scss new file mode 100644 index 0000000..4b01f14 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-46.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 46.0 (approximately 0.05% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 46.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": a, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": a, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": nd, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": nd, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": a, + "template-literals": y, + "flac": u, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": a, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-47.scss b/app/assets/stylesheets/admin/chrome-47.scss new file mode 100644 index 0000000..080fb6d --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-47.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 47.0 (approximately 0.11% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 47.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": a, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": nd, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": a, + "template-literals": y, + "flac": a, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": nd, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": a, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-48.scss b/app/assets/stylesheets/admin/chrome-48.scss new file mode 100644 index 0000000..30ab1e7 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-48.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 48.0 (approximately 0.08% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 48.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": nd, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": a, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": a, + "template-literals": y, + "flac": a, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": nd, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": nd, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": a, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-49.scss b/app/assets/stylesheets/admin/chrome-49.scss new file mode 100644 index 0000000..b286077 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-49.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 49.0 (approximately 1.29% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 49.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": nd, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": a, + "template-literals": y, + "flac": a, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": nd, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-5.scss b/app/assets/stylesheets/admin/chrome-5.scss new file mode 100644 index 0000000..91e2dbb --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-5.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 5.0 (approximately 0.0% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 5.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": u, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": yx, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": yx, + "css-gradients": ax, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": a, + "svg-html": a, + "svg-html5": p, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": n, + "x-doc-messaging": y, + "sni": n, + "datauri": y, + "wav": n, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": a, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": n, + "history": y, + "json": y, + "classlist": p, + "text-overflow": y, + "webm": n, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": u, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": ax, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": n, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": u, + "webp": n, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": u, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": u, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": u, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": u, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": u, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": u, + "form-submit-attributes": u, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-50.scss b/app/assets/stylesheets/admin/chrome-50.scss new file mode 100644 index 0000000..1dac003 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-50.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 50.0 (approximately 0.12% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 50.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": y, + "template-literals": y, + "flac": a, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": nd, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-51.scss b/app/assets/stylesheets/admin/chrome-51.scss new file mode 100644 index 0000000..afdf7b9 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-51.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 51.0 (approximately 0.24% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 51.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": y, + "template-literals": y, + "flac": a, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": n, + "credential-management": y, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": nd, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": y, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": nd, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-52.scss b/app/assets/stylesheets/admin/chrome-52.scss new file mode 100644 index 0000000..444806a --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-52.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 52.0 (approximately 0.11% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 52.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": nd, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": y, + "template-literals": y, + "flac": a, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": n, + "credential-management": y, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": nd, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": y, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": y, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": nd, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-53.scss b/app/assets/stylesheets/admin/chrome-53.scss new file mode 100644 index 0000000..f1cd781 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-53.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 53.0 (approximately 0.15% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 53.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": nd, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": p, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": a, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": n, + "credential-management": y, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": nd, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": y, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": y, + "selection-api": y, + "payment-request": nd, + "shadowdomv1": y, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": nd, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-54.scss b/app/assets/stylesheets/admin/chrome-54.scss new file mode 100644 index 0000000..4da554d --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-54.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 54.0 (approximately 0.19% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 54.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": y, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": nd, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": y, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": a, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": a, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": n, + "credential-management": y, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": y, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": y, + "selection-api": y, + "payment-request": nd, + "shadowdomv1": y, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": nd, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-55.scss b/app/assets/stylesheets/admin/chrome-55.scss new file mode 100644 index 0000000..ff0ac13 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-55.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 55.0 (approximately 0.59% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 55.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": a, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": y, + "user-select-none": y, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": nd, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": y, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": a, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": a, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": n, + "credential-management": y, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": y, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": nd, + "shadowdomv1": y, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": nd, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-56.scss b/app/assets/stylesheets/admin/chrome-56.scss new file mode 100644 index 0000000..2a61607 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-56.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 56.0 (approximately 21.51% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 56.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": a, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": y, + "user-select-none": y, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": y, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": a, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": y, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": y, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": n, + "credential-management": y, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": y, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": nd, + "shadowdomv1": y, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": nd, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": y, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-57.scss b/app/assets/stylesheets/admin/chrome-57.scss new file mode 100644 index 0000000..8f6a0bd --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-57.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 57.0 (approximately 1.37% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 57.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": a, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": y, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": y, + "user-select-none": y, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": y, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": y, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": y, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": a, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": y, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": y, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": n, + "credential-management": y, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": y, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": nd, + "shadowdomv1": y, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": y, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": nd, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": y, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-58.scss b/app/assets/stylesheets/admin/chrome-58.scss new file mode 100644 index 0000000..589b90a --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-58.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 58.0 (approximately 0.08% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 58.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": a, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": y, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": y, + "user-select-none": y, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": y, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": y, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": y, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": u, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": a, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": y, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": y, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": u, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": u, + "credential-management": y, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": y, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": nd, + "shadowdomv1": y, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": y, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": y, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": nd, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": y, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-59.scss b/app/assets/stylesheets/admin/chrome-59.scss new file mode 100644 index 0000000..fb44df0 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-59.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 59.0 (approximately 0.03% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 59.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": a, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": y, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": y, + "user-select-none": y, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": y, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": y, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": y, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": u, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": a, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": y, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": y, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": u, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": u, + "credential-management": y, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": y, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": nd, + "shadowdomv1": y, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": y, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": y, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": nd, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": y, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-6.scss b/app/assets/stylesheets/admin/chrome-6.scss new file mode 100644 index 0000000..6dab82f --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-6.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 6.0 (approximately 0.0% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 6.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": u, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": yx, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": yx, + "css-gradients": ax, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": a, + "svg-html": a, + "svg-html5": p, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": n, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": n, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": n, + "history": y, + "json": y, + "classlist": p, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": u, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": ax, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": n, + "filereader": y, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": yx, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": n, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": u, + "webp": p, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": u, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": u, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": u, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": u, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": u, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": u, + "form-submit-attributes": u, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-60.scss b/app/assets/stylesheets/admin/chrome-60.scss new file mode 100644 index 0000000..30493e6 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-60.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 60.0 (approximately 0.0% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 60.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": a, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": y, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": y, + "user-select-none": y, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": a, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": y, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": y, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": y, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": u, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": a, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": y, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": y, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": u, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": u, + "credential-management": y, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": y, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": nd, + "shadowdomv1": y, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": y, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": y, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": nd, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": y, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-7.scss b/app/assets/stylesheets/admin/chrome-7.scss new file mode 100644 index 0000000..479f1b8 --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-7.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 7.0 (approximately 0.01% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 7.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": u, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": yx, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": yx, + "css-gradients": ax, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": a, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": n, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": n, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": n, + "history": y, + "json": y, + "classlist": p, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": ax, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": n, + "filereader": y, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": n, + "nav-timing": yx, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": n, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": u, + "webp": p, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": u, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": u, + "customevent": u, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": u, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": u, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": u, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": u, + "form-submit-attributes": u, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-8.scss b/app/assets/stylesheets/admin/chrome-8.scss new file mode 100644 index 0000000..f8adeaa --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-8.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 8.0 (approximately 0.01% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 8.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": u, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": yx, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": yx, + "css-gradients": ax, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": n, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": ax, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": ax, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": yx, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": n, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": u, + "webp": p, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": u, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": yx, + "customevent": u, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": u, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": u, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": u, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": u, + "form-submit-attributes": u, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/chrome-9.scss b/app/assets/stylesheets/admin/chrome-9.scss new file mode 100644 index 0000000..779235a --- /dev/null +++ b/app/assets/stylesheets/admin/chrome-9.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Chrome 9.0 (approximately 0.01% of all users) + * + */ + +$browser: chrome; +$browser_prefix: webkit; +$browser_version: 9.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": u, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": yx, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": yx, + "css-gradients": ax, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": n, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": ax, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": ax, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": yx, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": a, + "webp": a, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": yx, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": u, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": u, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": u, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": u, + "form-submit-attributes": u, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/edge-12.scss b/app/assets/stylesheets/admin/edge-12.scss new file mode 100644 index 0000000..8be96c5 --- /dev/null +++ b/app/assets/stylesheets/admin/edge-12.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Edge 12.0 (approximately 0.05% of all users) + * + */ + +$browser: edge; +$browser_prefix: ms; +$browser_version: 12.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": a, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": y, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": p, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": a, + "online-status": y, + "eventsource": n, + "x-doc-messaging": y, + "sni": y, + "datauri": a, + "wav": y, + "mathml": n, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": n, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": p, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": n, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": y, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": ax, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": y, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": ax, + "spellcheck-attribute": y, + "fullscreen": a, + "css-exclusions": yx, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": a, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": nd, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": a, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": n, + "pointer": y, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": a, + "intrinsic-width": n, + "cryptography": y, + "template": n, + "opus": n, + "jpegxr": y, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": ax, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": y, + "srcset": a, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": a, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": a, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": a, + "css-logical-props": n, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": ax, + "input-minlength": n, + "css-media-interaction": y, + "ime": yx, + "font-smooth": n, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": y, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": n, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": n, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": nd, + "lazyload": y, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": y, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": u, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": a, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": n, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": u, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": y, + "es6-module": n, + "es6-class": y, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/edge-13.scss b/app/assets/stylesheets/admin/edge-13.scss new file mode 100644 index 0000000..74184b8 --- /dev/null +++ b/app/assets/stylesheets/admin/edge-13.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Edge 13.0 (approximately 0.12% of all users) + * + */ + +$browser: edge; +$browser_prefix: ms; +$browser_version: 13.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": a, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": y, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": p, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": a, + "online-status": y, + "eventsource": n, + "x-doc-messaging": y, + "sni": y, + "datauri": a, + "wav": y, + "mathml": n, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": n, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": p, + "wordwrap": a, + "pointerlock": y, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": n, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": y, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": ax, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": y, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": ax, + "spellcheck-attribute": y, + "fullscreen": a, + "css-exclusions": yx, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": a, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": y, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": a, + "intrinsic-width": n, + "cryptography": y, + "template": y, + "opus": n, + "jpegxr": y, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": ax, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": a, + "objectrtc": y, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": a, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": a, + "css-logical-props": n, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": ax, + "input-minlength": n, + "css-media-interaction": y, + "ime": yx, + "font-smooth": n, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": y, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": n, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": y, + "lazyload": y, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": y, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": a, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": n, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": y, + "es6-module": n, + "es6-class": y, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/edge-14.scss b/app/assets/stylesheets/admin/edge-14.scss new file mode 100644 index 0000000..e91de74 --- /dev/null +++ b/app/assets/stylesheets/admin/edge-14.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Edge 14.0 (approximately 1.46% of all users) + * + */ + +$browser: edge; +$browser_prefix: ms; +$browser_version: 14.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": a, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": y, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": p, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": a, + "online-status": y, + "eventsource": n, + "x-doc-messaging": y, + "sni": y, + "datauri": a, + "wav": y, + "mathml": n, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": n, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": p, + "wordwrap": a, + "pointerlock": y, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": n, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": y, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": ax, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": y, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": ax, + "spellcheck-attribute": y, + "fullscreen": a, + "css-exclusions": yx, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": a, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": y, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": a, + "intrinsic-width": n, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": y, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": ax, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": y, + "user-timing": y, + "srcset": n, + "ambient-light": y, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": a, + "objectrtc": y, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": a, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": a, + "css-logical-props": n, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": ax, + "input-minlength": n, + "css-media-interaction": y, + "ime": yx, + "font-smooth": n, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": y, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": n, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": y, + "lazyload": y, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": y, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": a, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": n, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": nd, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": y, + "es6-module": n, + "es6-class": y, + "ping": n, + "form-submit-attributes": y, + "async-functions": nd, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/edge-15.scss b/app/assets/stylesheets/admin/edge-15.scss new file mode 100644 index 0000000..eec13bf --- /dev/null +++ b/app/assets/stylesheets/admin/edge-15.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Edge 15.0 (approximately 0.0% of all users) + * + */ + +$browser: edge; +$browser_prefix: ms; +$browser_version: 15.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": a, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": y, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": p, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": a, + "online-status": y, + "eventsource": n, + "x-doc-messaging": y, + "sni": y, + "datauri": a, + "wav": y, + "mathml": n, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": n, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": p, + "wordwrap": a, + "pointerlock": y, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": n, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": y, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": ax, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": y, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": ax, + "spellcheck-attribute": y, + "fullscreen": a, + "css-exclusions": yx, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": a, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": y, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": a, + "intrinsic-width": n, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": y, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": ax, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": y, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": n, + "css-variables": y, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": nd, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": y, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": a, + "objectrtc": y, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": a, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": a, + "css-logical-props": n, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": ax, + "input-minlength": n, + "css-media-interaction": y, + "ime": yx, + "font-smooth": n, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": y, + "permissions-api": n, + "http2": y, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": n, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": y, + "lazyload": y, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": y, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": a, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": n, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": a, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": nd, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": y, + "es6-module": nd, + "es6-class": y, + "ping": n, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": y, + "css-apply-rule": u, + "css-hanging-punctuation": u, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-10.scss b/app/assets/stylesheets/admin/firefox-10.scss new file mode 100644 index 0000000..587d707 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-10.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 10.0 (approximately 0.0% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 10.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": a, + "audio": a, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": n, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": yx, + "font-feature": ax, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": yx, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": ax, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": a, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": n, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": a, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": yx, + "css-filters": a, + "getcomputedstyle": y, + "mp3": a, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": yx, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": ax, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": a, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-11.scss b/app/assets/stylesheets/admin/firefox-11.scss new file mode 100644 index 0000000..b2734c4 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-11.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 11.0 (approximately 0.01% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 11.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": a, + "audio": a, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": n, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": yx, + "font-feature": ax, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": yx, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": a, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": yx, + "input-range": n, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": a, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": yx, + "css-filters": a, + "getcomputedstyle": y, + "mp3": a, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": yx, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": yx, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": ax, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": a, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-12.scss b/app/assets/stylesheets/admin/firefox-12.scss new file mode 100644 index 0000000..eed3a49 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-12.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 12.0 (approximately 0.01% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 12.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": a, + "audio": a, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": n, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": yx, + "font-feature": ax, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": yx, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": a, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": yx, + "input-range": n, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": yx, + "css-filters": a, + "getcomputedstyle": y, + "mp3": a, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": yx, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": yx, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": ax, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": a, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-13.scss b/app/assets/stylesheets/admin/firefox-13.scss new file mode 100644 index 0000000..f488500 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-13.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 13.0 (approximately 0.0% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 13.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": a, + "audio": a, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": n, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": yx, + "font-feature": ax, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": yx, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": a, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": yx, + "input-range": n, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": a, + "getcomputedstyle": y, + "mp3": a, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": yx, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": yx, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": ax, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": a, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-14.scss b/app/assets/stylesheets/admin/firefox-14.scss new file mode 100644 index 0000000..b4ba100 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-14.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 14.0 (approximately 0.0% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 14.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": a, + "audio": a, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": n, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": yx, + "font-feature": ax, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": yx, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": a, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": yx, + "input-range": n, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": a, + "getcomputedstyle": y, + "mp3": a, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": yx, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": ax, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": a, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-15.scss b/app/assets/stylesheets/admin/firefox-15.scss new file mode 100644 index 0000000..e265487 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-15.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 15.0 (approximately 0.02% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 15.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": a, + "audio": a, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": n, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": yx, + "font-feature": yx, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": yx, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": a, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": yx, + "input-range": n, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": yx, + "css-filters": a, + "getcomputedstyle": y, + "mp3": a, + "word-break": y, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": y, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": yx, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": ax, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": a, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-16.scss b/app/assets/stylesheets/admin/firefox-16.scss new file mode 100644 index 0000000..0be54d4 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-16.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 16.0 (approximately 0.01% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 16.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": a, + "audio": a, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": n, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": a, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": yx, + "input-range": n, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": a, + "word-break": y, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": y, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-17.scss b/app/assets/stylesheets/admin/firefox-17.scss new file mode 100644 index 0000000..25c5888 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-17.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 17.0 (approximately 0.0% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 17.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": a, + "audio": a, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": n, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": a, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": yx, + "input-range": n, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": a, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": a, + "word-break": y, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": y, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": a, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-18.scss b/app/assets/stylesheets/admin/firefox-18.scss new file mode 100644 index 0000000..dbf6781 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-18.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 18.0 (approximately 0.02% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 18.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": a, + "audio": a, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": yx, + "input-range": n, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": a, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": a, + "word-break": y, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": y, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": a, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-19.scss b/app/assets/stylesheets/admin/firefox-19.scss new file mode 100644 index 0000000..04c089e --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-19.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 19.0 (approximately 0.0% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 19.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": a, + "audio": a, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": yx, + "input-range": n, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": a, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": a, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": y, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": a, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": a, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-2.scss b/app/assets/stylesheets/admin/firefox-2.scss new file mode 100644 index 0000000..aab3d18 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-2.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 2.0 (approximately 0.02% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 2.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": n, + "audio": n, + "contenteditable": n, + "dragndrop": p, + "internationalization": n, + "queryselector": p, + "getelementsbyclassname": p, + "forms": p, + "html5semantic": n, + "css-line-clamp": n, + "offline-apps": p, + "webworkers": p, + "fontface": n, + "eot": n, + "woff": n, + "multibackgrounds": n, + "border-image": n, + "background-img-opts": n, + "css-table": a, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": p, + "css-sel2": y, + "css-sel3": n, + "css-textshadow": n, + "css-boxshadow": n, + "css3-colors": a, + "css3-boxsizing": yx, + "css-mediaqueries": n, + "multicolumn": ax, + "border-radius": ax, + "transforms2d": n, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": n, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": n, + "svg": a, + "svg-css": n, + "svg-smil": p, + "svg-fonts": n, + "svg-filters": n, + "svg-html": n, + "svg-html5": p, + "canvas": a, + "canvas-text": p, + "namevalue-storage": a, + "sql-storage": n, + "indexeddb": n, + "online-status": n, + "eventsource": n, + "x-doc-messaging": n, + "sni": y, + "datauri": y, + "wav": n, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": p, + "flexbox": ax, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": n, + "history": n, + "json": n, + "classlist": p, + "text-overflow": p, + "webm": n, + "mpeg4": n, + "ogv": n, + "wordwrap": n, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": n, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": ax, + "notifications": n, + "stream": n, + "svg-img": n, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": n, + "ttf": n, + "touch": n, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": n, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": n, + "input-color": n, + "input-number": n, + "getboundingclientrect": n, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": n, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": n, + "mp3": n, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": yx, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": n, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": n, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": ax, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": n, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": n, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": u, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": n, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": n, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": n, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": u, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-20.scss b/app/assets/stylesheets/admin/firefox-20.scss new file mode 100644 index 0000000..fd8c30a --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-20.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 20.0 (approximately 0.0% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 20.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": yx, + "input-range": n, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": a, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": a, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": y, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": nd, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": a, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-21.scss b/app/assets/stylesheets/admin/firefox-21.scss new file mode 100644 index 0000000..9cc449c --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-21.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 21.0 (approximately 0.02% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 21.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": a, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": yx, + "input-range": n, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": a, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": a, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": y, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": nd, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-22.scss b/app/assets/stylesheets/admin/firefox-22.scss new file mode 100644 index 0000000..f59415e --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-22.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 22.0 (approximately 0.0% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 22.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": a, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": a, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": yx, + "input-range": n, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": a, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": a, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": nd, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-23.scss b/app/assets/stylesheets/admin/firefox-23.scss new file mode 100644 index 0000000..9d584d0 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-23.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 23.0 (approximately 0.02% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 23.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": a, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": a, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": a, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": a, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": nd, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": a, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": nd, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-24.scss b/app/assets/stylesheets/admin/firefox-24.scss new file mode 100644 index 0000000..f50f768 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-24.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 24.0 (approximately 0.01% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 24.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": a, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": a, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": a, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": nd, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": a, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": nd, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": nd, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": nd, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": a, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": nd, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-25.scss b/app/assets/stylesheets/admin/firefox-25.scss new file mode 100644 index 0000000..b16cb41 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-25.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 25.0 (approximately 0.04% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 25.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": a, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": a, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": a, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": nd, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": a, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": nd, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": nd, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": nd, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": a, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": nd, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-26.scss b/app/assets/stylesheets/admin/firefox-26.scss new file mode 100644 index 0000000..75d5808 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-26.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 26.0 (approximately 0.01% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 26.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": a, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": a, + "mpeg4": a, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": a, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": nd, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": nd, + "promises": p, + "css-sticky": nd, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": a, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": nd, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": nd, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": nd, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": a, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": nd, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-27.scss b/app/assets/stylesheets/admin/firefox-27.scss new file mode 100644 index 0000000..08a0068 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-27.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 27.0 (approximately 0.01% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 27.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": a, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": a, + "mpeg4": a, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": a, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": nd, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": nd, + "promises": a, + "css-sticky": nd, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": a, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": nd, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": nd, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": nd, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": a, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-28.scss b/app/assets/stylesheets/admin/firefox-28.scss new file mode 100644 index 0000000..6745e68 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-28.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 28.0 (approximately 0.01% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 28.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": a, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": nd, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": nd, + "promises": a, + "css-sticky": nd, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": a, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": nd, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": nd, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": nd, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": a, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-29.scss b/app/assets/stylesheets/admin/firefox-29.scss new file mode 100644 index 0000000..8d5bfeb --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-29.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 29.0 (approximately 0.01% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 29.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": a, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": nd, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": nd, + "promises": y, + "css-sticky": nd, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": a, + "will-change": nd, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": nd, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": n, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": nd, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": nd, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": a, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-3.5.scss b/app/assets/stylesheets/admin/firefox-3.5.scss new file mode 100644 index 0000000..b5a87e2 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-3.5.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 3.5 (approximately 0.0% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 3.5; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": a, + "audio": a, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": p, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": n, + "multibackgrounds": n, + "border-image": ax, + "background-img-opts": n, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": p, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": yx, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": yx, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": n, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": n, + "svg": y, + "svg-css": n, + "svg-smil": p, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": p, + "canvas": a, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": n, + "online-status": y, + "eventsource": n, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": n, + "history": n, + "json": y, + "classlist": p, + "text-overflow": p, + "webm": n, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": n, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": n, + "ttf": y, + "touch": n, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": y, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": n, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": n, + "input-color": n, + "input-number": n, + "getboundingclientrect": a, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": n, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": a, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": yx, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": a, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": n, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": ax, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": n, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": n, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": a, + "input-search": n, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": n, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": u, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": n, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-3.6.scss b/app/assets/stylesheets/admin/firefox-3.6.scss new file mode 100644 index 0000000..d3c84e8 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-3.6.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 3.6 (approximately 0.01% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 3.6; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": a, + "audio": a, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": p, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": ax, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": yx, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": yx, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": n, + "font-feature": n, + "css-animation": n, + "css-gradients": yx, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": n, + "svg": y, + "svg-css": n, + "svg-smil": p, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": p, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": n, + "online-status": y, + "eventsource": n, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": a, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": n, + "history": n, + "json": y, + "classlist": a, + "text-overflow": p, + "webm": n, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": n, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": n, + "filereader": y, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": p, + "script-defer": y, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": n, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": n, + "input-color": n, + "input-number": n, + "getboundingclientrect": a, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": n, + "spdy": n, + "css-repeating-gradients": yx, + "css-filters": a, + "getcomputedstyle": a, + "mp3": a, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": yx, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": a, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": n, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": ax, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": n, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": n, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": n, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": n, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": y, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": n, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-3.scss b/app/assets/stylesheets/admin/firefox-3.scss new file mode 100644 index 0000000..d6ca74e --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-3.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 3.0 (approximately 0.02% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 3.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": n, + "audio": n, + "contenteditable": a, + "dragndrop": p, + "internationalization": n, + "queryselector": p, + "getelementsbyclassname": y, + "forms": p, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": a, + "webworkers": p, + "fontface": n, + "eot": n, + "woff": n, + "multibackgrounds": n, + "border-image": n, + "background-img-opts": n, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": p, + "css-sel2": y, + "css-sel3": n, + "css-textshadow": n, + "css-boxshadow": n, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": n, + "multicolumn": ax, + "border-radius": yx, + "transforms2d": n, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": n, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": n, + "svg": y, + "svg-css": n, + "svg-smil": p, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": p, + "canvas": a, + "canvas-text": p, + "namevalue-storage": a, + "sql-storage": n, + "indexeddb": n, + "online-status": n, + "eventsource": n, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": n, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": p, + "flexbox": ax, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": n, + "history": n, + "json": n, + "classlist": p, + "text-overflow": p, + "webm": n, + "mpeg4": n, + "ogv": n, + "wordwrap": n, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": n, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": n, + "ttf": n, + "touch": n, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": n, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": n, + "input-color": n, + "input-number": n, + "getboundingclientrect": a, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": n, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": n, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": yx, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": n, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": n, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": ax, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": n, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": n, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": a, + "input-search": n, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": n, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": n, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-30.scss b/app/assets/stylesheets/admin/firefox-30.scss new file mode 100644 index 0000000..aaa6371 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-30.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 30.0 (approximately 0.01% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 30.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": a, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": nd, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": nd, + "promises": y, + "css-sticky": nd, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": n, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": a, + "will-change": nd, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": pd, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": n, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": nd, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": nd, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": a, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-31.scss b/app/assets/stylesheets/admin/firefox-31.scss new file mode 100644 index 0000000..e79ffb8 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-31.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 31.0 (approximately 0.03% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 31.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": a, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": nd, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": nd, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": n, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": nd, + "user-timing": n, + "srcset": n, + "ambient-light": a, + "will-change": nd, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": nd, + "custom-elements": pd, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": n, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": n, + "font-kerning": nd, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": nd, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": a, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-32.scss b/app/assets/stylesheets/admin/firefox-32.scss new file mode 100644 index 0000000..ae40e77 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-32.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 32.0 (approximately 0.01% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 32.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": a, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": nd, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": nd, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": nd, + "user-timing": n, + "srcset": nd, + "ambient-light": a, + "will-change": nd, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": nd, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": n, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": n, + "font-kerning": nd, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": nd, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": a, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-33.scss b/app/assets/stylesheets/admin/firefox-33.scss new file mode 100644 index 0000000..ce415cf --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-33.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 33.0 (approximately 0.01% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 33.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": a, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": a, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": nd, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": nd, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": nd, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": nd, + "user-timing": n, + "srcset": nd, + "ambient-light": a, + "will-change": nd, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": ad, + "resource-timing": nd, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": n, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": n, + "font-kerning": nd, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": nd, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": a, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-34.scss b/app/assets/stylesheets/admin/firefox-34.scss new file mode 100644 index 0000000..7b1852d --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-34.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 34.0 (approximately 0.01% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 34.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": a, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": ad, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": nd, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": nd, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": nd, + "user-timing": n, + "srcset": nd, + "ambient-light": a, + "will-change": nd, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": nd, + "woff2": n, + "text-size-adjust": n, + "web-animation": ad, + "resource-timing": nd, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": n, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": nd, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": a, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-35.scss b/app/assets/stylesheets/admin/firefox-35.scss new file mode 100644 index 0000000..25cf9b0 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-35.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 35.0 (approximately 0.02% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 35.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": nd, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": nd, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": nd, + "user-timing": n, + "srcset": nd, + "ambient-light": a, + "will-change": nd, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": nd, + "woff2": n, + "text-size-adjust": n, + "web-animation": ad, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": nd, + "font-unicode-range": n, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": nd, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": a, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-36.scss b/app/assets/stylesheets/admin/firefox-36.scss new file mode 100644 index 0000000..2b46aee --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-36.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 36.0 (approximately 0.02% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 36.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": nd, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": nd, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": nd, + "user-timing": n, + "srcset": nd, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": nd, + "woff2": n, + "text-size-adjust": n, + "web-animation": ad, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": nd, + "font-unicode-range": nd, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": nd, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": nd, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": a, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-37.scss b/app/assets/stylesheets/admin/firefox-37.scss new file mode 100644 index 0000000..3ec4e46 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-37.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 37.0 (approximately 0.02% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 37.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": nd, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": nd, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": nd, + "user-timing": n, + "srcset": nd, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": nd, + "woff2": n, + "text-size-adjust": n, + "web-animation": ad, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": nd, + "font-unicode-range": nd, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": nd, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": nd, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": a, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-38.scss b/app/assets/stylesheets/admin/firefox-38.scss new file mode 100644 index 0000000..7d0817b --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-38.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 38.0 (approximately 0.05% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 38.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": nd, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": nd, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": nd, + "user-timing": y, + "srcset": y, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": y, + "woff2": n, + "text-size-adjust": n, + "web-animation": ad, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": nd, + "font-unicode-range": nd, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": nd, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": nd, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": a, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-39.scss b/app/assets/stylesheets/admin/firefox-39.scss new file mode 100644 index 0000000..2b77ee1 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-39.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 39.0 (approximately 0.02% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 39.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": p, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": nd, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": nd, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": nd, + "user-timing": y, + "srcset": y, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": ad, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": nd, + "font-unicode-range": nd, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": a, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": nd, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": a, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-4.scss b/app/assets/stylesheets/admin/firefox-4.scss new file mode 100644 index 0000000..2eacacb --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-4.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 4.0 (approximately 0.0% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 4.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": a, + "audio": a, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": ax, + "css-animation": n, + "css-gradients": yx, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": ax, + "online-status": a, + "eventsource": n, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": p, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": a, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": a, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": n, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": p, + "script-defer": y, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": n, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": n, + "input-color": n, + "input-number": n, + "getboundingclientrect": a, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": yx, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": yx, + "css-filters": a, + "getcomputedstyle": y, + "mp3": a, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": n, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": yx, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": a, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": n, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": n, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-40.scss b/app/assets/stylesheets/admin/firefox-40.scss new file mode 100644 index 0000000..c678ea5 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-40.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 40.0 (approximately 0.02% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 40.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": yx, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": nd, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": nd, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": nd, + "user-timing": y, + "srcset": y, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": ad, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": nd, + "font-unicode-range": nd, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": a, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": nd, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": a, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-41.scss b/app/assets/stylesheets/admin/firefox-41.scss new file mode 100644 index 0000000..f40c6eb --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-41.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 41.0 (approximately 0.03% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 41.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": nd, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": nd, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": nd, + "user-timing": y, + "srcset": y, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": ad, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": y, + "font-unicode-range": nd, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": y, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": y, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": a, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": a, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-42.scss b/app/assets/stylesheets/admin/firefox-42.scss new file mode 100644 index 0000000..446f2e8 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-42.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 42.0 (approximately 0.03% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 42.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": a, + "serviceworkers": nd, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": nd, + "user-timing": y, + "srcset": y, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": ad, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": y, + "font-unicode-range": nd, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": y, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": y, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": a, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": a, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-43.scss b/app/assets/stylesheets/admin/firefox-43.scss new file mode 100644 index 0000000..8afcd86 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-43.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 43.0 (approximately 0.07% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 43.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": y, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": nd, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": nd, + "user-timing": y, + "srcset": y, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": ad, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": ax, + "font-loading": y, + "font-unicode-range": nd, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": y, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": y, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": a, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": y, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": a, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-44.scss b/app/assets/stylesheets/admin/firefox-44.scss new file mode 100644 index 0000000..e8521e5 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-44.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 44.0 (approximately 0.03% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 44.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": y, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": y, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": nd, + "user-timing": y, + "srcset": y, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": ad, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": y, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": y, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": a, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": y, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": y, + "template-literals": y, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-45.scss b/app/assets/stylesheets/admin/firefox-45.scss new file mode 100644 index 0000000..ac29548 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-45.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 45.0 (approximately 0.18% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 45.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": y, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": nd, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": y, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": nd, + "user-timing": y, + "srcset": y, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": ad, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": y, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": y, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": a, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": y, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": y, + "template-literals": y, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-46.scss b/app/assets/stylesheets/admin/firefox-46.scss new file mode 100644 index 0000000..8c018a2 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-46.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 46.0 (approximately 0.04% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 46.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": y, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": y, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": nd, + "user-timing": y, + "srcset": y, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": ad, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": y, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": y, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": a, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": y, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": y, + "template-literals": y, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": n, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-47.scss b/app/assets/stylesheets/admin/firefox-47.scss new file mode 100644 index 0000000..c1f9af7 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-47.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 47.0 (approximately 0.16% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 47.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": y, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": nd, + "text-stroke": n, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": y, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": nd, + "user-timing": y, + "srcset": y, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": y, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": y, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": a, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": y, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": y, + "template-literals": y, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": nd, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-48.scss b/app/assets/stylesheets/admin/firefox-48.scss new file mode 100644 index 0000000..1386f10 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-48.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 48.0 (approximately 0.18% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 48.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": y, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": a, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": nd, + "text-stroke": nd, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": y, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": nd, + "user-timing": y, + "srcset": y, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": y, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": yx, + "css-logical-props": y, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": a, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": y, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": y, + "template-literals": y, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": yx, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": nd, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-49.scss b/app/assets/stylesheets/admin/firefox-49.scss new file mode 100644 index 0000000..2201e93 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-49.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 49.0 (approximately 0.11% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 49.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": y, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": y, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": y, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": y, + "css-logical-props": y, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": a, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": y, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": y, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": y, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": y, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": nd, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": y, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-5.scss b/app/assets/stylesheets/admin/firefox-5.scss new file mode 100644 index 0000000..9901a54 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-5.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 5.0 (approximately 0.0% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 5.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": a, + "audio": a, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": ax, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": ax, + "online-status": a, + "eventsource": n, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": p, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": a, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": a, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": n, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": p, + "script-defer": y, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": n, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": n, + "input-color": n, + "input-number": n, + "getboundingclientrect": a, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": yx, + "css-filters": a, + "getcomputedstyle": y, + "mp3": a, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": n, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": yx, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": a, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": n, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": n, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-50.scss b/app/assets/stylesheets/admin/firefox-50.scss new file mode 100644 index 0000000..189dda8 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-50.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 50.0 (approximately 0.16% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 50.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": y, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": yx, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": y, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": y, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": y, + "css-logical-props": y, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": a, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": y, + "custom-elementsv1": p, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": nd, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": y, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": nd, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": y, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-51.scss b/app/assets/stylesheets/admin/firefox-51.scss new file mode 100644 index 0000000..8f6ee80 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-51.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 51.0 (approximately 2.21% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 51.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": y, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": nd, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": y, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": y, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": y, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": nd, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": y, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": y, + "css-logical-props": y, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": a, + "input-minlength": y, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": y, + "custom-elementsv1": p, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": y, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": y, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": nd, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": y, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-52.scss b/app/assets/stylesheets/admin/firefox-52.scss new file mode 100644 index 0000000..03979aa --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-52.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 52.0 (approximately 2.79% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 52.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": y, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": u, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": y, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": y, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": y, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": n, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": u, + "css-image-orientation": y, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": y, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": y, + "css-logical-props": y, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": a, + "input-minlength": y, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": y, + "custom-elementsv1": p, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": u, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": u, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": y, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": u, + "credential-management": n, + "css-dir-pseudo": y, + "css-focus-within": y, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": u, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": y, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": nd, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": nd, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": y, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-53.scss b/app/assets/stylesheets/admin/firefox-53.scss new file mode 100644 index 0000000..61ca139 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-53.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 53.0 (approximately 0.1% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 53.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": y, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": u, + "css-reflections": n, + "css-masks": y, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": y, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": yx, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": y, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": y, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": nd, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": u, + "css-image-orientation": y, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": y, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": y, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": y, + "css-logical-props": y, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": a, + "input-minlength": y, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": y, + "custom-elementsv1": p, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": u, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": u, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": y, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": u, + "credential-management": n, + "css-dir-pseudo": y, + "css-focus-within": y, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": u, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": y, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": nd, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": nd, + "css-marker-pseudo": n, + "url": y, + "flow-root": y, + "css-rrggbbaa": y, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-54.scss b/app/assets/stylesheets/admin/firefox-54.scss new file mode 100644 index 0000000..1296b85 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-54.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 54.0 (approximately 0.0% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 54.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": y, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": u, + "css-reflections": n, + "css-masks": y, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": y, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": nd, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": yx, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": y, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": y, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": nd, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": u, + "css-image-orientation": y, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": y, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": y, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": y, + "css-logical-props": y, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": a, + "input-minlength": y, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": y, + "custom-elementsv1": p, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": u, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": u, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": y, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": u, + "credential-management": n, + "css-dir-pseudo": y, + "css-focus-within": y, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": u, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": y, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": nd, + "es6-class": y, + "ping": nd, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": nd, + "css-marker-pseudo": n, + "url": y, + "flow-root": y, + "css-rrggbbaa": y, + "beforeafterprint": y, + "webvr": nd, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-55.scss b/app/assets/stylesheets/admin/firefox-55.scss new file mode 100644 index 0000000..e3d8a8c --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-55.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 55.0 (approximately 0.0% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 55.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": y, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": u, + "css-reflections": n, + "css-masks": y, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": nd, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": y, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": yx, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": y, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": nd, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": y, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": p, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": yx, + "mutationobserver": y, + "css-selection": yx, + "css-placeholder": y, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": y, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": nd, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": nd, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": a, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": a, + "will-change": y, + "css-shapes": n, + "domcontentloaded": y, + "proximity": y, + "kerning-pairs-ligatures": y, + "iframe-seamless": u, + "css-image-orientation": y, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": pd, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": y, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": y, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": a, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": yx, + "css-text-align-last": y, + "css-logical-props": y, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": a, + "input-minlength": y, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": nd, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": a, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": y, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": n, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": y, + "subresource-integrity": y, + "custom-elementsv1": p, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": u, + "web-bluetooth": n, + "scrollintoview": y, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": u, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": y, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": u, + "credential-management": n, + "css-dir-pseudo": y, + "css-focus-within": y, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": u, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": nd, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": y, + "css-paged-media": a, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": nd, + "es6-class": y, + "ping": nd, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": nd, + "css-marker-pseudo": n, + "url": y, + "flow-root": y, + "css-rrggbbaa": y, + "beforeafterprint": y, + "webvr": nd, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-6.scss b/app/assets/stylesheets/admin/firefox-6.scss new file mode 100644 index 0000000..58254ee --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-6.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 6.0 (approximately 0.02% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 6.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": a, + "audio": a, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": yx, + "font-feature": ax, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": ax, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": ax, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": p, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": a, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": n, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": n, + "input-color": n, + "input-number": n, + "getboundingclientrect": a, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": yx, + "css-filters": a, + "getcomputedstyle": y, + "mp3": a, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": n, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": yx, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": a, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": n, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-7.scss b/app/assets/stylesheets/admin/firefox-7.scss new file mode 100644 index 0000000..8b5f5bd --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-7.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 7.0 (approximately 0.01% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 7.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": a, + "audio": a, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": yx, + "font-feature": ax, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": ax, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": ax, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": a, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": n, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": n, + "input-color": n, + "input-number": n, + "getboundingclientrect": a, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": yx, + "css-filters": a, + "getcomputedstyle": y, + "mp3": a, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": n, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": yx, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": a, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": n, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-8.scss b/app/assets/stylesheets/admin/firefox-8.scss new file mode 100644 index 0000000..4ea17ac --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-8.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 8.0 (approximately 0.01% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 8.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": a, + "audio": a, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": yx, + "font-feature": ax, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": ax, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": ax, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": a, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": n, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": n, + "input-color": n, + "input-number": n, + "getboundingclientrect": a, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": yx, + "css-filters": a, + "getcomputedstyle": y, + "mp3": a, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": n, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": yx, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": a, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/firefox-9.scss b/app/assets/stylesheets/admin/firefox-9.scss new file mode 100644 index 0000000..72c2ab3 --- /dev/null +++ b/app/assets/stylesheets/admin/firefox-9.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Firefox 9.0 (approximately 0.01% of all users) + * + */ + +$browser: firefox; +$browser_prefix: moz; +$browser_version: 9.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": a, + "audio": a, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": yx, + "font-feature": ax, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": n, + "css-reflections": n, + "css-masks": a, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": y, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": ax, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": ax, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": a, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": a, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": ax, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": ax, + "input-range": n, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": a, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": yx, + "css-filters": a, + "getcomputedstyle": y, + "mp3": a, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": y, + "pagevisibility": n, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": yx, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": y, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": a, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": n, + "progress": y, + "css-filter-function": n, + "css-element-function": yx, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": n, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": n, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": nd, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ie-10.scss b/app/assets/stylesheets/admin/ie-10.scss new file mode 100644 index 0000000..31ad0af --- /dev/null +++ b/app/assets/stylesheets/admin/ie-10.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: IE 10.0 (approximately 0.21% of all users) + * + */ + +$browser: ie; +$browser_prefix: ms; +$browser_version: 10.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": a, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": y, + "woff": y, + "multibackgrounds": y, + "border-image": n, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": y, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": n, + "transforms3d": a, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": p, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": a, + "online-status": y, + "eventsource": n, + "x-doc-messaging": a, + "sni": y, + "datauri": a, + "wav": n, + "mathml": n, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": n, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": p, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": n, + "script-async": y, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": p, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": n, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": a, + "dataset": a, + "css-grid": ax, + "menu": n, + "css-zoom": y, + "rem": a, + "ttf": a, + "touch": p, + "matchesselector": ax, + "pointer-events": n, + "blobbuilder": y, + "filereader": a, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": a, + "deviceorientation": n, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": ax, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": yx, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": a, + "contentsecuritypolicy": a, + "pagevisibility": y, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": n, + "pointer": ax, + "user-select-none": yx, + "input-file-accept": y, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": y, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": p, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": ax, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": n, + "webvtt": y, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": yx, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": a, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": a, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": ax, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": y, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": a, + "font-variant-alternates": n, + "form-attribute": n, + "es5": y, + "page-transition-events": n, + "ogg-vorbis": n, + "meter": n, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": n, + "const": n, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": a, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": y, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": a, + "css-scrollbar": a, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": n, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": nd, + "tls1-1": nd, + "input-inputmode": n, + "ch-unit": a, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": n, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ie-11.scss b/app/assets/stylesheets/admin/ie-11.scss new file mode 100644 index 0000000..a8e3906 --- /dev/null +++ b/app/assets/stylesheets/admin/ie-11.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: IE 11.0 (approximately 3.43% of all users) + * + */ + +$browser: ie; +$browser_prefix: ms; +$browser_version: 11.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": a, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": y, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": y, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": a, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": p, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": a, + "online-status": y, + "eventsource": n, + "x-doc-messaging": a, + "sni": y, + "datauri": a, + "wav": n, + "mathml": n, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": n, + "wai-aria": a, + "geolocation": y, + "flexbox": a, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": a, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": p, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": n, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": ax, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": a, + "touch": p, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": a, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": ax, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": yx, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": a, + "contentsecuritypolicy": a, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": n, + "pointer": y, + "user-select-none": yx, + "input-file-accept": y, + "webp": n, + "input-autocomplete-onoff": a, + "intrinsic-width": n, + "cryptography": ax, + "template": n, + "opus": n, + "jpegxr": y, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": ax, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": n, + "webvtt": y, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": yx, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": a, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": a, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": ax, + "input-minlength": n, + "css-media-interaction": n, + "ime": yx, + "font-smooth": n, + "audiotracks": y, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": a, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": a, + "font-variant-alternates": n, + "form-attribute": n, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": n, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": n, + "const": y, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": n, + "asmjs": n, + "lazyload": y, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": a, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": y, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": a, + "css-scrollbar": a, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": n, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": a, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": n, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": a +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ie-5.5.scss b/app/assets/stylesheets/admin/ie-5.5.scss new file mode 100644 index 0000000..626c767 --- /dev/null +++ b/app/assets/stylesheets/admin/ie-5.5.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: IE 5.5 (approximately 0.01% of all users) + * + */ + +$browser: ie; +$browser_prefix: ms; +$browser_version: 5.5; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": n, + "apng": n, + "video": n, + "audio": n, + "contenteditable": y, + "dragndrop": a, + "internationalization": n, + "queryselector": n, + "getelementsbyclassname": n, + "forms": n, + "html5semantic": n, + "css-line-clamp": n, + "offline-apps": n, + "webworkers": n, + "fontface": a, + "eot": n, + "woff": n, + "multibackgrounds": n, + "border-image": n, + "background-img-opts": n, + "css-table": n, + "css-gencontent": n, + "css-fixed": n, + "beacon": n, + "hashchange": p, + "css-sel2": n, + "css-sel3": n, + "css-textshadow": n, + "css-boxshadow": n, + "css3-colors": n, + "css3-boxsizing": p, + "css-mediaqueries": p, + "multicolumn": n, + "border-radius": n, + "transforms2d": n, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": n, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": n, + "svg": n, + "svg-css": n, + "svg-smil": n, + "svg-fonts": n, + "svg-filters": n, + "svg-html": n, + "svg-html5": n, + "canvas": n, + "canvas-text": n, + "namevalue-storage": n, + "sql-storage": n, + "indexeddb": n, + "online-status": n, + "eventsource": n, + "x-doc-messaging": n, + "sni": n, + "datauri": n, + "wav": n, + "mathml": n, + "css-featurequeries": n, + "xhtml": n, + "xhtmlsmil": n, + "wai-aria": n, + "geolocation": n, + "flexbox": n, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": n, + "ruby": a, + "css-opacity": a, + "form-validation": n, + "history": n, + "json": n, + "classlist": p, + "text-overflow": n, + "webm": n, + "mpeg4": n, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": p, + "details": n, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": a, + "notifications": n, + "stream": n, + "svg-img": n, + "datalist": n, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": n, + "ttf": n, + "touch": n, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": a, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": n, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": n, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": a, + "iframe-sandbox": n, + "css-counters": n, + "css-resize": n, + "input-placeholder": n, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": n, + "mp3": n, + "word-break": y, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": n, + "download": n, + "pointer": n, + "user-select-none": n, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": n, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": n, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": n, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": n, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": n, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": a, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": n, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": n, + "fieldset-disabled": u, + "font-variant-alternates": n, + "form-attribute": n, + "es5": n, + "page-transition-events": n, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": u, + "wbr-element": y, + "const": n, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": u, + "css-unset-value": n, + "insertadjacenthtml": u, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": a, + "customevent": n, + "textcontent": n, + "addeventlistener": n, + "dispatchevent": u, + "documenthead": n, + "innertext": u, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": u, + "proxy": n, + "keyboardevent-which": n, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": n, + "input-search": n, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": n, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": u, + "css-scrollbar": a, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": n, + "css-optional-pseudo": n, + "css-indeterminate-pseudo": n, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": n, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": n, + "indeterminate-checkbox": u, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": u, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": a, + "mutation-events": n, + "web-app-manifest": n, + "comparedocumentposition": n, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": u, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": n, + "css-namespaces": n, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ie-6.scss b/app/assets/stylesheets/admin/ie-6.scss new file mode 100644 index 0000000..0704e3b --- /dev/null +++ b/app/assets/stylesheets/admin/ie-6.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: IE 6.0 (approximately 0.02% of all users) + * + */ + +$browser: ie; +$browser_prefix: ms; +$browser_version: 6.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": p, + "apng": n, + "video": n, + "audio": n, + "contenteditable": y, + "dragndrop": a, + "internationalization": n, + "queryselector": p, + "getelementsbyclassname": p, + "forms": p, + "html5semantic": p, + "css-line-clamp": n, + "offline-apps": p, + "webworkers": p, + "fontface": a, + "eot": y, + "woff": n, + "multibackgrounds": n, + "border-image": n, + "background-img-opts": n, + "css-table": n, + "css-gencontent": n, + "css-fixed": p, + "beacon": n, + "hashchange": p, + "css-sel2": p, + "css-sel3": p, + "css-textshadow": n, + "css-boxshadow": n, + "css3-colors": n, + "css3-boxsizing": p, + "css-mediaqueries": p, + "multicolumn": n, + "border-radius": n, + "transforms2d": p, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": n, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": n, + "svg": p, + "svg-css": n, + "svg-smil": p, + "svg-fonts": p, + "svg-filters": n, + "svg-html": n, + "svg-html5": p, + "canvas": p, + "canvas-text": p, + "namevalue-storage": p, + "sql-storage": n, + "indexeddb": n, + "online-status": n, + "eventsource": n, + "x-doc-messaging": n, + "sni": n, + "datauri": n, + "wav": n, + "mathml": p, + "css-featurequeries": n, + "xhtml": n, + "xhtmlsmil": a, + "wai-aria": n, + "geolocation": p, + "flexbox": n, + "webgl": p, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": p, + "ruby": a, + "css-opacity": a, + "form-validation": n, + "history": n, + "json": n, + "classlist": p, + "text-overflow": y, + "webm": n, + "mpeg4": n, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": p, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": a, + "notifications": n, + "stream": n, + "svg-img": n, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": n, + "ttf": n, + "touch": n, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": a, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": n, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": n, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": a, + "iframe-sandbox": n, + "css-counters": n, + "css-resize": n, + "input-placeholder": n, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": n, + "mp3": n, + "word-break": y, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": n, + "download": n, + "pointer": n, + "user-select-none": n, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": n, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": n, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": n, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": n, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": a, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": n, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": n, + "fieldset-disabled": a, + "font-variant-alternates": n, + "form-attribute": n, + "es5": n, + "page-transition-events": n, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": y, + "const": n, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": a, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": a, + "customevent": n, + "textcontent": n, + "addeventlistener": n, + "dispatchevent": n, + "documenthead": n, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": n, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": n, + "input-search": n, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": n, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": u, + "css-scrollbar": a, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": n, + "css-optional-pseudo": n, + "css-indeterminate-pseudo": n, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": n, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": n, + "indeterminate-checkbox": y, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": a, + "mutation-events": n, + "web-app-manifest": n, + "comparedocumentposition": n, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": n, + "css-namespaces": n, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ie-7.scss b/app/assets/stylesheets/admin/ie-7.scss new file mode 100644 index 0000000..783d124 --- /dev/null +++ b/app/assets/stylesheets/admin/ie-7.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: IE 7.0 (approximately 0.02% of all users) + * + */ + +$browser: ie; +$browser_prefix: ms; +$browser_version: 7.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": n, + "audio": n, + "contenteditable": y, + "dragndrop": a, + "internationalization": n, + "queryselector": p, + "getelementsbyclassname": p, + "forms": p, + "html5semantic": p, + "css-line-clamp": n, + "offline-apps": p, + "webworkers": p, + "fontface": a, + "eot": y, + "woff": n, + "multibackgrounds": n, + "border-image": n, + "background-img-opts": n, + "css-table": n, + "css-gencontent": n, + "css-fixed": y, + "beacon": n, + "hashchange": p, + "css-sel2": y, + "css-sel3": a, + "css-textshadow": n, + "css-boxshadow": n, + "css3-colors": n, + "css3-boxsizing": p, + "css-mediaqueries": p, + "multicolumn": n, + "border-radius": n, + "transforms2d": p, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": n, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": n, + "svg": p, + "svg-css": n, + "svg-smil": p, + "svg-fonts": p, + "svg-filters": n, + "svg-html": n, + "svg-html5": p, + "canvas": p, + "canvas-text": p, + "namevalue-storage": p, + "sql-storage": n, + "indexeddb": n, + "online-status": n, + "eventsource": n, + "x-doc-messaging": n, + "sni": a, + "datauri": n, + "wav": n, + "mathml": p, + "css-featurequeries": n, + "xhtml": n, + "xhtmlsmil": a, + "wai-aria": n, + "geolocation": p, + "flexbox": n, + "webgl": p, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": p, + "ruby": a, + "css-opacity": a, + "form-validation": n, + "history": n, + "json": n, + "classlist": p, + "text-overflow": y, + "webm": n, + "mpeg4": n, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": a, + "notifications": n, + "stream": n, + "svg-img": n, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": n, + "ttf": n, + "touch": n, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": a, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": n, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": n, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": a, + "iframe-sandbox": n, + "css-counters": n, + "css-resize": n, + "input-placeholder": n, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": n, + "mp3": n, + "word-break": y, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": n, + "download": n, + "pointer": n, + "user-select-none": n, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": n, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": n, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": n, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": n, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": a, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": n, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": n, + "fieldset-disabled": a, + "font-variant-alternates": n, + "form-attribute": n, + "es5": n, + "page-transition-events": n, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": y, + "const": n, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": a, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": a, + "customevent": n, + "textcontent": n, + "addeventlistener": n, + "dispatchevent": n, + "documenthead": n, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": n, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": n, + "input-search": n, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": n, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": u, + "css-scrollbar": a, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": n, + "css-optional-pseudo": n, + "css-indeterminate-pseudo": n, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": n, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": n, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": a, + "mutation-events": n, + "web-app-manifest": n, + "comparedocumentposition": n, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": n, + "css-namespaces": n, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ie-8.scss b/app/assets/stylesheets/admin/ie-8.scss new file mode 100644 index 0000000..0fb70a9 --- /dev/null +++ b/app/assets/stylesheets/admin/ie-8.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: IE 8.0 (approximately 0.36% of all users) + * + */ + +$browser: ie; +$browser_prefix: ms; +$browser_version: 8.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": n, + "audio": n, + "contenteditable": y, + "dragndrop": a, + "internationalization": n, + "queryselector": a, + "getelementsbyclassname": p, + "forms": p, + "html5semantic": p, + "css-line-clamp": n, + "offline-apps": p, + "webworkers": p, + "fontface": a, + "eot": y, + "woff": n, + "multibackgrounds": n, + "border-image": n, + "background-img-opts": n, + "css-table": y, + "css-gencontent": a, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": a, + "css-textshadow": n, + "css-boxshadow": n, + "css3-colors": n, + "css3-boxsizing": y, + "css-mediaqueries": p, + "multicolumn": n, + "border-radius": n, + "transforms2d": p, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": n, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": a, + "svg": p, + "svg-css": n, + "svg-smil": p, + "svg-fonts": p, + "svg-filters": n, + "svg-html": n, + "svg-html5": p, + "canvas": p, + "canvas-text": p, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": n, + "online-status": a, + "eventsource": n, + "x-doc-messaging": a, + "sni": a, + "datauri": a, + "wav": n, + "mathml": p, + "css-featurequeries": n, + "xhtml": n, + "xhtmlsmil": a, + "wai-aria": a, + "geolocation": p, + "flexbox": n, + "webgl": p, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": p, + "ruby": a, + "css-opacity": a, + "form-validation": n, + "history": n, + "json": y, + "classlist": p, + "text-overflow": y, + "webm": n, + "mpeg4": n, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": n, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": n, + "ttf": n, + "touch": n, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": a, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": n, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": n, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": a, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": n, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": n, + "mp3": n, + "word-break": y, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": n, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": n, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": n, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": n, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": n, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": a, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": n, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": n, + "fieldset-disabled": a, + "font-variant-alternates": n, + "form-attribute": n, + "es5": n, + "page-transition-events": n, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": n, + "const": n, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": a, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": a, + "customevent": n, + "textcontent": n, + "addeventlistener": n, + "dispatchevent": n, + "documenthead": n, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": n, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": n, + "input-search": n, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": a, + "css-scrollbar": a, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": n, + "css-optional-pseudo": n, + "css-indeterminate-pseudo": n, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": nd, + "tls1-1": nd, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": n, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": a, + "mutation-events": n, + "web-app-manifest": n, + "comparedocumentposition": n, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": n, + "css-namespaces": n, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ie-9.scss b/app/assets/stylesheets/admin/ie-9.scss new file mode 100644 index 0000000..8e5c281 --- /dev/null +++ b/app/assets/stylesheets/admin/ie-9.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: IE 9.0 (approximately 0.23% of all users) + * + */ + +$browser: ie; +$browser_prefix: ms; +$browser_version: 9.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": a, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": p, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": n, + "webworkers": p, + "fontface": y, + "eot": y, + "woff": y, + "multibackgrounds": y, + "border-image": n, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": n, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": n, + "border-radius": y, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": n, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": a, + "svg": y, + "svg-css": y, + "svg-smil": p, + "svg-fonts": n, + "svg-filters": n, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": n, + "online-status": y, + "eventsource": n, + "x-doc-messaging": a, + "sni": y, + "datauri": a, + "wav": n, + "mathml": n, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": n, + "wai-aria": a, + "geolocation": y, + "flexbox": n, + "webgl": p, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": a, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": n, + "history": n, + "json": y, + "classlist": p, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": p, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": n, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": p, + "dataset": a, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": a, + "ttf": a, + "touch": n, + "matchesselector": ax, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": a, + "nav-timing": y, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": n, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": n, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": n, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": a, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": n, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": y, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": p, + "css-selection": y, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": n, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": a, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": a, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": n, + "fieldset-disabled": a, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": n, + "const": n, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": a, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": a, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": a, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": n, + "input-event": a, + "input-search": n, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": a, + "css-scrollbar": a, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": n, + "css-optional-pseudo": n, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": nd, + "tls1-1": nd, + "input-inputmode": n, + "ch-unit": a, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": y, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": a, + "document-evaluate-xpath": n, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ie_mob-10.scss b/app/assets/stylesheets/admin/ie_mob-10.scss new file mode 100644 index 0000000..acc9002 --- /dev/null +++ b/app/assets/stylesheets/admin/ie_mob-10.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: IE Mobile 10.0 (approximately 0.08% of all users) + * + */ + +$browser: ie_mob; +$browser_prefix: ms; +$browser_version: 10.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": n, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": y, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": n, + "transforms3d": a, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": y, + "font-feature": n, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": n, + "svg": y, + "svg-css": y, + "svg-smil": p, + "svg-fonts": n, + "svg-filters": y, + "svg-html": n, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": a, + "online-status": y, + "eventsource": n, + "x-doc-messaging": a, + "sni": y, + "datauri": a, + "wav": n, + "mathml": n, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": n, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": p, + "fileapi": n, + "shadowdom": n, + "websockets": y, + "hidden": n, + "script-async": y, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": p, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": n, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": p, + "dataset": a, + "css-grid": ax, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": a, + "touch": p, + "matchesselector": ax, + "pointer-events": n, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": a, + "deviceorientation": n, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": ax, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": yx, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": n, + "input-color": n, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": a, + "contentsecuritypolicy": a, + "pagevisibility": y, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": n, + "pointer": ax, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": a, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": y, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": p, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": ax, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": yx, + "web-animation": n, + "resource-timing": y, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": yx, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": a, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": a, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": y, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": n, + "es5": y, + "page-transition-events": n, + "ogg-vorbis": n, + "meter": n, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": n, + "const": n, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": ax, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": y, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": a, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": n, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": nd, + "tls1-1": nd, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": u, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": n, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ie_mob-11.scss b/app/assets/stylesheets/admin/ie_mob-11.scss new file mode 100644 index 0000000..c33090b --- /dev/null +++ b/app/assets/stylesheets/admin/ie_mob-11.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: IE Mobile 11.0 (approximately 0.35% of all users) + * + */ + +$browser: ie_mob; +$browser_prefix: ms; +$browser_version: 11.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": y, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": a, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": y, + "font-feature": n, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": n, + "svg": y, + "svg-css": y, + "svg-smil": p, + "svg-fonts": n, + "svg-filters": y, + "svg-html": n, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": n, + "indexeddb": a, + "online-status": y, + "eventsource": n, + "x-doc-messaging": a, + "sni": y, + "datauri": a, + "wav": n, + "mathml": n, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": n, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": p, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": n, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": p, + "dataset": y, + "css-grid": ax, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": a, + "touch": a, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": a, + "deviceorientation": y, + "script-defer": y, + "nav-timing": y, + "audio-api": n, + "css-regions": ax, + "spellcheck-attribute": a, + "fullscreen": ax, + "css-exclusions": yx, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": a, + "contentsecuritypolicy": a, + "pagevisibility": y, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": n, + "pointer": y, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": a, + "intrinsic-width": n, + "cryptography": ax, + "template": n, + "opus": n, + "jpegxr": y, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": ax, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": y, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": yx, + "web-animation": n, + "resource-timing": y, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": a, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": yx, + "screen-orientation": ax, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": a, + "xml-serializer": y, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": a, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": yx, + "font-smooth": n, + "audiotracks": y, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": a, + "font-variant-alternates": n, + "form-attribute": n, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": n, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": y, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": n, + "const": y, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": n, + "asmjs": n, + "lazyload": y, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": ax, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": y, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": a, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": n, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": y, + "indeterminate-checkbox": y, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": u, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": n, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ios_saf-10.0-10.2.scss b/app/assets/stylesheets/admin/ios_saf-10.0-10.2.scss new file mode 100644 index 0000000..d3605a7 --- /dev/null +++ b/app/assets/stylesheets/admin/ios_saf-10.0-10.2.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: iOS Safari 10.0 (approximately 8.68% of all users) + * + */ + +$browser: ios_saf; +$browser_prefix: webkit; +$browser_version: 10.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": yx, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": p, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": yx, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": a, + "document-execcommand": y, + "input-color": n, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": yx, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": n, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": y, + "promises": y, + "css-sticky": yx, + "dialog": n, + "css-variables": y, + "vibration": n, + "css-backgroundblendmode": a, + "css-mixblendmode": a, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": n, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": yx, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": a, + "picture": y, + "woff2": y, + "text-size-adjust": yx, + "web-animation": n, + "resource-timing": n, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": a, + "autofocus": n, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": y, + "font-unicode-range": y, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": a, + "css-media-resolution": ax, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": a, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": ax, + "input-minlength": n, + "css-media-interaction": y, + "ime": n, + "font-smooth": n, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": y, + "permissions-api": n, + "http2": y, + "font-kerning": yx, + "jpeg2000": y, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": n, + "progress": a, + "css-filter-function": y, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": y, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": y, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": y, + "focusin-focusout-events": y, + "css-matches-pseudo": y, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": ax, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": y, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": a, + "payment-request": n, + "shadowdomv1": a, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": y, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": y, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": y, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": nd, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ios_saf-10.3.scss b/app/assets/stylesheets/admin/ios_saf-10.3.scss new file mode 100644 index 0000000..43b4ba6 --- /dev/null +++ b/app/assets/stylesheets/admin/ios_saf-10.3.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: iOS Safari 10.3 (approximately 0.25% of all users) + * + */ + +$browser: ios_saf; +$browser_prefix: webkit; +$browser_version: 10.3; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": yx, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": p, + "dataset": y, + "css-grid": y, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": yx, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": a, + "document-execcommand": y, + "input-color": n, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": yx, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": n, + "css-placeholder": y, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": y, + "promises": y, + "css-sticky": yx, + "dialog": n, + "css-variables": y, + "vibration": n, + "css-backgroundblendmode": a, + "css-mixblendmode": a, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": n, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": a, + "picture": y, + "woff2": y, + "text-size-adjust": yx, + "web-animation": n, + "resource-timing": n, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": a, + "autofocus": n, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": a, + "css-media-resolution": ax, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": ax, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": n, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": y, + "permissions-api": n, + "http2": y, + "font-kerning": yx, + "jpeg2000": y, + "upgradeinsecurerequests": y, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": y, + "progress": a, + "css-filter-function": y, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": y, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": a, + "css-in-out-of-range": y, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": y, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": y, + "focusin-focusout-events": y, + "css-matches-pseudo": y, + "rel-noopener": y, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": ax, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": y, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": y, + "dom-manip-convenience": y, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": a, + "payment-request": n, + "shadowdomv1": a, + "urlsearchparams": y, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": y, + "es6-module": y, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": y, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": y, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ios_saf-3.2.scss b/app/assets/stylesheets/admin/ios_saf-3.2.scss new file mode 100644 index 0000000..fc435ad --- /dev/null +++ b/app/assets/stylesheets/admin/ios_saf-3.2.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: iOS Safari 3.2 (approximately 0.0% of all users) + * + */ + +$browser: ios_saf; +$browser_prefix: webkit; +$browser_version: 3.2; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": n, + "contenteditable": n, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": n, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": n, + "fontface": a, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": n, + "beacon": n, + "hashchange": n, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": ax, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": yx, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": a, + "css-animation": yx, + "css-gradients": ax, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": a, + "svg-fonts": y, + "svg-filters": n, + "svg-html": a, + "svg-html5": p, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": u, + "eventsource": n, + "x-doc-messaging": y, + "sni": n, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": n, + "history": n, + "json": n, + "classlist": p, + "text-overflow": y, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": ax, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": n, + "ttf": n, + "touch": y, + "matchesselector": n, + "pointer-events": y, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": n, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": n, + "input-color": n, + "input-number": a, + "getboundingclientrect": u, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": n, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": n, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": u, + "iframe-seamless": n, + "css-image-orientation": a, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": u, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": n, + "currentcolor": u, + "input-pattern": u, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": u, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": u, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": u, + "wbr-element": u, + "const": a, + "css-all": n, + "css-initial-value": u, + "css-letter-spacing": u, + "css-unset-value": n, + "insertadjacenthtml": u, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": u, + "customevent": u, + "textcontent": u, + "addeventlistener": y, + "dispatchevent": u, + "documenthead": u, + "innertext": u, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": u, + "proxy": n, + "keyboardevent-which": u, + "keyboardevent-charcode": u, + "keyboardevent-code": n, + "keyboardevent-location": u, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": u, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": u, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": n, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": u, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ios_saf-4.0-4.1.scss b/app/assets/stylesheets/admin/ios_saf-4.0-4.1.scss new file mode 100644 index 0000000..ad334ad --- /dev/null +++ b/app/assets/stylesheets/admin/ios_saf-4.0-4.1.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: iOS Safari 4.0 (approximately 0.0% of all users) + * + */ + +$browser: ios_saf; +$browser_prefix: webkit; +$browser_version: 4.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": n, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": n, + "fontface": a, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": n, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": yx, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": a, + "css-animation": yx, + "css-gradients": ax, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": a, + "svg-fonts": y, + "svg-filters": n, + "svg-html": a, + "svg-html5": p, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": u, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": a, + "history": n, + "json": y, + "classlist": p, + "text-overflow": y, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": n, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": n, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": n, + "input-color": n, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": n, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": u, + "iframe-seamless": n, + "css-image-orientation": a, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": n, + "currentcolor": y, + "input-pattern": u, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": u, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": u, + "wbr-element": u, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": u, + "customevent": n, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": u, + "keyboardevent-charcode": u, + "keyboardevent-code": n, + "keyboardevent-location": u, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": u, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": u, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": n, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": u, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ios_saf-4.2-4.3.scss b/app/assets/stylesheets/admin/ios_saf-4.2-4.3.scss new file mode 100644 index 0000000..3eda847 --- /dev/null +++ b/app/assets/stylesheets/admin/ios_saf-4.2-4.3.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: iOS Safari 4.2 (approximately 0.0% of all users) + * + */ + +$browser: ios_saf; +$browser_prefix: webkit; +$browser_version: 4.2; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": n, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": n, + "fontface": y, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": n, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": yx, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": yx, + "font-feature": a, + "css-animation": yx, + "css-gradients": ax, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": a, + "svg-fonts": y, + "svg-filters": n, + "svg-html": a, + "svg-html5": p, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": a, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": a, + "history": a, + "json": y, + "classlist": p, + "text-overflow": y, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": a, + "deviceorientation": a, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": n, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": u, + "input-color": n, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": n, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": a, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": n, + "currentcolor": y, + "input-pattern": u, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": u, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": u, + "wbr-element": u, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": u, + "customevent": u, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": u, + "keyboardevent-charcode": u, + "keyboardevent-code": n, + "keyboardevent-location": u, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": u, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": u, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": n, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ios_saf-5.0-5.1.scss b/app/assets/stylesheets/admin/ios_saf-5.0-5.1.scss new file mode 100644 index 0000000..2df1c24 --- /dev/null +++ b/app/assets/stylesheets/admin/ios_saf-5.0-5.1.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: iOS Safari 5.0 (approximately 0.0% of all users) + * + */ + +$browser: ios_saf; +$browser_prefix: webkit; +$browser_version: 5.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": a, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": yx, + "css-transitions": yx, + "font-feature": a, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": a, + "svg-fonts": y, + "svg-filters": n, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": a, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": y, + "input-datetime": a, + "document-execcommand": u, + "input-color": n, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": yx, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": a, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": n, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": a, + "picture": n, + "woff2": n, + "text-size-adjust": yx, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": y, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": u, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ios_saf-6.0-6.1.scss b/app/assets/stylesheets/admin/ios_saf-6.0-6.1.scss new file mode 100644 index 0000000..a031d75 --- /dev/null +++ b/app/assets/stylesheets/admin/ios_saf-6.0-6.1.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: iOS Safari 6.0 (approximately 0.0% of all users) + * + */ + +$browser: ios_saf; +$browser_prefix: webkit; +$browser_version: 6.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": a, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": yx, + "css-transitions": yx, + "font-feature": a, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": n, + "audio-api": yx, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": yx, + "input-range": y, + "matchmedia": y, + "input-datetime": a, + "document-execcommand": u, + "input-color": n, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": yx, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": a, + "contentsecuritypolicy": y, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": yx, + "css-selection": n, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": yx, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": a, + "picture": n, + "woff2": n, + "text-size-adjust": yx, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": yx, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": y, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": u, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ios_saf-7.0-7.1.scss b/app/assets/stylesheets/admin/ios_saf-7.0-7.1.scss new file mode 100644 index 0000000..f60ba91 --- /dev/null +++ b/app/assets/stylesheets/admin/ios_saf-7.0-7.1.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: iOS Safari 7.0 (approximately 0.09% of all users) + * + */ + +$browser: ios_saf; +$browser_prefix: webkit; +$browser_version: 7.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": a, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": n, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": yx, + "webgl": n, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": n, + "audio-api": yx, + "css-regions": yx, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": a, + "document-execcommand": y, + "input-color": n, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": a, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": n, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": y, + "promises": p, + "css-sticky": yx, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": a, + "picture": n, + "woff2": n, + "text-size-adjust": yx, + "web-animation": n, + "resource-timing": n, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": y, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": n, + "progress": a, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ios_saf-8.1-8.4.scss b/app/assets/stylesheets/admin/ios_saf-8.1-8.4.scss new file mode 100644 index 0000000..3633590 --- /dev/null +++ b/app/assets/stylesheets/admin/ios_saf-8.1-8.4.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: iOS Safari 8.1 (approximately 0.12% of all users) + * + */ + +$browser: ios_saf; +$browser_prefix: webkit; +$browser_version: 8.1; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": n, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": a, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": yx, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": a, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": n, + "audio-api": yx, + "css-regions": yx, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": a, + "document-execcommand": y, + "input-color": n, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": yx, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": n, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": y, + "promises": y, + "css-sticky": yx, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": a, + "css-mixblendmode": a, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": n, + "srcset": a, + "ambient-light": n, + "will-change": n, + "css-shapes": yx, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": a, + "picture": n, + "woff2": n, + "text-size-adjust": yx, + "web-animation": n, + "resource-timing": n, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": a, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": yx, + "jpeg2000": y, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": n, + "progress": a, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": nd, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ios_saf-8.scss b/app/assets/stylesheets/admin/ios_saf-8.scss new file mode 100644 index 0000000..74f86d7 --- /dev/null +++ b/app/assets/stylesheets/admin/ios_saf-8.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: iOS Safari 8.0 (approximately 0.0% of all users) + * + */ + +$browser: ios_saf; +$browser_prefix: webkit; +$browser_version: 8.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": n, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": a, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": yx, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": a, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": yx, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": a, + "document-execcommand": y, + "input-color": n, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": yx, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": n, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": y, + "promises": y, + "css-sticky": yx, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": a, + "css-mixblendmode": a, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": n, + "srcset": a, + "ambient-light": n, + "will-change": n, + "css-shapes": yx, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": a, + "picture": n, + "woff2": n, + "text-size-adjust": yx, + "web-animation": n, + "resource-timing": n, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": a, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": yx, + "jpeg2000": y, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": n, + "progress": a, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": nd, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ios_saf-9.0-9.2.scss b/app/assets/stylesheets/admin/ios_saf-9.0-9.2.scss new file mode 100644 index 0000000..8b42f5f --- /dev/null +++ b/app/assets/stylesheets/admin/ios_saf-9.0-9.2.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: iOS Safari 9.0 (approximately 0.11% of all users) + * + */ + +$browser: ios_saf; +$browser_prefix: webkit; +$browser_version: 9.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": n, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": a, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": yx, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": a, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": p, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": yx, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": a, + "document-execcommand": y, + "input-color": n, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": yx, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": n, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": y, + "promises": y, + "css-sticky": yx, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": a, + "css-mixblendmode": a, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": n, + "srcset": y, + "ambient-light": n, + "will-change": n, + "css-shapes": yx, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": a, + "picture": n, + "woff2": n, + "text-size-adjust": yx, + "web-animation": n, + "resource-timing": n, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": a, + "css-media-resolution": ax, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": a, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": ax, + "input-minlength": n, + "css-media-interaction": y, + "ime": n, + "font-smooth": n, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": y, + "font-kerning": yx, + "jpeg2000": y, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": n, + "progress": a, + "css-filter-function": yx, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": y, + "focusin-focusout-events": y, + "css-matches-pseudo": y, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": ax, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": y, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": nd, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/ios_saf-9.3.scss b/app/assets/stylesheets/admin/ios_saf-9.3.scss new file mode 100644 index 0000000..c454c68 --- /dev/null +++ b/app/assets/stylesheets/admin/ios_saf-9.3.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: iOS Safari 9.3 (approximately 0.77% of all users) + * + */ + +$browser: ios_saf; +$browser_prefix: webkit; +$browser_version: 9.3; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": a, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": yx, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": a, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": p, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": yx, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": a, + "document-execcommand": y, + "input-color": n, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": yx, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": n, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": y, + "promises": y, + "css-sticky": yx, + "dialog": n, + "css-variables": y, + "vibration": n, + "css-backgroundblendmode": a, + "css-mixblendmode": a, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": n, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": yx, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": a, + "picture": y, + "woff2": n, + "text-size-adjust": yx, + "web-animation": n, + "resource-timing": n, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": a, + "autofocus": n, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": a, + "css-media-resolution": ax, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": a, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": ax, + "input-minlength": n, + "css-media-interaction": y, + "ime": n, + "font-smooth": n, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": y, + "permissions-api": n, + "http2": y, + "font-kerning": yx, + "jpeg2000": y, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": n, + "progress": a, + "css-filter-function": yx, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": y, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": y, + "focusin-focusout-events": y, + "css-matches-pseudo": y, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": ax, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": y, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": nd, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/op_mini-all.scss b/app/assets/stylesheets/admin/op_mini-all.scss new file mode 100644 index 0000000..46b01a7 --- /dev/null +++ b/app/assets/stylesheets/admin/op_mini-all.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera Mini 0.0 (approximately 3.03% of all users) + * + */ + +$browser: op_mini; +$browser_prefix: o; +$browser_version: 0.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": n, + "audio": n, + "contenteditable": n, + "dragndrop": n, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": n, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": n, + "webworkers": n, + "fontface": n, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": n, + "beacon": n, + "hashchange": n, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": a, + "css-boxshadow": n, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": y, + "border-radius": n, + "transforms2d": n, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": n, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": n, + "svg-fonts": n, + "svg-filters": y, + "svg-html": n, + "svg-html5": y, + "canvas": a, + "canvas-text": n, + "namevalue-storage": n, + "sql-storage": n, + "indexeddb": n, + "online-status": n, + "eventsource": n, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": n, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": n, + "flexbox": y, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": y, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": a, + "history": n, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": n, + "mpeg4": n, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": yx, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": n, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": y, + "ttf": n, + "touch": n, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": y, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": n, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": n, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": n, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": y, + "outline": n, + "download": n, + "pointer": n, + "user-select-none": n, + "input-file-accept": n, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": n, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": n, + "css-placeholder": n, + "css-deviceadaptation": ax, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": a, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": a, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": a, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": y, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": n, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": n, + "fieldset-disabled": a, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": n, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": n, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": n, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": n, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": n, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": a, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": n, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": n, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": n, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/op_mob-10.scss b/app/assets/stylesheets/admin/op_mob-10.scss new file mode 100644 index 0000000..abad1b4 --- /dev/null +++ b/app/assets/stylesheets/admin/op_mob-10.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera Mobile 10.0 (approximately 0.0% of all users) + * + */ + +$browser: op_mob; +$browser_prefix: o; +$browser_version: 10.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": n, + "audio": n, + "contenteditable": n, + "dragndrop": p, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": y, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": n, + "webworkers": p, + "fontface": y, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": n, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": p, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": n, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": n, + "border-radius": n, + "transforms2d": n, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": u, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": n, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": p, + "canvas": y, + "canvas-text": p, + "namevalue-storage": n, + "sql-storage": n, + "indexeddb": n, + "online-status": n, + "eventsource": a, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": u, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": p, + "flexbox": n, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": n, + "json": y, + "classlist": p, + "text-overflow": yx, + "webm": n, + "mpeg4": n, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": y, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": n, + "ttf": y, + "touch": n, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": a, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": n, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": n, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": n, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": u, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": u, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": u, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": y, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": n, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": n, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": n, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": u, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": a, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": a, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": n, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": u, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/op_mob-11.1.scss b/app/assets/stylesheets/admin/op_mob-11.1.scss new file mode 100644 index 0000000..6aedca5 --- /dev/null +++ b/app/assets/stylesheets/admin/op_mob-11.1.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera Mobile 11.1 (approximately 0.0% of all users) + * + */ + +$browser: op_mob; +$browser_prefix: o; +$browser_version: 11.1; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": n, + "dragndrop": p, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": y, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": y, + "border-radius": y, + "transforms2d": y, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": n, + "css-gradients": ax, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": n, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": p, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": n, + "webgl": n, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": yx, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": yx, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": y, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": n, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": n, + "blobbuilder": n, + "filereader": y, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": ax, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": n, + "input-file-accept": n, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": u, + "css-placeholder": n, + "css-deviceadaptation": ax, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": y, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": u, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": a, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": u, + "mediarecorder": n, + "readonly-attr": a, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/op_mob-11.5.scss b/app/assets/stylesheets/admin/op_mob-11.5.scss new file mode 100644 index 0000000..90a81ca --- /dev/null +++ b/app/assets/stylesheets/admin/op_mob-11.5.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera Mobile 11.5 (approximately 0.0% of all users) + * + */ + +$browser: op_mob; +$browser_prefix: o; +$browser_version: 11.5; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": n, + "dragndrop": p, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": y, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": y, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": n, + "css-gradients": ax, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": n, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": p, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": n, + "webgl": n, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": yx, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": yx, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": y, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": n, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": n, + "blobbuilder": n, + "filereader": y, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": ax, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": n, + "input-file-accept": n, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": n, + "css-deviceadaptation": ax, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": y, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": u, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": a, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": a, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/op_mob-11.scss b/app/assets/stylesheets/admin/op_mob-11.scss new file mode 100644 index 0000000..bacdadd --- /dev/null +++ b/app/assets/stylesheets/admin/op_mob-11.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera Mobile 11.0 (approximately 0.0% of all users) + * + */ + +$browser: op_mob; +$browser_prefix: o; +$browser_version: 11.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": n, + "dragndrop": p, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": y, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": n, + "border-radius": y, + "transforms2d": y, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": n, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": p, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": a, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": n, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": a, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": n, + "json": y, + "classlist": p, + "text-overflow": yx, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": yx, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": y, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": n, + "ttf": y, + "touch": y, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": n, + "input-file-accept": n, + "webp": a, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": u, + "css-placeholder": n, + "css-deviceadaptation": ax, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": y, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": u, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": a, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": u, + "mediarecorder": n, + "readonly-attr": a, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/op_mob-12.1.scss b/app/assets/stylesheets/admin/op_mob-12.1.scss new file mode 100644 index 0000000..381e7b4 --- /dev/null +++ b/app/assets/stylesheets/admin/op_mob-12.1.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera Mobile 12.1 (approximately 0.0% of all users) + * + */ + +$browser: op_mob; +$browser_prefix: o; +$browser_version: 12.1; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": y, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": y, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": n, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": n, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": n, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": yx, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": ax, + "svg-img": y, + "datalist": y, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": n, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": y, + "deviceorientation": y, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": y, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": n, + "input-file-accept": n, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": n, + "css-deviceadaptation": ax, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": u, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": a, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": y, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": y, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": a, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": a, + "x-frame-options": a, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": y, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/op_mob-12.scss b/app/assets/stylesheets/admin/op_mob-12.scss new file mode 100644 index 0000000..af136ac --- /dev/null +++ b/app/assets/stylesheets/admin/op_mob-12.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera Mobile 12.0 (approximately 0.0% of all users) + * + */ + +$browser: op_mob; +$browser_prefix: o; +$browser_version: 12.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": n, + "dragndrop": p, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": y, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": y, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": n, + "css-gradients": yx, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": n, + "svg": y, + "svg-css": a, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": n, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": n, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": yx, + "webm": n, + "mpeg4": y, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": yx, + "xhr2": y, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": ax, + "svg-img": y, + "datalist": y, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": n, + "blobbuilder": n, + "filereader": y, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": y, + "deviceorientation": y, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": yx, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": n, + "input-file-accept": n, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": n, + "css-deviceadaptation": ax, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": y, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": u, + "keyboardevent-code": n, + "keyboardevent-location": u, + "keyboardevent-getmodifierstate": u, + "keyboardevent-key": u, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": u, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": a, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": a, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": u, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": y, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/op_mob-37.scss b/app/assets/stylesheets/admin/op_mob-37.scss new file mode 100644 index 0000000..f003ea5 --- /dev/null +++ b/app/assets/stylesheets/admin/op_mob-37.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera Mobile 37.0 (approximately 0.02% of all users) + * + */ + +$browser: op_mob; +$browser_prefix: webkit; +$browser_version: 37.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": n, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": ax, + "stream": ax, + "svg-img": y, + "datalist": p, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": a, + "css-mixblendmode": y, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": a, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": y, + "font-size-adjust": n, + "link-icon-png": n, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": n, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": y, + "setimmediate": n, + "es6-number": y, + "maxlength": a, + "proxy": y, + "keyboardevent-which": a, + "keyboardevent-charcode": n, + "keyboardevent-code": nd, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": n, + "subresource-integrity": y, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": y, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": u, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": n, + "css-paged-media": n, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": y, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-10.0-10.1.scss b/app/assets/stylesheets/admin/opera-10.0-10.1.scss new file mode 100644 index 0000000..15baa69 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-10.0-10.1.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 10.0 (approximately 0.02% of all users) + * + */ + +$browser: opera; +$browser_prefix: o; +$browser_version: 10.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": n, + "audio": a, + "contenteditable": y, + "dragndrop": p, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": y, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": p, + "webworkers": p, + "fontface": y, + "eot": n, + "woff": n, + "multibackgrounds": n, + "border-image": n, + "background-img-opts": ax, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": p, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": n, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": n, + "border-radius": n, + "transforms2d": n, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": n, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": n, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": p, + "canvas": y, + "canvas-text": p, + "namevalue-storage": n, + "sql-storage": n, + "indexeddb": n, + "online-status": n, + "eventsource": a, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": n, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": p, + "flexbox": n, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": n, + "json": n, + "classlist": p, + "text-overflow": yx, + "webm": n, + "mpeg4": n, + "ogv": n, + "wordwrap": n, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": y, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": n, + "ttf": y, + "touch": n, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": n, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": y, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": a, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": n, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": n, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": n, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": n, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": y, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": n, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": n, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": n, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": a, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": nd, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": a, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": n, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": u, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-10.5.scss b/app/assets/stylesheets/admin/opera-10.5.scss new file mode 100644 index 0000000..f1acd36 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-10.5.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 10.5 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: o; +$browser_version: 10.5; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": p, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": y, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": p, + "webworkers": p, + "fontface": y, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": p, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": n, + "border-radius": y, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": n, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": p, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": a, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": p, + "flexbox": n, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": n, + "json": y, + "classlist": p, + "text-overflow": yx, + "webm": n, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": y, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": n, + "ttf": y, + "touch": n, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": y, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": a, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": n, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": n, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": n, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": u, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": u, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": y, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": y, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": n, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": n, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": n, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": a, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": nd, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": u, + "mediarecorder": n, + "readonly-attr": a, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": n, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": u, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-10.6.scss b/app/assets/stylesheets/admin/opera-10.6.scss new file mode 100644 index 0000000..473b662 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-10.6.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 10.6 (approximately 0.0% of all users) + * + */ + +$browser: opera; +$browser_prefix: o; +$browser_version: 10.6; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": p, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": y, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": n, + "border-radius": y, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": n, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": n, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": a, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": n, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": n, + "json": y, + "classlist": p, + "text-overflow": yx, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": yx, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": y, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": n, + "ttf": y, + "touch": n, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": y, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": n, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": y, + "mp3": n, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": n, + "input-file-accept": n, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": y, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": y, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": n, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": n, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": n, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": a, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": nd, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": u, + "mediarecorder": n, + "readonly-attr": a, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": n, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-11.1.scss b/app/assets/stylesheets/admin/opera-11.1.scss new file mode 100644 index 0000000..4a9d032 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-11.1.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 11.1 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: o; +$browser_version: 11.1; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": p, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": y, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": y, + "border-radius": y, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": n, + "css-gradients": ax, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": n, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": n, + "webgl": n, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": n, + "json": y, + "classlist": p, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": yx, + "xhr2": n, + "minmaxwh": y, + "details": n, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": y, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": n, + "ttf": y, + "touch": n, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": y, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": a, + "spdy": n, + "css-repeating-gradients": ax, + "css-filters": n, + "getcomputedstyle": y, + "mp3": n, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": n, + "input-file-accept": n, + "webp": a, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": y, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": u, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": a, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": nd, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": u, + "mediarecorder": n, + "readonly-attr": a, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-11.5.scss b/app/assets/stylesheets/admin/opera-11.5.scss new file mode 100644 index 0000000..9dcbf8c --- /dev/null +++ b/app/assets/stylesheets/admin/opera-11.5.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 11.5 (approximately 0.0% of all users) + * + */ + +$browser: opera; +$browser_prefix: o; +$browser_version: 11.5; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": p, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": y, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": y, + "border-radius": y, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": n, + "css-gradients": ax, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": n, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": n, + "webgl": n, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": yx, + "xhr2": n, + "minmaxwh": y, + "details": n, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": y, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": n, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": n, + "blobbuilder": n, + "filereader": y, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": ax, + "css-filters": n, + "getcomputedstyle": y, + "mp3": n, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": n, + "input-file-accept": n, + "webp": a, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": y, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": u, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": a, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": nd, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": u, + "mediarecorder": n, + "readonly-attr": a, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-11.6.scss b/app/assets/stylesheets/admin/opera-11.6.scss new file mode 100644 index 0000000..4356579 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-11.6.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 11.6 (approximately 0.0% of all users) + * + */ + +$browser: opera; +$browser_prefix: o; +$browser_version: 11.6; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": p, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": y, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": y, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": n, + "css-gradients": yx, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": n, + "webgl": n, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": yx, + "xhr2": n, + "minmaxwh": y, + "details": n, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": y, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": n, + "blobbuilder": n, + "filereader": y, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": y, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": yx, + "css-filters": n, + "getcomputedstyle": y, + "mp3": n, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": n, + "input-file-accept": n, + "webp": a, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": y, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": y, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": a, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": a, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": nd, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": a, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": y, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-11.scss b/app/assets/stylesheets/admin/opera-11.scss new file mode 100644 index 0000000..ae36eaf --- /dev/null +++ b/app/assets/stylesheets/admin/opera-11.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 11.0 (approximately 0.02% of all users) + * + */ + +$browser: opera; +$browser_prefix: o; +$browser_version: 11.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": p, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": y, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": n, + "border-radius": y, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": n, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": n, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": a, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": n, + "json": y, + "classlist": p, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": yx, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": y, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": n, + "ttf": y, + "touch": n, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": a, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": y, + "mp3": n, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": n, + "input-file-accept": n, + "webp": p, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": y, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": u, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": a, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": nd, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": u, + "mediarecorder": n, + "readonly-attr": a, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-12.1.scss b/app/assets/stylesheets/admin/opera-12.1.scss new file mode 100644 index 0000000..6c184b7 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-12.1.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 12.1 (approximately 0.07% of all users) + * + */ + +$browser: opera; +$browser_prefix: o; +$browser_version: 12.1; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": y, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": y, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": n, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": a, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": n, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": y, + "pointerlock": n, + "object-fit": yx, + "xhr2": y, + "minmaxwh": y, + "details": n, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": ax, + "svg-img": y, + "datalist": y, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": n, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": y, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": y, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": a, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": n, + "getcomputedstyle": y, + "mp3": n, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": n, + "input-file-accept": n, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": y, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": a, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": y, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": a, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": a, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": y, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-12.scss b/app/assets/stylesheets/admin/opera-12.scss new file mode 100644 index 0000000..3767502 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-12.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 12.0 (approximately 0.0% of all users) + * + */ + +$browser: opera; +$browser_prefix: o; +$browser_version: 12.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": y, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": y, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": n, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": n, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": a, + "pointerlock": n, + "object-fit": yx, + "xhr2": y, + "minmaxwh": y, + "details": n, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": ax, + "svg-img": y, + "datalist": y, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": n, + "blobbuilder": n, + "filereader": y, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": y, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": yx, + "css-filters": n, + "getcomputedstyle": y, + "mp3": n, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": n, + "input-file-accept": n, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": ax, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": u, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": y, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": y, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": y, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": yx, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": u, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": u, + "keyboardevent-code": n, + "keyboardevent-location": u, + "keyboardevent-getmodifierstate": u, + "keyboardevent-key": u, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": a, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": nd, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": a, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": y, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-15.scss b/app/assets/stylesheets/admin/opera-15.scss new file mode 100644 index 0000000..71a4d4e --- /dev/null +++ b/app/assets/stylesheets/admin/opera-15.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 15.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 15.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": n, + "flexbox": yx, + "webgl": a, + "fileapi": a, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": a, + "mpeg4": n, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": nd, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": a, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-16.scss b/app/assets/stylesheets/admin/opera-16.scss new file mode 100644 index 0000000..ad2aa98 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-16.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 16.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 16.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": yx, + "webgl": a, + "fileapi": a, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": n, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": nd, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": a, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": yx, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": n, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-17.scss b/app/assets/stylesheets/admin/opera-17.scss new file mode 100644 index 0000000..f939119 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-17.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 17.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 17.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": a, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": n, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": nd, + "imports": nd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": yx, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-18.scss b/app/assets/stylesheets/admin/opera-18.scss new file mode 100644 index 0000000..37ff645 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-18.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 18.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 18.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": a, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": n, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": n, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": nd, + "imports": nd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": yx, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-19.scss b/app/assets/stylesheets/admin/opera-19.scss new file mode 100644 index 0000000..fdd9b0f --- /dev/null +++ b/app/assets/stylesheets/admin/opera-19.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 19.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 19.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": a, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": n, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": a, + "css-sticky": n, + "dialog": nd, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": nd, + "imports": nd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": yx, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-20.scss b/app/assets/stylesheets/admin/opera-20.scss new file mode 100644 index 0000000..e3be741 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-20.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 20.0 (approximately 0.0% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 20.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": a, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": n, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": nd, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": y, + "imports": nd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": u, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": a, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-21.scss b/app/assets/stylesheets/admin/opera-21.scss new file mode 100644 index 0000000..c20f54d --- /dev/null +++ b/app/assets/stylesheets/admin/opera-21.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 21.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 21.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": a, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": n, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": nd, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": a, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": y, + "imports": nd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": u, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-22.scss b/app/assets/stylesheets/admin/opera-22.scss new file mode 100644 index 0000000..1dbe425 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-22.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 22.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 22.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": a, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": n, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": nd, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": a, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": y, + "imports": pd, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": y, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": u, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-23.scss b/app/assets/stylesheets/admin/opera-23.scss new file mode 100644 index 0000000..bf997eb --- /dev/null +++ b/app/assets/stylesheets/admin/opera-23.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 23.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 23.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": a, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": n, + "ogv": y, + "wordwrap": y, + "pointerlock": yx, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": p, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": nd, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": a, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": y, + "font-unicode-range": y, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": a, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-24.scss b/app/assets/stylesheets/admin/opera-24.scss new file mode 100644 index 0000000..17f414d --- /dev/null +++ b/app/assets/stylesheets/admin/opera-24.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 24.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 24.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": a, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": n, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": a, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": nd, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": u, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": nd, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-25.scss b/app/assets/stylesheets/admin/opera-25.scss new file mode 100644 index 0000000..eba74f8 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-25.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 25.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 25.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-26.scss b/app/assets/stylesheets/admin/opera-26.scss new file mode 100644 index 0000000..6ffafd1 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-26.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 26.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 26.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": a, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-27.scss b/app/assets/stylesheets/admin/opera-27.scss new file mode 100644 index 0000000..901ba8e --- /dev/null +++ b/app/assets/stylesheets/admin/opera-27.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 27.0 (approximately 0.0% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 27.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": n, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": a, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": a, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": n, + "http2": n, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": nd, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-28.scss b/app/assets/stylesheets/admin/opera-28.scss new file mode 100644 index 0000000..aa220d6 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-28.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 28.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 28.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": n, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": a, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": a, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": n, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": a, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": nd, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-29.scss b/app/assets/stylesheets/admin/opera-29.scss new file mode 100644 index 0000000..f1cbcb2 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-29.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 29.0 (approximately 0.0% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 29.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": a, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": n, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": a, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": nd, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": nd, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": a, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-30.scss b/app/assets/stylesheets/admin/opera-30.scss new file mode 100644 index 0000000..c582e18 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-30.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 30.0 (approximately 0.0% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 30.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": a, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": a, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": nd, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": nd, + "css-scroll-behavior": nd, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": a, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-31.scss b/app/assets/stylesheets/admin/opera-31.scss new file mode 100644 index 0000000..6c85c52 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-31.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 31.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 31.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": a, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": a, + "arrow-functions": n, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": nd, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": nd, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": nd, + "css-scroll-behavior": nd, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": a, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-32.scss b/app/assets/stylesheets/admin/opera-32.scss new file mode 100644 index 0000000..21e44a4 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-32.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 32.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 32.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": a, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": nd, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": nd, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": nd, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": a, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-33.scss b/app/assets/stylesheets/admin/opera-33.scss new file mode 100644 index 0000000..1e469e3 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-33.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 33.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 33.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": a, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": nd, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": a, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": nd, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": nd, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": a, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-34.scss b/app/assets/stylesheets/admin/opera-34.scss new file mode 100644 index 0000000..c5f333c --- /dev/null +++ b/app/assets/stylesheets/admin/opera-34.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 34.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 34.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": a, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": nd, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": nd, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": a, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-35.scss b/app/assets/stylesheets/admin/opera-35.scss new file mode 100644 index 0000000..c204a6f --- /dev/null +++ b/app/assets/stylesheets/admin/opera-35.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 35.0 (approximately 0.0% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 35.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": nd, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": a, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": nd, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": a, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-36.scss b/app/assets/stylesheets/admin/opera-36.scss new file mode 100644 index 0000000..8139446 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-36.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 36.0 (approximately 0.03% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 36.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": nd, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-37.scss b/app/assets/stylesheets/admin/opera-37.scss new file mode 100644 index 0000000..2f34ceb --- /dev/null +++ b/app/assets/stylesheets/admin/opera-37.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 37.0 (approximately 0.0% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 37.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": nd, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": u, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-38.scss b/app/assets/stylesheets/admin/opera-38.scss new file mode 100644 index 0000000..fd95750 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-38.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 38.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 38.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": u, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": nd, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": y, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": nd, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-39.scss b/app/assets/stylesheets/admin/opera-39.scss new file mode 100644 index 0000000..0c33fbc --- /dev/null +++ b/app/assets/stylesheets/admin/opera-39.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 39.0 (approximately 0.0% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 39.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": nd, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": u, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": nd, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": y, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": nd, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-40.scss b/app/assets/stylesheets/admin/opera-40.scss new file mode 100644 index 0000000..5c5643a --- /dev/null +++ b/app/assets/stylesheets/admin/opera-40.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 40.0 (approximately 0.0% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 40.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": yx, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": nd, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": n, + "css-in-out-of-range": y, + "push-api": u, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": nd, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": y, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": y, + "selection-api": y, + "payment-request": nd, + "shadowdomv1": y, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": nd, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-41.scss b/app/assets/stylesheets/admin/opera-41.scss new file mode 100644 index 0000000..75b6276 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-41.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 41.0 (approximately 0.0% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 41.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": pd, + "user-select-none": y, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": nd, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": a, + "css-in-out-of-range": y, + "push-api": u, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": y, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": y, + "selection-api": y, + "payment-request": nd, + "shadowdomv1": y, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": nd, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-42.scss b/app/assets/stylesheets/admin/opera-42.scss new file mode 100644 index 0000000..3d09156 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-42.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 42.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 42.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": a, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": y, + "user-select-none": y, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": a, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": nd, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": y, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": nd, + "shadowdomv1": y, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": nd, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-43.scss b/app/assets/stylesheets/admin/opera-43.scss new file mode 100644 index 0000000..d4f606a --- /dev/null +++ b/app/assets/stylesheets/admin/opera-43.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 43.0 (approximately 0.56% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 43.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": a, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": pd, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": y, + "user-select-none": y, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": nxd, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": y, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": a, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": y, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": y, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": y, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": nd, + "shadowdomv1": y, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": nd, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": y, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-44.scss b/app/assets/stylesheets/admin/opera-44.scss new file mode 100644 index 0000000..e58f882 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-44.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 44.0 (approximately 0.05% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 44.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": a, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": y, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": y, + "user-select-none": y, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": y, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": y, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": a, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": y, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": y, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": y, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": nd, + "shadowdomv1": y, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": y, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": y, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-45.scss b/app/assets/stylesheets/admin/opera-45.scss new file mode 100644 index 0000000..2175543 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-45.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 45.0 (approximately 0.0% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 45.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": a, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": y, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": y, + "user-select-none": y, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": y, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": y, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": a, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": y, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": y, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": y, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": nd, + "shadowdomv1": y, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": y, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": y, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": y, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-46.scss b/app/assets/stylesheets/admin/opera-46.scss new file mode 100644 index 0000000..c6619d2 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-46.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 46.0 (approximately 0.0% of all users) + * + */ + +$browser: opera; +$browser_prefix: webkit; +$browser_version: 46.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": a, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": n, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": n, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": a, + "fileapi": y, + "shadowdom": y, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": nd, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": y, + "mpeg4": y, + "ogv": y, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": y, + "stream": ax, + "svg-img": y, + "datalist": a, + "dataset": y, + "css-grid": y, + "menu": nd, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": yx, + "bloburls": y, + "rellist": a, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": y, + "outline": y, + "download": y, + "pointer": y, + "user-select-none": y, + "input-file-accept": y, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": y, + "cryptography": y, + "template": y, + "opus": y, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": y, + "css-deviceadaptation": nd, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": y, + "dialog": y, + "css-variables": y, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": y, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": y, + "text-decoration": y, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": a, + "getrandomvalues": y, + "screen-orientation": y, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": y, + "font-size-adjust": nd, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": y, + "css-crisp-edges": y, + "css-text-align-last": y, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": y, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": y, + "css-snappoints": n, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": y, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": a, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": y, + "rest-parameters": y, + "css-cross-fade": yx, + "css-writing-mode": y, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": y, + "link-rel-preconnect": y, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": y, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": y, + "css-scroll-behavior": nd, + "subresource-integrity": y, + "custom-elementsv1": a, + "css-in-out-of-range": y, + "push-api": y, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": y, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": y, + "css-text-justify": nd, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": y, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": y, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": y, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": y, + "css-containment": y, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": y, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": nd, + "shadowdomv1": y, + "urlsearchparams": y, + "css-font-rendering-controls": nd, + "wasm": y, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": n, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": y, + "css-marker-pseudo": n, + "url": y, + "flow-root": y, + "css-rrggbbaa": nd, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": nd, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": y, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-9.5-9.6.scss b/app/assets/stylesheets/admin/opera-9.5-9.6.scss new file mode 100644 index 0000000..8feaea0 --- /dev/null +++ b/app/assets/stylesheets/admin/opera-9.5-9.6.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 9.5 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: o; +$browser_version: 9.5; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": n, + "audio": a, + "contenteditable": y, + "dragndrop": p, + "internationalization": n, + "queryselector": p, + "getelementsbyclassname": y, + "forms": y, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": n, + "webworkers": n, + "fontface": n, + "eot": n, + "woff": n, + "multibackgrounds": n, + "border-image": n, + "background-img-opts": n, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": p, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": n, + "css3-colors": a, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": n, + "border-radius": n, + "transforms2d": n, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": n, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": n, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": p, + "canvas": y, + "canvas-text": p, + "namevalue-storage": n, + "sql-storage": n, + "indexeddb": n, + "online-status": n, + "eventsource": a, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": n, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": n, + "flexbox": n, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": n, + "history": n, + "json": n, + "classlist": p, + "text-overflow": yx, + "webm": n, + "mpeg4": n, + "ogv": n, + "wordwrap": n, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": y, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": n, + "ttf": n, + "touch": n, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": n, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": y, + "document-execcommand": u, + "input-color": n, + "input-number": y, + "getboundingclientrect": u, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": n, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": n, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": u, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": n, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": n, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": u, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": u, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": u, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": u, + "wbr-element": y, + "const": n, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": u, + "css-unset-value": n, + "insertadjacenthtml": u, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": n, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": u, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": n, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": u, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": n, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": u, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": n, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/opera-9.scss b/app/assets/stylesheets/admin/opera-9.scss new file mode 100644 index 0000000..5e0bcda --- /dev/null +++ b/app/assets/stylesheets/admin/opera-9.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Opera 9.0 (approximately 0.01% of all users) + * + */ + +$browser: opera; +$browser_prefix: o; +$browser_version: 9.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": n, + "audio": n, + "contenteditable": y, + "dragndrop": p, + "internationalization": n, + "queryselector": p, + "getelementsbyclassname": n, + "forms": y, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": n, + "webworkers": n, + "fontface": n, + "eot": n, + "woff": n, + "multibackgrounds": n, + "border-image": n, + "background-img-opts": n, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": p, + "css-sel2": y, + "css-sel3": n, + "css-textshadow": n, + "css-boxshadow": n, + "css3-colors": n, + "css3-boxsizing": n, + "css-mediaqueries": n, + "multicolumn": n, + "border-radius": n, + "transforms2d": n, + "use-strict": n, + "devicepixelratio": n, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": n, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": n, + "svg": y, + "svg-css": n, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": p, + "canvas": y, + "canvas-text": p, + "namevalue-storage": n, + "sql-storage": n, + "indexeddb": n, + "online-status": n, + "eventsource": a, + "x-doc-messaging": n, + "sni": y, + "datauri": y, + "wav": n, + "mathml": n, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": n, + "geolocation": n, + "flexbox": n, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": n, + "history": n, + "json": n, + "classlist": p, + "text-overflow": yx, + "webm": n, + "mpeg4": n, + "ogv": n, + "wordwrap": n, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": n, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": y, + "datalist": y, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": n, + "ttf": n, + "touch": n, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": n, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": y, + "document-execcommand": u, + "input-color": n, + "input-number": y, + "getboundingclientrect": u, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": n, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": n, + "word-break": n, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": u, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": n, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": n, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": n, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": n, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": n, + "css-appearance": n, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": n, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": n, + "xml-serializer": u, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": u, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": n, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": n, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": n, + "fieldset-disabled": u, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": u, + "wbr-element": u, + "const": n, + "css-all": n, + "css-initial-value": n, + "css-letter-spacing": u, + "css-unset-value": n, + "insertadjacenthtml": u, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": u, + "addeventlistener": y, + "dispatchevent": u, + "documenthead": n, + "innertext": u, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": u, + "proxy": n, + "keyboardevent-which": u, + "keyboardevent-charcode": n, + "keyboardevent-code": n, + "keyboardevent-location": n, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": n, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": u, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": n, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": n, + "css-nth-child-of": n, + "focusin-focusout-events": n, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": n, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": u, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": n, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": u, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": a, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": a, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": n, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": u, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/safari-10.1.scss b/app/assets/stylesheets/admin/safari-10.1.scss new file mode 100644 index 0000000..459b091 --- /dev/null +++ b/app/assets/stylesheets/admin/safari-10.1.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Safari 10.1 (approximately 0.05% of all users) + * + */ + +$browser: safari; +$browser_prefix: webkit; +$browser_version: 10.1; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": yx, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": n, + "svg-img": y, + "datalist": p, + "dataset": y, + "css-grid": y, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": n, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": yx, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": yx, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": y, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": yx, + "dialog": n, + "css-variables": y, + "vibration": n, + "css-backgroundblendmode": a, + "css-mixblendmode": a, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": n, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": a, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": ax, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": ax, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": y, + "permissions-api": n, + "http2": a, + "font-kerning": y, + "jpeg2000": y, + "upgradeinsecurerequests": y, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": y, + "progress": y, + "css-filter-function": y, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": y, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": a, + "css-in-out-of-range": y, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": y, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": y, + "focusin-focusout-events": y, + "css-matches-pseudo": y, + "rel-noopener": y, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": nd, + "css-initial-letter": ax, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": y, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": y, + "dom-manip-convenience": y, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": n, + "shadowdomv1": a, + "urlsearchparams": y, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": y, + "es6-module": y, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": y, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": y, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/safari-10.scss b/app/assets/stylesheets/admin/safari-10.scss new file mode 100644 index 0000000..a3ce626 --- /dev/null +++ b/app/assets/stylesheets/admin/safari-10.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Safari 10.0 (approximately 1.51% of all users) + * + */ + +$browser: safari; +$browser_prefix: webkit; +$browser_version: 10.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": yx, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": n, + "svg-img": y, + "datalist": p, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": n, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": yx, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": yx, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": yx, + "dialog": n, + "css-variables": y, + "vibration": n, + "css-backgroundblendmode": a, + "css-mixblendmode": a, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": n, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": yx, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": a, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": y, + "font-unicode-range": y, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": ax, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": ax, + "input-minlength": n, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": y, + "permissions-api": n, + "http2": a, + "font-kerning": y, + "jpeg2000": y, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": y, + "progress": y, + "css-filter-function": y, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": y, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": y, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": y, + "focusin-focusout-events": y, + "css-matches-pseudo": y, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": ax, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": y, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": y, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": n, + "shadowdomv1": a, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": y, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": y, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": y, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": nd, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/safari-3.1.scss b/app/assets/stylesheets/admin/safari-3.1.scss new file mode 100644 index 0000000..1520e4d --- /dev/null +++ b/app/assets/stylesheets/admin/safari-3.1.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Safari 3.1 (approximately 0.0% of all users) + * + */ + +$browser: safari; +$browser_prefix: webkit; +$browser_version: 3.1; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": n, + "audio": n, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": p, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": p, + "webworkers": p, + "fontface": n, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": p, + "css-sel2": y, + "css-sel3": n, + "css-textshadow": a, + "css-boxshadow": ax, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": a, + "multicolumn": ax, + "border-radius": yx, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": y, + "svg": a, + "svg-css": n, + "svg-smil": p, + "svg-fonts": n, + "svg-filters": n, + "svg-html": n, + "svg-html5": p, + "canvas": a, + "canvas-text": p, + "namevalue-storage": n, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": n, + "x-doc-messaging": n, + "sni": y, + "datauri": y, + "wav": n, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": n, + "geolocation": p, + "flexbox": ax, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": n, + "history": n, + "json": n, + "classlist": p, + "text-overflow": y, + "webm": n, + "mpeg4": n, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": n, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": n, + "ttf": y, + "touch": n, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": n, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": u, + "input-color": n, + "input-number": n, + "getboundingclientrect": u, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": a, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": n, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": u, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": n, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": n, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": n, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": u, + "wbr-element": u, + "const": a, + "css-all": n, + "css-initial-value": u, + "css-letter-spacing": u, + "css-unset-value": n, + "insertadjacenthtml": n, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": u, + "addeventlistener": y, + "dispatchevent": u, + "documenthead": n, + "innertext": u, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": u, + "proxy": n, + "keyboardevent-which": n, + "keyboardevent-charcode": u, + "keyboardevent-code": n, + "keyboardevent-location": u, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": n, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": u, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": n, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": u, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/safari-3.2.scss b/app/assets/stylesheets/admin/safari-3.2.scss new file mode 100644 index 0000000..4d5f817 --- /dev/null +++ b/app/assets/stylesheets/admin/safari-3.2.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Safari 3.2 (approximately 0.01% of all users) + * + */ + +$browser: safari; +$browser_prefix: webkit; +$browser_version: 3.2; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": n, + "audio": n, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": p, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": p, + "webworkers": p, + "fontface": y, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": p, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": a, + "css-boxshadow": ax, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": a, + "multicolumn": ax, + "border-radius": yx, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": y, + "transforms3d": n, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": n, + "css-animation": n, + "css-gradients": n, + "css-canvas": n, + "css-reflections": n, + "css-masks": n, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": p, + "svg-fonts": y, + "svg-filters": n, + "svg-html": n, + "svg-html5": p, + "canvas": a, + "canvas-text": p, + "namevalue-storage": n, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": n, + "x-doc-messaging": n, + "sni": y, + "datauri": y, + "wav": n, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": n, + "geolocation": p, + "flexbox": ax, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": n, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": n, + "history": n, + "json": n, + "classlist": p, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": n, + "rem": n, + "ttf": y, + "touch": n, + "matchesselector": n, + "pointer-events": n, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": n, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": u, + "input-color": n, + "input-number": n, + "getboundingclientrect": u, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": n, + "input-placeholder": a, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": n, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": u, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": n, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": n, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": n, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": n, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": n, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": n, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": n, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": n, + "keyboardevent-charcode": u, + "keyboardevent-code": n, + "keyboardevent-location": u, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": n, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": u, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": n, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": u, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": u, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/safari-4.scss b/app/assets/stylesheets/admin/safari-4.scss new file mode 100644 index 0000000..e9dee5e --- /dev/null +++ b/app/assets/stylesheets/admin/safari-4.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Safari 4.0 (approximately 0.0% of all users) + * + */ + +$browser: safari; +$browser_prefix: webkit; +$browser_version: 4.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": n, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": p, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": ax, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": yx, + "transforms2d": yx, + "use-strict": n, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": a, + "css-animation": yx, + "css-gradients": ax, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": a, + "svg-smil": a, + "svg-fonts": y, + "svg-filters": n, + "svg-html": a, + "svg-html5": p, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": n, + "eventsource": n, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": p, + "flexbox": ax, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": n, + "hidden": n, + "script-async": n, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": p, + "css-opacity": y, + "form-validation": n, + "history": n, + "json": y, + "classlist": p, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": n, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": n, + "ttf": y, + "touch": n, + "matchesselector": n, + "pointer-events": y, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": n, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": n, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": u, + "input-color": n, + "input-number": n, + "getboundingclientrect": y, + "iframe-sandbox": n, + "css-counters": y, + "css-resize": y, + "input-placeholder": a, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": a, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": n, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": n, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": a, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": n, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": n, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": a, + "currentcolor": y, + "input-pattern": n, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": n, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": n, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": n, + "es5": a, + "page-transition-events": n, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": a, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": n, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": n, + "customevent": n, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": n, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": a, + "proxy": n, + "keyboardevent-which": n, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": n, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": n, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": n, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": u, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": n, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": u, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/safari-5.1.scss b/app/assets/stylesheets/admin/safari-5.1.scss new file mode 100644 index 0000000..413427c --- /dev/null +++ b/app/assets/stylesheets/admin/safari-5.1.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Safari 5.1 (approximately 0.05% of all users) + * + */ + +$browser: safari; +$browser_prefix: webkit; +$browser_version: 5.1; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": a, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": yx, + "css-transitions": yx, + "font-feature": a, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": a, + "svg-fonts": y, + "svg-filters": n, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": a, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": a, + "deviceorientation": n, + "script-defer": y, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": u, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": yx, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": a, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": y, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": y, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": a, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": n, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/safari-5.scss b/app/assets/stylesheets/admin/safari-5.scss new file mode 100644 index 0000000..a305060 --- /dev/null +++ b/app/assets/stylesheets/admin/safari-5.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Safari 5.0 (approximately 0.04% of all users) + * + */ + +$browser: safari; +$browser_prefix: webkit; +$browser_version: 5.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": n, + "multibackgrounds": y, + "border-image": ax, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": yx, + "css3-colors": y, + "css3-boxsizing": yx, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": a, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": yx, + "font-feature": a, + "css-animation": yx, + "css-gradients": ax, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": a, + "svg-fonts": y, + "svg-filters": n, + "svg-html": a, + "svg-html5": p, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": n, + "fileapi": n, + "shadowdom": n, + "websockets": a, + "hidden": n, + "script-async": a, + "mediasource": n, + "cors": a, + "css-backdrop-filter": n, + "calc": n, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": a, + "json": y, + "classlist": p, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": p, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": n, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": a, + "css-grid": n, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": n, + "filereader": n, + "filesystem": n, + "bloburls": n, + "rellist": n, + "typedarrays": n, + "deviceorientation": n, + "script-defer": y, + "nav-timing": n, + "audio-api": n, + "css-regions": n, + "spellcheck-attribute": n, + "fullscreen": n, + "css-exclusions": n, + "requestanimationframe": n, + "input-range": y, + "matchmedia": n, + "input-datetime": n, + "document-execcommand": u, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": n, + "css-filters": n, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": n, + "contentsecuritypolicy": n, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": n, + "webp": n, + "input-autocomplete-onoff": n, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": n, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": n, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": p, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": n, + "imports": n, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": n, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": n, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": u, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": y, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": n, + "font-variant-alternates": n, + "form-attribute": u, + "es5": a, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": n, + "progress": n, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": n, + "css-first-letter": u, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": n, + "css-writing-mode": u, + "customevent": u, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": u, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": u, + "proxy": n, + "keyboardevent-which": u, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": a, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": u, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": u, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": n, + "css-nth-child-of": n, + "focusin-focusout-events": u, + "css-matches-pseudo": u, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": u, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": u, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": u, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": n, + "mediarecorder": n, + "readonly-attr": u, + "x-frame-options": u, + "indeterminate-checkbox": n, + "tabindex-attr": u, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": u, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": n, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": n, + "es6-module": n, + "es6-class": n, + "ping": n, + "form-submit-attributes": n, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/safari-6.1.scss b/app/assets/stylesheets/admin/safari-6.1.scss new file mode 100644 index 0000000..ebbd809 --- /dev/null +++ b/app/assets/stylesheets/admin/safari-6.1.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Safari 6.1 (approximately 0.03% of all users) + * + */ + +$browser: safari; +$browser_prefix: webkit; +$browser_version: 6.1; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": n, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": yx, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": n, + "script-defer": y, + "nav-timing": n, + "audio-api": yx, + "css-regions": yx, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": yx, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": y, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": u +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/safari-6.scss b/app/assets/stylesheets/admin/safari-6.scss new file mode 100644 index 0000000..987f502 --- /dev/null +++ b/app/assets/stylesheets/admin/safari-6.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Safari 6.0 (approximately 0.0% of all users) + * + */ + +$browser: safari; +$browser_prefix: webkit; +$browser_version: 6.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": a, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": a, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": y, + "css-hyphens": yx, + "css-transitions": yx, + "font-feature": a, + "css-animation": yx, + "css-gradients": yx, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": ax, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": a, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": yx, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": a, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": n, + "wordwrap": a, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": yx, + "rellist": n, + "typedarrays": y, + "deviceorientation": n, + "script-defer": y, + "nav-timing": n, + "audio-api": yx, + "css-regions": n, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": yx, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": yx, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": a, + "contentsecuritypolicy": y, + "pagevisibility": n, + "stricttransportsecurity": n, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": n, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": y, + "intrinsic-width": n, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": n, + "mutationobserver": yx, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": n, + "midi": n, + "canvas-blending": n, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": n, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": n, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": n, + "getrandomvalues": n, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": yx, + "css-boxdecorationbreak": n, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": n, + "jpeg2000": y, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": u, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": a, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": u, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": u, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": u, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": n, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": u, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": n, + "tls1-1": n, + "input-inputmode": n, + "ch-unit": n, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": u, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": u, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": n, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": n +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/safari-7.1.scss b/app/assets/stylesheets/admin/safari-7.1.scss new file mode 100644 index 0000000..e12fd50 --- /dev/null +++ b/app/assets/stylesheets/admin/safari-7.1.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Safari 7.1 (approximately 0.0% of all users) + * + */ + +$browser: safari; +$browser_prefix: webkit; +$browser_version: 7.1; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": n, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": a, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": yx, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": a, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": n, + "script-defer": y, + "nav-timing": n, + "audio-api": yx, + "css-regions": yx, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": yx, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": y, + "css-sticky": yx, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": a, + "css-mixblendmode": a, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": n, + "srcset": a, + "ambient-light": n, + "will-change": n, + "css-shapes": yx, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": yx, + "jpeg2000": y, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/safari-7.scss b/app/assets/stylesheets/admin/safari-7.scss new file mode 100644 index 0000000..ce31f08 --- /dev/null +++ b/app/assets/stylesheets/admin/safari-7.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Safari 7.0 (approximately 0.02% of all users) + * + */ + +$browser: safari; +$browser_prefix: webkit; +$browser_version: 7.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": n, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": p, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": yx, + "webgl": a, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": n, + "xhr2": a, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": n, + "script-defer": y, + "nav-timing": n, + "audio-api": yx, + "css-regions": yx, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": n, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": p, + "template": n, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": p, + "css-sticky": yx, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": n, + "css-mixblendmode": n, + "speech-recognition": n, + "high-resolution-time": n, + "battery-status": n, + "serviceworkers": n, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": n, + "srcset": n, + "ambient-light": n, + "will-change": n, + "css-shapes": n, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": a, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": n, + "background-attachment": y, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": yx, + "jpeg2000": y, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": n, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": n, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": n, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/safari-8.scss b/app/assets/stylesheets/admin/safari-8.scss new file mode 100644 index 0000000..f570f33 --- /dev/null +++ b/app/assets/stylesheets/admin/safari-8.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Safari 8.0 (approximately 0.08% of all users) + * + */ + +$browser: safari; +$browser_prefix: webkit; +$browser_version: 8.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": yx, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": yx, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": n, + "css-animation": yx, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": a, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": n, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": yx, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": a, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": n, + "svg-img": a, + "datalist": p, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": n, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": yx, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": a, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": yx, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": yx, + "webvtt": y, + "promises": y, + "css-sticky": yx, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": a, + "css-mixblendmode": a, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": n, + "srcset": a, + "ambient-light": n, + "will-change": n, + "css-shapes": yx, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": n, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": ax, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": ax, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": n, + "font-kerning": yx, + "jpeg2000": y, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": n, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": nd, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/safari-9.1.scss b/app/assets/stylesheets/admin/safari-9.1.scss new file mode 100644 index 0000000..a739c06 --- /dev/null +++ b/app/assets/stylesheets/admin/safari-9.1.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Safari 9.1 (approximately 0.38% of all users) + * + */ + +$browser: safari; +$browser_prefix: webkit; +$browser_version: 9.1; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": a, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": yx, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": a, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": n, + "svg-img": y, + "datalist": p, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": n, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": yx, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": yx, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": yx, + "dialog": n, + "css-variables": y, + "vibration": n, + "css-backgroundblendmode": a, + "css-mixblendmode": a, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": n, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": yx, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": ax, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": ax, + "input-minlength": n, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": a, + "font-kerning": y, + "jpeg2000": y, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": y, + "progress": y, + "css-filter-function": y, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": y, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": y, + "focusin-focusout-events": y, + "css-matches-pseudo": y, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": ax, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": y, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": nd, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/safari-9.scss b/app/assets/stylesheets/admin/safari-9.scss new file mode 100644 index 0000000..abd0391 --- /dev/null +++ b/app/assets/stylesheets/admin/safari-9.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Safari 9.0 (approximately 0.1% of all users) + * + */ + +$browser: safari; +$browser_prefix: webkit; +$browser_version: 9.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": n, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": n, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": a, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": a, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": a, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": yx, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": a, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": a, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": n, + "svg-img": y, + "datalist": p, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": n, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": yx, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": n, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": n, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": a, + "intrinsic-width": ax, + "cryptography": yx, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": yx, + "dialog": n, + "css-variables": n, + "vibration": n, + "css-backgroundblendmode": a, + "css-mixblendmode": a, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": n, + "srcset": y, + "ambient-light": n, + "will-change": n, + "css-shapes": yx, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": n, + "woff2": n, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": n, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": n, + "font-unicode-range": a, + "gamepad": n, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": ax, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": ax, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": n, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": a, + "registerprotocolhandler": n, + "css-snappoints": ax, + "input-minlength": n, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": n, + "permissions-api": n, + "http2": a, + "font-kerning": yx, + "jpeg2000": y, + "upgradeinsecurerequests": n, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": y, + "progress": y, + "css-filter-function": yx, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": n, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": n, + "insertadjacenthtml": y, + "let": n, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": n, + "keyboardevent-key": n, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": p, + "css-in-out-of-range": a, + "push-api": n, + "template-literals": n, + "flac": n, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": y, + "focusin-focusout-events": y, + "css-matches-pseudo": y, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": y, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": a, + "webgl2": n, + "css-initial-letter": a, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": y, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": n, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": n, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": a, + "http-live-streaming": y, + "es6-module": n, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": nd, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/safari-TP.scss b/app/assets/stylesheets/admin/safari-TP.scss new file mode 100644 index 0000000..e874f01 --- /dev/null +++ b/app/assets/stylesheets/admin/safari-TP.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Safari 0.0 (approximately 0.0% of all users) + * + */ + +$browser: safari; +$browser_prefix: webkit; +$browser_version: 0.0; +$browser_type: desktop; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": y, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": y, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": y, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": n, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": a, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": n, + "css-hyphens": yx, + "css-transitions": y, + "font-feature": y, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": y, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": n, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": y, + "cors": y, + "css-backdrop-filter": yx, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": p, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": y, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": y, + "chacha20-poly1305": n, + "inline-block": y, + "notifications": y, + "stream": n, + "svg-img": y, + "datalist": p, + "dataset": y, + "css-grid": y, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": n, + "matchesselector": y, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": y, + "typedarrays": y, + "deviceorientation": n, + "script-defer": y, + "nav-timing": y, + "audio-api": yx, + "css-regions": yx, + "spellcheck-attribute": y, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": n, + "document-execcommand": y, + "input-color": y, + "input-number": y, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": y, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": y, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": y, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": n, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": n, + "input-autocomplete-onoff": a, + "intrinsic-width": a, + "cryptography": yx, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": a, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": y, + "css-deviceadaptation": n, + "text-emphasis": y, + "midi": n, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": n, + "css3-cursors": y, + "css3-cursors-newer": y, + "webvtt": y, + "promises": y, + "css-sticky": yx, + "dialog": n, + "css-variables": y, + "vibration": n, + "css-backgroundblendmode": a, + "css-mixblendmode": a, + "speech-recognition": n, + "high-resolution-time": y, + "battery-status": n, + "serviceworkers": n, + "text-decoration": ax, + "iframe-srcdoc": y, + "speech-synthesis": y, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": a, + "text-size-adjust": n, + "web-animation": n, + "resource-timing": y, + "custom-elements": p, + "imports": p, + "input-file-multiple": y, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": n, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": n, + "font-loading": y, + "font-unicode-range": y, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": a, + "css-media-resolution": ax, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": n, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": y, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": a, + "background-attachment": y, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": y, + "input-minlength": y, + "css-media-interaction": y, + "ime": n, + "font-smooth": ax, + "audiotracks": y, + "videotracks": y, + "contentsecuritypolicy2": y, + "permissions-api": n, + "http2": a, + "font-kerning": y, + "jpeg2000": y, + "upgradeinsecurerequests": y, + "publickeypinning": n, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": y, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": n, + "meter": y, + "progress": y, + "css-filter-function": y, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": n, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": y, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": y, + "arrow-functions": y, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": y, + "link-rel-prerender": n, + "rest-parameters": y, + "css-cross-fade": y, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": n, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": y, + "keyboardevent-which": y, + "keyboardevent-charcode": y, + "keyboardevent-code": y, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": y, + "brotli": n, + "element-closest": y, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": a, + "css-in-out-of-range": y, + "push-api": n, + "template-literals": y, + "flac": n, + "background-position-x-y": y, + "css-revert-value": y, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": y, + "focusin-focusout-events": y, + "css-matches-pseudo": y, + "rel-noopener": y, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": y, + "css-case-insensitive": y, + "css-default-pseudo": y, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": nd, + "css-initial-letter": ax, + "document-currentscript": y, + "css-descendant-gtgt": y, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": y, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": y, + "dom-manip-convenience": y, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": y, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": y, + "passive-event-listener": y, + "selection-api": y, + "payment-request": n, + "shadowdomv1": a, + "urlsearchparams": y, + "css-font-rendering-controls": n, + "wasm": y, + "css-paged-media": n, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": n, + "comparedocumentposition": y, + "http-live-streaming": y, + "es6-module": y, + "es6-class": y, + "ping": y, + "form-submit-attributes": y, + "async-functions": y, + "html-media-capture": n, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": y, + "beforeafterprint": n, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": y, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/assets/stylesheets/admin/samsung-4.scss b/app/assets/stylesheets/admin/samsung-4.scss new file mode 100644 index 0000000..6d4f876 --- /dev/null +++ b/app/assets/stylesheets/admin/samsung-4.scss @@ -0,0 +1,425 @@ +/* + * ../admin + * Browser: Samsung Internet 4.0 (approximately 3.5% of all users) + * + */ + +$browser: samsung; +$browser_prefix: webkit; +$browser_version: 4.0; +$browser_type: mobile; + +// CSS Compatibility + +$browser_capabilities: ( + "png-alpha": y, + "apng": n, + "video": y, + "audio": y, + "contenteditable": y, + "dragndrop": n, + "internationalization": y, + "queryselector": y, + "getelementsbyclassname": y, + "forms": a, + "html5semantic": y, + "css-line-clamp": yx, + "offline-apps": y, + "webworkers": y, + "fontface": y, + "eot": n, + "woff": y, + "multibackgrounds": y, + "border-image": a, + "background-img-opts": y, + "css-table": y, + "css-gencontent": y, + "css-fixed": y, + "beacon": y, + "hashchange": y, + "css-sel2": y, + "css-sel3": y, + "css-textshadow": y, + "css-boxshadow": y, + "css3-colors": y, + "css3-boxsizing": y, + "css-mediaqueries": y, + "multicolumn": ax, + "border-radius": y, + "transforms2d": y, + "use-strict": y, + "devicepixelratio": y, + "transforms3d": y, + "sharedworkers": y, + "css-hyphens": n, + "css-transitions": y, + "font-feature": yx, + "css-animation": y, + "css-gradients": y, + "css-canvas": yx, + "css-reflections": yx, + "css-masks": ax, + "console-basic": y, + "svg": y, + "svg-css": y, + "svg-smil": y, + "svg-fonts": y, + "svg-filters": y, + "svg-html": a, + "svg-html5": y, + "canvas": y, + "canvas-text": y, + "namevalue-storage": y, + "sql-storage": y, + "indexeddb": y, + "online-status": y, + "eventsource": y, + "x-doc-messaging": y, + "sni": y, + "datauri": y, + "wav": y, + "mathml": p, + "css-featurequeries": y, + "xhtml": y, + "xhtmlsmil": p, + "wai-aria": a, + "geolocation": y, + "flexbox": y, + "webgl": y, + "fileapi": y, + "shadowdom": yx, + "websockets": y, + "hidden": y, + "script-async": y, + "mediasource": n, + "cors": y, + "css-backdrop-filter": n, + "calc": y, + "dom-range": y, + "ruby": a, + "css-opacity": y, + "form-validation": y, + "history": y, + "json": y, + "classlist": y, + "text-overflow": y, + "webm": a, + "mpeg4": y, + "ogv": n, + "wordwrap": y, + "pointerlock": n, + "object-fit": y, + "xhr2": y, + "minmaxwh": y, + "details": y, + "text-stroke": yx, + "chacha20-poly1305": y, + "inline-block": y, + "notifications": ax, + "stream": u, + "svg-img": y, + "datalist": y, + "dataset": y, + "css-grid": p, + "menu": n, + "css-zoom": y, + "rem": y, + "ttf": y, + "touch": y, + "matchesselector": ax, + "pointer-events": y, + "blobbuilder": y, + "filereader": y, + "filesystem": n, + "bloburls": y, + "rellist": n, + "typedarrays": y, + "deviceorientation": a, + "script-defer": y, + "nav-timing": y, + "audio-api": y, + "css-regions": n, + "spellcheck-attribute": a, + "fullscreen": ax, + "css-exclusions": n, + "requestanimationframe": y, + "input-range": y, + "matchmedia": y, + "input-datetime": y, + "document-execcommand": y, + "input-color": y, + "input-number": a, + "getboundingclientrect": y, + "iframe-sandbox": y, + "css-counters": y, + "css-resize": n, + "input-placeholder": y, + "spdy": y, + "css-repeating-gradients": y, + "css-filters": yx, + "getcomputedstyle": y, + "mp3": y, + "word-break": y, + "viewport-units": y, + "contentsecuritypolicy": y, + "pagevisibility": yx, + "stricttransportsecurity": y, + "style-scoped": n, + "svg-fragment": a, + "outline": y, + "download": y, + "pointer": p, + "user-select-none": yx, + "input-file-accept": a, + "webp": y, + "input-autocomplete-onoff": y, + "intrinsic-width": yx, + "cryptography": y, + "template": y, + "opus": n, + "jpegxr": n, + "channel-messaging": y, + "css3-tabsize": y, + "mutationobserver": y, + "css-selection": y, + "css-placeholder": ax, + "css-deviceadaptation": n, + "text-emphasis": ax, + "midi": y, + "canvas-blending": y, + "clipboard": a, + "rtcpeerconnection": yx, + "css3-cursors": n, + "css3-cursors-newer": n, + "webvtt": y, + "promises": y, + "css-sticky": n, + "dialog": y, + "css-variables": n, + "vibration": y, + "css-backgroundblendmode": y, + "css-mixblendmode": n, + "speech-recognition": ax, + "high-resolution-time": y, + "battery-status": y, + "serviceworkers": a, + "text-decoration": n, + "iframe-srcdoc": y, + "speech-synthesis": n, + "user-timing": y, + "srcset": y, + "ambient-light": n, + "will-change": y, + "css-shapes": y, + "domcontentloaded": y, + "proximity": n, + "kerning-pairs-ligatures": y, + "iframe-seamless": n, + "css-image-orientation": n, + "picture": y, + "woff2": y, + "text-size-adjust": n, + "web-animation": a, + "resource-timing": y, + "custom-elements": y, + "imports": y, + "input-file-multiple": n, + "atob-btoa": y, + "css-appearance": ax, + "objectrtc": n, + "css-background-offsets": y, + "css-supports-api": y, + "css-touch-action": y, + "autofocus": y, + "css-clip-path": ax, + "getrandomvalues": y, + "screen-orientation": u, + "font-loading": y, + "font-unicode-range": a, + "gamepad": y, + "css-font-stretch": n, + "font-size-adjust": n, + "link-icon-png": y, + "link-icon-svg": n, + "css-media-resolution": y, + "xml-serializer": y, + "css-image-set": yx, + "css-boxdecorationbreak": ax, + "object-observe": y, + "css-at-counter-style": n, + "css-page-break": a, + "css-placeholder-shown": n, + "broadcastchannel": n, + "css-crisp-edges": y, + "css-text-align-last": n, + "css-logical-props": ax, + "fetch": y, + "referrer-policy": n, + "background-attachment": n, + "currentcolor": y, + "input-pattern": y, + "registerprotocolhandler": n, + "css-snappoints": n, + "input-minlength": n, + "css-media-interaction": n, + "ime": n, + "font-smooth": n, + "audiotracks": n, + "videotracks": n, + "contentsecuritypolicy2": y, + "permissions-api": y, + "http2": y, + "font-kerning": y, + "jpeg2000": n, + "upgradeinsecurerequests": y, + "publickeypinning": y, + "input-email-tel-url": y, + "fieldset-disabled": y, + "font-variant-alternates": n, + "form-attribute": y, + "es5": y, + "page-transition-events": y, + "ogg-vorbis": y, + "meter": y, + "progress": y, + "css-filter-function": n, + "css-element-function": n, + "u2f": n, + "aac": y, + "link-rel-prefetch": y, + "ol-reversed": y, + "css-first-letter": y, + "wbr-element": y, + "const": a, + "css-all": y, + "css-initial-value": y, + "css-letter-spacing": y, + "css-unset-value": y, + "insertadjacenthtml": y, + "let": a, + "arrow-functions": n, + "asmjs": n, + "lazyload": n, + "link-rel-dns-prefetch": u, + "link-rel-prerender": y, + "rest-parameters": n, + "css-cross-fade": yx, + "css-writing-mode": yx, + "customevent": y, + "textcontent": y, + "addeventlistener": y, + "dispatchevent": y, + "documenthead": y, + "innertext": y, + "client-hints-dpr-width-viewport": n, + "link-rel-preconnect": n, + "netinfo": a, + "setimmediate": n, + "es6-number": y, + "maxlength": y, + "proxy": n, + "keyboardevent-which": n, + "keyboardevent-charcode": y, + "keyboardevent-code": n, + "keyboardevent-location": y, + "keyboardevent-getmodifierstate": y, + "keyboardevent-key": n, + "brotli": n, + "element-closest": n, + "input-event": y, + "input-search": y, + "css-motion-paths": n, + "css-scroll-behavior": n, + "subresource-integrity": n, + "custom-elementsv1": n, + "css-in-out-of-range": a, + "push-api": y, + "template-literals": y, + "flac": y, + "background-position-x-y": y, + "css-revert-value": n, + "css-widows-orphans": y, + "web-bluetooth": n, + "scrollintoview": a, + "css-nth-child-of": n, + "focusin-focusout-events": y, + "css-matches-pseudo": ax, + "rel-noopener": n, + "css-text-justify": n, + "css-scrollbar": yx, + "link-rel-preload": n, + "css-case-insensitive": n, + "css-default-pseudo": a, + "css-optional-pseudo": y, + "css-indeterminate-pseudo": y, + "webgl2": n, + "css-initial-letter": n, + "document-currentscript": y, + "css-descendant-gtgt": n, + "same-site-cookie-attribute": n, + "css-has": n, + "css-not-sel-list": n, + "credential-management": n, + "css-dir-pseudo": n, + "css-focus-within": n, + "dom-manip-convenience": n, + "requestidlecallback": n, + "scrollintoviewifneeded": y, + "css3-attr": n, + "sdch": n, + "css-containment": n, + "tls1-2": y, + "tls1-1": y, + "input-inputmode": n, + "ch-unit": y, + "img-naturalwidth-naturalheight": y, + "filereadersync": y, + "mediarecorder": n, + "readonly-attr": y, + "x-frame-options": a, + "indeterminate-checkbox": y, + "tabindex-attr": u, + "textencoder": y, + "element-from-point": y, + "insert-adjacent": y, + "once-event-listener": n, + "passive-event-listener": n, + "selection-api": y, + "payment-request": n, + "shadowdomv1": n, + "urlsearchparams": n, + "css-font-rendering-controls": n, + "wasm": n, + "css-paged-media": y, + "childnode-remove": y, + "css-first-line": y, + "mutation-events": a, + "web-app-manifest": y, + "comparedocumentposition": y, + "http-live-streaming": y, + "es6-module": n, + "es6-class": n, + "ping": y, + "form-submit-attributes": y, + "async-functions": n, + "html-media-capture": y, + "css-text-indent": a, + "intersectionobserver": n, + "css-marker-pseudo": n, + "url": y, + "flow-root": n, + "css-rrggbbaa": n, + "beforeafterprint": u, + "webvr": n, + "css-apply-rule": n, + "css-hanging-punctuation": n, + "background-repeat-round-space": y, + "document-evaluate-xpath": y, + "css-namespaces": y, + "css-overflow-anchor": n, + "hardwareconcurrency": y, + "css-rebeccapurple": y +); + +@import "bumbleberry-settings"; +@import "../admin"; diff --git a/app/controllers/conferences_controller.rb b/app/controllers/conferences_controller.rb index 81a2c0a..3b1ca95 100644 --- a/app/controllers/conferences_controller.rb +++ b/app/controllers/conferences_controller.rb @@ -48,32 +48,54 @@ class ConferencesController < ApplicationController if logged_in? if request.post? # update this step - result = update_registration_step(params[:step].to_sym, @this_conference, current_user, params) + result = if params[:step].to_sym == :confirm_payment + request_data = paypal_payment_request_data(@this_conference, current_user) + paypal_confirm_request = paypal_payment_request(request_data[:amount], request_data[:currency]) + update_registration_step!(:payment_form, @this_conference, current_user, params) do + paypal_payment_complete(paypal_confirm_request, @this_conference, current_user, params) + end + else + update_registration_step(params[:step].to_sym, @this_conference, current_user, params) + end # set the message if we got one @update_status = result[:status] @update_message = result[:message] # pass any data on to the view - (result[:data] || {}).each do |key, value| - instance_variable_set("@#{key}", value) unless instance_variable_defined?("@#{key}") - end - - if result[:exception].present? && Rails.env.development? - raise result[:exception] + data_to_instance_variables(result[:data]) + + raise result[:exception] if result[:exception].present? && Rails.env.development? + + if @update_status == :paypal_redirect + pp_response = @request.setup( + paypal_payment_request(@amount, @currency), + register_url(@this_conference.slug, @confirm_args), + register_url(@this_conference.slug, @cancel_args), + noshipping: true, + version: 204 + ) + return redirect_to pp_response.redirect_uri end end + view_context.add_stylesheet 'quill.css' + view_context.add_javascript :quill + view_context.add_inline_script :editor + # get the current step @step = current_registration_step(@this_conference, current_user) + if @step == :payment_form && params[:token].present? + result = paypal_payment_confirm(@this_conference, current_user, params) + data_to_instance_variables(result) + @confirm_payment = true + end + # set up the next step result = registration_step(@step, @this_conference, current_user) - # pass any data on to the view - (result || {}).each do |key, value| - instance_variable_set("@#{key}", value) unless instance_variable_defined?("@#{key}") - end + data_to_instance_variables(result) end if request.xhr? @@ -442,26 +464,29 @@ class ConferencesController < ApplicationController do_404 end - private +private - def PayPal! - Paypal::Express::Request.new( - username: @this_conference.paypal_username, - password: @this_conference.paypal_password, - signature: @this_conference.paypal_signature - ) - end + def send_registration_confirmation_email(registration) + send_mail(:registration_confirmation, registration.id) + end - def PayPalRequest(amount) - Paypal::Payment::Request.new( - currency_code: 'USD', # if nil, PayPal use USD as default - description: 'Conference Registration', # item description - quantity: 1, # item quantity - amount: amount.to_f, # item value - custom_fields: { - CARTBORDERCOLOR: "00ADEF", - LOGOIMG: "https://en.bikebike.org/assets/bblogo-paypal.png" - } - ) + def paypal_payment_request(amount, currency) + Paypal::Payment::Request.new( + currency_code: currency.to_s, + description: 'Bike!Bike! Registration', + quantity: 1, + amount: amount.to_f, + custom_fields: { + CARTBORDERCOLOR: "00ADEF", + LOGOIMG: "https://en.bikebike.org/assets/bblogo-paypal.png" + } + ) + end + + def data_to_instance_variables(data) + return unless data + data.each do |key, value| + instance_variable_set("@#{key}", value) unless instance_variable_defined?("@#{key}") end + end end diff --git a/app/helpers/form_helper.rb b/app/helpers/form_helper.rb index e48ee4a..3516994 100644 --- a/app/helpers/form_helper.rb +++ b/app/helpers/form_helper.rb @@ -379,7 +379,7 @@ module FormHelper return html.html_safe end - def radiobuttons(name, boxes, value, label_key, options = {}) + def radiobuttons(name, boxes, value, label_key = '', options = {}) checkboxes(name, boxes, [value], label_key, options.merge({radiobuttons: true})) end @@ -404,7 +404,7 @@ module FormHelper return new_id end - def checkboxes(name, boxes, values, label_key, options = {}) + def checkboxes(name, boxes, values, label_key = '', options = {}) html = '' boxes.map! { |box| box.is_a?(String) ? box.to_sym : box } values.map! { |value| value.is_a?(String) ? value.to_sym : value } if values.is_a?(Array) diff --git a/app/helpers/i18n_helper.rb b/app/helpers/i18n_helper.rb index 53ef70a..1b56ebe 100644 --- a/app/helpers/i18n_helper.rb +++ b/app/helpers/i18n_helper.rb @@ -32,7 +32,7 @@ module I18nHelper end def date(date, format = :long) - I18n.l(date.is_a?(String) ? Date.parse(date) : date, :format => format) + I18n.l(date.is_a?(String) ? Date.parse(date) : date, format: format) end def time(time, format = :short) @@ -54,7 +54,7 @@ module I18nHelper end d1 = I18n.l(date1.to_date, format: "span_#{key}_date_1".to_sym) d2 = I18n.l(date2.to_date, format: "span_#{key}_date_2".to_sym) - _('date.date_span', vars: {:date_1 => d1, :date_2 => d2}) + _('date.date_span', vars: { date_1: d1, date_2: d2 }) end def time_length(length) diff --git a/app/helpers/registration_helper.rb b/app/helpers/registration_helper.rb index 2527fa2..f0e941e 100644 --- a/app/helpers/registration_helper.rb +++ b/app/helpers/registration_helper.rb @@ -78,12 +78,16 @@ module RegistrationHelper end.html_safe end - def registration_step_header_title(step = @step, vars = nil) + def registration_step_header_title_string(step = @step, vars = nil) if step.is_a?(Hash) vars = step step = @step end - content_tag(:h2, (_"articles.conference_registration.headings.#{@step}", :t, 2, vars: vars || {})).html_safe + _("articles.conference_registration.headings.#{step}", :t, 2, vars: vars || {}) + end + + def registration_step_header_title(step = @step, vars = nil) + content_tag(:h2, registration_step_header_title_string(step, vars)).html_safe end def registration_step_header_description(step = @step, vars = nil) @@ -91,22 +95,32 @@ module RegistrationHelper vars = step step = @step end - content_tag(:p, (_"articles.conference_registration.paragraphs.#{@step}", :p, 2, vars: vars || {})).html_safe + content_tag(:p, (_"articles.conference_registration.paragraphs.#{step}", :p, 2, vars: vars || {})).html_safe end - def save_registration_step(conference = @this_conference, step = @step, &block) + def save_registration_step(conference = @this_conference, step = @step, registration = nil, &block) + registration ||= ConferenceRegistration.find_by(user_id: current_user.id, conference_id: conference.id) + buttons = [:back] case step.to_sym when :policy buttons = [:agree] - when :name, :languages, :org_location, :org_create_name, :org_create_address, :org_create_email, :org_create_mailing_address, :housing_companion_email, :housing_companion_invite, :housing_allergies, :housing_other + when :name, :languages, :org_location, :org_create_name, :org_create_address, :org_create_email, :org_create_mailing_address, + :housing_companion_email, :housing_companion_invite, :housing_allergies, :housing_other, :org_non_member_interest, + :hosting_address, :hosting_phone, :hosting_space_beds, :hosting_space_floor, :hosting_info, :hosting_other buttons = [:next, :back] when :org_location_confirm buttons = [:yes, :back] + when :confirm_payment + buttons = [:confirm, :cancel] when :review buttons = nil end + if buttons.present? && registration.present? && registration.registration_complete? + buttons << :review + end + content = block.present? ? capture(&block) : '' actions = '' if buttons.present? diff --git a/app/views/application/_header.html.haml b/app/views/application/_header.html.haml index 8f77b99..4cb6029 100644 --- a/app/views/application/_header.html.haml +++ b/app/views/application/_header.html.haml @@ -15,6 +15,6 @@ = I18n.t(@page_title || "page_titles.#{page_group.to_s}.#{page_key.to_s}", @page_title_vars) = row do = columns do - %h1=_(@main_title || "page_titles.#{page_group.to_s}.#{page_key.to_s}", :t, @main_title_vars || (@page_title_vars.present? && @page_title.blank? ? { vars: @page_title_vars } : nil)) + %h1=@main_title_t || _(@main_title || "page_titles.#{page_group.to_s}.#{page_key.to_s}", :t, @main_title_vars || (@page_title_vars.present? && @page_title.blank? ? { vars: @page_title_vars } : nil)) - content_for :og_image do = image diff --git a/app/views/conferences/_page_header.html.haml b/app/views/conferences/_page_header.html.haml index bd4e46e..23af1cb 100644 --- a/app/views/conferences/_page_header.html.haml +++ b/app/views/conferences/_page_header.html.haml @@ -1 +1,3 @@ -= render :partial => 'application/header', :locals => {:page_group => :conferences, :page_key => page_key, :image_file => @this_conference.poster_url} +- @main_title_t ||= (@this_conference.title) +-# @page_title ||= (@this_conference.title) += render partial: 'application/header', locals: { page_group: :conferences, page_key: page_key, image_file: @this_conference.poster_url } diff --git a/app/views/registration_steps/_hosting_address.html.haml b/app/views/registration_steps/_hosting_address.html.haml new file mode 100644 index 0000000..d8a490e --- /dev/null +++ b/app/views/registration_steps/_hosting_address.html.haml @@ -0,0 +1,9 @@ += registration_step_header(description: { city: @city.city }) += row do + = columns(medium: 12) do + = save_registration_step do + = textfield :address, @address, required: true, big: true + .multi-field + = textfield :city, @city.city, readonly: true + = textfield :territory, @city.translate_territory, readonly: true + = textfield :country, @city.translate_country, readonly: true diff --git a/app/views/registration_steps/_hosting_attending.html.haml b/app/views/registration_steps/_hosting_attending.html.haml new file mode 100644 index 0000000..e509f59 --- /dev/null +++ b/app/views/registration_steps/_hosting_attending.html.haml @@ -0,0 +1,10 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + .registration-step-options + .options + - [:yes, :no].each do |option| + - class_name = [:unstyled] + - class_name << :selected if @is_attending == (option == :yes) + = button option, value: option, class: class_name diff --git a/app/views/registration_steps/_hosting_check.html.haml b/app/views/registration_steps/_hosting_check.html.haml new file mode 100644 index 0000000..76e95bc --- /dev/null +++ b/app/views/registration_steps/_hosting_check.html.haml @@ -0,0 +1,10 @@ += registration_step_header(description: { city: @city.city, date_span: date_span(@min_date, @max_date) }) += row do + = columns(medium: 12) do + = save_registration_step do + .registration-step-options + .options + - [:yes, :no].each do |option| + - class_name = [:unstyled] + - class_name << :selected if @can_provide_housing == (option == :yes) + = button option, value: option, class: class_name diff --git a/app/views/registration_steps/_hosting_end_date.html.haml b/app/views/registration_steps/_hosting_end_date.html.haml new file mode 100644 index 0000000..115bdf9 --- /dev/null +++ b/app/views/registration_steps/_hosting_end_date.html.haml @@ -0,0 +1,5 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + = calendar_day_select :date, @date, (@min_date..@max_date), (@conference_start_date..@conference_end_date) diff --git a/app/views/registration_steps/_hosting_info.html.haml b/app/views/registration_steps/_hosting_info.html.haml new file mode 100644 index 0000000..e3947b8 --- /dev/null +++ b/app/views/registration_steps/_hosting_info.html.haml @@ -0,0 +1,5 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + = textarea :info, @info, required: true, label: false diff --git a/app/views/registration_steps/_hosting_other.html.haml b/app/views/registration_steps/_hosting_other.html.haml new file mode 100644 index 0000000..3761375 --- /dev/null +++ b/app/views/registration_steps/_hosting_other.html.haml @@ -0,0 +1,5 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + = textarea :other, @other, plain: true, short: true, label: false diff --git a/app/views/registration_steps/_hosting_phone.html.haml b/app/views/registration_steps/_hosting_phone.html.haml new file mode 100644 index 0000000..7bb1f6f --- /dev/null +++ b/app/views/registration_steps/_hosting_phone.html.haml @@ -0,0 +1,5 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + = textfield :phone, @phone, required: true, big: true diff --git a/app/views/registration_steps/_hosting_space_beds.html.haml b/app/views/registration_steps/_hosting_space_beds.html.haml new file mode 100644 index 0000000..9adfae1 --- /dev/null +++ b/app/views/registration_steps/_hosting_space_beds.html.haml @@ -0,0 +1,5 @@ += registration_step_header += row do + = columns(medium: 12, class: :centered) do + = save_registration_step do + = numberfield :bed_space, @bed_space, required: true, step: 1, min: 0 diff --git a/app/views/registration_steps/_hosting_space_floor.html.haml b/app/views/registration_steps/_hosting_space_floor.html.haml new file mode 100644 index 0000000..7837930 --- /dev/null +++ b/app/views/registration_steps/_hosting_space_floor.html.haml @@ -0,0 +1,5 @@ += registration_step_header += row do + = columns(medium: 12, class: :centered) do + = save_registration_step do + = numberfield :floor_space, @floor_space, required: true, step: 1, min: 0 diff --git a/app/views/registration_steps/_hosting_space_tent.html.haml b/app/views/registration_steps/_hosting_space_tent.html.haml new file mode 100644 index 0000000..f3f287e --- /dev/null +++ b/app/views/registration_steps/_hosting_space_tent.html.haml @@ -0,0 +1,10 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + .registration-step-options + .options + - [:yes, :no].each do |option| + - class_name = [:unstyled] + - class_name << :selected if @tent_space == (option == :yes) + = button option, value: option, class: class_name diff --git a/app/views/registration_steps/_hosting_start_date.html.haml b/app/views/registration_steps/_hosting_start_date.html.haml new file mode 100644 index 0000000..115bdf9 --- /dev/null +++ b/app/views/registration_steps/_hosting_start_date.html.haml @@ -0,0 +1,5 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + = calendar_day_select :date, @date, (@min_date..@max_date), (@conference_start_date..@conference_end_date) diff --git a/app/views/registration_steps/_housing_allergies.html.haml b/app/views/registration_steps/_housing_allergies.html.haml new file mode 100644 index 0000000..064f691 --- /dev/null +++ b/app/views/registration_steps/_housing_allergies.html.haml @@ -0,0 +1,5 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + = textarea :allergies, @allergies, required: false, plain: true, short: true diff --git a/app/views/registration_steps/_housing_arrival_date.html.haml b/app/views/registration_steps/_housing_arrival_date.html.haml new file mode 100644 index 0000000..4d87d0c --- /dev/null +++ b/app/views/registration_steps/_housing_arrival_date.html.haml @@ -0,0 +1,5 @@ += registration_step_header(description: { city: @city.city, min_date: date(@min_date, :span_same_year_date_1) }) += row do + = columns(medium: 12) do + = save_registration_step do + = calendar_day_select :date, @date, (@min_date..@max_date), (@conference_start_date..@conference_end_date) diff --git a/app/views/registration_steps/_housing_bike.html.haml b/app/views/registration_steps/_housing_bike.html.haml new file mode 100644 index 0000000..f3208be --- /dev/null +++ b/app/views/registration_steps/_housing_bike.html.haml @@ -0,0 +1,10 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + .registration-step-options + .options + - @bike_options.each do |option| + - class_name = [:unstyled] + - class_name << :selected if @bike.present? && @bike.to_sym == option + = button option, value: option, class: class_name diff --git a/app/views/registration_steps/_housing_companion_check.html.haml b/app/views/registration_steps/_housing_companion_check.html.haml new file mode 100644 index 0000000..f5f91f3 --- /dev/null +++ b/app/views/registration_steps/_housing_companion_check.html.haml @@ -0,0 +1,10 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + .registration-step-options + .options + - [:yes, :no].each do |option| + - class_name = [:unstyled] + - class_name << :selected if @has_companion == (option == :yes) + = button option, value: option, class: class_name diff --git a/app/views/registration_steps/_housing_companion_email.html.haml b/app/views/registration_steps/_housing_companion_email.html.haml new file mode 100644 index 0000000..8dccfb3 --- /dev/null +++ b/app/views/registration_steps/_housing_companion_email.html.haml @@ -0,0 +1,5 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + = emailfield :email, @email, required: true, big: true diff --git a/app/views/registration_steps/_housing_companion_invite.html.haml b/app/views/registration_steps/_housing_companion_invite.html.haml new file mode 100644 index 0000000..98964ab --- /dev/null +++ b/app/views/registration_steps/_housing_companion_invite.html.haml @@ -0,0 +1,5 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + = textarea :other, @other, required: false, plain: true, short: true diff --git a/app/views/registration_steps/_housing_departure_date.html.haml b/app/views/registration_steps/_housing_departure_date.html.haml new file mode 100644 index 0000000..0cc2f73 --- /dev/null +++ b/app/views/registration_steps/_housing_departure_date.html.haml @@ -0,0 +1,5 @@ += registration_step_header(description: { city: @city.city, max_date: date(@max_date, :span_same_year_date_1) }) += row do + = columns(medium: 12) do + = save_registration_step do + = calendar_day_select :date, @date, (@min_date..@max_date), (@conference_start_date..@conference_end_date) diff --git a/app/views/registration_steps/_housing_food.html.haml b/app/views/registration_steps/_housing_food.html.haml new file mode 100644 index 0000000..c81e265 --- /dev/null +++ b/app/views/registration_steps/_housing_food.html.haml @@ -0,0 +1,10 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + .vertical-registration-step-options + .options + - @food_options.each do |option| + - class_name = [:unstyled] + - class_name << :selected if @food.present? && @food.to_sym == option + = button "food_#{option}".to_sym, value: option, class: class_name diff --git a/app/views/registration_steps/_housing_other.html.haml b/app/views/registration_steps/_housing_other.html.haml new file mode 100644 index 0000000..98964ab --- /dev/null +++ b/app/views/registration_steps/_housing_other.html.haml @@ -0,0 +1,5 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + = textarea :other, @other, required: false, plain: true, short: true diff --git a/app/views/registration_steps/_housing_type.html.haml b/app/views/registration_steps/_housing_type.html.haml new file mode 100644 index 0000000..0e94a93 --- /dev/null +++ b/app/views/registration_steps/_housing_type.html.haml @@ -0,0 +1,10 @@ += registration_step_header(description: { city: @city.city }) += row do + = columns(medium: 12) do + = save_registration_step do + .vertical-registration-step-options + .options + - @housing_types.each do |type| + - class_name = [:unstyled] + - class_name << :selected if type == @housing + = button "housing_#{type}".to_sym, value: type, class: class_name diff --git a/app/views/registration_steps/_languages.html.haml b/app/views/registration_steps/_languages.html.haml new file mode 100644 index 0000000..1110271 --- /dev/null +++ b/app/views/registration_steps/_languages.html.haml @@ -0,0 +1,5 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + = checkboxes :languages, ConferenceRegistration.all_languages, @languages, 'languages', heading: 'articles.conference_registration.headings.languages' diff --git a/app/views/registration_steps/_name.html.haml b/app/views/registration_steps/_name.html.haml new file mode 100644 index 0000000..aed23bc --- /dev/null +++ b/app/views/registration_steps/_name.html.haml @@ -0,0 +1,5 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + = textfield :name, @name, required: true, big: true diff --git a/app/views/registration_steps/_org_create_address.html.haml b/app/views/registration_steps/_org_create_address.html.haml new file mode 100644 index 0000000..d8a490e --- /dev/null +++ b/app/views/registration_steps/_org_create_address.html.haml @@ -0,0 +1,9 @@ += registration_step_header(description: { city: @city.city }) += row do + = columns(medium: 12) do + = save_registration_step do + = textfield :address, @address, required: true, big: true + .multi-field + = textfield :city, @city.city, readonly: true + = textfield :territory, @city.translate_territory, readonly: true + = textfield :country, @city.translate_country, readonly: true diff --git a/app/views/registration_steps/_org_create_email.html.haml b/app/views/registration_steps/_org_create_email.html.haml new file mode 100644 index 0000000..8dccfb3 --- /dev/null +++ b/app/views/registration_steps/_org_create_email.html.haml @@ -0,0 +1,5 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + = emailfield :email, @email, required: true, big: true diff --git a/app/views/registration_steps/_org_create_mailing_address.html.haml b/app/views/registration_steps/_org_create_mailing_address.html.haml new file mode 100644 index 0000000..ee52041 --- /dev/null +++ b/app/views/registration_steps/_org_create_mailing_address.html.haml @@ -0,0 +1,5 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + = textarea :mailing_address, @address, required: true, plain: true, short: true diff --git a/app/views/registration_steps/_org_create_name.html.haml b/app/views/registration_steps/_org_create_name.html.haml new file mode 100644 index 0000000..aed23bc --- /dev/null +++ b/app/views/registration_steps/_org_create_name.html.haml @@ -0,0 +1,5 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + = textfield :name, @name, required: true, big: true diff --git a/app/views/registration_steps/_org_location.html.haml b/app/views/registration_steps/_org_location.html.haml new file mode 100644 index 0000000..5dc5d8c --- /dev/null +++ b/app/views/registration_steps/_org_location.html.haml @@ -0,0 +1,7 @@ += row do + = columns(medium: 12) do + = registration_step_header_title(@step_name) += row do + = columns(medium: 12) do + = save_registration_step do + = textfield :location, @location, required: true, big: true diff --git a/app/views/registration_steps/_org_location_confirm.html.haml b/app/views/registration_steps/_org_location_confirm.html.haml new file mode 100644 index 0000000..1f9d970 --- /dev/null +++ b/app/views/registration_steps/_org_location_confirm.html.haml @@ -0,0 +1,7 @@ += row do + = columns(medium: 12) do + = registration_step_header_title += row do + = columns(medium: 12) do + = save_registration_step do + %p.center=(_"articles.conference_registration.paragraphs.#{@step}", vars: { city: "#{@city}".html_safe }).html_safe \ No newline at end of file diff --git a/app/views/registration_steps/_org_member.html.haml b/app/views/registration_steps/_org_member.html.haml new file mode 100644 index 0000000..ebcef09 --- /dev/null +++ b/app/views/registration_steps/_org_member.html.haml @@ -0,0 +1,10 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + .registration-step-options + .options + - [:yes, :no].each do |option| + - class_name = [:unstyled] + - class_name << :selected if @org_member == (option == :yes) + = button option, value: option, class: class_name diff --git a/app/views/registration_steps/_org_non_member_interest.html.haml b/app/views/registration_steps/_org_non_member_interest.html.haml new file mode 100644 index 0000000..1ae00ba --- /dev/null +++ b/app/views/registration_steps/_org_non_member_interest.html.haml @@ -0,0 +1,5 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + = textarea :interest, @interest, required: false, plain: true, short: true, label: false diff --git a/app/views/registration_steps/_org_select.html.haml b/app/views/registration_steps/_org_select.html.haml new file mode 100644 index 0000000..1467ccf --- /dev/null +++ b/app/views/registration_steps/_org_select.html.haml @@ -0,0 +1,11 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + .vertical-registration-step-options + .options + - @organizations.each do |org| + - class_name = [:unstyled] + - class_name << :selected if @organization.present? && org.id == @organization.id + = button org.name, value: org.id, name: :org_id, class: class_name + = button :organization_none, value: :create, class: [:unstyled, :secondary] diff --git a/app/views/registration_steps/_payment_form.html.haml b/app/views/registration_steps/_payment_form.html.haml new file mode 100644 index 0000000..79a9a27 --- /dev/null +++ b/app/views/registration_steps/_payment_form.html.haml @@ -0,0 +1,21 @@ +- if @confirm_payment + = registration_step_header(:confirm_payment, description: { amount: (number_to_currency @confirm_amount, unit: '$'), currency: @confirm_currency }) + = row do + = columns(medium: 12) do + = save_registration_step(@this_conference, :confirm_payment) +- else + = registration_step_header + = row do + = columns(medium: 12) do + - unless @currencies.present? && @currencies.length > 1 + %p.center=_"articles.conference_registration.paragraphs.currency_details", :p, vars: { currency: (_"currencies.#{(@currencies || [@currency]).first}.displayName-count-other") } + = save_registration_step do + .registration-step-options + - if @currencies.present? && @currencies.length > 1 + = radiobuttons :currency, (@currencies.map { |c| [(_"currencies.#{c}.displayName-count-other"), c] }), @currency + .options.graded-options{class: "option-count-#{@amounts.size}"} + - @amounts.each_with_index do |option, i| + = button (number_to_currency option, unit: '$'), value: option, name: :value, class: [:unstyled, "option-#{i + 1}"], data: { noxhr: 1 } + .custom-option + = number_field_tag :custom_value, 50.0, step: 0.05, min: 0.05 + = button :custom_amount, name: :custom_amount, value: :custom, class: :unstyled, data: { noxhr: 1 } diff --git a/app/views/registration_steps/_payment_type.html.haml b/app/views/registration_steps/_payment_type.html.haml new file mode 100644 index 0000000..fe2d7b1 --- /dev/null +++ b/app/views/registration_steps/_payment_type.html.haml @@ -0,0 +1,10 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + .vertical-registration-step-options + .options + - @payment_methods.each do |option| + - class_name = [:unstyled] + - class_name << :selected if @payment_method.present? && @payment_method.to_sym == option + = button "payment_#{option}".to_sym, value: option, class: class_name diff --git a/app/views/registration_steps/_policy.html.haml b/app/views/registration_steps/_policy.html.haml new file mode 100644 index 0000000..34a1397 --- /dev/null +++ b/app/views/registration_steps/_policy.html.haml @@ -0,0 +1,14 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + .policy-agreement + %h3=_'articles.policy.headings.The_Agreement' + %ul + - policies.each do |term| + %li + - id = "policies[#{term}]" + = check_box_tag(id, 1, (@accepted_policies || {}).include?(term)) + %label.term{for: id}=_"articles.policy.term.#{term.to_s}", :s, 2 + = columns(medium: 12) do + %p=_'articles.conference_registration.paragraphs.Confirm_Agreement', :p diff --git a/app/views/registration_steps/_review.html.haml b/app/views/registration_steps/_review.html.haml new file mode 100644 index 0000000..a2f6a36 --- /dev/null +++ b/app/views/registration_steps/_review.html.haml @@ -0,0 +1,44 @@ += registration_step_header += row do + = columns(medium: 12) do + = save_registration_step do + - if @is_attending + %table#review + - @step_data.each do |step, data| + - unless data[:type] == :none + %tr + %th + =_"articles.conference_registration.step_names.#{step}" + = button :edit, name: :edit_step, value: step, class: [:unstyled, :edit] + %td + - case data[:type] + - when :bool + =_"forms.actions.generic.#{data[:value] ? 'yes' : 'no'}" + - when :list + = data[:value].map { |item| _"#{data[:key]}.#{item}" }.join(_!(", ")) + - when :currency + = (number_to_currency data[:value].to_f, unit: '$') + =_!(data[:currency].to_s).html_safe + - when :date + = date(data[:value].to_date, :long) + - when :enum + =_("#{data[:key] || ('forms.labels.generic.' + step.to_s + '.')}#{data[:value]}") + - when :html + .scroller= richtext(data[:value].html_safe) + - else + = data[:value] + - else + %p.centered=_'articles.conference_registration.paragraphs.registration_cancelled', :p + - if @allow_cancel_attendance + .actions.centered + = button :cancel_registration, value: :cancel_registration, class: :red + - if @allow_reopen_attendance + .actions.centered + = button :reopen_registration, value: :reopen_registration += row do + = columns(medium: 12) do + %h3=_'articles.workshops.headings.Workshops', :t + %p=_'articles.conference_registration.paragraphs.workshops', :p + .actions.centered + = link_to (_'articles.conference_registration.actions.View_Workshops'), workshops_path(@this_conference), class: :button + = link_to (_'actions.workshops.create'), create_workshop_path(@this_conference), class: [:button, :modify] \ No newline at end of file diff --git a/app/views/registration_steps/_sign_in.html.haml b/app/views/registration_steps/_sign_in.html.haml new file mode 100644 index 0000000..073b5d0 --- /dev/null +++ b/app/views/registration_steps/_sign_in.html.haml @@ -0,0 +1,13 @@ += columns(medium: 12) do + %p=_"articles.conference_registration.paragraphs.#{@this_conference.registration_status == :open ? '': 'Pre_'}Registration_Details" + %h3=_'articles.conference_registration.headings.Verify_Account' + %p=_'articles.conference_registration.paragraphs.Verify_Account' + + = form_tag register_path(@this_conference.slug), class: 'flex-form' do + .email-field.input-field.big + = email_field_tag :email, nil, required: true + = label_tag :email + = button :continue, value: :confirm_email += columns(medium: 12, class: 'flex-column') do + %p.stretch-item=_'articles.conference_registration.paragraphs.facebook_sign_in' + = link_to (_'forms.actions.generic.facebook_sign_in','Facebook Sign In'), auth_at_provider_path(:provider => :facebook), class: [:button, :facebook] diff --git a/app/views/workshops/new.html.haml b/app/views/workshops/new.html.haml index c227adf..08299fa 100644 --- a/app/views/workshops/new.html.haml +++ b/app/views/workshops/new.html.haml @@ -14,8 +14,6 @@ - else %h2=_@page_title, :t - = registration_step_menu - = textfield :title, @title, required: true, lang: @translation, big: true, original_value: @is_translating ? @workshop.title! : nil, original_lang: @workshop.locale = textarea :info, @info, help: 'articles.workshops.paragraphs.info', lang: @translation, original_value: @is_translating ? richtext(@workshop.info!, 4).html_safe : nil, original_lang: @workshop.locale - if !@is_translating && (@workshop.id.blank? || @can_edit) diff --git a/app/views/workshops/show.html.haml b/app/views/workshops/show.html.haml index 7486746..67a1a45 100644 --- a/app/views/workshops/show.html.haml +++ b/app/views/workshops/show.html.haml @@ -1,6 +1,4 @@ -= render 'conferences/page_header', :page_key => 'Conference_Registration' - -= registration_step_menu += render 'conferences/page_header', page_key: 'Conference_Registration' %article = render 'workshops/show', :workshop => @workshop, :translations_available_for_editing => @translations_available_for_editing, :preview => false diff --git a/config/locales/en.yml b/config/locales/en.yml index 78cd286..e4cb91e 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -1570,7 +1570,89 @@ en: open_minds: We encourage open minds and open hearts. peaceful: We are peaceful and honest. conference_registration: + complete: + payment_processed: Thank you for your payment! + error: + payment_cancelled: Your payment was cancelled + payment_error: An error occurred processing your payment + arrival_date_required: Please select a date + departure_date_required: Please select a date + phone_required: A valid phone number is required + bed_space_required: Please enter the amount of bed or couch space you have to offer + bed_floor_required: Please enter the amount of floor space you have to offer + bed_tent_required: Please enter the amount of tent space you have to offer + info_required: Please provide your guets with information about you and your home + warning: + payment_pending: Thank you! Your payment is currently pending. + step_names: + hosting_other: Other + hosting_info: House Info + hosting_end_date: End Date + hosting_start_date: Start Date + hosting_space_tent: Tent Space + hosting_space_floor: Floor Space + hosting_space_beds: Bed/Couch Space + hosting_phone: Phone + hosting_address: Address + hosting_attending: Attending? + hosting_check: Host? + payment_form: Registration payment amount + org_select: Organization + payment_type: Registration fee method + housing_other: Other + housing_food: Eating habits + housing_bike: Bike? + housing_companion_email: Companion + housing_type: Housing + housing_departure_date: Departure Date + housing_arrival_date: Arrival Date + org_create_mailing_address: Organization Mailing Address + org_create_email: Organization Email + org_create_address: Organization Address + org_create_name: Organization Name + org_location_confirm: Confirm your location + org_location: Location + org_non_member_interest: Conference interest + org_member: Organization Member + policy: Policy + other: Other + name: Name + languages: Languages spoken headings: + hosting_other: Information for organizers + hosting_info: House Info and Rules + hosting_end_date: Housing End Date + hosting_start_date: Housing Start Date + hosting_space_tent: Tent Space + hosting_space_floor: Floor Space + hosting_space_beds: Bed and Couch Space + hosting_phone: What is your phone number? + hosting_address: What is your address? + hosting_attending: Are you attending the conference? + hosting_check: Are you willing to be a housing provider? + review: Review + confirm_payment: Confirm Registration Payment + payment_form: Registration Fee Amount + org_select: Which organization are you a member of? + payment_type: Registration Fee Method + housing_other: Anything else? + housing_allergies: Do you have any allergies? + housing_food: What are your eating habits? + housing_bike: Would you like to borrow a bike? + housing_companion_email: Companion Email + housing_companion_check: Housing Companion + housing_type: Housing + housing_departure_date: Departure Date + housing_arrival_date: Arrival Date + org_create_mailing_address: Organization Mailing Address + org_create_email: Organization Email + org_create_address: Organization Address + org_create_name: Organization Name + org_location_confirm: Confirm your location + org_location: In which city or town is your organization based? + your_location: In which city or town are you based? + org_member: Are you representing a bicycle collective? + org_non_member_interest: Why are you interested in attending Bike!Bike!? Administration: Administration Conference_Administration: "%{title} Administration" administration: Administration @@ -1634,10 +1716,46 @@ en: info: Info companion: Companion paragraphs: + registration_cancelled: You have cancelled your registration. If you reconsider, please re-open your registration using the button below but keep in mind that you may lose out of your housing or bike if you wait too long. + hosting_other: Please enter ay information you would like organizers to consider when selecting guests. If you have restrictions on guests that you would lke to stay at your home or if you have pets or other factors that might cause guests to be uncomfortable or not able to stay at your home, please list them here. + hosting_info: Please fill out your house rules, contact instructions, and any other pertinent information about your home or neighbourhood. Your summary will only be visible to conference organizers and your guests. + hosting_end_date: What is the latest date that you are will to have guests stay at you home? + hosting_start_date: What is the earliest date that you are will to have guests stay at you home? + hosting_space_tent: Are you willing to have guests stay in tents in your yard? + hosting_space_floor: Please let us know how many people you are willing to support on your floor? + hosting_space_beds: Please let us know how many people you can support on beds or couches? + hosting_phone: Please provide a phone number where guests can contact you, details on how you expect guests to contact you can be provided in your house rules. + hosting_address: We will need to share your address with guests so that they can find your home. International visitors may also need to provide border security with the address where they are staying. + hosting_attending: Are you also planning to attend conference workshops and events? + hosting_check: We are looking for volunteers in %{city} who can house guests between %{date_span} in beds, couches, floors, or backyard tent space. We will ask you to provide your home location, phone number and house rules with guests. We will do our best to match up guests the criteria that you give us. + currency_details: When you arrive, please make your payment in %{currency}. + confirm_payment: Thank you, please confirm your payment of %{amount} %{currency}. + review: Your registration is complete, please review and modify your data as necessary. + payment_form: Please select one of the predefined options below or enter a custom amount. + org_select: Please select the organization tat you will be representing. This information will be used to help us contact and invite your organization next year and to populate the list of known organizations that will be displayed on bikecollectives.org. If you are involved with multiple oganizations, please select one for now, you will be able to add more organizations at a later date. + payment_type: Registration is by donation but it enables us to pay for spaces, food, equipment, and more. If you can, paying now via PayPal enables us to prepare for the conference without risk of paying out of pocket. Otherwise, pleging to pay on arrival will help us to get a rough idea of what we can and cannot afford. + housing_other: Is there anything else that you would like to let us know? + housing_allergies: Let us know if you have any allergies that we should be made aware of. + housing_food: Please let us know your eating habits by selecting the option that best describes te type of food tat you eat. We will use this to decide the best types of meals to prepare and how much food we will need. + housing_bike: In order for us to get an idea of how many bikes we will need to prepare, please let us know if you would like to borrow a bike from us. + housing_companion_email: What is your companion's email address? + housing_companion_check: Are you coming with a significant other or someone who you absolutely must be housed with? Please note, your companion must also register if you want to be housed together. + housing_type: Do you need a place to stay in %{city}? We will do our best to place you with a local host and other vistors that best match your needs. + housing_departure_date: When will you be leaving %{city}? If you wish to stay in town longer and need housing or a bike after %{max_date}, please select this date on the calendar below and contact us after you complete your registration. We cannot guarantee that we can accommodate you but we will do our best. + housing_arrival_date: When will you be arriving in %{city}? If you will be in town and need housing or a bike before %{min_date}, please select this date on the calendar below and contact us after you complete your registration. We cannot guarantee that we can accommodate you but we will do our best. + org_create_mailing_address: Please provide your mailing address so that we can send your organization a personal invite and poster to next year's Bike!Bike!. + org_create_email: In order to contact your organization next year, please provide a general email address. We will not send you regular emails, we may email you if there is a conference in your area or to confirm that your organization is still in existance. Please do not provide a personal email address. + org_create_address: Please enter the street address of your organization in %{city}, do not enter the state, province, or country. If your organization is not in %{city}, please go back and change your location. + org_create_name: What is the name or your organization? + org_location_confirm: Did you mean %{city}? + languages: Knowing how many people speak each language will help us to plan translations better for workshops, events, and announcements. If you are bilingual you will also be given access to tools to help translate content and we may ask for additional help if needed, you are under no obligation to volunteer. + name: How would you like to be addressed at the conference and on this site? + org_non_member_interest: Everyone is welcome to attend Bike!Bike! but since most attendees work or volunteer with a bicycle collective, we would like to get a better understanding of what has attracted you to attend this year. + org_member: Do you volunteer or work for an organization that puts bicycle education, access, or advocacy above profits? If so we would like to know a few details about it. provide_email: Bike!Bike! uses email to communicate between you and your conference hosts, however your Facebook account does not provide us an email address. Before proceeding, you must provide us an email address. - Policy_Agreement: Ensuring that all attendees feel welcome, safe, and respected + policy: Ensuring that all attendees feel welcome, safe, and respected at all times is especially important to us all. Please ensure that you have fully read and understand our safer spaces policy below, if you have any questions or concerns you can reach out to the organizers at any time. @@ -1955,6 +2073,10 @@ en: forms: labels: generic: + payment_type: + paypal: Online + on_arrival: In person + none: None space: Available Space hosting_dates: When will you be in town? type: Type @@ -2021,6 +2143,22 @@ en: no_file_selected: No file selected actions: generic: + reopen_registration: Re-open my registration + cancel_registration: Cancel my registration + organization_none: None of the above + payment_paypal: I can pay now with PayPal + payment_on_arrival: I can pledge to pay on arrival + payment_none: Not now + food_meat: I eat meat and dairy + food_vegetarian: I am a vegetarian + food_vegan: I am a vegan + housing_none: I don't need a place to stay + housing_tent: I would like a place to tent + housing_house: Yes, I would like to place to stay + 'yes': 'Yes' + 'no': 'No' + review: Complete + back: Back upload: Upload select_file: Select a file administrate: Administrate