mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
86fdba177a
* Add octicon SVG sprite Signed-off-by: jolheiser <john.olheiser@gmail.com> * Static prefix Signed-off-by: jolheiser <john.olheiser@gmail.com> * SVG for all repo icons Signed-off-by: jolheiser <john.olheiser@gmail.com> * make vendor Signed-off-by: jolheiser <john.olheiser@gmail.com> * Swap out octicons Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move octicons to top of less imports Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix JS Signed-off-by: jolheiser <john.olheiser@gmail.com> * Definitely not a search/replace Signed-off-by: jolheiser <john.olheiser@gmail.com> * Missed regex Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move to more generic calls and webpack Signed-off-by: jolheiser <john.olheiser@gmail.com> * make svg -> make webpack Signed-off-by: jolheiser <john.olheiser@gmail.com> * Remove svg-sprite Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Missed a test Signed-off-by: jolheiser <john.olheiser@gmail.com> * Remove svg from makefile Signed-off-by: jolheiser <john.olheiser@gmail.com> * Suggestions Signed-off-by: jolheiser <john.olheiser@gmail.com> * Attempt to fix test Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Revert timetracking test Signed-off-by: jolheiser <john.olheiser@gmail.com> * Swap .octicon for .svg in less Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add aria-hidden Signed-off-by: jolheiser <john.olheiser@gmail.com> * Replace mega-octicon Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix webpack globbing on Windows Signed-off-by: jolheiser <john.olheiser@gmail.com> * Revert Co-Authored-By: silverwind <me@silverwind.io> * Fix octions from upstream Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix Vue and missed JS function Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add JS helper and PWA Signed-off-by: jolheiser <john.olheiser@gmail.com> * Preload SVG Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: techknowlogick <matti@mdranta.net>
112 lines
2.1 KiB
Plaintext
112 lines
2.1 KiB
Plaintext
.explore {
|
|
padding-top: 15px;
|
|
|
|
.navbar {
|
|
justify-content: center;
|
|
padding-top: 15px !important;
|
|
margin-top: -15px !important;
|
|
margin-bottom: 15px !important;
|
|
background-color: #fafafa !important;
|
|
border-width: 1px !important;
|
|
|
|
.svg {
|
|
width: 16px;
|
|
text-align: center;
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ui.repository.list {
|
|
.item {
|
|
padding-bottom: 25px;
|
|
|
|
&:not(:first-child) {
|
|
border-top: 1px solid #eeeeee;
|
|
padding-top: 25px;
|
|
}
|
|
|
|
.ui.header {
|
|
font-size: 1.5rem;
|
|
padding-bottom: 10px;
|
|
|
|
.name {
|
|
word-break: break-all;
|
|
}
|
|
|
|
.metas {
|
|
color: #888888;
|
|
font-size: 14px;
|
|
font-weight: normal;
|
|
|
|
span:not(:last-child) {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.time {
|
|
font-size: 12px;
|
|
color: #808080;
|
|
}
|
|
|
|
.ui.tags {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.ui.avatar.image {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ui.repository.branches {
|
|
.info {
|
|
font-size: 12px;
|
|
color: #808080;
|
|
display: flex;
|
|
white-space: pre;
|
|
.commit-message {
|
|
max-width: 72em;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
.overflow-visible {
|
|
overflow: visible;
|
|
}
|
|
}
|
|
|
|
.ui.user.list {
|
|
.item {
|
|
padding-bottom: 25px;
|
|
|
|
&:not(:first-child) {
|
|
border-top: 1px solid #eeeeee;
|
|
padding-top: 25px;
|
|
}
|
|
|
|
.ui.avatar.image {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
|
|
.description {
|
|
margin-top: 5px;
|
|
|
|
.svg:not(:first-child) {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
a {
|
|
color: #333333;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|