fixes #6
This commit is contained in:
parent
557cc7c3f4
commit
cf5e8fe357
1 changed files with 112 additions and 0 deletions
|
@ -549,6 +549,118 @@
|
|||
}
|
||||
}
|
||||
|
||||
/* repository: labels */
|
||||
|
||||
.repository.labels {
|
||||
.container {
|
||||
.navbar {
|
||||
.left.small.menu {
|
||||
background: transparent;
|
||||
border: 0;
|
||||
.item {
|
||||
background: $bg60;
|
||||
color: $white;
|
||||
font-family: "Lucida Console", monospace;
|
||||
&:first-child {
|
||||
border-radius: $border-radius 0 0 $border-radius;
|
||||
}
|
||||
&:hover {
|
||||
background: $bg50;
|
||||
}
|
||||
&:last-child {
|
||||
border-radius: 0 $border-radius $border-radius 0;
|
||||
}
|
||||
&.active {
|
||||
background: $bg50;
|
||||
}
|
||||
}
|
||||
}
|
||||
.right {
|
||||
.green.new-label.button {
|
||||
background: $green;
|
||||
&:hover {
|
||||
background: $green-dark;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
h4.attached.header {
|
||||
font-family: $font-family;
|
||||
.right {
|
||||
.right.filter.menu {
|
||||
font-family: $font-family;
|
||||
.dropdown.item {
|
||||
color: $white;
|
||||
background: $bg60;
|
||||
&:hover {
|
||||
background: $bg50;
|
||||
.menu {
|
||||
@if $nojavascript == true {
|
||||
display: block !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
.menu {
|
||||
background: $bg60;
|
||||
border: 1px solid $bg50;
|
||||
box-shadow: none;
|
||||
margin-top: 0;
|
||||
.item {
|
||||
color: $white !important;
|
||||
&:hover {
|
||||
background: $bg50;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.attached.segment {
|
||||
background: $bg30;
|
||||
border: 0;
|
||||
.labelspage {
|
||||
li.item {
|
||||
border-color: $bg50;
|
||||
.grid {
|
||||
.four.wide.column {
|
||||
.label {
|
||||
@if $nojavascript == true {
|
||||
background: $bg60;
|
||||
color: $white;
|
||||
}
|
||||
svg.octicon-tag {
|
||||
@if $nojavascript == true {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.six.wide.column {
|
||||
@if $nojavascript == true {
|
||||
width: 56.25% !important;
|
||||
}
|
||||
}
|
||||
.three.wide.column {
|
||||
&:last-of-type {
|
||||
@if $nojavascript == true {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
a {
|
||||
color: $white-light;
|
||||
&:hover {
|
||||
color: $red;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* repository: milestones */
|
||||
|
||||
.repository.milestones {
|
||||
|
|
Reference in a new issue