🔥 Remove -webkit prefixes

that aren’t needed anymore.
This commit is contained in:
simurai 2016-06-29 13:15:20 +09:00
parent 438aac6244
commit eb0cc530fd
5 changed files with 21 additions and 21 deletions

View File

@ -8,6 +8,6 @@
}
::-webkit-scrollbar-thumb {
-webkit-border-radius: 2px;
border-radius: 2px;
background: rgba(150, 150, 150, .33);
}

View File

@ -5,13 +5,13 @@
// editor resource with a tab.
atom-pane-container {
position: relative;
display: -webkit-flex;
-webkit-flex: 1;
display: flex;
flex: 1;
min-width: 0;
atom-pane-axis {
display: -webkit-flex;
-webkit-flex: 1;
display: flex;
flex: 1;
min-width: 0;
& > atom-pane-resize-handle {
@ -21,7 +21,7 @@ atom-pane-container {
}
atom-pane-axis.vertical {
-webkit-flex-direction: column;
flex-direction: column;
& > atom-pane-resize-handle {
width: 100%;
@ -33,7 +33,7 @@ atom-pane-container {
}
atom-pane-axis.horizontal {
-webkit-flex-direction: row;
flex-direction: row;
& > atom-pane-resize-handle {
width: 8px;
@ -46,15 +46,15 @@ atom-pane-container {
atom-pane {
position: relative;
display: -webkit-flex;
-webkit-flex: 1;
-webkit-flex-direction: column;
display: flex;
flex: 1;
flex-direction: column;
overflow: visible;
min-width: 0;
.item-views {
-webkit-flex: 1;
display: -webkit-flex;
flex: 1;
display: flex;
min-height: 0;
min-width: 0;
position: relative;

View File

@ -23,13 +23,13 @@ atom-text-editor {
.define-selection-flash-color-if-not-defined() { @syntax-selection-flash-color: rgba(100, 255, 100, 0.7); }
.define-selection-flash-color-if-not-defined();
@-webkit-keyframes flash {
@keyframes flash {
from { background-color: @syntax-selection-flash-color; }
to { background-color: null; }
}
atom-text-editor .flash.selection .region {
-webkit-animation-name: flash;
-webkit-animation-duration: .5s;
-webkit-animation-iteration-count: 1;
animation-name: flash;
animation-duration: .5s;
animation-iteration-count: 1;
}

View File

@ -22,13 +22,13 @@ atom-overlay {
// TODO: Remove the following styles when the editor shadow DOM can no longer be disabled
atom-text-editor {
display: -webkit-flex;
display: flex;
.editor-contents {
width: 100%;
overflow: hidden;
cursor: text;
display: -webkit-flex;
display: flex;
-webkit-user-select: none;
position: relative;
}
@ -96,7 +96,7 @@ atom-text-editor {
z-index: 0;
overflow: hidden;
-webkit-flex: 1;
flex: 1;
min-width: 0;
}

View File

@ -10,7 +10,7 @@
.editor-contents--private {
width: 100%;
cursor: text;
display: -webkit-flex;
display: flex;
-webkit-user-select: none;
position: relative;
}
@ -79,7 +79,7 @@
z-index: 0;
overflow: hidden;
-webkit-flex: 1;
flex: 1;
min-width: 0;
}