forked from sIspravnikov/gitea-lightblue
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
09f66f1
commit 70e03a6
Showing
1 changed file
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
/* top navigation bar */ | ||
|
||
#repo-files-table a, | ||
.ui.fourteen.wide.column a { | ||
color: #3572b0 !important; | ||
} | ||
|
||
#navbar { | ||
background: #205081 !important; | ||
color: #FFF !important; | ||
} | ||
|
||
/* notifications counter in top navigation bar */ | ||
.notification_count { | ||
background: #ffffff !important; | ||
color: #000 !important; | ||
} | ||
|
||
/* inactive navbar items */ | ||
#navbar .item { | ||
background: #205081 !important; | ||
color: #ffffff !important; | ||
} | ||
|
||
/* active item in top navigation bar */ | ||
#navbar .item.active { | ||
background: #296ca3 !important; | ||
color: #ffffff !important; | ||
} | ||
|
||
/* hover item in top navigation bar */ | ||
#navbar .item:hover { | ||
background: #296ca3 !important; | ||
} | ||
|
||
#navbar .menu .item, | ||
#navbar .user-menu { | ||
background: #205081 !important; | ||
color: #ffffff !important; | ||
} | ||
#navbar .menu .item:hover { | ||
background: #296ca3 !important; | ||
color: #ffffff !important; | ||
} | ||
|
||
.ui.dropdown .menu>.header { | ||
color: #ffffff !important; | ||
} | ||
|
||
.feeds .list ul li.private { | ||
background: #ffffff; | ||
} | ||
|
||
/* buttons */ | ||
.ui.green.button, | ||
.ui.blue.button, | ||
.ui.teal.button, | ||
.ui.primary.button | ||
{ | ||
background: #4183c4 !important; | ||
color: #FFFFFF !important; | ||
} | ||
|
||
.ui.green.button:hover, | ||
.ui.blue.button:hover, | ||
.ui.teal.button:hover, | ||
.ui.primary.button:hover { | ||
background: #31699f !important; | ||
color: #FFFFFF !important; | ||
} | ||
|
||
|
||
/* labels */ | ||
.ui.ui.ui.grey.label, | ||
.ui.ui.ui.black.label, | ||
.ui.ui.ui.green.label | ||
{ | ||
background: #296ca3 !important; | ||
color: #FFFFFF !important; | ||
} | ||
|
||
/* icons color customization */ | ||
.ui .text.green { | ||
color: #296ca3 !important; | ||
} |