{{if .IsRepo}}{{template "repo/header" .}}{{end}}
diff --git a/templates/status/500.tmpl b/templates/status/500.tmpl
index d20b06b10..3f1b205d3 100644
--- a/templates/status/500.tmpl
+++ b/templates/status/500.tmpl
@@ -1,5 +1,5 @@
{{template "base/head" .}}
-
+
diff --git a/templates/user/dashboard/issues.tmpl b/templates/user/dashboard/issues.tmpl index d4e7cb38b..b8625ec2c 100644 --- a/templates/user/dashboard/issues.tmpl +++ b/templates/user/dashboard/issues.tmpl @@ -77,7 +77,7 @@
- diff --git a/templates/user/dashboard/issues.tmpl b/templates/user/dashboard/issues.tmpl index d4e7cb38b..b8625ec2c 100644 --- a/templates/user/dashboard/issues.tmpl +++ b/templates/user/dashboard/issues.tmpl @@ -77,7 +77,7 @@
+
diff --git a/templates/user/dashboard/repolist.tmpl b/templates/user/dashboard/repolist.tmpl
index 319bb3c6e..46c735071 100644
--- a/templates/user/dashboard/repolist.tmpl
+++ b/templates/user/dashboard/repolist.tmpl
@@ -23,8 +23,15 @@
{{.i18n.Tr "organization"}}
-
- {{.i18n.Tr "home.my_repos"}} ${reposTotalCount}
+
- {{.i18n.Tr "home.my_repos"}} ${reposTotalCount}
+
+
+ {{.i18n.Tr "home.my_repos"}}
+ ${reposTotalCount}
+
+
+ {{svg "octicon-plus"}}
+ {{.i18n.Tr "new_repo"}}
+
@@ -94,13 +101,16 @@
-
-
- {{.i18n.Tr "home.my_orgs"}} ${organizationsTotalCount}
-
-
-
- {{.i18n.Tr "new_org"}}
-
+
+
+
+ {{.i18n.Tr "home.my_orgs"}}
+ ${organizationsTotalCount}
+
+ {{svg "octicon-plus"}}
+ {{.i18n.Tr "new_org"}}
+
diff --git a/web_src/less/_base.less b/web_src/less/_base.less
index 36421ca73..a1df19ef6 100644
--- a/web_src/less/_base.less
+++ b/web_src/less/_base.less
@@ -69,7 +69,7 @@
--color-purple: #a333c8;
--color-pink: #e03997;
--color-brown: #a5673f;
- --color-grey: #767676;
+ --color-grey: #888888;
--color-black: #1b1c1d;
--color-gold: #a1882b;
--color-white: #ffffff;
@@ -97,6 +97,7 @@
--color-markdown-table-row: #00000008;
--color-markdown-code-block: #00000010;
--color-button: #ffffff;
+ --color-code-bg: #ffffff;
}
:root:lang(ja) {
@@ -253,6 +254,10 @@ a.muted:hover,
border-color: var(--color-primary);
}
+.CodeMirror-focused {
+ border-color: var(--color-primary) !important;
+}
+
.ui.action.input:not([class*="left action"]) > input:focus {
border-right-color: var(--color-primary);
}
@@ -288,6 +293,10 @@ a.muted:hover,
background: none;
}
+.ui.ui.menu .item.disabled {
+ color: var(--color-text-light-2);
+}
+
.ui.dropdown .menu {
background: var(--color-menu);
border-color: var(--color-secondary);
@@ -307,6 +316,8 @@ a.muted:hover,
}
.ui.dropdown .menu .active.item {
+ color: var(--color-text);
+ background: var(--color-active);
font-weight: normal;
}
@@ -523,17 +534,15 @@ a.muted:hover,
flex-direction: inherit;
}
-.ui.dropdown:not(.labeled) > .dropdown.icon {
- height: 14px;
- vertical-align: bottom;
- margin-bottom: -2px;
- margin-left: .5rem;
-}
-
.ui.dropdown .menu {
border-color: var(--color-secondary);
}
+.ui.pagination.menu .active.item {
+ color: var(--color-text);
+ background: var(--color-active);
+}
+
.ui.form .field > .selection.dropdown > .dropdown.icon {
height: auto;
}
@@ -1266,6 +1275,11 @@ a.ui.label:hover {
color: var(--color-text);
}
+.ui.basic.labels a.label:hover,
+a.ui.basic.label:hover {
+ background: var(--color-label-hover);
+}
+
.ui.label > .detail .icons {
margin-right: .25em;
}
@@ -1597,6 +1611,7 @@ a.ui.label:hover {
}
.ui.attached.header {
+ position: relative;
background: var(--color-box-header);
border-color: var(--color-secondary);
@@ -1606,6 +1621,14 @@ a.ui.label:hover {
}
}
+/* fix misaligned right buttons on box headers */
+.ui.attached.header .right {
+ position: absolute;
+ right: .78571429rem;
+ top: 50%;
+ transform: translateY(-50%);
+}
+
/* https://github.com/go-gitea/gitea/issues/10210 */
.ui.attached.segment ~ .ui.top.attached.header {
margin-top: 1rem;
diff --git a/web_src/less/_chroma.less b/web_src/less/_chroma.less
index 28a795784..699f69d81 100644
--- a/web_src/less/_chroma.less
+++ b/web_src/less/_chroma.less
@@ -1,7 +1,6 @@
-/* Background */
-
-.chroma {
- background-color: #ffffff;
+.chroma,
+.lines-code {
+ background-color: var(--color-code-bg);
}
/* LineTableTD */
diff --git a/web_src/less/_dashboard.less b/web_src/less/_dashboard.less
index 771c7e088..c925512f2 100644
--- a/web_src/less/_dashboard.less
+++ b/web_src/less/_dashboard.less
@@ -63,7 +63,8 @@
}
}
- .dashboard-repos {
+ .dashboard-repos,
+ .dashboard-orgs {
margin: 0 1px; /* Accomodate for Semantic's 1px hacks on .attached elements */
}
diff --git a/web_src/less/_editor.less b/web_src/less/_editor.less
index 82a7153c7..c23de4f2e 100644
--- a/web_src/less/_editor.less
+++ b/web_src/less/_editor.less
@@ -37,12 +37,26 @@
border-color: var(--color-secondary);
}
+.editor-toolbar button {
+ border: none !important;
+ color: var(--color-text-light);
+}
+
.editor-toolbar button:not(:hover) {
background-color: transparent !important;
}
.editor-toolbar i.separator {
border-left: none;
+ border-right-color: var(--color-secondary);
+}
+
+.editor-toolbar button:hover {
+ background: var(--color-hover);
+}
+
+.editor-toolbar button.active {
+ background: var(--color-active);
}
.editor-loading {
diff --git a/web_src/less/helpers.less b/web_src/less/helpers.less
index 3cf516165..77c81a62e 100644
--- a/web_src/less/helpers.less
+++ b/web_src/less/helpers.less
@@ -20,6 +20,9 @@
word-break: break-all !important;
}
+.full-screen-width { width: 100vw !important; }
+.full-screen-height { height: 100vw !important; }
+
.rounded { border-radius: var(--border-radius) !important; }
.rounded-top { border-radius: var(--border-radius) var(--border-radius) 0 0 !important; }
.rounded-bottom { border-radius: 0 0 var(--border-radius) var(--border-radius) !important; }
diff --git a/web_src/less/themes/theme-arc-green.less b/web_src/less/themes/theme-arc-green.less
index 2d097a655..884548acc 100644
--- a/web_src/less/themes/theme-arc-green.less
+++ b/web_src/less/themes/theme-arc-green.less
@@ -64,8 +64,8 @@
--color-purple: #a333c8;
--color-pink: #e03997;
--color-brown: #a5673f;
- --color-grey: #767676;
- --color-black: #1b1c1d;
+ --color-grey: #767a85;
+ --color-black: #1e222e;
--color-gold: #a1882b;
--color-white: #ffffff;
/* target-based colors */
@@ -73,8 +73,8 @@
--color-box-header: #454a57;
--color-box-body: #353945;
--color-text: #bbc0ca;
- --color-text-light: #969aa5;
- --color-text-light-2: #767a85;
+ --color-text-light: #a6aab5;
+ --color-text-light-2: #868a95;
--color-footer: #2e323e;
--color-timeline: #4a505c;
--color-input-text: #d5dbe6;
@@ -92,13 +92,9 @@
--color-markdown-table-row: #ffffff06;
--color-markdown-code-block: #2a2e3a;
--color-button: #353846;
+ --color-code-bg: #2a2e3a;
}
-/* Background */
-
-.chroma {
- background-color: #2a2e3a;
-}
/* LineTableTD */
.chroma .lntd {
@@ -563,12 +559,6 @@ a.ui.basic.green.label:hover {
color: #fff !important;
}
-.ui.basic.red.active.button,
-.ui.basic.red.buttons .active.button {
- box-shadow: 0 0 0 1px #b75252 inset !important;
- color: #b75252 !important;
-}
-
.ui.divider:not(.vertical):not(.horizontal) {
border-bottom-color: var(--color-secondary);
border-top-color: transparent;
@@ -771,19 +761,6 @@ a.ui.basic.green.label:hover {
border-color: transparent !important;
}
-.ui.basic.green.active.button,
-.ui.basic.green.buttons .active.button {
- color: #87ab63 !important;
- box-shadow: 0 0 0 1px #87ab63 inset !important;
-}
-
-.ui.green.buttons .active.button,
-.ui.green.buttons .active.button:active,
-.ui.green.active.button,
-.ui.green.button .active.button:active {
- background: #87ab63;
-}
-
.ui .info.segment.top {
background-color: var(--color-secondary) !important;
}
@@ -840,23 +817,6 @@ td.blob-hunk {
background: #353945;
}
-.ui.vertical.menu .active.item {
- background: #4b5162;
-}
-
-.ui.vertical.menu .item {
- background: #353945;
-}
-
-.ui.vertical.menu .header.item {
- background: var(--color-secondary);
-}
-
-.ui.vertical.menu {
- background: #353945;
- border: 1px solid #333640;
-}
-
.ui.card,
.ui.cards > .card {
background: #353945;
@@ -966,12 +926,6 @@ td.blob-hunk {
color: rgba(158, 158, 158, 1);
}
-.ui.basic.red.button,
-.ui.basic.red.buttons .button {
- box-shadow: 0 0 0 1px #a04141 inset !important;
- color: #a04141 !important;
-}
-
.ui.list .list > .item .header,
.ui.list > .item .header {
color: #dedede;
@@ -1183,30 +1137,11 @@ a.blob-excerpt:hover {
filter: invert(100%);
}
-.editor-toolbar {
- background-color: var(--color-secondary);
- border-color: var(--color-secondary);
-}
-
.edit-diff > div > .ui.table {
border-left-color: var(--color-secondary) !important;
border-right-color: var(--color-secondary) !important;
}
-.editor-toolbar button {
- color: #87ab63 !important;
-}
-
-.editor-toolbar button.active,
-.editor-toolbar button:hover {
- background: #2a2e3a;
- border-color: transparent;
-}
-
-.editor-toolbar i.separator {
- border-right-color: #87ab63;
-}
-
.repository .diff-detail-box {
background-color: #383c4a;
@@ -1232,11 +1167,6 @@ a.blob-excerpt:hover {
}
}
-.add-comment-left.add-comment-right .ui.attached.header {
- border-color: var(--color-secondary);
- border-right: none;
-}
-
.file-comment {
color: var(--color-secondary-dark-6);
}
+ {{.i18n.Tr "home.my_repos"}}
+ ${reposTotalCount}
+
+
+ {{svg "octicon-plus"}}
+ {{.i18n.Tr "new_repo"}}
+
@@ -94,13 +101,16 @@
-
-
- {{.i18n.Tr "home.my_orgs"}} ${organizationsTotalCount}
-
- {{.i18n.Tr "home.my_orgs"}} ${organizationsTotalCount}
-
-
-
- {{.i18n.Tr "new_org"}}
-
+
+
+
+ {{.i18n.Tr "home.my_orgs"}}
+ ${organizationsTotalCount}
+
+ {{svg "octicon-plus"}}
+ {{.i18n.Tr "new_org"}}
+
diff --git a/web_src/less/_base.less b/web_src/less/_base.less
index 36421ca73..a1df19ef6 100644
--- a/web_src/less/_base.less
+++ b/web_src/less/_base.less
@@ -69,7 +69,7 @@
--color-purple: #a333c8;
--color-pink: #e03997;
--color-brown: #a5673f;
- --color-grey: #767676;
+ --color-grey: #888888;
--color-black: #1b1c1d;
--color-gold: #a1882b;
--color-white: #ffffff;
@@ -97,6 +97,7 @@
--color-markdown-table-row: #00000008;
--color-markdown-code-block: #00000010;
--color-button: #ffffff;
+ --color-code-bg: #ffffff;
}
:root:lang(ja) {
@@ -253,6 +254,10 @@ a.muted:hover,
border-color: var(--color-primary);
}
+.CodeMirror-focused {
+ border-color: var(--color-primary) !important;
+}
+
.ui.action.input:not([class*="left action"]) > input:focus {
border-right-color: var(--color-primary);
}
@@ -288,6 +293,10 @@ a.muted:hover,
background: none;
}
+.ui.ui.menu .item.disabled {
+ color: var(--color-text-light-2);
+}
+
.ui.dropdown .menu {
background: var(--color-menu);
border-color: var(--color-secondary);
@@ -307,6 +316,8 @@ a.muted:hover,
}
.ui.dropdown .menu .active.item {
+ color: var(--color-text);
+ background: var(--color-active);
font-weight: normal;
}
@@ -523,17 +534,15 @@ a.muted:hover,
flex-direction: inherit;
}
-.ui.dropdown:not(.labeled) > .dropdown.icon {
- height: 14px;
- vertical-align: bottom;
- margin-bottom: -2px;
- margin-left: .5rem;
-}
-
.ui.dropdown .menu {
border-color: var(--color-secondary);
}
+.ui.pagination.menu .active.item {
+ color: var(--color-text);
+ background: var(--color-active);
+}
+
.ui.form .field > .selection.dropdown > .dropdown.icon {
height: auto;
}
@@ -1266,6 +1275,11 @@ a.ui.label:hover {
color: var(--color-text);
}
+.ui.basic.labels a.label:hover,
+a.ui.basic.label:hover {
+ background: var(--color-label-hover);
+}
+
.ui.label > .detail .icons {
margin-right: .25em;
}
@@ -1597,6 +1611,7 @@ a.ui.label:hover {
}
.ui.attached.header {
+ position: relative;
background: var(--color-box-header);
border-color: var(--color-secondary);
@@ -1606,6 +1621,14 @@ a.ui.label:hover {
}
}
+/* fix misaligned right buttons on box headers */
+.ui.attached.header .right {
+ position: absolute;
+ right: .78571429rem;
+ top: 50%;
+ transform: translateY(-50%);
+}
+
/* https://github.com/go-gitea/gitea/issues/10210 */
.ui.attached.segment ~ .ui.top.attached.header {
margin-top: 1rem;
diff --git a/web_src/less/_chroma.less b/web_src/less/_chroma.less
index 28a795784..699f69d81 100644
--- a/web_src/less/_chroma.less
+++ b/web_src/less/_chroma.less
@@ -1,7 +1,6 @@
-/* Background */
-
-.chroma {
- background-color: #ffffff;
+.chroma,
+.lines-code {
+ background-color: var(--color-code-bg);
}
/* LineTableTD */
diff --git a/web_src/less/_dashboard.less b/web_src/less/_dashboard.less
index 771c7e088..c925512f2 100644
--- a/web_src/less/_dashboard.less
+++ b/web_src/less/_dashboard.less
@@ -63,7 +63,8 @@
}
}
- .dashboard-repos {
+ .dashboard-repos,
+ .dashboard-orgs {
margin: 0 1px; /* Accomodate for Semantic's 1px hacks on .attached elements */
}
diff --git a/web_src/less/_editor.less b/web_src/less/_editor.less
index 82a7153c7..c23de4f2e 100644
--- a/web_src/less/_editor.less
+++ b/web_src/less/_editor.less
@@ -37,12 +37,26 @@
border-color: var(--color-secondary);
}
+.editor-toolbar button {
+ border: none !important;
+ color: var(--color-text-light);
+}
+
.editor-toolbar button:not(:hover) {
background-color: transparent !important;
}
.editor-toolbar i.separator {
border-left: none;
+ border-right-color: var(--color-secondary);
+}
+
+.editor-toolbar button:hover {
+ background: var(--color-hover);
+}
+
+.editor-toolbar button.active {
+ background: var(--color-active);
}
.editor-loading {
diff --git a/web_src/less/helpers.less b/web_src/less/helpers.less
index 3cf516165..77c81a62e 100644
--- a/web_src/less/helpers.less
+++ b/web_src/less/helpers.less
@@ -20,6 +20,9 @@
word-break: break-all !important;
}
+.full-screen-width { width: 100vw !important; }
+.full-screen-height { height: 100vw !important; }
+
.rounded { border-radius: var(--border-radius) !important; }
.rounded-top { border-radius: var(--border-radius) var(--border-radius) 0 0 !important; }
.rounded-bottom { border-radius: 0 0 var(--border-radius) var(--border-radius) !important; }
diff --git a/web_src/less/themes/theme-arc-green.less b/web_src/less/themes/theme-arc-green.less
index 2d097a655..884548acc 100644
--- a/web_src/less/themes/theme-arc-green.less
+++ b/web_src/less/themes/theme-arc-green.less
@@ -64,8 +64,8 @@
--color-purple: #a333c8;
--color-pink: #e03997;
--color-brown: #a5673f;
- --color-grey: #767676;
- --color-black: #1b1c1d;
+ --color-grey: #767a85;
+ --color-black: #1e222e;
--color-gold: #a1882b;
--color-white: #ffffff;
/* target-based colors */
@@ -73,8 +73,8 @@
--color-box-header: #454a57;
--color-box-body: #353945;
--color-text: #bbc0ca;
- --color-text-light: #969aa5;
- --color-text-light-2: #767a85;
+ --color-text-light: #a6aab5;
+ --color-text-light-2: #868a95;
--color-footer: #2e323e;
--color-timeline: #4a505c;
--color-input-text: #d5dbe6;
@@ -92,13 +92,9 @@
--color-markdown-table-row: #ffffff06;
--color-markdown-code-block: #2a2e3a;
--color-button: #353846;
+ --color-code-bg: #2a2e3a;
}
-/* Background */
-
-.chroma {
- background-color: #2a2e3a;
-}
/* LineTableTD */
.chroma .lntd {
@@ -563,12 +559,6 @@ a.ui.basic.green.label:hover {
color: #fff !important;
}
-.ui.basic.red.active.button,
-.ui.basic.red.buttons .active.button {
- box-shadow: 0 0 0 1px #b75252 inset !important;
- color: #b75252 !important;
-}
-
.ui.divider:not(.vertical):not(.horizontal) {
border-bottom-color: var(--color-secondary);
border-top-color: transparent;
@@ -771,19 +761,6 @@ a.ui.basic.green.label:hover {
border-color: transparent !important;
}
-.ui.basic.green.active.button,
-.ui.basic.green.buttons .active.button {
- color: #87ab63 !important;
- box-shadow: 0 0 0 1px #87ab63 inset !important;
-}
-
-.ui.green.buttons .active.button,
-.ui.green.buttons .active.button:active,
-.ui.green.active.button,
-.ui.green.button .active.button:active {
- background: #87ab63;
-}
-
.ui .info.segment.top {
background-color: var(--color-secondary) !important;
}
@@ -840,23 +817,6 @@ td.blob-hunk {
background: #353945;
}
-.ui.vertical.menu .active.item {
- background: #4b5162;
-}
-
-.ui.vertical.menu .item {
- background: #353945;
-}
-
-.ui.vertical.menu .header.item {
- background: var(--color-secondary);
-}
-
-.ui.vertical.menu {
- background: #353945;
- border: 1px solid #333640;
-}
-
.ui.card,
.ui.cards > .card {
background: #353945;
@@ -966,12 +926,6 @@ td.blob-hunk {
color: rgba(158, 158, 158, 1);
}
-.ui.basic.red.button,
-.ui.basic.red.buttons .button {
- box-shadow: 0 0 0 1px #a04141 inset !important;
- color: #a04141 !important;
-}
-
.ui.list .list > .item .header,
.ui.list > .item .header {
color: #dedede;
@@ -1183,30 +1137,11 @@ a.blob-excerpt:hover {
filter: invert(100%);
}
-.editor-toolbar {
- background-color: var(--color-secondary);
- border-color: var(--color-secondary);
-}
-
.edit-diff > div > .ui.table {
border-left-color: var(--color-secondary) !important;
border-right-color: var(--color-secondary) !important;
}
-.editor-toolbar button {
- color: #87ab63 !important;
-}
-
-.editor-toolbar button.active,
-.editor-toolbar button:hover {
- background: #2a2e3a;
- border-color: transparent;
-}
-
-.editor-toolbar i.separator {
- border-right-color: #87ab63;
-}
-
.repository .diff-detail-box {
background-color: #383c4a;
@@ -1232,11 +1167,6 @@ a.blob-excerpt:hover {
}
}
-.add-comment-left.add-comment-right .ui.attached.header {
- border-color: var(--color-secondary);
- border-right: none;
-}
-
.file-comment {
color: var(--color-secondary-dark-6);
}
+
+
+
+ {{.i18n.Tr "home.my_orgs"}}
+ ${organizationsTotalCount}
+
+ {{svg "octicon-plus"}}
+ {{.i18n.Tr "new_org"}}
+
diff --git a/web_src/less/_base.less b/web_src/less/_base.less
index 36421ca73..a1df19ef6 100644
--- a/web_src/less/_base.less
+++ b/web_src/less/_base.less
@@ -69,7 +69,7 @@
--color-purple: #a333c8;
--color-pink: #e03997;
--color-brown: #a5673f;
- --color-grey: #767676;
+ --color-grey: #888888;
--color-black: #1b1c1d;
--color-gold: #a1882b;
--color-white: #ffffff;
@@ -97,6 +97,7 @@
--color-markdown-table-row: #00000008;
--color-markdown-code-block: #00000010;
--color-button: #ffffff;
+ --color-code-bg: #ffffff;
}
:root:lang(ja) {
@@ -253,6 +254,10 @@ a.muted:hover,
border-color: var(--color-primary);
}
+.CodeMirror-focused {
+ border-color: var(--color-primary) !important;
+}
+
.ui.action.input:not([class*="left action"]) > input:focus {
border-right-color: var(--color-primary);
}
@@ -288,6 +293,10 @@ a.muted:hover,
background: none;
}
+.ui.ui.menu .item.disabled {
+ color: var(--color-text-light-2);
+}
+
.ui.dropdown .menu {
background: var(--color-menu);
border-color: var(--color-secondary);
@@ -307,6 +316,8 @@ a.muted:hover,
}
.ui.dropdown .menu .active.item {
+ color: var(--color-text);
+ background: var(--color-active);
font-weight: normal;
}
@@ -523,17 +534,15 @@ a.muted:hover,
flex-direction: inherit;
}
-.ui.dropdown:not(.labeled) > .dropdown.icon {
- height: 14px;
- vertical-align: bottom;
- margin-bottom: -2px;
- margin-left: .5rem;
-}
-
.ui.dropdown .menu {
border-color: var(--color-secondary);
}
+.ui.pagination.menu .active.item {
+ color: var(--color-text);
+ background: var(--color-active);
+}
+
.ui.form .field > .selection.dropdown > .dropdown.icon {
height: auto;
}
@@ -1266,6 +1275,11 @@ a.ui.label:hover {
color: var(--color-text);
}
+.ui.basic.labels a.label:hover,
+a.ui.basic.label:hover {
+ background: var(--color-label-hover);
+}
+
.ui.label > .detail .icons {
margin-right: .25em;
}
@@ -1597,6 +1611,7 @@ a.ui.label:hover {
}
.ui.attached.header {
+ position: relative;
background: var(--color-box-header);
border-color: var(--color-secondary);
@@ -1606,6 +1621,14 @@ a.ui.label:hover {
}
}
+/* fix misaligned right buttons on box headers */
+.ui.attached.header .right {
+ position: absolute;
+ right: .78571429rem;
+ top: 50%;
+ transform: translateY(-50%);
+}
+
/* https://github.com/go-gitea/gitea/issues/10210 */
.ui.attached.segment ~ .ui.top.attached.header {
margin-top: 1rem;
diff --git a/web_src/less/_chroma.less b/web_src/less/_chroma.less
index 28a795784..699f69d81 100644
--- a/web_src/less/_chroma.less
+++ b/web_src/less/_chroma.less
@@ -1,7 +1,6 @@
-/* Background */
-
-.chroma {
- background-color: #ffffff;
+.chroma,
+.lines-code {
+ background-color: var(--color-code-bg);
}
/* LineTableTD */
diff --git a/web_src/less/_dashboard.less b/web_src/less/_dashboard.less
index 771c7e088..c925512f2 100644
--- a/web_src/less/_dashboard.less
+++ b/web_src/less/_dashboard.less
@@ -63,7 +63,8 @@
}
}
- .dashboard-repos {
+ .dashboard-repos,
+ .dashboard-orgs {
margin: 0 1px; /* Accomodate for Semantic's 1px hacks on .attached elements */
}
diff --git a/web_src/less/_editor.less b/web_src/less/_editor.less
index 82a7153c7..c23de4f2e 100644
--- a/web_src/less/_editor.less
+++ b/web_src/less/_editor.less
@@ -37,12 +37,26 @@
border-color: var(--color-secondary);
}
+.editor-toolbar button {
+ border: none !important;
+ color: var(--color-text-light);
+}
+
.editor-toolbar button:not(:hover) {
background-color: transparent !important;
}
.editor-toolbar i.separator {
border-left: none;
+ border-right-color: var(--color-secondary);
+}
+
+.editor-toolbar button:hover {
+ background: var(--color-hover);
+}
+
+.editor-toolbar button.active {
+ background: var(--color-active);
}
.editor-loading {
diff --git a/web_src/less/helpers.less b/web_src/less/helpers.less
index 3cf516165..77c81a62e 100644
--- a/web_src/less/helpers.less
+++ b/web_src/less/helpers.less
@@ -20,6 +20,9 @@
word-break: break-all !important;
}
+.full-screen-width { width: 100vw !important; }
+.full-screen-height { height: 100vw !important; }
+
.rounded { border-radius: var(--border-radius) !important; }
.rounded-top { border-radius: var(--border-radius) var(--border-radius) 0 0 !important; }
.rounded-bottom { border-radius: 0 0 var(--border-radius) var(--border-radius) !important; }
diff --git a/web_src/less/themes/theme-arc-green.less b/web_src/less/themes/theme-arc-green.less
index 2d097a655..884548acc 100644
--- a/web_src/less/themes/theme-arc-green.less
+++ b/web_src/less/themes/theme-arc-green.less
@@ -64,8 +64,8 @@
--color-purple: #a333c8;
--color-pink: #e03997;
--color-brown: #a5673f;
- --color-grey: #767676;
- --color-black: #1b1c1d;
+ --color-grey: #767a85;
+ --color-black: #1e222e;
--color-gold: #a1882b;
--color-white: #ffffff;
/* target-based colors */
@@ -73,8 +73,8 @@
--color-box-header: #454a57;
--color-box-body: #353945;
--color-text: #bbc0ca;
- --color-text-light: #969aa5;
- --color-text-light-2: #767a85;
+ --color-text-light: #a6aab5;
+ --color-text-light-2: #868a95;
--color-footer: #2e323e;
--color-timeline: #4a505c;
--color-input-text: #d5dbe6;
@@ -92,13 +92,9 @@
--color-markdown-table-row: #ffffff06;
--color-markdown-code-block: #2a2e3a;
--color-button: #353846;
+ --color-code-bg: #2a2e3a;
}
-/* Background */
-
-.chroma {
- background-color: #2a2e3a;
-}
/* LineTableTD */
.chroma .lntd {
@@ -563,12 +559,6 @@ a.ui.basic.green.label:hover {
color: #fff !important;
}
-.ui.basic.red.active.button,
-.ui.basic.red.buttons .active.button {
- box-shadow: 0 0 0 1px #b75252 inset !important;
- color: #b75252 !important;
-}
-
.ui.divider:not(.vertical):not(.horizontal) {
border-bottom-color: var(--color-secondary);
border-top-color: transparent;
@@ -771,19 +761,6 @@ a.ui.basic.green.label:hover {
border-color: transparent !important;
}
-.ui.basic.green.active.button,
-.ui.basic.green.buttons .active.button {
- color: #87ab63 !important;
- box-shadow: 0 0 0 1px #87ab63 inset !important;
-}
-
-.ui.green.buttons .active.button,
-.ui.green.buttons .active.button:active,
-.ui.green.active.button,
-.ui.green.button .active.button:active {
- background: #87ab63;
-}
-
.ui .info.segment.top {
background-color: var(--color-secondary) !important;
}
@@ -840,23 +817,6 @@ td.blob-hunk {
background: #353945;
}
-.ui.vertical.menu .active.item {
- background: #4b5162;
-}
-
-.ui.vertical.menu .item {
- background: #353945;
-}
-
-.ui.vertical.menu .header.item {
- background: var(--color-secondary);
-}
-
-.ui.vertical.menu {
- background: #353945;
- border: 1px solid #333640;
-}
-
.ui.card,
.ui.cards > .card {
background: #353945;
@@ -966,12 +926,6 @@ td.blob-hunk {
color: rgba(158, 158, 158, 1);
}
-.ui.basic.red.button,
-.ui.basic.red.buttons .button {
- box-shadow: 0 0 0 1px #a04141 inset !important;
- color: #a04141 !important;
-}
-
.ui.list .list > .item .header,
.ui.list > .item .header {
color: #dedede;
@@ -1183,30 +1137,11 @@ a.blob-excerpt:hover {
filter: invert(100%);
}
-.editor-toolbar {
- background-color: var(--color-secondary);
- border-color: var(--color-secondary);
-}
-
.edit-diff > div > .ui.table {
border-left-color: var(--color-secondary) !important;
border-right-color: var(--color-secondary) !important;
}
-.editor-toolbar button {
- color: #87ab63 !important;
-}
-
-.editor-toolbar button.active,
-.editor-toolbar button:hover {
- background: #2a2e3a;
- border-color: transparent;
-}
-
-.editor-toolbar i.separator {
- border-right-color: #87ab63;
-}
-
.repository .diff-detail-box {
background-color: #383c4a;
@@ -1232,11 +1167,6 @@ a.blob-excerpt:hover {
}
}
-.add-comment-left.add-comment-right .ui.attached.header {
- border-color: var(--color-secondary);
- border-right: none;
-}
-
.file-comment {
color: var(--color-secondary-dark-6);
}