1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Apply ng to issue dashboard

This commit is contained in:
Antoine GIRARD
2015-03-19 00:35:17 +01:00
parent e9c599b48a
commit 96a71aaed8
9 changed files with 184 additions and 60 deletions

View File

@@ -70,6 +70,19 @@
}
}
.btn-white {
background-color: @btnWhiteColor;
color: @baseFontColor;
border: 1px solid @btnWhiteBorderColor;
&:hover {
background-color: @btnWhiteHoverColor;
color: @baseFontColor;
}
&.active {
background-color: @btnWhiteHoverColor;
color: @baseFontColor;
}
}
// status buttons
.btn-active {
@@ -118,6 +131,22 @@
}
}
.btn-group {
display: inline-block;
> .btn {
position: relative;
float: left;
margin-right: -1px;
&:first-child{
border-bottom-left-radius: .25em;
border-top-left-radius: .25em;
}
&:last-child{
border-bottom-right-radius: .25em;
border-top-right-radius: .25em;
}
}
}
// input form elements
.ipt {
&:focus {
@@ -198,4 +227,4 @@ label {
color: @labelRedColor;
}
}
}
}

View File

@@ -11,6 +11,10 @@ ul.menu {
background-color: @lineMenuHoverBgColor;
color: @lineMenuHoverFontColor;
}
&.active {
background-color: #4183c4;
color: #FFF;
}
}
&.current > a,
&.hover > a {
@@ -67,6 +71,7 @@ ul.menu-down {
> li.head {
display: block;
padding: .4em 1.2em;
margin-bottom: 4px;
}
> li.down {
position: relative;
@@ -163,4 +168,4 @@ ul.menu-radius {
content: "\25B4";
margin-left: .4em;
}
}
}

View File

@@ -238,7 +238,7 @@ input,
}
}
button {
button,.btn {
overflow: visible;
padding: .6em 1.2em;
}
@@ -365,4 +365,4 @@ pre {
dt {
font-weight: bold;
}
}

View File

@@ -45,6 +45,10 @@
@btnGrayHoverColor: #FAFAFA;
@btnGrayBorderColor: #D0D0D0;
@btnWhiteColor: #FFF;
@btnWhiteHoverColor: #e8e8e8;
@btnWhiteBorderColor: #c6c6c6;
@lineMenuHoverBgColor: #EAEAEA;
@lineMenuHoverFontColor: #444;