improved repository activity page
This commit is contained in:
parent
4ab6ede5ee
commit
0e88f911ec
4 changed files with 52 additions and 13 deletions
|
@ -20,16 +20,12 @@ $border-radius: 5px;
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
|
|
||||||
|
@import 'import/colors';
|
||||||
@import 'import/main';
|
@import 'import/main';
|
||||||
@import 'import/nav';
|
@import 'import/nav';
|
||||||
|
|
||||||
|
|
||||||
@import 'import/repository.scss';
|
@import 'import/repository.scss';
|
||||||
|
|
||||||
@import 'import/explore.scss';
|
@import 'import/explore.scss';
|
||||||
|
|
||||||
@import 'import/user.scss';
|
@import 'import/user.scss';
|
||||||
|
|
||||||
|
|
||||||
@import 'import/footer';
|
@import 'import/footer';
|
||||||
|
|
|
@ -20,16 +20,12 @@ $border-radius: 5px;
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
|
|
||||||
|
@import 'import/colors';
|
||||||
@import 'import/main';
|
@import 'import/main';
|
||||||
@import 'import/nav';
|
@import 'import/nav';
|
||||||
|
|
||||||
|
|
||||||
@import 'import/repository.scss';
|
@import 'import/repository.scss';
|
||||||
|
|
||||||
@import 'import/explore.scss';
|
@import 'import/explore.scss';
|
||||||
|
|
||||||
@import 'import/user.scss';
|
@import 'import/user.scss';
|
||||||
|
|
||||||
|
|
||||||
@import 'import/footer';
|
@import 'import/footer';
|
||||||
|
|
4
scss/import/_colors.scss
Normal file
4
scss/import/_colors.scss
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
$green: rgb(100, 200, 130);
|
||||||
|
$green-dark: rgb(80, 180, 110);
|
||||||
|
$red: rgb(255, 130, 130);
|
||||||
|
$red-dark: rgb(255, 110, 110);
|
|
@ -634,9 +634,6 @@
|
||||||
.segment {
|
.segment {
|
||||||
background: rgb(30, 30, 45);
|
background: rgb(30, 30, 45);
|
||||||
border: 0;
|
border: 0;
|
||||||
.text {
|
|
||||||
background: rgb(30, 30, 45);
|
|
||||||
}
|
|
||||||
h4.header { // »There has not been any commit activity in this period.«
|
h4.header { // »There has not been any commit activity in this period.«
|
||||||
background: rgb(30, 30, 45);
|
background: rgb(30, 30, 45);
|
||||||
}
|
}
|
||||||
|
@ -645,6 +642,52 @@
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.text {
|
||||||
|
background: rgb(30, 30, 45);
|
||||||
|
.green.text {
|
||||||
|
color: $green !important;
|
||||||
|
.svg.octicon-issue-opened {
|
||||||
|
fill: $green;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.red.text {
|
||||||
|
color: $red !important;
|
||||||
|
.svg.octicon-issue-closed {
|
||||||
|
fill: $red;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.divider.header {
|
||||||
|
background: initial;
|
||||||
|
border: 0;
|
||||||
|
display: flex;
|
||||||
|
&::after,
|
||||||
|
&::before {
|
||||||
|
background: rgb(60, 60, 90);
|
||||||
|
height: 1px;
|
||||||
|
top: 7px;
|
||||||
|
}
|
||||||
|
&::after {
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
&::before {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
span.text {
|
||||||
|
margin: 0 5px 0 0;
|
||||||
|
@if $nojavascript == true {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.list {
|
||||||
|
.green.label {
|
||||||
|
background: $green;
|
||||||
|
}
|
||||||
|
.red.label {
|
||||||
|
background: $red;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue