few adjustments
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -270,7 +270,7 @@ tr.entry {
|
|||||||
/**
|
/**
|
||||||
* Priorities
|
* Priorities
|
||||||
*/
|
*/
|
||||||
|
// scss-lint:disable SpaceAfterComma
|
||||||
@if $color-priorities {
|
@if $color-priorities {
|
||||||
@include priority(".priority-lowest", $priority-lowest-bg, $priority-lowest-text, $priority-lowest-link);
|
@include priority(".priority-lowest", $priority-lowest-bg, $priority-lowest-text, $priority-lowest-link);
|
||||||
@include priority(".priority-default", $priority-default-bg, $priority-default-text, $priority-default-link);
|
@include priority(".priority-default", $priority-default-bg, $priority-default-text, $priority-default-link);
|
||||||
@@ -321,12 +321,14 @@ tr.group {
|
|||||||
|
|
||||||
.count {
|
.count {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
min-width: 1em;
|
||||||
margin: 0 5px;
|
margin: 0 5px;
|
||||||
padding: 1px 4px;
|
padding: 1px 4px;
|
||||||
border-radius: $border-radius-small;
|
border-radius: $border-radius-small;
|
||||||
background-color: $brand-primary;
|
background-color: $brand-primary;
|
||||||
color: $brand-text;
|
color: $brand-text;
|
||||||
font-size: $font-size-small;
|
font-size: $font-size-small;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,12 @@ table.progress {
|
|||||||
border: 1px solid rgba(#000, .1);
|
border: 1px solid rgba(#000, .1);
|
||||||
empty-cells: show;
|
empty-cells: show;
|
||||||
|
|
||||||
|
td.done_ratio & {
|
||||||
|
float: none;
|
||||||
|
margin-right: auto;
|
||||||
|
margin-left: auto;
|
||||||
|
}
|
||||||
|
|
||||||
td {
|
td {
|
||||||
height: 12px;
|
height: 12px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|||||||
@@ -9,7 +9,12 @@
|
|||||||
|
|
||||||
tr#{$parent} {
|
tr#{$parent} {
|
||||||
background: $background;
|
background: $background;
|
||||||
color: $color;
|
|
||||||
|
@if ".priority-default" == $parent {
|
||||||
|
color: $color;
|
||||||
|
} @else {
|
||||||
|
color: darken($color, 10%);
|
||||||
|
}
|
||||||
|
|
||||||
&.odd {
|
&.odd {
|
||||||
background: darken($background, 3%);
|
background: darken($background, 3%);
|
||||||
@@ -79,7 +84,12 @@
|
|||||||
|
|
||||||
> .attachments {
|
> .attachments {
|
||||||
border-top-color: lighten($border-color, 5%);
|
border-top-color: lighten($border-color, 5%);
|
||||||
background-color: lighten($background, 5%);
|
|
||||||
|
@if ".priority-default" == $parent {
|
||||||
|
background-color: lighten($issue-bg, 1.5%);
|
||||||
|
} @else {
|
||||||
|
background-color: lighten($background, 5%);
|
||||||
|
}
|
||||||
|
|
||||||
span.author {
|
span.author {
|
||||||
color: mix($color, $gray, 25%);
|
color: mix($color, $gray, 25%);
|
||||||
@@ -106,7 +116,11 @@
|
|||||||
color: $color;
|
color: $color;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: darken($background, 10%);
|
@if hue($background) > 15deg and hue($background) < 40deg {
|
||||||
|
background-color: darken(adjust-hue($background, -8deg), 8%);
|
||||||
|
} @else {
|
||||||
|
background-color: darken($background, 10%);
|
||||||
|
}
|
||||||
color: $color;
|
color: $color;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,11 @@ $story-sp-input-width: 50px;
|
|||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: darken($background, 10%);
|
@if hue($background) > 15deg and hue($background) < 40deg {
|
||||||
|
background-color: darken(adjust-hue($background, -8deg), 8%);
|
||||||
|
} @else {
|
||||||
|
background-color: darken($background, 10%);
|
||||||
|
}
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user