1.0.15
- Remove uppercasing on fork names (#28) - Fixed icon missplacement in comments (#27) - More fixes (also fix files WOOPS)
This commit is contained in:
@ -1,8 +1,10 @@
|
||||
// main: theme-gitea-modern.user.styl, out: theme-gitea-modern.css, compress: true
|
||||
// main: theme-gitea-modern.user.styl, out: theme-gitea-modern.css, compress: true
|
||||
// Ignore above, just compiler stuff
|
||||
|
||||
/* Update 1.0.16
|
||||
- Fixed issue #26
|
||||
- Fixed repo files hover rows color thingy thing
|
||||
/* Update 1.0.15
|
||||
- Remove uppercasing on fork names (#28)
|
||||
- Fixed icon missplacement in comments (#27)
|
||||
- More fixes
|
||||
*/
|
||||
|
||||
:root {
|
||||
@ -18,6 +20,7 @@ a[rel*="nofollow"]:not(.ui), .link:not(.ui) {
|
||||
text-underline-offset: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
*:not(input) {
|
||||
outline: 0px dashed var(--color-primary);
|
||||
outline-offset: -3px;
|
||||
@ -157,7 +160,7 @@ a[rel*="nofollow"]:not(.ui), .link:not(.ui) {
|
||||
background: var(--color-body);
|
||||
color: var(--color-text);
|
||||
box-shadow: var(--lt-shadowDefault) !important;
|
||||
// border: 1px solid var(--color-secondary);
|
||||
border: 1px solid var(--color-secondary);
|
||||
pointer-events: none;
|
||||
z-index: 9999999;
|
||||
&::before {
|
||||
@ -408,7 +411,6 @@ a[rel*="nofollow"]:not(.ui), .link:not(.ui) {
|
||||
.new-menu-inner {
|
||||
width: 1150px;
|
||||
padding: 0 20px;
|
||||
scrollbar-width: thin;
|
||||
}
|
||||
.item {
|
||||
// font-weight: 600;
|
||||
@ -525,7 +527,7 @@ html {
|
||||
.right {
|
||||
position: sticky;
|
||||
right: 1%;
|
||||
background: none !important;
|
||||
background-color: var(--color-navbar);
|
||||
box-shadow: 100px 0px 0 var(--color-navbar);
|
||||
width: 100%;
|
||||
min-width: max-content;
|
||||
@ -993,7 +995,6 @@ html {
|
||||
font-size: 1rem;
|
||||
margin-left: 8px;
|
||||
margin-right: 4px;
|
||||
text-transform: capitalize;
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
@ -1130,8 +1131,7 @@ html {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
display: flex !important;
|
||||
align-items: stretch;
|
||||
background: none !important;
|
||||
align-items: center;
|
||||
td:first-child {
|
||||
width: 250px;
|
||||
max-width: 50%;
|
||||
@ -1141,13 +1141,6 @@ html {
|
||||
max-width: unset;
|
||||
flex-grow: 1;
|
||||
}
|
||||
td, th {
|
||||
display: flex !important;
|
||||
align-items: center;
|
||||
}
|
||||
td {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
}
|
||||
td::before {
|
||||
content: "";
|
||||
@ -1224,26 +1217,39 @@ html {
|
||||
margin-left: -16px;
|
||||
}
|
||||
.timeline-item {
|
||||
&.comment {
|
||||
display: flex;
|
||||
.content {
|
||||
flex-grow: 1
|
||||
}
|
||||
}
|
||||
.timeline-avatar {
|
||||
position: relative;
|
||||
left: 0;
|
||||
// top: .5em;
|
||||
width: 0;
|
||||
margin-top: .7em;
|
||||
z-index: 2;
|
||||
img {
|
||||
img, svg {
|
||||
margin: 0;
|
||||
height: 1.6em !important;
|
||||
min-width: 1.6em;
|
||||
width: 1.6em !important;
|
||||
}
|
||||
}
|
||||
&.form .timeline-avatar {
|
||||
display: none !important;
|
||||
}
|
||||
.comment-header::before, .comment-header::after,
|
||||
.form::before, .form::after {
|
||||
content: unset !important;
|
||||
.comment-header, .form, .no-header {
|
||||
&::after, &::before {
|
||||
content: unset !important;
|
||||
}
|
||||
}
|
||||
.comment-header-left {
|
||||
padding-left: calc(1.7em + 8px) !important;
|
||||
.comment-header-left, .no-header > .text {
|
||||
// padding-left: calc(1.7em + 14px) !important;
|
||||
}
|
||||
.header {
|
||||
padding-left: calc(1.7em + 22px) !important;
|
||||
}
|
||||
.reactions {
|
||||
border: 0 !important;
|
||||
@ -2003,7 +2009,7 @@ html {
|
||||
}
|
||||
|
||||
/*** DASHBOARD ***/
|
||||
.dashboard:not(.admin) {
|
||||
.dashboard {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin: auto;
|
||||
|
||||
Reference in New Issue
Block a user