mirror of
https://github.com/atom/atom.git
synced 2026-01-24 14:28:14 -05:00
Merge pull request #12068 from atom/sm-remove-webkit-prefixes
-webkit cleanup
This commit is contained in:
@@ -8,6 +8,6 @@
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
-webkit-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
background: rgba(150, 150, 150, .33);
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -17,6 +17,7 @@ atom-workspace {
|
||||
atom-workspace-axis.horizontal {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
atom-workspace-axis.vertical {
|
||||
|
||||
Reference in New Issue
Block a user