Godwin
9 years ago
251 changed files with 2 additions and 8086 deletions
@ -1,217 +0,0 @@ |
|||
#= require froala_editor.min.js |
|||
|
|||
# I18n |
|||
|
|||
'use strict' |
|||
|
|||
startSpinner = -> |
|||
$('#loading-spinner').show() |
|||
|
|||
stopSpinner = -> |
|||
$('#loading-spinner').fadeOut() |
|||
|
|||
# Turbolinks Spinner |
|||
document.addEventListener 'page:fetch', startSpinner |
|||
document.addEventListener 'page:receive', stopSpinner |
|||
|
|||
readURL = (input) -> |
|||
reader = null |
|||
if input.files && input.files[0] |
|||
reader = new FileReader() |
|||
reader.readAsDataURL input.files[0] |
|||
reader.onload = (e) -> |
|||
$(input).prev().attr('src', e.target.result) |
|||
|
|||
createOverlay = () -> |
|||
if $('#overlay').length > 0 |
|||
$('#overlay').remove() |
|||
$('body').append('<div id="overlay" class="loading"><div id="overlay-inner"></div></div>') |
|||
$('#overlay-dlg') |
|||
|
|||
setOverlayHTML = (html) -> |
|||
$('#overlay-inner').append('<div id="overlay-dlg">' + html + '</div>'); |
|||
$('#overlay').removeAttr('class').click(destroyOverlay) |
|||
|
|||
destroyOverlay = () -> |
|||
$('#overlay').remove() |
|||
|
|||
selectA = (type, event, $emptyObj) -> |
|||
event.preventDefault() |
|||
# = $(this) |
|||
$overlay = createOverlay() |
|||
objs = [] |
|||
$('.' + type + '-select-field.added input.' + type + '-id').each () -> obj.push($(this).val()) |
|||
$.post window.location.href.replace(/^(.*\/)(.+?)$/, '$1non$2'), {added: objs}, |
|||
(html) -> |
|||
setOverlayHTML(html).addClass('' + type + '-select') |
|||
$('#select-' + type + '-list a').click (event) -> |
|||
event.preventDefault() |
|||
|
|||
$this = $(this) |
|||
$old_field = $emptyObj.closest('.field') |
|||
$field = $old_field.clone() |
|||
|
|||
oldID = parseInt($old_field.find('input[type="hidden"]').attr('name').match(/\[(\d+)\]\[id\]/)[1]) |
|||
newID = oldID + 1 |
|||
|
|||
$field.find('input.' + type + '-id').val($this.data().id) |
|||
$field.find('.' + type + 'name').html($this.find('.' + type + 'name').html()).before('<img src="' + $this.find('img').attr('src') + '" />') |
|||
$field.find('.select-' + type + '').remove() |
|||
$field.removeClass('new').addClass('added') |
|||
$old_field.html (i, html) -> |
|||
pregex = new RegExp('\\[' + oldID + '\\]', 'g'); |
|||
aregex = new RegExp('_' + oldID + '_', 'g'); |
|||
html.replace(pregex, '[' + newID + ']').replace(aregex, '_' + newID + '_') |
|||
$field.insertBefore($old_field) |
|||
$('a.select-' + type + '').click (event) -> selectA(type, event, $(this)) |
|||
|
|||
destroyOverlay() |
|||
return |
|||
, 'html' |
|||
|
|||
updateFormField = () -> |
|||
$form = $('form#new_registration_form_field') |
|||
$field_type = $form.find('#registration_form_field_field_type') |
|||
field_type = $field_type.val() |
|||
$form.find('.registration-form-field-field').hide() |
|||
$form.find('.registration-form-field-field.field-type-' + field_type).show() |
|||
|
|||
updateFormFieldForm = () -> |
|||
$('form #registration_form_field_field_type').change updateFormField |
|||
updateFormField() |
|||
$('form#new_registration_form_field').submit (event) -> |
|||
event.preventDefault() |
|||
$form = $(this) |
|||
serialized = $form.serialize() |
|||
$.post $form.attr('action'), serialized, |
|||
(json) -> |
|||
$form.replaceWith(json.form) |
|||
$('#registration-form-field-list').html(json.list) |
|||
updateFormFieldForm() |
|||
, 'json' |
|||
updateFormFieldList = () -> |
|||
$('#registration-form-field-list .add-form-field').click () -> |
|||
$.post 'form/add-field', {field: $(this).data().id}, |
|||
(json) -> |
|||
$('#conference-form').html(json.form) |
|||
$('#registration-form-field-list').html(json.list) |
|||
updateFormFieldList() |
|||
return |
|||
$('#conference-form .remove-form-field').click () -> |
|||
$.post 'form/remove-field', {field: $(this).data().id}, |
|||
(json) -> |
|||
$('#conference-form').html(json.form) |
|||
$('#registration-form-field-list').html(json.list) |
|||
updateFormFieldList() |
|||
return |
|||
|
|||
saveTranslation = ($td, $move_to, auto_translate) -> |
|||
val = '' |
|||
do_auto_translate = true |
|||
if typeof auto_translate == "undefined" || !auto_translate |
|||
val = $td.find('textarea').val() |
|||
do_auto_translate = false |
|||
key = $td.parent().data().key |
|||
params = {translationkey: key, translationvalue: val, translationlang: window.location.href.replace(/^.*\/(\w+)\/$/, '$1')} |
|||
if do_auto_translate |
|||
params['auto_translate'] = true |
|||
$.post '/translate/', params, |
|||
(json) -> |
|||
#console.log json |
|||
$td.html(json.translation) |
|||
if $td.parent().hasClass('not-exists') |
|||
$td.parent().removeClass('not-exists') |
|||
$td.parent().addClass('exists') |
|||
$('.translation-form').remove() |
|||
if typeof $move_to != "undefined" && $move_to |
|||
startTranslating $move_to |
|||
return |
|||
return |
|||
|
|||
stopTranslating = () -> $('.translation-form').remove() |
|||
|
|||
startTranslating = ($td) -> |
|||
stopTranslating() |
|||
value = if $td.parent().hasClass('not-exists') then '' else $td.html().trim() |
|||
$tr = $td.parent() |
|||
key = $tr.data().key |
|||
$td.append('<div class="translation-form"><textarea>' + value + '</textarea><button class="small" data-key="' + key + '">Save</textarea>') |
|||
$textarea = $td.find('textarea') |
|||
$textarea.select() |
|||
$td.find('.translation-form button').click () -> saveTranslation($td) |
|||
$textarea.keydown (event) -> |
|||
if event.keyCode == 9 |
|||
event.preventDefault() |
|||
$new_tr = if event.shiftKey then $tr.prev() else $tr.next() |
|||
saveTranslation $td, $new_tr.find('.value') |
|||
else if event.keyCode == 27 |
|||
stopTranslating() |
|||
return |
|||
return |
|||
|
|||
$ -> |
|||
#trial = document.createElement('script'); |
|||
#trial.type = 'text/javascript'; |
|||
#trial.async = true; |
|||
#trial.src = 'http://easy.myfonts.net/v2/js?sid=158991(font-family=Scotch+Modern+Bold)&sid=174040(font-family=Scotch+Micro)&key=WPfecRji9L'; |
|||
#head = document.getElementsByTagName("head")[0]; |
|||
#head.appendChild(trial); |
|||
#$(document).foundation(); |
|||
#$('[data-editable]').editable({blockTags: ["n", "p", "h2", "blockquote", "pre"], buttons: ["formatBlock", "bold", "italic", "underline", "insertOrderedList", "insertUnorderedList", "sep", "createLink", "insertImage", "insertVideo", "html", "undo", "redo"]}) |
|||
$('.field.country-select select').change () -> |
|||
$country = $(this) |
|||
country = $country.val() |
|||
$territory = $('.field.subregion-select select') |
|||
if $territory.data().country == country |
|||
$territory.removeClass('can cant').addClass('can') |
|||
return |
|||
|
|||
$.post '/location/territories', {country: country}, |
|||
(json) -> |
|||
$territory.html('') |
|||
if json && Object.keys(json).length |
|||
$.each json, (code, name) -> |
|||
$territory.append($('<option>').text(name).attr('value', code)) |
|||
return |
|||
$territory.removeClass('can cant').addClass('can') |
|||
$territory.data().country = country |
|||
else |
|||
$territory.removeClass('can cant').addClass('cant') |
|||
return |
|||
, 'json' |
|||
|
|||
return |
|||
|
|||
$('img + input[type="file"]').change () -> |
|||
readURL(this); |
|||
|
|||
$('a.select-user, a.select-organization').click (event) -> selectA($(this).attr('class').match(/(^|\s)select\-([^\s]+)/)[2], event, $(this)) |
|||
updateFormFieldForm() |
|||
updateFormFieldList() |
|||
|
|||
#$('ul.sortable').sortable |
|||
# handle: '.drag-sort', |
|||
# items: 'li', |
|||
# update: (event, props) -> |
|||
# $(this).children().each (index, child) -> |
|||
# $(child).find('.sortable-position').val(index + 1) |
|||
# url = $(this).data().url |
|||
# if url |
|||
# data = $(this).find('input, select, textarea').serialize() |
|||
# $.post url, data#, |
|||
# # (json) -> |
|||
# # console.log json |
|||
# #, 'json' |
|||
#$('table#translations td.value').click () -> |
|||
# $this = $(this) |
|||
# if !$this.find('.translation-form').length |
|||
# startTranslating($this) |
|||
#if $('table#translations').length |
|||
# $(document).click (event) -> |
|||
# $target = $(event.target) |
|||
# if $target.closest('table#translations').length < 1 && !$target.hasClass('auto-translate') |
|||
# stopTranslating() |
|||
# $('.auto-translate').click (event) -> |
|||
# event.preventDefault() |
|||
# $td = $(this).parent() |
|||
# saveTranslation($td, null, true) |
@ -1,12 +0,0 @@ |
|||
{ |
|||
"breakpoints": { |
|||
"small": 0, |
|||
"medium": 320, |
|||
"large": 1024, |
|||
"small-only": [0, 320], |
|||
}, |
|||
"breakpoint-unit": "px", |
|||
"fallback-range": [320, 1024], |
|||
"browser_exceptions": { |
|||
} |
|||
} |
@ -1,3 +0,0 @@ |
|||
# Place all the behaviors and hooks related to the matching controller here. |
|||
# All this logic will automatically be available in application.js. |
|||
# You can use CoffeeScript in this file: http://coffeescript.org/ |
@ -1,3 +0,0 @@ |
|||
# Place all the behaviors and hooks related to the matching controller here. |
|||
# All this logic will automatically be available in application.js. |
|||
# You can use CoffeeScript in this file: http://coffeescript.org/ |
@ -1,3 +0,0 @@ |
|||
# Place all the behaviors and hooks related to the matching controller here. |
|||
# All this logic will automatically be available in application.js. |
|||
# You can use CoffeeScript in this file: http://coffeescript.org/ |
@ -1,121 +0,0 @@ |
|||
# I18n |
|||
#= require i18n |
|||
#= require i18n/translations |
|||
|
|||
'use strict' |
|||
|
|||
$(document).ready -> |
|||
$('#translation-control form').unbind('submit').bind('submit', (event)-> |
|||
event.preventDefault() |
|||
event.stopPropagation() |
|||
$form = $(this) |
|||
serialized = $form.serialize() |
|||
$form.find('select, button, textarea').prop 'disabled', true |
|||
$.post $form.attr('action'), serialized, |
|||
(json) -> |
|||
if json.success |
|||
$span = $('.translate-me[data-translate-key="' + json.key + '"]') |
|||
$span.html(json.translation) |
|||
$span.attr('data-translate-untranslated', json.translation) |
|||
$span.removeClass 'untranslated' |
|||
else if json.test |
|||
console.log json.test |
|||
$form.find('select, button, textarea').prop 'disabled', false |
|||
return |
|||
, 'json' |
|||
return |
|||
) |
|||
$('.translate-me').click (event)-> |
|||
if event.altKey |
|||
event.preventDefault() |
|||
key = $(this).attr('data-translate-key') |
|||
$('#translationkey').val key |
|||
resetTranslation key |
|||
$('#translationvalue').focus() |
|||
return |
|||
#$('#translationvalue, #translationkey').focus -> |
|||
$('#translation-control *').focus -> |
|||
key = $('#translationkey').val() |
|||
selectTranslation key |
|||
updateTranslation key |
|||
return |
|||
$('#translationkey').change (event)-> |
|||
#$('#translationvalue').val('') |
|||
key = $('#translationkey').val() |
|||
selectTranslation key |
|||
resetTranslation key |
|||
#$('#translation').focus() |
|||
#console.log event |
|||
return |
|||
# $('#translationvalue, #translationkey').blur -> |
|||
$('#translation-control *').blur -> |
|||
selectTranslation() |
|||
return |
|||
$('#translationvalue').bind 'input propertychange', ()-> |
|||
updateTranslation $('#translationkey').val() |
|||
return |
|||
return |
|||
|
|||
selectTranslation = (key)-> |
|||
$span = $('.translate-me.selected'); |
|||
$span.removeClass 'selected' |
|||
$span.removeClass 'preview' |
|||
$('#translatevars').hide() |
|||
$('#translatepluralizations').hide() |
|||
$('#translatevars ul').html '' |
|||
$('#translationhascount').val('0') |
|||
if key |
|||
$target = $('.translate-me[data-translate-key="' + key + '"]') |
|||
if !$target || !$target.length |
|||
return |
|||
vars = $target.addClass('selected').data().vars |
|||
if vars |
|||
keys = Object.keys(vars) |
|||
if keys.length |
|||
for i in [0...keys.length] |
|||
$('#translatevars ul').append ('<li class="var-' + keys[i] + '" title="Value: ' + vars[keys[i]] + '">' + keys[i] + '</li>') |
|||
if keys[i] == 'count' |
|||
$('#translatepluralizations').show() |
|||
$('#translationhascount').val('1') |
|||
$('#translatevars').show() |
|||
else |
|||
$span.html ()-> |
|||
$(this).attr('data-translate-untranslated') |
|||
return |
|||
|
|||
updateTranslation = (key)-> |
|||
$span = $('.translate-me[data-translate-key="' + key + '"]') |
|||
val = $('#translationvalue').val() |
|||
is_preview = ($span.hasClass 'preview') |
|||
$('#translatevars li').removeClass('used') |
|||
if val |
|||
if !is_preview |
|||
$span.addClass 'preview' |
|||
if !$span || !$span.length |
|||
return |
|||
vars = $span.data().vars |
|||
keys = Object.keys(vars) |
|||
for i in [0...keys.length] |
|||
_var = new RegExp('%{' + keys[i] + '}') |
|||
if val.match _var |
|||
# console.log 'Match!' |
|||
$('#translatevars li.var-' + keys[i]).addClass('used') |
|||
val = val.replace _var, vars[keys[i]] |
|||
else |
|||
if is_preview |
|||
$span.removeClass 'preview' |
|||
$span.html (val || $span.attr('data-translate-untranslated')) |
|||
return |
|||
|
|||
resetTranslation = (key)-> |
|||
$target = $('.translate-me[data-translate-key="' + key + '"]') |
|||
if $target && $target.length |
|||
translated = $target.data().translateTranslated |
|||
counts = ['zero', 'one', 'two', 'few', 'many'] |
|||
for i in counts |
|||
val = translated[key + '.' + i] |
|||
$('#translationvalue_' + i).val(val || '') |
|||
$('#translationpluralization_' + i).prop('checked', !!val) |
|||
val = (translated[key] || translated[key + '.other']) |
|||
$('#translationvalue').val(val || '') |
|||
return |
@ -1,75 +0,0 @@ |
|||
$(function() { |
|||
$('table#translations td.value').click(function() { |
|||
var $this = $(this); |
|||
if(!$this.find('.translation-form').length) { |
|||
startTranslating($this); |
|||
} |
|||
}); |
|||
if ($('table#translations').length) { |
|||
$(document).click(function(event) { |
|||
$target = $(event.target); |
|||
if ($target.closest('table#translations').length < 1 && !$target.hasClass('auto-translate')) { |
|||
stopTranslating(); |
|||
} |
|||
}); |
|||
$('.auto-translate').click(function(event) { |
|||
event.preventDefault(); |
|||
$td = $(this).parent(); |
|||
saveTranslation($td, null, true); |
|||
}); |
|||
} |
|||
}); |
|||
|
|||
function saveTranslation($td, $move_to, auto_translate) { |
|||
var val = ''; |
|||
var do_auto_translate = true; |
|||
if (typeof auto_translate == "undefined" || !auto_translate) { |
|||
val = $td.find('textarea').val(); |
|||
do_auto_translate = false; |
|||
} |
|||
var key = $td.parent().data().key; |
|||
var params = { |
|||
translationkey: key, |
|||
translationvalue: val, |
|||
translationlang: window.location.href.replace(/^.*\/(\w+)\/$/, '$1') |
|||
}; |
|||
if (do_auto_translate) { |
|||
params['auto_translate'] = true; |
|||
} |
|||
params['authenticity_token'] = $('table#translations').data().token; |
|||
$.post('/translate/', params, function(json) { |
|||
$td.html(json.translation); |
|||
if ($td.parent().hasClass('not-exists')) { |
|||
$td.parent().removeClass('not-exists'); |
|||
$td.parent().addClass('exists'); |
|||
} |
|||
$('.translation-form').remove(); |
|||
if (typeof $move_to != "undefined" && $move_to) { |
|||
startTranslating($move_to); |
|||
} |
|||
}); |
|||
} |
|||
|
|||
function stopTranslating() { |
|||
$('.translation-form').remove(); |
|||
} |
|||
|
|||
function startTranslating($td) { |
|||
stopTranslating(); |
|||
var value = $td.parent().hasClass('not-exists') ? '' : $td.html().trim(); |
|||
var $tr = $td.parent(); |
|||
var key = $tr.data().key; |
|||
$td.append('<div class="translation-form"><textarea>' + value + '</textarea><button class="small" data-key="' + key + '">Save</textarea>'); |
|||
var $textarea = $td.find('textarea'); |
|||
$textarea.select(); |
|||
$td.find('.translation-form button').click(function() { saveTranslation($td); }); |
|||
$textarea.keydown(function(event) { |
|||
if (event.keyCode == 9) { |
|||
event.preventDefault(); |
|||
var $new_tr = event.shiftKey ? $tr.prev() : $tr.next(); |
|||
saveTranslation($td, $new_tr.find('.value')); |
|||
} else if (event.keyCode == 27) { |
|||
stopTranslating(); |
|||
} |
|||
}); |
|||
} |
@ -1,3 +0,0 @@ |
|||
# Place all the behaviors and hooks related to the matching controller here. |
|||
# All this logic will automatically be available in application.js. |
|||
# You can use CoffeeScript in this file: http://coffeescript.org/ |
@ -1,3 +0,0 @@ |
|||
# Place all the behaviors and hooks related to the matching controller here. |
|||
# All this logic will automatically be available in application.js. |
|||
# You can use CoffeeScript in this file: http://coffeescript.org/ |
@ -1,3 +0,0 @@ |
|||
# Place all the behaviors and hooks related to the matching controller here. |
|||
# All this logic will automatically be available in application.js. |
|||
# You can use CoffeeScript in this file: http://coffeescript.org/ |
@ -1,241 +0,0 @@ |
|||
/* |
|||
* ../translations |
|||
* Browser: Chrome for Android 40 (approximately 10.51% of all users) |
|||
* |
|||
*/ |
|||
|
|||
$browser: and_chr; |
|||
$browser_prefix: webkit; |
|||
$browser_version: 40; |
|||
$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, |
|||
"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, |
|||
"hashchange": y, |
|||
"css-sel2": y, |
|||
"css-sel3": y, |
|||
"css-textshadow": y, |
|||
"css-boxshadow": y, |
|||
"css3-colors": y, |
|||
"css3-boxsizing": a, |
|||
"css-mediaqueries": y, |
|||
"multicolumn": ax, |
|||
"border-radius": y, |
|||
"transforms2d": y, |
|||
"use-strict": y, |
|||
"transforms3d": y, |
|||
"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, |
|||
"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, |
|||
"datauri": 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, |
|||
"cors": y, |
|||
"calc": 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, |
|||
"progressmeter": y, |
|||
"object-fit": y, |
|||
"xhr2": y, |
|||
"minmaxwh": y, |
|||
"details": y, |
|||
"text-stroke": yx, |
|||
"inline-block": y, |
|||
"notifications": n, |
|||
"stream": yx, |
|||
"svg-img": y, |
|||
"datalist": y, |
|||
"dataset": y, |
|||
"css-grid": p, |
|||
"menu": n, |
|||
"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": yx, |
|||
"requestanimationframe": y, |
|||
"input-range": y, |
|||
"matchmedia": y, |
|||
"input-datetime": y, |
|||
"input-color": y, |
|||
"input-number": a, |
|||
"iframe-sandbox": y, |
|||
"css-counters": y, |
|||
"css-resize": y, |
|||
"input-placeholder": y, |
|||
"spdy": y, |
|||
"css-repeating-gradients": y, |
|||
"css-filters": yx, |
|||
"getcomputedstyle": 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, |
|||
"webp": 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, |
|||
"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, |
|||
"web-speech": ax, |
|||
"high-resolution-time": y, |
|||
"battery-status": y, |
|||
"serviceworkers": a, |
|||
"text-decoration": n, |
|||
"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": n, |
|||
"atob-btoa": y, |
|||
"css-appearance": yx, |
|||
"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": 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": yx, |
|||
"object-observe": y, |
|||
"broadcastchannel": n, |
|||
"css-crisp-edges": n, |
|||
"css-text-align-last": n, |
|||
"fetch": a, |
|||
"background-attachment": a, |
|||
"currentcolor": y, |
|||
"input-pattern": y, |
|||
"registerprotocolhandler": n, |
|||
"css-snappoints": n |
|||
); |
|||
|
|||
@import "bumbleberry-settings"; |
|||
@import "../translations"; |
@ -1,279 +0,0 @@ |
|||
/* |
|||
* ../translations |
|||
* Browser: Chrome for Android 42 (approximately 13.77% of all users) |
|||
* |
|||
*/ |
|||
|
|||
$browser: and_chr; |
|||
$browser_prefix: webkit; |
|||
$browser_version: 42; |
|||
$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, |
|||
"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": 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": 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": n, |
|||
"wordwrap": y, |
|||
"progressmeter": y, |
|||
"object-fit": y, |
|||
"xhr2": y, |
|||
"minmaxwh": y, |
|||
"details": y, |
|||
"text-stroke": yx, |
|||
"inline-block": y, |
|||
"notifications": y, |
|||
"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": 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, |
|||
"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, |
|||
"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": n, |
|||
"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": 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": a, |
|||
"atob-btoa": y, |
|||
"css-appearance": yx, |
|||
"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": 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": y, |
|||
"css-text-align-last": n, |
|||
"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": 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 |
|||
); |
|||
|
|||
@import "bumbleberry-settings"; |
|||
@import "../translations"; |
@ -1,241 +0,0 @@ |
|||
/* |
|||
* ../translations |
|||
* Browser: Firefox for Android 33 (approximately 0.13% of all users) |
|||
* |
|||
*/ |
|||
|
|||
$browser: and_ff; |
|||
$browser_prefix: moz; |
|||
$browser_version: 33; |
|||
$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, |
|||
"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, |
|||
"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, |
|||
"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, |
|||
"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, |
|||
"datauri": y, |
|||
"mathml": y, |
|||
"css-featurequeries": y, |
|||
"xhtml": y, |
|||
"xhtmlsmil": p, |
|||
"wai-aria": y, |
|||
"geolocation": y, |
|||
"flexbox": y, |
|||
"webgl": a, |
|||
"fileapi": y, |
|||
"shadowdom": n, |
|||
"websockets": y, |
|||
"hidden": y, |
|||
"script-async": y, |
|||
"cors": y, |
|||
"calc": 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, |
|||
"progressmeter": y, |
|||
"object-fit": n, |
|||
"xhr2": y, |
|||
"minmaxwh": y, |
|||
"details": p, |
|||
"text-stroke": n, |
|||
"inline-block": y, |
|||
"notifications": y, |
|||
"stream": yx, |
|||
"svg-img": y, |
|||
"datalist": y, |
|||
"dataset": y, |
|||
"css-grid": p, |
|||
"menu": n, |
|||
"rem": y, |
|||
"ttf": y, |
|||
"touch": y, |
|||
"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": a, |
|||
"fullscreen": ax, |
|||
"requestanimationframe": y, |
|||
"input-range": y, |
|||
"matchmedia": y, |
|||
"input-datetime": n, |
|||
"input-color": y, |
|||
"input-number": a, |
|||
"iframe-sandbox": y, |
|||
"css-counters": y, |
|||
"css-resize": y, |
|||
"input-placeholder": y, |
|||
"spdy": y, |
|||
"css-repeating-gradients": y, |
|||
"css-filters": a, |
|||
"getcomputedstyle": 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, |
|||
"webp": p, |
|||
"intrinsic-width": yx, |
|||
"cryptography": p, |
|||
"template": y, |
|||
"opus": y, |
|||
"jpegxr": n, |
|||
"channel-messaging": n, |
|||
"css3-tabsize": yx, |
|||
"mutationobserver": y, |
|||
"css-selection": yx, |
|||
"css-placeholder": ax, |
|||
"css-deviceadaptation": n, |
|||
"text-emphasis": n, |
|||
"canvas-blending": y, |
|||
"clipboard": y, |
|||
"rtcpeerconnection": yx, |
|||
"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, |
|||
"web-speech": n, |
|||
"high-resolution-time": y, |
|||
"battery-status": a, |
|||
"serviceworkers": n, |
|||
"text-decoration": yx, |
|||
"speech-synthesis": n, |
|||
"user-timing": n, |
|||
"srcset": n, |
|||
"ambient-light": y, |
|||
"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": yx, |
|||
"web-animation": n, |
|||
"resource-timing": n, |
|||
"custom-elements": pd, |
|||
"imports": p, |
|||
"input-file-multiple": n, |
|||
"atob-btoa": y, |
|||
"css-appearance": yx, |
|||
"css-background-offsets": y, |
|||
"css-supports-api": y, |
|||
"css-touch-action": n, |
|||
"autofocus": y, |
|||
"css-clip-path": a, |
|||
"getrandomvalues": y, |
|||
"screen-orientation": yx, |
|||
"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": y, |
|||
"xml-serializer": y, |
|||
"css-image-set": n, |
|||
"css-boxdecorationbreak": y, |
|||
"object-observe": n, |
|||
"broadcastchannel": n, |
|||
"css-crisp-edges": yx, |
|||
"css-text-align-last": yx, |
|||
"fetch": n, |
|||
"background-attachment": y, |
|||
"currentcolor": y, |
|||
"input-pattern": y, |
|||
"registerprotocolhandler": n, |
|||
"css-snappoints": n |
|||
); |
|||
|
|||
@import "bumbleberry-settings"; |
|||
@import "../translations"; |
@ -1,279 +0,0 @@ |
|||
/* |
|||
* ../translations |
|||
* Browser: Firefox for Android 39 (approximately 0.14% of all users) |
|||
* |
|||
*/ |
|||
|
|||
$browser: and_ff; |
|||
$browser_prefix: moz; |
|||
$browser_version: 39; |
|||
$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, |
|||
"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": 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": n, |
|||
"websockets": y, |
|||
"hidden": y, |
|||
"script-async": y, |
|||
"mediasource": n, |
|||
"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": a, |
|||
"progressmeter": y, |
|||
"object-fit": y, |
|||
"xhr2": y, |
|||
"minmaxwh": y, |
|||
"details": p, |
|||
"text-stroke": n, |
|||
"inline-block": y, |
|||
"notifications": y, |
|||
"stream": yx, |
|||
"svg-img": y, |
|||
"datalist": a, |
|||
"dataset": y, |
|||
"css-grid": p, |
|||
"menu": n, |
|||
"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, |
|||
"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": y, |
|||
"getcomputedstyle": y, |
|||
"mp3": n, |
|||
"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, |
|||
"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": 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": a, |
|||
"serviceworkers": n, |
|||
"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": n, |
|||
"resource-timing": y, |
|||
"custom-elements": pd, |
|||
"imports": p, |
|||
"input-file-multiple": n, |
|||
"atob-btoa": y, |
|||
"css-appearance": yx, |
|||
"css-background-offsets": y, |
|||
"css-supports-api": y, |
|||
"css-touch-action": n, |
|||
"autofocus": y, |
|||
"css-clip-path": a, |
|||
"getrandomvalues": y, |
|||
"screen-orientation": yx, |
|||
"font-loading": n, |
|||
"font-unicode-range": nd, |
|||
"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": 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": n, |
|||
"css-snappoints": n, |
|||
"input-minlength": n, |
|||
"css-media-interaction": n, |
|||
"ime": n, |
|||
"font-smooth": n, |
|||
"audiotracks": n, |
|||
"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 |
|||
); |
|||
|
|||
@import "bumbleberry-settings"; |
|||
@import "../translations"; |
@ -1,241 +0,0 @@ |
|||
/* |
|||
* ../translations |
|||
* Browser: Android Browser 37 (approximately 0.0% of all users) |
|||
* |
|||
*/ |
|||
|
|||
$browser: android; |
|||
$browser_prefix: webkit; |
|||
$browser_version: 37; |
|||
$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, |
|||
"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, |
|||
"hashchange": y, |
|||
"css-sel2": y, |
|||
"css-sel3": y, |
|||
"css-textshadow": y, |
|||
"css-boxshadow": y, |
|||
"css3-colors": y, |
|||
"css3-boxsizing": a, |
|||
"css-mediaqueries": y, |
|||
"multicolumn": ax, |
|||
"border-radius": y, |
|||
"transforms2d": y, |
|||
"use-strict": y, |
|||
"transforms3d": y, |
|||
"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, |
|||
"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, |
|||
"datauri": 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, |
|||
"cors": y, |
|||
"calc": 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, |
|||
"progressmeter": y, |
|||
"object-fit": y, |
|||
"xhr2": y, |
|||
"minmaxwh": y, |
|||
"details": y, |
|||
"text-stroke": yx, |
|||
"inline-block": y, |
|||
"notifications": ax, |
|||
"stream": yx, |
|||
"svg-img": y, |
|||
"datalist": y, |
|||
"dataset": y, |
|||
"css-grid": p, |
|||
"menu": n, |
|||
"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": n, |
|||
"css-regions": n, |
|||
"spellcheck-attribute": a, |
|||
"fullscreen": n, |
|||
"requestanimationframe": y, |
|||
"input-range": y, |
|||
"matchmedia": y, |
|||
"input-datetime": y, |
|||
"input-color": y, |
|||
"input-number": a, |
|||
"iframe-sandbox": y, |
|||
"css-counters": y, |
|||
"css-resize": n, |
|||
"input-placeholder": y, |
|||
"spdy": y, |
|||
"css-repeating-gradients": y, |
|||
"css-filters": yx, |
|||
"getcomputedstyle": 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, |
|||
"webp": 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, |
|||
"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, |
|||
"web-speech": n, |
|||
"high-resolution-time": y, |
|||
"battery-status": n, |
|||
"serviceworkers": n, |
|||
"text-decoration": n, |
|||
"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": n, |
|||
"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": yx, |
|||
"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": yx, |
|||
"object-observe": y, |
|||
"broadcastchannel": n, |
|||
"css-crisp-edges": n, |
|||
"css-text-align-last": n, |
|||
"fetch": n, |
|||
"background-attachment": n, |
|||
"currentcolor": y, |
|||
"input-pattern": y, |
|||
"registerprotocolhandler": n, |
|||
"css-snappoints": n |
|||
); |
|||
|
|||
@import "bumbleberry-settings"; |
|||
@import "../translations"; |
@ -1,279 +0,0 @@ |
|||
/* |
|||
* ../translations |
|||
* Browser: Android Browser 40 (approximately 0.0% of all users) |
|||
* |
|||
*/ |
|||
|
|||
$browser: android; |
|||
$browser_prefix: webkit; |
|||
$browser_version: 40; |
|||
$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, |
|||
"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": 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": 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, |
|||
"progressmeter": y, |
|||
"object-fit": y, |
|||
"xhr2": y, |
|||
"minmaxwh": y, |
|||
"details": y, |
|||
"text-stroke": yx, |
|||
"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": n, |
|||
"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, |
|||
"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": y, |
|||
"stricttransportsecurity": y, |
|||
"style-scoped": n, |
|||
"svg-fragment": y, |
|||
"outline": y, |
|||
"download": y, |
|||
"pointer": p, |
|||
"user-select-none": yx, |
|||
"webp": y, |
|||
"input-autocomplete-onoff": y, |
|||
"intrinsic-width": yx, |
|||
"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": n, |
|||
"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": 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": n, |
|||
"atob-btoa": y, |
|||
"css-appearance": yx, |
|||
"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": n, |
|||
"css-logical-props": ax, |
|||
"fetch": n, |
|||
"referrer-policy": y, |
|||
"background-attachment": n, |
|||
"currentcolor": y, |
|||
"input-pattern": y, |
|||
"registerprotocolhandler": n, |
|||
"css-snappoints": n, |
|||
"input-minlength": y, |
|||
"css-media-interaction": n, |
|||
"ime": n, |
|||
"font-smooth": n, |
|||
"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 |
|||
); |
|||
|
|||
@import "bumbleberry-settings"; |
|||
@import "../translations"; |
@ -1,279 +0,0 @@ |
|||
/* |
|||
* ../translations |
|||
* Browser: Edge 1 (approximately 0.0% of all users) |
|||
* |
|||
*/ |
|||
|
|||
$browser: edge; |
|||
$browser_prefix: ms; |
|||
$browser_version: 1; |
|||
$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, |
|||
"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": 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": y, |
|||
"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, |
|||
"progressmeter": a, |
|||
"object-fit": n, |
|||
"xhr2": y, |
|||
"minmaxwh": y, |
|||
"details": n, |
|||
"text-stroke": 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": a, |
|||
"touch": y, |
|||
"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": y, |
|||
"css-exclusions": yx, |
|||
"requestanimationframe": y, |
|||
"input-range": y, |
|||
"matchmedia": y, |
|||
"input-datetime": a, |
|||
"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": 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, |
|||
"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": 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": 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, |
|||
"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": 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": n, |
|||
"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": 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 |
|||
); |
|||
|
|||
@import "bumbleberry-settings"; |
|||
@import "../translations"; |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue