2016 design
This commit is contained in:
parent
48ed91e24c
commit
5d25e09bc4
9
Gemfile
9
Gemfile
@ -6,6 +6,7 @@ gem 'haml'
|
||||
gem 'jquery-rails'
|
||||
gem 'jquery-ui-rails'
|
||||
gem 'coffee-rails', '~> 4.0.0'
|
||||
gem 'nokogiri', '~> 1.6.8.rc2'
|
||||
|
||||
if Dir.exists?('../lingua_franca')
|
||||
gem 'lingua_franca', :path => '../lingua_franca'
|
||||
@ -33,8 +34,8 @@ gem 'nested_form'
|
||||
gem 'acts_as_list'
|
||||
gem 'geocoder'
|
||||
gem 'paper_trail', '~> 3.0.5'
|
||||
gem 'font-awesome-rails'
|
||||
gem 'wysiwyg-rails'
|
||||
#gem 'font-awesome-rails'
|
||||
#gem 'wysiwyg-rails'
|
||||
gem 'sitemap_generator'
|
||||
gem 'activerecord-session_store'
|
||||
gem 'paypal-express', '0.7.1'
|
||||
@ -59,10 +60,10 @@ end
|
||||
|
||||
group :test do
|
||||
gem 'gherkin3', '>= 3.1.0'
|
||||
gem 'cucumber', '>= 2.1.0'
|
||||
gem 'cucumber'
|
||||
gem 'cucumber-core'
|
||||
gem 'cucumber-rails'
|
||||
|
||||
#gem 'capybara'
|
||||
gem 'poltergeist'
|
||||
gem 'guard-rspec'
|
||||
gem 'factory_girl_rails'
|
||||
|
@ -9,6 +9,10 @@ html, body {
|
||||
z-index: $zindex-base;
|
||||
}
|
||||
|
||||
body {
|
||||
padding-bottom: 15vw;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, label, button, .button, dt, th, nav.sub-menu {
|
||||
@include font-family(secondary);
|
||||
font-weight: normal;
|
||||
@ -211,12 +215,6 @@ input {
|
||||
width: 100%;
|
||||
padding: 0.25em 0.5em;
|
||||
border-bottom: 0.15em solid transparent;
|
||||
//@include default-box-shadow(top, 2, false, 0 0.05em 0 0 #666);
|
||||
//@include _(transition, box-shadow 100ms ease-in-out);
|
||||
|
||||
&:hover, &:focus, &:active {
|
||||
//@include default-box-shadow(top, 2, false, 0 0.15em 0 0 $colour-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -224,7 +222,6 @@ input {
|
||||
.email-field,
|
||||
.text-field {
|
||||
position: relative;
|
||||
//overflow: hidden;
|
||||
margin-bottom: 2em;
|
||||
background-color: #F8F8F8;
|
||||
@include default-box-shadow(top, 1.5, false, 0 0.05em 0 0 #666);
|
||||
@ -240,22 +237,12 @@ input {
|
||||
position: absolute;
|
||||
z-index: $zindex-base + 3;
|
||||
font-size: 1em;
|
||||
//float: left;
|
||||
//@include font-family(primary);
|
||||
//font-weight: bold;
|
||||
//left: 0;
|
||||
//top: 0;
|
||||
padding: 0.25em 0.667em;
|
||||
width: auto;
|
||||
//background-color: #333;
|
||||
@include _(transition, 'transform 250ms ease-in-out, color 250ms ease-in-out, background-color 250ms ease-in-out');
|
||||
//@include _(transform-origin, left center);
|
||||
//@include _(transform, scale(1) translateY(0));
|
||||
top: 100%;
|
||||
//@include _(transform, translateY(100%) scale(0.75));
|
||||
@include _(transform, translateY(0) scale(0.75));
|
||||
@include _(transform-origin, 0 0);
|
||||
//line-height: 1em;
|
||||
line-height: 1.5em;
|
||||
background-color: transparent;
|
||||
color: #333;
|
||||
@ -275,9 +262,6 @@ input {
|
||||
background-color: transparent;
|
||||
color: #888;
|
||||
}
|
||||
input {
|
||||
//@include _(box-shadow, none);
|
||||
}
|
||||
}
|
||||
|
||||
input {
|
||||
@ -303,14 +287,6 @@ input {
|
||||
@include _(box-shadow, inset 0 0 1em 1em #E8E8E8);
|
||||
}
|
||||
}
|
||||
/*input {
|
||||
&:focus, &:active, &:not([value=""]) {
|
||||
+ label {
|
||||
@include _(transform, scale(0.75) translateY(-20%));
|
||||
top: -0.5em;
|
||||
}
|
||||
}
|
||||
}*/
|
||||
}
|
||||
|
||||
.input-field.other-field label {
|
||||
@ -568,90 +544,84 @@ form {
|
||||
}
|
||||
|
||||
#main-nav {
|
||||
position: relative;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
background-color: $white;
|
||||
@include default-box-shadow(top, 2);
|
||||
z-index: $zindex-base + 2;
|
||||
@include font-family(secondary);
|
||||
overflow: hidden;
|
||||
|
||||
.nav {
|
||||
text-align: center;
|
||||
clear: left;
|
||||
overflow: auto;
|
||||
background-color: $colour-3;
|
||||
height: 2em;
|
||||
position: fixed;
|
||||
z-index: 100;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
padding: 0;
|
||||
font-size: 6vw;
|
||||
background-color: #FFF;
|
||||
@include _-(display, flex);
|
||||
@include _(box-shadow, 0 0 2em -0.5em rgba(0, 0, 0, 0.5));
|
||||
|
||||
span {
|
||||
display: table-cell;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
vertical-align: middle;
|
||||
a.policy {
|
||||
background-color: $colour-5;
|
||||
@include _(order, 1);
|
||||
}
|
||||
|
||||
a {
|
||||
position: relative;
|
||||
a.about {
|
||||
background-color: $colour-3;
|
||||
@include _(order, 1);
|
||||
}
|
||||
|
||||
form {
|
||||
background-color: $colour-2;
|
||||
}
|
||||
|
||||
a, form {
|
||||
width: 33%;
|
||||
@include _(flex, 1);
|
||||
}
|
||||
|
||||
a, form, button {
|
||||
text-align: center;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: table;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
float: left;
|
||||
}
|
||||
|
||||
a, button {
|
||||
display: inline-block;
|
||||
font-weight: normal;
|
||||
@include font-family(secondary);
|
||||
text-decoration: none;
|
||||
font-size: 2.25vw;
|
||||
outline: none;
|
||||
border: 0;
|
||||
width: 33.33%;
|
||||
background-color: $colour-5;
|
||||
color: $white;
|
||||
@include _(text-shadow, 0 0 0.35em #000);
|
||||
padding: 0.5em 0;
|
||||
color: #FFF;
|
||||
@include _(border-radius, 0);
|
||||
@include _(box-shadow, inset 0 0 1.5em 0.25em rgba(0, 0, 0, 0.125));
|
||||
@include _(text-shadow, 0 0 0.25em rgba(0,0,0,0.5));
|
||||
|
||||
@include after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
background-color: transparent;
|
||||
border: 0;
|
||||
font-size: 1em;
|
||||
width: 100%;
|
||||
@include _(text-stroke, 0);
|
||||
|
||||
@include before {
|
||||
background-color: $colour-5;
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(2) {
|
||||
background-color: $colour-4;
|
||||
|
||||
@include before {
|
||||
background-color: $colour-4;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(3) {
|
||||
background-color: $colour-3;
|
||||
|
||||
@include before {
|
||||
background-color: $colour-3;
|
||||
}
|
||||
}
|
||||
form {
|
||||
display: inline;
|
||||
}
|
||||
}
|
||||
|
||||
.actions {
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
top: rems(0.5);
|
||||
right: rems(1);
|
||||
font-size: 3.1vw;
|
||||
|
||||
> a, > form {
|
||||
vertical-align: middle;
|
||||
margin: 0 0 0.5em;
|
||||
}
|
||||
.logo {
|
||||
font-size: 5em;
|
||||
}
|
||||
}
|
||||
|
||||
#main {
|
||||
position: relative;
|
||||
//z-index: $zindex-base;
|
||||
max-width: (rems(68) - $sidebar-width) * 2;
|
||||
background-color: $white;
|
||||
padding-bottom: rems(2);
|
||||
@ -660,7 +630,6 @@ form {
|
||||
padding: rems(2.5) 7.5%;
|
||||
|
||||
&.supplementary {
|
||||
//background-color: $colour-3;
|
||||
margin: rems(1) 7.5%;
|
||||
overflow: hidden;
|
||||
border-radius: 0.33em;
|
||||
@ -691,6 +660,7 @@ a.logo {
|
||||
padding: 0.1em;
|
||||
border: 0;
|
||||
float: left;
|
||||
overflow: auto;
|
||||
@include clearfix;
|
||||
|
||||
&:hover,
|
||||
@ -737,6 +707,13 @@ a.logo {
|
||||
|
||||
#banner {
|
||||
clear: left;
|
||||
float: none;
|
||||
margin: 1em auto 0;
|
||||
text-align: center;
|
||||
|
||||
body.home & {
|
||||
max-width: 40em;
|
||||
}
|
||||
|
||||
figure {
|
||||
position: relative;
|
||||
@ -747,7 +724,15 @@ a.logo {
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
@include default-box-shadow;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 5vw;
|
||||
margin: 1em auto 2em;
|
||||
|
||||
h1, h3 {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -764,6 +749,10 @@ $header-tilt: 8deg;
|
||||
position: relative;
|
||||
z-index: $zindex-base;
|
||||
|
||||
.row, .columns {
|
||||
position: static;
|
||||
}
|
||||
|
||||
rect {
|
||||
fill: $colour-1;
|
||||
}
|
||||
@ -790,19 +779,6 @@ $header-tilt: 8deg;
|
||||
@if capable_of(css-mixblendmode) {
|
||||
position: relative;
|
||||
|
||||
body.home & {
|
||||
$colours: ($colour-2, $colour-5, $colour-4, $colour-3, $colour-1);
|
||||
$gradient: (90deg);
|
||||
$w: 100% / length($colours);
|
||||
$i: 0;
|
||||
@each $colour in $colours {
|
||||
$gradient: append($gradient, #{$colour} #{$w * $i}, comma);
|
||||
$i: $i + 1;
|
||||
$gradient: append($gradient, #{$colour} #{$w * $i}, comma);
|
||||
}
|
||||
background-image: linear-gradient($gradient);
|
||||
}
|
||||
|
||||
.cover {
|
||||
-webkit-filter: saturate(25%);
|
||||
filter: saturate(25%);
|
||||
@ -815,7 +791,7 @@ $header-tilt: 8deg;
|
||||
h1 {
|
||||
text-align: center;
|
||||
font-size: 3.5em;
|
||||
margin: 0.25em 0.5em;
|
||||
margin: 1.75em 0 .75em;
|
||||
position: relative;
|
||||
z-index: $zindex-base + 2;
|
||||
@include _(text-shadow, 0 0 0.15em #000);
|
||||
@ -880,8 +856,9 @@ $header-tilt: 8deg;
|
||||
}
|
||||
}
|
||||
|
||||
.facebook, .locale {
|
||||
.facebook{
|
||||
float: left;
|
||||
margin: 0.5em;
|
||||
|
||||
a {
|
||||
@include after {
|
||||
@ -915,7 +892,8 @@ $header-tilt: 8deg;
|
||||
padding: 0.5em 0.5em 0.5em 2em;
|
||||
text-align: center;
|
||||
z-index: $zindex-base + 2;
|
||||
margin-bottom: 0.5em;
|
||||
margin-bottom: 1em;
|
||||
margin-left: 3em;
|
||||
|
||||
a {
|
||||
margin: 0 0.5em;
|
||||
@ -936,130 +914,19 @@ $header-tilt: 8deg;
|
||||
}
|
||||
}
|
||||
|
||||
.locale {
|
||||
@if capable_of(css3_selectors) {
|
||||
margin: 0 0.5em;
|
||||
|
||||
#select-language {
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.launch {
|
||||
display: block;
|
||||
height: 1.5em;
|
||||
padding: 0 0.125em;
|
||||
border-radius: 0.1em;
|
||||
background-color: #888;
|
||||
color: #E7E7E7;
|
||||
text-align: center;
|
||||
line-height: 1.5em;
|
||||
font-weight: normal;
|
||||
@include font-family(secondary);
|
||||
@include _(transition, 150ms background-color ease-in-out);
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
background-color: #333;
|
||||
}
|
||||
|
||||
@include after {
|
||||
content: '×';
|
||||
display: block;
|
||||
position: fixed;
|
||||
top: 0.5em;
|
||||
left: -1em;
|
||||
z-index: $zindex-base + 12;
|
||||
color: #333;
|
||||
font-size: 2em;
|
||||
opacity: 0;
|
||||
@include _(transition, 250ms left ease-in-out);
|
||||
}
|
||||
}
|
||||
|
||||
.selector {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
padding: 1em 4em;
|
||||
overflow: auto;
|
||||
background-color: $white;
|
||||
z-index: $zindex-base + 11;
|
||||
@include _(transform, scale(0));
|
||||
@include _(transform-origin, 6.25em _calc('100% - 2em', 98%));
|
||||
@include _(transition, 250ms all ease-in-out);
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
li {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
min-width: 6em;
|
||||
margin: 1em;
|
||||
text-align: center;
|
||||
border-radius: 0.33em;
|
||||
overflow: hidden;
|
||||
@include default-box-shadow;
|
||||
@include _(transform, scale(1));
|
||||
@include _(transition, 100ms transform ease-in-out);
|
||||
|
||||
a {
|
||||
display: block;
|
||||
position: static;
|
||||
background-color: $colour-1;
|
||||
font-weight: normal;
|
||||
@include font-family(secondary);
|
||||
line-height: 1.5em;
|
||||
color: $white;
|
||||
|
||||
@include before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: $zindex-base + 2;
|
||||
}
|
||||
}
|
||||
|
||||
span {
|
||||
padding: 1em;
|
||||
height: 3.25em;
|
||||
display: block;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
@include _(transform, scale(1.25));
|
||||
}
|
||||
}
|
||||
|
||||
#select-language:checked ~ label {
|
||||
@include after {
|
||||
display: block;
|
||||
left: 0.25em;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
#select-language:checked ~ .selector {
|
||||
@include _(transform, scale(1));
|
||||
}
|
||||
} @else {
|
||||
display: none;
|
||||
}
|
||||
ul.locales {
|
||||
float: left;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
}
|
||||
|
||||
@include breakpoint(medium) {
|
||||
body {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 2.25em;
|
||||
}
|
||||
@ -1068,11 +935,124 @@ $header-tilt: 8deg;
|
||||
font-size: 1.4em;
|
||||
}
|
||||
|
||||
#main-nav {
|
||||
.logo {
|
||||
margin-top: 0.25em;
|
||||
font-size: 4.25em;
|
||||
}
|
||||
|
||||
.nav {
|
||||
position: static;
|
||||
font-size: 1.8em;
|
||||
display: block;
|
||||
text-align: right;
|
||||
background-color: transparent;
|
||||
@include _(box-shadow, none);
|
||||
|
||||
form {
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
.nav a, .nav button {
|
||||
width: auto;
|
||||
overflow: visible;
|
||||
margin-left: 0.75em;
|
||||
line-height: 3em;
|
||||
padding: 0 0 1em;
|
||||
color: #333;
|
||||
@include _(box-shadow, none);
|
||||
@include _(text-shadow, none);
|
||||
|
||||
@include before-and-after {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
background-color: rgba(0, 0, 0, 0.33);
|
||||
z-index: -1;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
font-size: 1em;
|
||||
left: -0.51em;
|
||||
right: -0.51em;
|
||||
top: 0;
|
||||
height: 0;
|
||||
width: auto;
|
||||
@include _(opacity, 1);
|
||||
@include _(transition, height 150ms ease-in-out);
|
||||
@include _(transform, rotate(-20deg) scaleX(0.94) scaleY(1.5) translate(-0.5em, -0.5em));
|
||||
@include _(transform-origin, 0 0);
|
||||
}
|
||||
|
||||
@include after {
|
||||
height: 3em;
|
||||
@include _(opacity, 0.1);
|
||||
}
|
||||
@include before {
|
||||
box-shadow: 0 0 2em -0.5em rgba(#000, 0.75);
|
||||
@include _(opacity, 0.33);
|
||||
}
|
||||
|
||||
&.current {
|
||||
z-index: 2;
|
||||
|
||||
@include before {
|
||||
height: 3em;
|
||||
@include _(opacity, 0.67);
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
@include before {
|
||||
height: 3em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.nav a {
|
||||
&.policy {
|
||||
background-color: transparent;
|
||||
|
||||
@include before-and-after {
|
||||
background-color: $colour-5;
|
||||
}
|
||||
}
|
||||
|
||||
&.about {
|
||||
background-color: transparent;
|
||||
|
||||
@include before-and-after {
|
||||
background-color: $colour-3;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.nav a.register, .nav button {
|
||||
@include before-and-after {
|
||||
background-color: $colour-2;
|
||||
}
|
||||
&:focus, &:active {
|
||||
@include _(transform, none);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#banner {
|
||||
margin: 3em auto;
|
||||
|
||||
figure {
|
||||
min-height: 40em;
|
||||
margin: rems(-20) auto rems(2);
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 1.9em;
|
||||
margin: 3em 0 1em;
|
||||
}
|
||||
|
||||
img {
|
||||
@include _(box-shadow, 0 0 2em -0.5em rgba(0, 0, 0, 0.5));
|
||||
}
|
||||
}
|
||||
|
||||
#main {
|
||||
@ -1085,73 +1065,6 @@ $header-tilt: 8deg;
|
||||
}
|
||||
}
|
||||
|
||||
#main-nav {
|
||||
height: rems(6);
|
||||
|
||||
.nav {
|
||||
height: auto;
|
||||
width: 80%;
|
||||
clear: none;
|
||||
padding-top: rems(1.5);
|
||||
background-color: transparent;
|
||||
overflow: visible;
|
||||
|
||||
span {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
overflow: visible;
|
||||
padding: 0;
|
||||
float: none;
|
||||
width: auto;
|
||||
margin: 0 0.5em 0.75em;
|
||||
font-size: 1em;
|
||||
color: #666;
|
||||
background-color: transparent;
|
||||
@include _(text-shadow, 0 0.125em 0.25em #888);
|
||||
|
||||
&:nth-child(n) {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
&.current {
|
||||
color: $colour-1;
|
||||
}
|
||||
|
||||
@include after {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
bottom: -0.1em;
|
||||
right: 0;
|
||||
left: 0;
|
||||
width: 0;
|
||||
margin: 0 auto;
|
||||
opacity: 0;
|
||||
border-bottom: 0.15em solid;
|
||||
@include _(box-shadow, 0 0.075em 0.15em #888);
|
||||
@include _(transition, all 250ms ease-in-out);
|
||||
@include _(transform, none);
|
||||
}
|
||||
|
||||
&:hover,
|
||||
&:active,
|
||||
&:focus {
|
||||
@include after {
|
||||
opacity: 1;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.actions {
|
||||
font-size: 2vw;
|
||||
}
|
||||
}
|
||||
|
||||
#header-title {
|
||||
min-height: rems(35);
|
||||
font-size: 1em;
|
||||
@ -1218,21 +1131,33 @@ $header-tilt: 8deg;
|
||||
#footer {
|
||||
.github {
|
||||
bottom: 0.5em;
|
||||
left: 4em;
|
||||
//left: 4em;
|
||||
float: left;
|
||||
margin-right: 1em;
|
||||
margin-left: 0;
|
||||
}
|
||||
.facebook {
|
||||
position: absolute;
|
||||
left: 0.5em;
|
||||
}
|
||||
.locale {
|
||||
position: absolute;
|
||||
left: 2em;
|
||||
margin: 0 1em 0 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include keyframes(fade-out) {
|
||||
to { @include _(opacity, 0.25); }
|
||||
}
|
||||
|
||||
:focus {
|
||||
@include _(animation, fade-out ease-in-out 500ms infinite alternate both);
|
||||
}
|
||||
|
||||
@include breakpoint(large) {
|
||||
#main-nav {
|
||||
.nav {
|
||||
font-size: 1.9em;
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
#banner {
|
||||
body.fixed-banner & {
|
||||
position: fixed;
|
||||
@ -1247,40 +1172,6 @@ $header-tilt: 8deg;
|
||||
}
|
||||
}
|
||||
|
||||
#main-nav {
|
||||
position: fixed;
|
||||
width: $sidebar-width;
|
||||
height: 100%;
|
||||
@include default-box-shadow(left, 2);
|
||||
|
||||
.nav {
|
||||
text-align: left;
|
||||
padding-top: rems(9);
|
||||
width: 100%;
|
||||
|
||||
a {
|
||||
font-size: 1.6em;
|
||||
margin: 0.75em 1em;
|
||||
@include _(transition, color 250ms ease-in-out);
|
||||
|
||||
&:hover, &:active, &:focus {
|
||||
color: #333;
|
||||
|
||||
@include before {
|
||||
@include _(opacity, 1)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.actions {
|
||||
position: relative;
|
||||
top: 0;
|
||||
right: 0;
|
||||
font-size: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
#main {
|
||||
padding-left: $sidebar-width;
|
||||
min-height: 100vh;
|
||||
@ -1297,14 +1188,18 @@ $header-tilt: 8deg;
|
||||
&.short {
|
||||
h1 {
|
||||
text-align: left;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#main-nav .logo {
|
||||
font-size: 5em;
|
||||
}
|
||||
|
||||
a.logo {
|
||||
display: block;
|
||||
float: none;
|
||||
font-size: rems(7.5);
|
||||
padding: 0.2em;
|
||||
}
|
||||
|
||||
@ -1313,73 +1208,14 @@ $header-tilt: 8deg;
|
||||
}
|
||||
|
||||
#footer {
|
||||
position: fixed;
|
||||
z-index: $zindex-base + 2;
|
||||
width: 0;
|
||||
overflow: visible;
|
||||
padding: 0;
|
||||
top: 0;
|
||||
min-height: 42em;
|
||||
height: 100%;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 3em;
|
||||
|
||||
footer {
|
||||
position: absolute;
|
||||
height: 3.5em;
|
||||
width: $sidebar-width;
|
||||
bottom: 0;
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
.github {
|
||||
position: absolute;
|
||||
border-color: transparent;
|
||||
max-width: 2.25em;
|
||||
height: 2.25em;
|
||||
left: 0.5em;
|
||||
bottom: 0.333em;
|
||||
overflow: hidden;
|
||||
color: transparent;
|
||||
padding: 0.333em;
|
||||
line-height: 1.5em;
|
||||
@include _(transition, all 250ms ease-in-out);
|
||||
|
||||
&:hover {
|
||||
max-width: _calc('100% - 1em', 100%);
|
||||
color: #333;
|
||||
border-color: #DDD;
|
||||
@include default-box-shadow(top, 2, true);
|
||||
}
|
||||
|
||||
.icons {
|
||||
float: left;
|
||||
width: 1.5em;
|
||||
height: 1.5em;
|
||||
fill: #333;
|
||||
vertical-align: middle;
|
||||
position: static;
|
||||
}
|
||||
|
||||
a {
|
||||
margin: 0 0.5em;
|
||||
font-size: 0.8em;
|
||||
font-weight: bold;
|
||||
color: inherit;
|
||||
position: static;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
|
||||
@include after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.facebook, .locale {
|
||||
position: relative;
|
||||
left: 2.5em;
|
||||
bottom: 0.25em;
|
||||
max-width: $row-width;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1396,8 +1232,8 @@ $header-tilt: 8deg;
|
||||
}
|
||||
}
|
||||
|
||||
@include header-colour(about, $colour-1);
|
||||
@include header-colour(policy, $colour-3);
|
||||
@include header-colour(about, $colour-3);
|
||||
@include header-colour(policy, $colour-5);
|
||||
|
||||
#bike_small + label {
|
||||
padding: 0.5em 2.5em;
|
||||
@ -1583,6 +1419,10 @@ $header-tilt: 8deg;
|
||||
@include default-box-shadow(top, 2, true);
|
||||
}
|
||||
|
||||
body.policy .policy-agreement ul {
|
||||
padding: 0 1.5em 0;
|
||||
}
|
||||
|
||||
.stats {
|
||||
list-style: none;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
$sidebar-width: rems(19);
|
||||
$sidebar-width: 0;
|
||||
|
||||
// $colour-1: #00ADEF;
|
||||
// $colour-2: #FF015B;
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"stylesheets": ["application", "translations", "email-example"],
|
||||
"background-color": "#E7E7E7",
|
||||
"background-color": "#FFFEFE",
|
||||
"breakpoint-unit": "px",
|
||||
"unresponsive-width": 1000,
|
||||
"row-width": 1000,
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: UC Browser for Android 9.9 (approximately 8.11% of all users)
|
||||
* Browser: UC Browser for Android 9.9 (approximately 9.17% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": y,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": n,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": u,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": n,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": y
|
||||
"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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": n,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": u,
|
||||
"offline-apps": y,
|
||||
"webworkers": n,
|
||||
"fontface": a,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": y
|
||||
"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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Android Browser 2.3 (approximately 0.03% of all users)
|
||||
* Browser: Android Browser 2.3 (approximately 0.02% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": n,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": n,
|
||||
"fontface": a,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": n,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": n,
|
||||
"fontface": a,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Android Browser 4.1 (approximately 0.48% of all users)
|
||||
* Browser: Android Browser 4.1 (approximately 0.33% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": n,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": n,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Android Browser 4.2 (approximately 1.05% of all users)
|
||||
* Browser: Android Browser 4.2 (approximately 0.78% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": n,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": n,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Android Browser 4.4 (approximately 1.05% of all users)
|
||||
* Browser: Android Browser 4.4 (approximately 0.93% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": u,
|
||||
"webgl2": n,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Android Browser 4.4 (approximately 2.03% of all users)
|
||||
* Browser: Android Browser 4.4 (approximately 1.69% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": a,
|
||||
"webgl2": n,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": n,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": n,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -163,7 +164,7 @@ $browser_capabilities: (
|
||||
"pagevisibility": y,
|
||||
"stricttransportsecurity": y,
|
||||
"style-scoped": n,
|
||||
"svg-fragment": y,
|
||||
"svg-fragment": a,
|
||||
"outline": y,
|
||||
"download": y,
|
||||
"pointer": p,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Blackberry Browser 7.0 (approximately 0.09% of all users)
|
||||
* Browser: Blackberry Browser 7.0 (approximately 0.08% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": n,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": a,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": u,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": u,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 11.0 (approximately 0.05% of all users)
|
||||
* Browser: Chrome 11.0 (approximately 0.04% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": u,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": u,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 12.0 (approximately 0.02% of all users)
|
||||
* Browser: Chrome 12.0 (approximately 0.01% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": u,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": u,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": u,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": u,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": u,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -324,13 +325,34 @@ $browser_capabilities: (
|
||||
"keyboardevent-key": n,
|
||||
"brotli": n,
|
||||
"element-closest": n,
|
||||
"input-event": u,
|
||||
"input-search": u,
|
||||
"input-event": y,
|
||||
"input-search": y,
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -324,13 +325,34 @@ $browser_capabilities: (
|
||||
"keyboardevent-key": n,
|
||||
"brotli": n,
|
||||
"element-closest": n,
|
||||
"input-event": u,
|
||||
"input-search": u,
|
||||
"input-event": y,
|
||||
"input-search": y,
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -324,13 +325,34 @@ $browser_capabilities: (
|
||||
"keyboardevent-key": n,
|
||||
"brotli": n,
|
||||
"element-closest": n,
|
||||
"input-event": u,
|
||||
"input-search": u,
|
||||
"input-event": y,
|
||||
"input-search": y,
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 18.0 (approximately 0.02% of all users)
|
||||
* Browser: Chrome 18.0 (approximately 0.01% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -324,13 +325,34 @@ $browser_capabilities: (
|
||||
"keyboardevent-key": n,
|
||||
"brotli": n,
|
||||
"element-closest": n,
|
||||
"input-event": u,
|
||||
"input-search": u,
|
||||
"input-event": y,
|
||||
"input-search": y,
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -324,13 +325,34 @@ $browser_capabilities: (
|
||||
"keyboardevent-key": n,
|
||||
"brotli": n,
|
||||
"element-closest": n,
|
||||
"input-event": u,
|
||||
"input-search": u,
|
||||
"input-event": y,
|
||||
"input-search": y,
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -324,13 +325,34 @@ $browser_capabilities: (
|
||||
"keyboardevent-key": n,
|
||||
"brotli": n,
|
||||
"element-closest": n,
|
||||
"input-event": u,
|
||||
"input-search": u,
|
||||
"input-event": y,
|
||||
"input-search": y,
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -324,13 +325,34 @@ $browser_capabilities: (
|
||||
"keyboardevent-key": n,
|
||||
"brotli": n,
|
||||
"element-closest": n,
|
||||
"input-event": u,
|
||||
"input-event": y,
|
||||
"input-search": u,
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 22.0 (approximately 0.05% of all users)
|
||||
* Browser: Chrome 22.0 (approximately 0.04% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -324,13 +325,34 @@ $browser_capabilities: (
|
||||
"keyboardevent-key": n,
|
||||
"brotli": n,
|
||||
"element-closest": n,
|
||||
"input-event": u,
|
||||
"input-event": y,
|
||||
"input-search": u,
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -324,13 +325,34 @@ $browser_capabilities: (
|
||||
"keyboardevent-key": n,
|
||||
"brotli": n,
|
||||
"element-closest": n,
|
||||
"input-event": u,
|
||||
"input-event": y,
|
||||
"input-search": u,
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 24.0 (approximately 0.02% of all users)
|
||||
* Browser: Chrome 24.0 (approximately 0.03% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -324,13 +325,34 @@ $browser_capabilities: (
|
||||
"keyboardevent-key": n,
|
||||
"brotli": n,
|
||||
"element-closest": n,
|
||||
"input-event": u,
|
||||
"input-event": y,
|
||||
"input-search": u,
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -324,13 +325,34 @@ $browser_capabilities: (
|
||||
"keyboardevent-key": n,
|
||||
"brotli": n,
|
||||
"element-closest": n,
|
||||
"input-event": u,
|
||||
"input-event": y,
|
||||
"input-search": u,
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": a,
|
||||
"webgl2": n,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 27.0 (approximately 0.03% of all users)
|
||||
* Browser: Chrome 27.0 (approximately 0.02% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": a,
|
||||
"webgl2": n,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": a,
|
||||
"webgl2": n,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 29.0 (approximately 0.05% of all users)
|
||||
* Browser: Chrome 29.0 (approximately 0.68% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": a,
|
||||
"webgl2": n,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": a,
|
||||
"webgl2": n,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 31.0 (approximately 0.43% of all users)
|
||||
* Browser: Chrome 31.0 (approximately 0.2% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": a,
|
||||
"webgl2": n,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 32.0 (approximately 0.05% of all users)
|
||||
* Browser: Chrome 32.0 (approximately 0.04% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": a,
|
||||
"webgl2": n,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 33.0 (approximately 0.1% of all users)
|
||||
* Browser: Chrome 33.0 (approximately 0.08% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": a,
|
||||
"webgl2": n,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 34.0 (approximately 0.07% of all users)
|
||||
* Browser: Chrome 34.0 (approximately 0.06% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": a,
|
||||
"webgl2": n,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 35.0 (approximately 0.1% of all users)
|
||||
* Browser: Chrome 35.0 (approximately 0.08% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": a,
|
||||
"webgl2": n,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 36.0 (approximately 0.11% of all users)
|
||||
* Browser: Chrome 36.0 (approximately 0.07% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -163,7 +164,7 @@ $browser_capabilities: (
|
||||
"pagevisibility": y,
|
||||
"stricttransportsecurity": y,
|
||||
"style-scoped": nd,
|
||||
"svg-fragment": y,
|
||||
"svg-fragment": a,
|
||||
"outline": y,
|
||||
"download": y,
|
||||
"pointer": p,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": a,
|
||||
"webgl2": n,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 37.0 (approximately 0.08% of all users)
|
||||
* Browser: Chrome 37.0 (approximately 0.06% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -163,7 +164,7 @@ $browser_capabilities: (
|
||||
"pagevisibility": y,
|
||||
"stricttransportsecurity": y,
|
||||
"style-scoped": n,
|
||||
"svg-fragment": y,
|
||||
"svg-fragment": a,
|
||||
"outline": y,
|
||||
"download": y,
|
||||
"pointer": p,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": a,
|
||||
"webgl2": n,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 38.0 (approximately 0.09% of all users)
|
||||
* Browser: Chrome 38.0 (approximately 0.06% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -163,7 +164,7 @@ $browser_capabilities: (
|
||||
"pagevisibility": y,
|
||||
"stricttransportsecurity": y,
|
||||
"style-scoped": n,
|
||||
"svg-fragment": y,
|
||||
"svg-fragment": a,
|
||||
"outline": y,
|
||||
"download": y,
|
||||
"pointer": p,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": a,
|
||||
"webgl2": n,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 39.0 (approximately 0.16% of all users)
|
||||
* Browser: Chrome 39.0 (approximately 0.12% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -163,7 +164,7 @@ $browser_capabilities: (
|
||||
"pagevisibility": y,
|
||||
"stricttransportsecurity": y,
|
||||
"style-scoped": n,
|
||||
"svg-fragment": y,
|
||||
"svg-fragment": a,
|
||||
"outline": y,
|
||||
"download": y,
|
||||
"pointer": p,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 4.0 (approximately 0.02% of all users)
|
||||
* Browser: Chrome 4.0 (approximately 0.01% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": u,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 40.0 (approximately 0.3% of all users)
|
||||
* Browser: Chrome 40.0 (approximately 0.09% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -163,7 +164,7 @@ $browser_capabilities: (
|
||||
"pagevisibility": y,
|
||||
"stricttransportsecurity": y,
|
||||
"style-scoped": n,
|
||||
"svg-fragment": y,
|
||||
"svg-fragment": a,
|
||||
"outline": y,
|
||||
"download": y,
|
||||
"pointer": p,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 41.0 (approximately 0.26% of all users)
|
||||
* Browser: Chrome 41.0 (approximately 0.12% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -119,7 +120,7 @@ $browser_capabilities: (
|
||||
"datalist": a,
|
||||
"dataset": y,
|
||||
"css-grid": pd,
|
||||
"menu": n,
|
||||
"menu": nd,
|
||||
"css-zoom": y,
|
||||
"rem": y,
|
||||
"ttf": y,
|
||||
@ -163,7 +164,7 @@ $browser_capabilities: (
|
||||
"pagevisibility": y,
|
||||
"stricttransportsecurity": y,
|
||||
"style-scoped": n,
|
||||
"svg-fragment": y,
|
||||
"svg-fragment": a,
|
||||
"outline": y,
|
||||
"download": y,
|
||||
"pointer": p,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": nd,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 42.0 (approximately 0.26% of all users)
|
||||
* Browser: Chrome 42.0 (approximately 0.12% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -119,7 +120,7 @@ $browser_capabilities: (
|
||||
"datalist": a,
|
||||
"dataset": y,
|
||||
"css-grid": pd,
|
||||
"menu": n,
|
||||
"menu": nd,
|
||||
"css-zoom": y,
|
||||
"rem": y,
|
||||
"ttf": y,
|
||||
@ -163,7 +164,7 @@ $browser_capabilities: (
|
||||
"pagevisibility": y,
|
||||
"stricttransportsecurity": y,
|
||||
"style-scoped": n,
|
||||
"svg-fragment": y,
|
||||
"svg-fragment": a,
|
||||
"outline": y,
|
||||
"download": y,
|
||||
"pointer": p,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": nd,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 43.0 (approximately 0.46% of all users)
|
||||
* Browser: Chrome 43.0 (approximately 0.35% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -119,7 +120,7 @@ $browser_capabilities: (
|
||||
"datalist": a,
|
||||
"dataset": y,
|
||||
"css-grid": pd,
|
||||
"menu": n,
|
||||
"menu": nd,
|
||||
"css-zoom": y,
|
||||
"rem": y,
|
||||
"ttf": y,
|
||||
@ -163,7 +164,7 @@ $browser_capabilities: (
|
||||
"pagevisibility": y,
|
||||
"stricttransportsecurity": y,
|
||||
"style-scoped": n,
|
||||
"svg-fragment": y,
|
||||
"svg-fragment": a,
|
||||
"outline": y,
|
||||
"download": y,
|
||||
"pointer": p,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": nd,
|
||||
"css-scroll-behavior": nd,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 44.0 (approximately 0.41% of all users)
|
||||
* Browser: Chrome 44.0 (approximately 0.19% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -119,7 +120,7 @@ $browser_capabilities: (
|
||||
"datalist": a,
|
||||
"dataset": y,
|
||||
"css-grid": pd,
|
||||
"menu": n,
|
||||
"menu": nd,
|
||||
"css-zoom": y,
|
||||
"rem": y,
|
||||
"ttf": y,
|
||||
@ -163,7 +164,7 @@ $browser_capabilities: (
|
||||
"pagevisibility": y,
|
||||
"stricttransportsecurity": y,
|
||||
"style-scoped": n,
|
||||
"svg-fragment": y,
|
||||
"svg-fragment": a,
|
||||
"outline": y,
|
||||
"download": y,
|
||||
"pointer": p,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": nd,
|
||||
"css-scroll-behavior": nd,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": a,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 45.0 (approximately 0.61% of all users)
|
||||
* Browser: Chrome 45.0 (approximately 0.56% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -119,7 +120,7 @@ $browser_capabilities: (
|
||||
"datalist": a,
|
||||
"dataset": y,
|
||||
"css-grid": pd,
|
||||
"menu": n,
|
||||
"menu": nd,
|
||||
"css-zoom": y,
|
||||
"rem": y,
|
||||
"ttf": y,
|
||||
@ -163,7 +164,7 @@ $browser_capabilities: (
|
||||
"pagevisibility": y,
|
||||
"stricttransportsecurity": y,
|
||||
"style-scoped": n,
|
||||
"svg-fragment": y,
|
||||
"svg-fragment": a,
|
||||
"outline": y,
|
||||
"download": y,
|
||||
"pointer": p,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": nd,
|
||||
"css-scroll-behavior": nd,
|
||||
"subresource-integrity": y,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": a,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 46.0 (approximately 5.77% of all users)
|
||||
* Browser: Chrome 46.0 (approximately 0.25% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -119,7 +120,7 @@ $browser_capabilities: (
|
||||
"datalist": a,
|
||||
"dataset": y,
|
||||
"css-grid": pd,
|
||||
"menu": n,
|
||||
"menu": nd,
|
||||
"css-zoom": y,
|
||||
"rem": y,
|
||||
"ttf": y,
|
||||
@ -163,7 +164,7 @@ $browser_capabilities: (
|
||||
"pagevisibility": y,
|
||||
"stricttransportsecurity": y,
|
||||
"style-scoped": n,
|
||||
"svg-fragment": y,
|
||||
"svg-fragment": a,
|
||||
"outline": y,
|
||||
"download": y,
|
||||
"pointer": p,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": y,
|
||||
"css-scroll-behavior": nd,
|
||||
"subresource-integrity": y,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": a,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Chrome 47.0 (approximately 20.46% of all users)
|
||||
* Browser: Chrome 47.0 (approximately 0.49% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": yx,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -119,7 +120,7 @@ $browser_capabilities: (
|
||||
"datalist": a,
|
||||
"dataset": y,
|
||||
"css-grid": pd,
|
||||
"menu": n,
|
||||
"menu": nd,
|
||||
"css-zoom": y,
|
||||
"rem": y,
|
||||
"ttf": y,
|
||||
@ -163,7 +164,7 @@ $browser_capabilities: (
|
||||
"pagevisibility": y,
|
||||
"stricttransportsecurity": y,
|
||||
"style-scoped": n,
|
||||
"svg-fragment": y,
|
||||
"svg-fragment": a,
|
||||
"outline": y,
|
||||
"download": y,
|
||||
"pointer": p,
|
||||
@ -246,7 +247,7 @@ $browser_capabilities: (
|
||||
"object-observe": y,
|
||||
"css-at-counter-style": n,
|
||||
"css-page-break": a,
|
||||
"css-placeholder-shown": n,
|
||||
"css-placeholder-shown": y,
|
||||
"broadcastchannel": n,
|
||||
"css-crisp-edges": y,
|
||||
"css-text-align-last": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": y,
|
||||
"css-scroll-behavior": nd,
|
||||
"subresource-integrity": y,
|
||||
"css-in-out-of-range": a,
|
||||
"push-api": a,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": u,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": u,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": u,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": u,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": u,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": u,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": u,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": u,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": u,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": u,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 12.0 (approximately 0.03% of all users)
|
||||
* Browser: Firefox 12.0 (approximately 0.02% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 14.0 (approximately 0.02% of all users)
|
||||
* Browser: Firefox 14.0 (approximately 0.01% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 17.0 (approximately 0.02% of all users)
|
||||
* Browser: Firefox 17.0 (approximately 0.01% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": p,
|
||||
"forms": p,
|
||||
"html5semantic": n,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": p,
|
||||
"webworkers": p,
|
||||
"fontface": n,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 21.0 (approximately 0.08% of all users)
|
||||
* Browser: Firefox 21.0 (approximately 0.03% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 22.0 (approximately 0.04% of all users)
|
||||
* Browser: Firefox 22.0 (approximately 0.01% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 23.0 (approximately 0.03% of all users)
|
||||
* Browser: Firefox 23.0 (approximately 0.02% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 24.0 (approximately 0.03% of all users)
|
||||
* Browser: Firefox 24.0 (approximately 0.02% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 25.0 (approximately 0.06% of all users)
|
||||
* Browser: Firefox 25.0 (approximately 0.05% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 27.0 (approximately 0.03% of all users)
|
||||
* Browser: Firefox 27.0 (approximately 0.02% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 28.0 (approximately 0.04% of all users)
|
||||
* Browser: Firefox 28.0 (approximately 0.03% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 29.0 (approximately 0.05% of all users)
|
||||
* Browser: Firefox 29.0 (approximately 0.03% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": y,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": p,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": p,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 3.0 (approximately 0.05% of all users)
|
||||
* Browser: Firefox 3.0 (approximately 0.04% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": p,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": a,
|
||||
"webworkers": p,
|
||||
"fontface": n,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": n,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 30.0 (approximately 0.04% of all users)
|
||||
* Browser: Firefox 30.0 (approximately 0.03% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": y,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 31.0 (approximately 0.09% of all users)
|
||||
* Browser: Firefox 31.0 (approximately 0.06% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": y,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": y,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 33.0 (approximately 0.07% of all users)
|
||||
* Browser: Firefox 33.0 (approximately 0.04% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -262,7 +263,7 @@ $browser_capabilities: (
|
||||
"css-media-interaction": n,
|
||||
"ime": n,
|
||||
"font-smooth": ax,
|
||||
"audiotracks": n,
|
||||
"audiotracks": nd,
|
||||
"videotracks": n,
|
||||
"contentsecuritypolicy2": a,
|
||||
"permissions-api": n,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": y,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 34.0 (approximately 0.07% of all users)
|
||||
* Browser: Firefox 34.0 (approximately 0.05% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -262,7 +263,7 @@ $browser_capabilities: (
|
||||
"css-media-interaction": n,
|
||||
"ime": n,
|
||||
"font-smooth": ax,
|
||||
"audiotracks": n,
|
||||
"audiotracks": nd,
|
||||
"videotracks": n,
|
||||
"contentsecuritypolicy2": a,
|
||||
"permissions-api": n,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": y,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 35.0 (approximately 0.08% of all users)
|
||||
* Browser: Firefox 35.0 (approximately 0.05% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -215,7 +216,7 @@ $browser_capabilities: (
|
||||
"iframe-seamless": n,
|
||||
"css-image-orientation": y,
|
||||
"picture": nd,
|
||||
"woff2": nd,
|
||||
"woff2": n,
|
||||
"text-size-adjust": n,
|
||||
"web-animation": ad,
|
||||
"resource-timing": y,
|
||||
@ -262,7 +263,7 @@ $browser_capabilities: (
|
||||
"css-media-interaction": n,
|
||||
"ime": n,
|
||||
"font-smooth": ax,
|
||||
"audiotracks": n,
|
||||
"audiotracks": nd,
|
||||
"videotracks": n,
|
||||
"contentsecuritypolicy2": a,
|
||||
"permissions-api": n,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": y,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 36.0 (approximately 0.08% of all users)
|
||||
* Browser: Firefox 36.0 (approximately 0.05% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -215,7 +216,7 @@ $browser_capabilities: (
|
||||
"iframe-seamless": n,
|
||||
"css-image-orientation": y,
|
||||
"picture": nd,
|
||||
"woff2": nd,
|
||||
"woff2": n,
|
||||
"text-size-adjust": n,
|
||||
"web-animation": ad,
|
||||
"resource-timing": y,
|
||||
@ -262,7 +263,7 @@ $browser_capabilities: (
|
||||
"css-media-interaction": n,
|
||||
"ime": n,
|
||||
"font-smooth": ax,
|
||||
"audiotracks": n,
|
||||
"audiotracks": nd,
|
||||
"videotracks": n,
|
||||
"contentsecuritypolicy2": a,
|
||||
"permissions-api": n,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": y,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": y,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 37.0 (approximately 0.14% of all users)
|
||||
* Browser: Firefox 37.0 (approximately 0.06% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -215,7 +216,7 @@ $browser_capabilities: (
|
||||
"iframe-seamless": n,
|
||||
"css-image-orientation": y,
|
||||
"picture": nd,
|
||||
"woff2": nd,
|
||||
"woff2": n,
|
||||
"text-size-adjust": n,
|
||||
"web-animation": ad,
|
||||
"resource-timing": y,
|
||||
@ -262,7 +263,7 @@ $browser_capabilities: (
|
||||
"css-media-interaction": n,
|
||||
"ime": n,
|
||||
"font-smooth": ax,
|
||||
"audiotracks": n,
|
||||
"audiotracks": nd,
|
||||
"videotracks": n,
|
||||
"contentsecuritypolicy2": a,
|
||||
"permissions-api": n,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": y,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": y,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 38.0 (approximately 0.29% of all users)
|
||||
* Browser: Firefox 38.0 (approximately 0.22% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -215,7 +216,7 @@ $browser_capabilities: (
|
||||
"iframe-seamless": n,
|
||||
"css-image-orientation": y,
|
||||
"picture": y,
|
||||
"woff2": nd,
|
||||
"woff2": n,
|
||||
"text-size-adjust": n,
|
||||
"web-animation": ad,
|
||||
"resource-timing": y,
|
||||
@ -262,7 +263,7 @@ $browser_capabilities: (
|
||||
"css-media-interaction": n,
|
||||
"ime": n,
|
||||
"font-smooth": ax,
|
||||
"audiotracks": n,
|
||||
"audiotracks": nd,
|
||||
"videotracks": n,
|
||||
"contentsecuritypolicy2": a,
|
||||
"permissions-api": n,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": y,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": y,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 39.0 (approximately 0.15% of all users)
|
||||
* Browser: Firefox 39.0 (approximately 0.08% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -262,7 +263,7 @@ $browser_capabilities: (
|
||||
"css-media-interaction": n,
|
||||
"ime": n,
|
||||
"font-smooth": ax,
|
||||
"audiotracks": n,
|
||||
"audiotracks": nd,
|
||||
"videotracks": n,
|
||||
"contentsecuritypolicy2": a,
|
||||
"permissions-api": n,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": y,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": y,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 40.0 (approximately 0.15% of all users)
|
||||
* Browser: Firefox 40.0 (approximately 0.08% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -262,7 +263,7 @@ $browser_capabilities: (
|
||||
"css-media-interaction": n,
|
||||
"ime": n,
|
||||
"font-smooth": ax,
|
||||
"audiotracks": n,
|
||||
"audiotracks": nd,
|
||||
"videotracks": n,
|
||||
"contentsecuritypolicy2": a,
|
||||
"permissions-api": n,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": y,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": y,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 41.0 (approximately 0.27% of all users)
|
||||
* Browser: Firefox 41.0 (approximately 0.09% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -262,7 +263,7 @@ $browser_capabilities: (
|
||||
"css-media-interaction": n,
|
||||
"ime": n,
|
||||
"font-smooth": ax,
|
||||
"audiotracks": n,
|
||||
"audiotracks": nd,
|
||||
"videotracks": n,
|
||||
"contentsecuritypolicy2": a,
|
||||
"permissions-api": n,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": y,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": y,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 42.0 (approximately 4.19% of all users)
|
||||
* Browser: Firefox 42.0 (approximately 0.14% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -23,6 +23,7 @@ $browser_capabilities: (
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -262,7 +263,7 @@ $browser_capabilities: (
|
||||
"css-media-interaction": n,
|
||||
"ime": n,
|
||||
"font-smooth": ax,
|
||||
"audiotracks": n,
|
||||
"audiotracks": nd,
|
||||
"videotracks": n,
|
||||
"contentsecuritypolicy2": a,
|
||||
"permissions-api": n,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": y,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": y,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* ../translations
|
||||
* Browser: Firefox 6.0 (approximately 0.02% of all users)
|
||||
* Browser: Firefox 6.0 (approximately 0.04% of all users)
|
||||
*
|
||||
*/
|
||||
|
||||
@ -22,7 +22,8 @@ $browser_capabilities: (
|
||||
"queryselector": y,
|
||||
"getelementsbyclassname": y,
|
||||
"forms": a,
|
||||
"html5semantic": y,
|
||||
"html5semantic": a,
|
||||
"css-line-clamp": n,
|
||||
"offline-apps": y,
|
||||
"webworkers": y,
|
||||
"fontface": y,
|
||||
@ -329,8 +330,29 @@ $browser_capabilities: (
|
||||
"css-motion-paths": n,
|
||||
"css-scroll-behavior": n,
|
||||
"subresource-integrity": n,
|
||||
"css-in-out-of-range": n,
|
||||
"push-api": n,
|
||||
"background-position-x-y": 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,
|
||||
"document-currentscript": y,
|
||||
"css-descendant-gtgt": n,
|
||||
"css-has": n,
|
||||
"css-not-sel-list": n
|
||||
);
|
||||
|
||||
@import "bumbleberry-settings";
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user