💄 Rules with multiple selectors on 2 lines

In /static
Esse commit está contido em:
Ben Ogle
2013-09-06 13:50:48 -07:00
commit e9b3ad2f68
7 arquivos alterados com 31 adições e 13 exclusões
+8 -4
Ver Arquivo
@@ -14,21 +14,25 @@
&:hover {
background-color: @button-background-color-hover;
}
&.selected, &.selected:hover {
&.selected,
&.selected:hover {
// we want the selected button to behave like the :hover button; it's on top of the other buttons.
z-index: 1;
background-color: @button-background-color-selected;
}
}
.btn.btn-xs, .btn-group-xs > .btn {
.btn.btn-xs,
.btn-group-xs > .btn {
padding: @component-padding/4 @component-padding/2;
font-size: @font-size - 2px;
}
.btn.btn-sm, .btn-group-sm > .btn {
.btn.btn-sm,
.btn-group-sm > .btn {
padding: @component-padding/4 @component-padding/2;
}
.btn.btn-lg, .btn-group-lg > .btn {
.btn.btn-lg,
.btn-group-lg > .btn {
font-size: @font-size + 2px;
padding: @component-padding - 2px @component-padding + 2px;
}
+5 -2
Ver Arquivo
@@ -80,9 +80,10 @@
.editor .vertical-scrollbar {
position: absolute;
right: 0;
top: 0;
right: 0;
bottom: 0;
width: 15px;
overflow-y: auto;
z-index: 3;
@@ -100,7 +101,9 @@
overflow-x: hidden;
}
.editor .underlayer, .editor .lines, .editor .overlayer {
.editor .underlayer,
.editor .lines,
.editor .overlayer {
width: 100%;
}
+2 -1
Ver Arquivo
@@ -4,7 +4,8 @@
margin-right: @component-icon-padding;
}
a.icon, button.icon {
a.icon,
button.icon {
text-decoration: none;
color: @text-color;
&:hover{
+6 -3
Ver Arquivo
@@ -2,7 +2,8 @@
@import "octicon-mixins";
// This is a bootstrap override
.list-group, .list-group .list-group-item {
.list-group,
.list-group .list-group-item {
background-color: transparent;
border: none;
padding: 0;
@@ -10,7 +11,8 @@
position: static;
}
.list-group, .list-tree {
.list-group,
.list-tree {
margin: 0;
padding: 0;
list-style: none;
@@ -90,7 +92,8 @@
}
// You want a subtree to be flat -- no collapsable children
&.has-flat-children, .has-flat-children {
.has-flat-children,
&.has-flat-children {
li.list-item {
margin-left: 0;
}
+2 -1
Ver Arquivo
@@ -3,7 +3,8 @@
@font-face { .octicon-font(); }
html, body {
html,
body {
width: 100%;
height: 100%;
overflow: hidden;
+2 -1
Ver Arquivo
@@ -28,7 +28,8 @@
li {
display: block;
.primary-line, .secondary-line {
.primary-line,
.secondary-line {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
+6 -1
Ver Arquivo
@@ -13,6 +13,8 @@
padding: @component-padding;
}
// Blocks
.block {
display: block;
margin-bottom: @component-padding;
@@ -21,7 +23,10 @@ div > .block:last-child {
margin-bottom: 0;
}
.inline-block, .inline-block-tight {
// Inline Blocks
.inline-block,
.inline-block-tight {
display: inline-block;
vertical-align: middle;
}