Remove webkit prefixes for transition/gradients, bump min version requirement for Chrome to 26.
This commit is contained in:
parent
7b0b92accf
commit
9b06417c81
@ -14,7 +14,6 @@
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 2px 4px 3px;
|
padding: 2px 4px 3px;
|
||||||
outline: none;
|
outline: none;
|
||||||
-webkit-transition: color .25s, border-color .25s, -webkit-flex .25s;
|
|
||||||
transition: color .25s, border-color .25s, flex .25s;
|
transition: color .25s, border-color .25s, flex .25s;
|
||||||
}
|
}
|
||||||
.field::-moz-placeholder,
|
.field::-moz-placeholder,
|
||||||
@ -113,7 +112,6 @@ a[href="javascript:;"] {
|
|||||||
display: flex;
|
display: flex;
|
||||||
padding: 3px 4px 4px;
|
padding: 3px 4px 4px;
|
||||||
position: relative;
|
position: relative;
|
||||||
-webkit-transition: all .1s .05s ease-in-out;
|
|
||||||
transition: all .1s .05s ease-in-out;
|
transition: all .1s .05s ease-in-out;
|
||||||
}
|
}
|
||||||
#board-list {
|
#board-list {
|
||||||
@ -126,7 +124,6 @@ a[href="javascript:;"] {
|
|||||||
margin-bottom: -1em;
|
margin-bottom: -1em;
|
||||||
-webkit-transform: translateY(-100%);
|
-webkit-transform: translateY(-100%);
|
||||||
transform: translateY(-100%);
|
transform: translateY(-100%);
|
||||||
-webkit-transition: all .8s .6s cubic-bezier(.55, .055, .675, .19);
|
|
||||||
transition: all .8s .6s cubic-bezier(.55, .055, .675, .19);
|
transition: all .8s .6s cubic-bezier(.55, .055, .675, .19);
|
||||||
}
|
}
|
||||||
#toggle-header-bar {
|
#toggle-header-bar {
|
||||||
@ -179,7 +176,6 @@ a[href="javascript:;"] {
|
|||||||
width: 500px;
|
width: 500px;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
position: relative;
|
position: relative;
|
||||||
-webkit-transition: all .25s ease-in-out;
|
|
||||||
transition: all .25s ease-in-out;
|
transition: all .25s ease-in-out;
|
||||||
}
|
}
|
||||||
.notification.error {
|
.notification.error {
|
||||||
@ -555,7 +551,6 @@ a[href="javascript:;"] {
|
|||||||
flex: 3;
|
flex: 3;
|
||||||
}
|
}
|
||||||
#dump-button {
|
#dump-button {
|
||||||
background: -webkit-linear-gradient(#EEE, #CCC);
|
|
||||||
background: linear-gradient(#EEE, #CCC);
|
background: linear-gradient(#EEE, #CCC);
|
||||||
border: 1px solid #CCC;
|
border: 1px solid #CCC;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@ -564,11 +559,9 @@ a[href="javascript:;"] {
|
|||||||
width: 30px;
|
width: 30px;
|
||||||
}
|
}
|
||||||
#dump-button:hover, #dump-button:focus {
|
#dump-button:hover, #dump-button:focus {
|
||||||
background: -webkit-linear-gradient(#FFF, #DDD);
|
|
||||||
background: linear-gradient(#FFF, #DDD);
|
background: linear-gradient(#FFF, #DDD);
|
||||||
}
|
}
|
||||||
#dump-button:active, .dump #dump-button:not(:hover):not(:focus) {
|
#dump-button:active, .dump #dump-button:not(:hover):not(:focus) {
|
||||||
background: -webkit-linear-gradient(#CCC, #DDD);
|
|
||||||
background: linear-gradient(#CCC, #DDD);
|
background: linear-gradient(#CCC, #DDD);
|
||||||
}
|
}
|
||||||
.gecko #dump-button {
|
.gecko #dump-button {
|
||||||
@ -620,7 +613,6 @@ a[href="javascript:;"] {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
text-shadow: 0 1px 1px #000;
|
text-shadow: 0 1px 1px #000;
|
||||||
-webkit-transition: opacity .25s ease-in-out;
|
|
||||||
transition: opacity .25s ease-in-out;
|
transition: opacity .25s ease-in-out;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
white-space: pre;
|
white-space: pre;
|
||||||
|
|||||||
@ -14,7 +14,7 @@
|
|||||||
"run_at": "document_start"
|
"run_at": "document_start"
|
||||||
}],
|
}],
|
||||||
"homepage_url": "<%= meta.page %>",
|
"homepage_url": "<%= meta.page %>",
|
||||||
"minimum_chrome_version": "25",
|
"minimum_chrome_version": "26",
|
||||||
"permissions": [
|
"permissions": [
|
||||||
"storage"
|
"storage"
|
||||||
]
|
]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user