mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-09 05:10:31 +03:00
Merge pull request #5573 from postcasio/fix-pseudo-elements
Use double colons for "before" and "after" pseudo-elements
This commit is contained in:
commit
a14f1ab0b3
@ -1,6 +1,6 @@
|
||||
@import "ui-variables";
|
||||
|
||||
.icon:before {
|
||||
.icon::before {
|
||||
margin-right: @component-icon-padding;
|
||||
}
|
||||
|
||||
|
@ -68,7 +68,7 @@ body {
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
&:before {
|
||||
&::before {
|
||||
content: "\02022";
|
||||
}
|
||||
}
|
||||
|
@ -25,10 +25,10 @@
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
// The background highlight uses :before rather than the item background so
|
||||
// The background highlight uses ::before rather than the item background so
|
||||
// it can span the entire width of the parent container rather than the size
|
||||
// of the list item.
|
||||
.selected:before {
|
||||
.selected::before {
|
||||
content: '';
|
||||
background-color: @background-color-selected;
|
||||
position: absolute;
|
||||
@ -42,7 +42,7 @@
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.icon:before {
|
||||
.icon::before {
|
||||
margin-right: @component-icon-padding;
|
||||
position: relative;
|
||||
top: 1px;
|
||||
@ -73,7 +73,7 @@
|
||||
// Nested items always get disclosure arrows
|
||||
.list-nested-item > .list-item {
|
||||
.octicon(chevron-down, @disclosure-arrow-size);
|
||||
&:before{
|
||||
&::before{
|
||||
position: relative;
|
||||
top: -1px;
|
||||
margin-right: @component-icon-padding;
|
||||
@ -81,7 +81,7 @@
|
||||
}
|
||||
.list-nested-item.collapsed > .list-item {
|
||||
.octicon(chevron-right, @disclosure-arrow-size);
|
||||
&:before{
|
||||
&::before{
|
||||
left: 1px;
|
||||
}
|
||||
}
|
||||
|
@ -6,7 +6,7 @@
|
||||
.loading-message {
|
||||
.octicon(hourglass);
|
||||
|
||||
&:before {
|
||||
&::before {
|
||||
font-size: 1.1em;
|
||||
width: 1.1em;
|
||||
height: 1.1em;
|
||||
|
@ -62,7 +62,7 @@ atom-text-editor {
|
||||
opacity: .6;
|
||||
padding: 0 .4em;
|
||||
|
||||
&:before {
|
||||
&::before {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
@ -84,7 +84,7 @@ atom-text-editor {
|
||||
|
||||
visibility: visible;
|
||||
|
||||
&:before {
|
||||
&::before {
|
||||
position: relative;
|
||||
left: -.1em;
|
||||
}
|
||||
@ -129,7 +129,7 @@ atom-text-editor {
|
||||
.line {
|
||||
white-space: pre;
|
||||
|
||||
&.cursor-line .fold-marker:after {
|
||||
&.cursor-line .fold-marker::after {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@ -137,7 +137,7 @@ atom-text-editor {
|
||||
.fold-marker {
|
||||
cursor: default;
|
||||
|
||||
&:after {
|
||||
&::after {
|
||||
.icon(0.8em, inline);
|
||||
|
||||
content: @ellipsis;
|
||||
|
@ -44,7 +44,7 @@
|
||||
opacity: .6;
|
||||
padding: 0 .4em;
|
||||
|
||||
&:before {
|
||||
&::before {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
@ -66,7 +66,7 @@
|
||||
|
||||
visibility: visible;
|
||||
|
||||
&:before {
|
||||
&::before {
|
||||
position: relative;
|
||||
left: -.1em;
|
||||
}
|
||||
@ -111,7 +111,7 @@
|
||||
.line {
|
||||
white-space: pre;
|
||||
|
||||
&.cursor-line .fold-marker:after {
|
||||
&.cursor-line .fold-marker::after {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@ -119,7 +119,7 @@
|
||||
.fold-marker {
|
||||
cursor: default;
|
||||
|
||||
&:after {
|
||||
&::after {
|
||||
.icon(0.8em, inline);
|
||||
|
||||
content: @ellipsis;
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
.octicon(@name, @size: 16px) {
|
||||
@import "octicon-utf-codes.less";
|
||||
&:before {
|
||||
&::before {
|
||||
.icon(@size);
|
||||
content: @@name
|
||||
}
|
||||
@ -26,7 +26,7 @@
|
||||
|
||||
.mega-octicon(@name, @size: 32px) {
|
||||
@import "octicon-utf-codes.less";
|
||||
&:before {
|
||||
&::before {
|
||||
.icon(@size);
|
||||
content: @@name
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user