diff options
author | John Olheiser <42128690+jolheiser@users.noreply.github.com> | 2019-02-19 17:09:47 -0600 |
---|---|---|
committer | techknowlogick <matti@mdranta.net> | 2019-02-19 18:09:47 -0500 |
commit | d26d2497483b5ea4998350b6a03ee9a736e658da (patch) | |
tree | bd047b7fd37e1942875a17726696f9e456110826 /public/less | |
parent | 2982413f8dc8d6976fb1f3839ee6abdd89da990b (diff) | |
download | gitea-d26d2497483b5ea4998350b6a03ee9a736e658da.tar.gz gitea-d26d2497483b5ea4998350b6a03ee9a736e658da.zip |
Minor UI tweaks (#5980)
* Remove all CommitStatus when a repo is deleted
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* Minor UI tweaks (#5782)
Added 'No License' option
Added link and octicon change for external issue trackers
Reset password now notifies right away if the code is invalid
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* More UI tweaks
More info in PR
* Generate stylesheet for arc-green
* Make gofmt work
* Change PR integration since the button is changed
* Rebase
* Generate stylesheet
* UI updates
Made the PR button a "basic" button
Vertically centered the issue checkboxes
Labels will update only once after modal is closed
* Commit to reference related issues
Resolves #5782
Resolves #5861
Addresses original question in #5993
* Change the comment wording since PR button is no longer little and green.
* Revert changes that made Windows work
* Regenerate stylesheet
* Regenerate stylesheets
* make generate-stylesheets
* Update integration again, changed button style
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* Added ID to PR button
Changed integration to use the ID to avoid breaking in the future
* Added missing semi-colons
* Added back distinction between issue actions and filters (overlooked it before)
Moved action button over next to other action dropdowns
* Remove extra tab formatting in list.tmpl
* Remove more formatting from GoLand
* Replace hardcoded "No License" with i18n license helper.
Diffstat (limited to 'public/less')
-rw-r--r-- | public/less/_repository.less | 10 | ||||
-rw-r--r-- | public/less/themes/arc-green.less | 28 |
2 files changed, 23 insertions, 15 deletions
diff --git a/public/less/_repository.less b/public/less/_repository.less index 8345c308b2..dcd51615d6 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -1580,10 +1580,18 @@ } } -#issue-actions { +#issue-filters.hide { display: none; } +#issue-actions.hide { + display: none; +} + +.ui.checkbox.issue-checkbox { + vertical-align: middle; +} + .issue.list { list-style: none; padding-top: 15px; diff --git a/public/less/themes/arc-green.less b/public/less/themes/arc-green.less index 3ad91aa24c..c753e775f4 100644 --- a/public/less/themes/arc-green.less +++ b/public/less/themes/arc-green.less @@ -230,7 +230,7 @@ } .ui.pagination.menu .active.item { color: #dbdbdb; - background-color: #609926; + background-color: #87ab63; } .repository .header-wrapper { background-color: #2a2e3a; @@ -259,10 +259,10 @@ background: #565454; } .ui.blue.button, .ui.blue.buttons .button { - background-color: #609926; + background-color: #87ab63; } .ui.blue.button:hover, .ui.blue.buttons .button:hover { - background-color: #73ad36; + background-color: #a0cc75; } .ui.form input:not([type]), .ui.form input[type=text], .ui.form input[type=email], .ui.form input[type=search], .ui.form input[type=password], .ui.form input[type=date], .ui.form input[type=datetime-local], .ui.form input[type=tel], .ui.form input[type=time], .ui.form input[type=url], .ui.form input[type=number] { background: #404552; @@ -277,10 +277,10 @@ border-right-color: #4b505f!important; } .ui.green.button, .ui.green.buttons .button { - background-color: #609926; + background-color: #87ab63; } .ui.green.button:hover, .ui.green.buttons .button:hover { - background-color: #73ad36; + background-color: #a0cc75; } .ui.button { background: #383c4a; @@ -476,7 +476,7 @@ border-top: 1px solid #4c505c; } .ui .text.blue { - color: #609926 !important; + color: #87ab63 !important; } .ui.selection.active.dropdown, .ui.selection.active.dropdown .menu { border-color: #4e5361; @@ -517,7 +517,7 @@ background: #353945; } .ui.secondary.pointing.menu .active.item { - border-color: #609926; + border-color: #87ab63; color: #dbdbdb; background: #404552; } @@ -693,15 +693,15 @@ color: #7c9b5e; } .ui.blue.button:focus, .ui.blue.buttons .button:focus { - background-color: #609926; + background-color: #87ab63; } .ui.basic.blue.button:hover, .ui.basic.blue.buttons .button:hover { - box-shadow: 0 0 0 1px #609926 inset!important; - color: #609926!important; + box-shadow: 0 0 0 1px #87ab63 inset!important; + color: #87ab63!important; } .ui.basic.blue.button:focus, .ui.basic.blue.buttons .button:focus { - box-shadow: 0 0 0 1px #609926 inset!important; - color: #609926!important; + box-shadow: 0 0 0 1px #87ab63 inset!important; + color: #87ab63!important; } .repository.file.list #file-content .code-view .lines-num pre, .repository.file.list #file-content .code-view .lines-code pre, .repository.file.list #file-content .code-view .lines-num ol, .repository.file.list #file-content .code-view .lines-code ol, .repository.file.list #file-content .code-view .lines-num .hljs, .repository.file.list #file-content .code-view .lines-code .hljs { background-color: #2a2e3a; @@ -771,8 +771,8 @@ background: #383c4a; } .ui.basic.blue.button, .ui.basic.blue.buttons .button { - box-shadow: 0 0 0 1px #609926 inset!important; - color: #609926!important; + box-shadow: 0 0 0 1px #87ab63 inset!important; + color: #87ab63!important; } .editor-toolbar { background-color: #404552; |