mirror of
https://github.com/atom/atom.git
synced 2026-02-18 02:21:43 -05:00
Drop units when using zero
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
.select-list.autocomplete {
|
||||
box-sizing: content-box;
|
||||
margin-left: 0px;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.autocomplete ol {
|
||||
@@ -13,8 +13,8 @@
|
||||
.select-list.autocomplete ol li {
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
padding-left: 0px;
|
||||
padding-right: 0px;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.autocomplete span {
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
top: 0;
|
||||
left: 0;
|
||||
overflow: auto;
|
||||
z-index: 99;
|
||||
}
|
||||
|
||||
@@ -190,7 +190,7 @@
|
||||
|
||||
li > :first-child,
|
||||
li ul:first-of-type {
|
||||
margin-top: 0px;
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -216,11 +216,11 @@
|
||||
padding: 0;
|
||||
}
|
||||
& > :first-child {
|
||||
margin-top: 0px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
& > :last-child {
|
||||
margin-bottom: 0px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -228,11 +228,11 @@
|
||||
margin: 0 0 15px;
|
||||
padding: 0 15px;
|
||||
& > :first-child {
|
||||
margin-top: 0px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
& > :last-child {
|
||||
margin-bottom: 0px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -242,11 +242,11 @@
|
||||
color: #777;
|
||||
|
||||
& > :first-child {
|
||||
margin-top: 0px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
& > :last-child {
|
||||
margin-bottom: 0px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -372,7 +372,7 @@
|
||||
// Inline code snippets
|
||||
code, tt {
|
||||
margin: 0 2px;
|
||||
padding: 0px 5px;
|
||||
padding: 0 5px;
|
||||
border: 1px solid #eaeaea;
|
||||
background-color: #f8f8f8;
|
||||
border-radius:3px;
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
.status-bar .git-status.octicons {
|
||||
display: none;
|
||||
padding-left: 10px;
|
||||
margin-top:-2px;
|
||||
margin-top: -2px;
|
||||
}
|
||||
|
||||
.status-bar .octicons:before {
|
||||
@@ -62,7 +62,7 @@
|
||||
|
||||
.status-bar .ignored-status-icon:before {
|
||||
content: "\f099";
|
||||
margin-right: 0px;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.status-bar .commits-behind-label:before {
|
||||
|
||||
@@ -3,5 +3,5 @@
|
||||
width: 1px;
|
||||
z-index: 100;
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user