1
0
mirror of https://github.com/Rnhmjoj/solarized-dark-ui synced 2025-01-10 09:24:21 +01:00

Merge pull request #3 from mrhanlon/master

Fix deprecated selector warnings
This commit is contained in:
Michele Guerini Rocco 2015-02-06 00:34:30 +01:00
commit d6b8be2a73
7 changed files with 14 additions and 14 deletions

View File

@ -4,7 +4,7 @@
box-sizing: border-box;
}
.workspace {
atom-workspace {
background-color: @app-background-color;
}

View File

@ -1,7 +1,7 @@
@import "ui-variables";
@import "ui-mixins";
.editor.mini {
atom-text-editor[mini] {
color: @text-color-highlight;
background-color: @input-background-color;
border-radius: @component-border-radius;
@ -13,7 +13,7 @@
.selection .region { background-color: lighten(@input-background-color, 10%); }
}
.editor.editor-colors.mini.is-focused {
atom-text-editor[mini].is-focused {
.selection .region { background-color: lighten(@app-background-color, 5%); }
transition: background-color 0.1s
}
@ -23,7 +23,7 @@
to { background-color: null; }
}
.editor .highlighted.selection .region {
atom-text-editor::shadow .highlighted.selection .region {
-webkit-animation-name: highlight;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: 1;

View File

@ -91,7 +91,7 @@
border-radius: @component-border-radius;
border: 1px solid @overlay-border-color;
.editor {
atom-text-editor {
margin-bottom: @component-padding/2;
}

View File

@ -1,12 +1,12 @@
@import "ui-variables";
.overlay {
.atom-panel.modal {
color: @text-color;
background-color: @overlay-background-color;
padding: @component-padding;
border-radius: @component-border-radius;
.editor.mini {
atom-text-editor[mini] {
margin-bottom: @component-padding;
}

View File

@ -8,7 +8,7 @@
}
}
.tool-panel {
.atom-panel {
.text(normal);
position: relative;
background-color: @tool-panel-background-color;
@ -20,7 +20,7 @@
}
.is-blurred {
.tool-panel,
.atom-panel,
.inset-panel {
}
}

View File

@ -8,8 +8,8 @@
}
}
.panes {
.pane {
atom-pane-container {
atom-pane {
background-color: lighten(@app-background-color, 4%);
&:focus {
@ -17,12 +17,12 @@
}
}
.pane-row > * {
.atom-pane-axis.horizontal > * {
border-right: 1px solid @pane-item-border-color;
&:last-child { border-right: none; }
}
.pane-column > * {
.atom-pane-axis.vertical > * {
border-bottom: 1px solid @pane-item-border-color;
&:last-child { border-bottom: none; }
}

View File

@ -1,7 +1,7 @@
@import "ui-variables";
.zen {
.panes .pane {
atom-pane-container atom-pane {
background-color: @app-background-color;
}
}