mirror of
https://codeberg.org/Freeplay/Gitea-Modern
synced 2023-10-25 19:10:14 +00:00
1.0.10
- Tweaked the look of the dashboard and other menu's / tabs - Other fixes
This commit is contained in:
parent
7885b0940a
commit
82811e94c0
1 changed files with 201 additions and 94 deletions
|
@ -1,11 +1,9 @@
|
||||||
// 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
|
// Ignore above, just compiler stuff
|
||||||
|
|
||||||
/* Update 1.0.8
|
/* Update 1.0.10
|
||||||
- Moved activies buttons to the right side
|
- Tweaked the look of the dashboard and other menu's / tabs
|
||||||
- Improved some padding
|
- Other fixes
|
||||||
- Fixed CI status bar being too transparent. Issue #13
|
|
||||||
- More changes n' stuff
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@ -15,6 +13,7 @@
|
||||||
}
|
}
|
||||||
html.theme-gitea, html.theme-arc-green {
|
html.theme-gitea, html.theme-arc-green {
|
||||||
--fonts-override: var(--fonts-regular);
|
--fonts-override: var(--fonts-regular);
|
||||||
|
accent-color: var(--color-primary);
|
||||||
}
|
}
|
||||||
a[rel*="nofollow"]:not(.ui), .link:not(.ui) {
|
a[rel*="nofollow"]:not(.ui), .link:not(.ui) {
|
||||||
&:hover, &:focus {
|
&:hover, &:focus {
|
||||||
|
@ -128,7 +127,7 @@ a[rel*="nofollow"]:not(.ui), .link:not(.ui) {
|
||||||
width: auto !important;
|
width: auto !important;
|
||||||
align-items: center !important;
|
align-items: center !important;
|
||||||
display: flex !important;
|
display: flex !important;
|
||||||
.small, a {
|
.small:not(.modal), a {
|
||||||
max-height: 40px !important;
|
max-height: 40px !important;
|
||||||
min-height: unset;
|
min-height: unset;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -396,6 +395,39 @@ a[rel*="nofollow"]:not(.ui), .link:not(.ui) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// That menu right below the Header
|
||||||
|
.ui.secondary.pointing.menu {
|
||||||
|
background: none !important;
|
||||||
|
.new-menu-inner {
|
||||||
|
width: 1150px;
|
||||||
|
padding: 0 20px;
|
||||||
|
}
|
||||||
|
.item {
|
||||||
|
// font-weight: 600;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
.active {
|
||||||
|
position: relative;
|
||||||
|
&::before {
|
||||||
|
all: unset;
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
height: 2px;
|
||||||
|
background-color: var(--color-primary) !important;
|
||||||
|
display: flex !important;
|
||||||
|
opacity: .7;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.item:last-child {
|
||||||
|
padding-right: 1.14286em !important;
|
||||||
|
}
|
||||||
|
&::after {
|
||||||
|
content: unset !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.repository .filter.menu .menu {
|
.repository .filter.menu .menu {
|
||||||
max-height: 80vh;
|
max-height: 80vh;
|
||||||
|
@ -432,8 +464,7 @@ html {
|
||||||
min-height: var(--min-height);
|
min-height: var(--min-height);
|
||||||
align-items: center;
|
align-items: center;
|
||||||
z-index: 99999;
|
z-index: 99999;
|
||||||
}
|
#navbar {
|
||||||
#navbar {
|
|
||||||
padding: 0 calc(2px + 1%) !important;
|
padding: 0 calc(2px + 1%) !important;
|
||||||
background: none !important;
|
background: none !important;
|
||||||
max-width: 100rem;
|
max-width: 100rem;
|
||||||
|
@ -505,9 +536,9 @@ html {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Page content when width is larger than 850px */
|
/* Page content when width is larger than 850px */
|
||||||
@media only screen and (min-width: 850px) {
|
@media only screen and (min-width: 850px) {
|
||||||
// Still tweaking selectors a bit
|
// Still tweaking selectors a bit
|
||||||
|
@ -994,6 +1025,32 @@ html {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Issue Comments
|
||||||
|
.comment {
|
||||||
|
border-radius: 100px;
|
||||||
|
.reactions {
|
||||||
|
border: 0 !important;
|
||||||
|
padding: 0 1em;
|
||||||
|
margin-top: -.4em !important;
|
||||||
|
padding-bottom: .4em !important;
|
||||||
|
& > a {
|
||||||
|
padding: 4px 8px !important;
|
||||||
|
margin-right: .5em;
|
||||||
|
margin-bottom: .5em;
|
||||||
|
border: 1px solid var(--color-secondary);
|
||||||
|
border-radius: calc(var(--base-border-radius) * 2);
|
||||||
|
|
||||||
|
.reaction {
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.select-reaction {
|
||||||
|
padding: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.ui.grid > .eleven {
|
.ui.grid > .eleven {
|
||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
@ -1154,8 +1211,6 @@ html {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* ISSUES LIST / MILESTONES LIST, mostly issue's list though. */
|
/* ISSUES LIST / MILESTONES LIST, mostly issue's list though. */
|
||||||
.issue.list, .milestone.list {
|
.issue.list, .milestone.list {
|
||||||
border: 1px solid var(--color-secondary);
|
border: 1px solid var(--color-secondary);
|
||||||
|
@ -1461,6 +1516,7 @@ html {
|
||||||
border-radius: var(--base-border-radius) var(--base-border-radius) 0 0;
|
border-radius: var(--base-border-radius) var(--base-border-radius) 0 0;
|
||||||
padding: 12px 12px !important;
|
padding: 12px 12px !important;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
& + .news {
|
& + .news {
|
||||||
border-radius: 0 !important;
|
border-radius: 0 !important;
|
||||||
}
|
}
|
||||||
|
@ -1492,15 +1548,22 @@ html {
|
||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
padding: 0 !important;
|
padding: 0 !important;
|
||||||
padding-top: 1px !important;
|
padding-top: 1px !important;
|
||||||
|
min-height: 31px;
|
||||||
& > .column {
|
& > .column {
|
||||||
padding: 0 !important;
|
padding: 0 !important;
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
& > div {
|
& > div {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
min-height: 60px;
|
min-height: 100%;
|
||||||
& > *:first-child {
|
& > *:first-child {
|
||||||
min-width: 100%;
|
// min-width: 100%;
|
||||||
|
min-width: calc(100% - 200px);
|
||||||
|
margin-bottom: 0 !important;
|
||||||
|
}
|
||||||
|
& > :not(:first-child):not(:last-child) {
|
||||||
|
min-width: calc(100% - 200px);
|
||||||
|
margin-top: .3em;
|
||||||
}
|
}
|
||||||
& > *:last-child {
|
& > *:last-child {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
@ -1519,14 +1582,22 @@ html {
|
||||||
|
|
||||||
& > .right.column {
|
& > .right.column {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 48px;
|
top: 35px;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 52px !important;
|
width: 53px !important;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
z-index: 2;
|
||||||
svg {
|
svg {
|
||||||
width: 28px;
|
width: 26px;
|
||||||
height: 28px;
|
height: 26px;
|
||||||
padding: 4px;
|
padding: 3px;
|
||||||
|
fill: black !important;
|
||||||
|
background-color: var(--color-box-body);
|
||||||
|
border-radius: 100px;
|
||||||
|
border: 1px solid var(--color-secondary);
|
||||||
|
path {
|
||||||
|
fill: var(--color-primary);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.title, p, ul {
|
.title, p, ul {
|
||||||
|
@ -1709,8 +1780,6 @@ html {
|
||||||
width: 1400px;
|
width: 1400px;
|
||||||
margin-bottom: -45px;
|
margin-bottom: -45px;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Move Navbar to the side */
|
/* Move Navbar to the side */
|
||||||
.dashboard-navbar {
|
.dashboard-navbar {
|
||||||
width: auto;
|
width: auto;
|
||||||
|
@ -1793,7 +1862,6 @@ html {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Main Content */
|
/* Main Content */
|
||||||
& > .ui.container {
|
& > .ui.container {
|
||||||
margin: 0 auto !important;
|
margin: 0 auto !important;
|
||||||
|
@ -1803,7 +1871,6 @@ html {
|
||||||
|
|
||||||
--container-padding-x: calc(2.5% + 0px);
|
--container-padding-x: calc(2.5% + 0px);
|
||||||
|
|
||||||
|
|
||||||
& > .ui.stackable.grid {
|
& > .ui.stackable.grid {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
@ -1867,7 +1934,7 @@ html {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* Right Sidebar */
|
/* Right Sidebar */
|
||||||
#app {
|
#app, #dashboard-repo-list {
|
||||||
height: min-content;
|
height: min-content;
|
||||||
position: sticky;
|
position: sticky;
|
||||||
|
|
||||||
|
@ -1918,7 +1985,8 @@ html {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.dashboard-repos, .dashboard-orgs {
|
.dashboard-repos, .dashboard-orgs {
|
||||||
margin: 0 !important;
|
margin: 0 -10px !important;
|
||||||
|
padding: 0 10px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
scrollbar-width: thin;
|
scrollbar-width: thin;
|
||||||
|
@ -1927,6 +1995,7 @@ html {
|
||||||
height: 0;
|
height: 0;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
|
scrollbar-color: var(--color-secondary) transparent;
|
||||||
.repos-search .input {
|
.repos-search .input {
|
||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
}
|
}
|
||||||
|
@ -1937,8 +2006,29 @@ html {
|
||||||
border: 0;
|
border: 0;
|
||||||
background: none;
|
background: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.label {
|
||||||
|
padding: 0 .5em !important;
|
||||||
|
height: 1.4em;
|
||||||
|
min-height: unset;
|
||||||
|
font-size: .9em;
|
||||||
|
min-width: 2em !important;
|
||||||
|
position: relative;
|
||||||
|
background: none;
|
||||||
|
margin-left: .5em;
|
||||||
|
&::before {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
background-color: var(--color-primary);
|
||||||
|
opacity: .9;
|
||||||
|
z-index: -1;
|
||||||
|
border-radius: 100px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
padding-top: 5px;
|
// padding-top: 10px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
a {
|
a {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -1959,8 +2049,20 @@ html {
|
||||||
background: none !important;
|
background: none !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.repos-filter {
|
||||||
|
justify-content: flex-start;
|
||||||
|
.active {
|
||||||
|
font-weight: 600;
|
||||||
|
&::before {
|
||||||
|
content: unset !important;
|
||||||
|
}
|
||||||
|
.label {
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
.table {
|
.table {
|
||||||
margin-top: 10px;
|
margin-top: 4px;
|
||||||
}
|
}
|
||||||
li {
|
li {
|
||||||
background: none;
|
background: none;
|
||||||
|
@ -1968,7 +2070,16 @@ html {
|
||||||
border: 0;
|
border: 0;
|
||||||
a {
|
a {
|
||||||
padding: 5px 5px;
|
padding: 5px 5px;
|
||||||
|
position: relative;
|
||||||
|
&:hover:before {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
inset: -2px -6px;
|
||||||
|
background-color: var(--color-primary);
|
||||||
|
border-radius: var(--base-border-radius);
|
||||||
|
z-index: -1;
|
||||||
|
opacity: .1;
|
||||||
|
}
|
||||||
.item-name {
|
.item-name {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -1992,10 +2103,6 @@ html {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
border: 0;
|
border: 0;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
|
|
Loading…
Reference in a new issue