10000 Rename project board -> column to make the UI less confusing by lunny · Pull Request #30170 · go-gitea/gitea · GitHub
[go: up one dir, main page]

Skip to content

Rename project board -& 8000 gt; column to make the UI less confusing #30170

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 35 commits into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
4372908
Rename project board -> column to make the UI less confusion
lunny Mar 29, 2024
49fce5d
rename more board -> column
lunny Mar 30, 2024
506f2ac
Merge branch 'main' into lunny/rename_board_column
lunny Mar 30, 2024
ff6a72d
Fix bug
lunny Mar 30, 2024
ecdc683
Merge branch 'main' into lunny/rename_board_column
lunny Mar 30, 2024
311a82f
Rename boardview type -> template type
lunny Mar 30, 2024
f3554db
Rename boardtype -> templatetype on template and form
lunny Mar 31, 2024
a0406b1
Merge branch 'main' into lunny/rename_board_column
lunny Mar 31, 2024
37eb84a
remove unnecessary comment
lunny Mar 31, 2024
42bec44
Merge branch 'main' into lunny/rename_board_column
lunny Apr 3, 2024
98c3344
Merge branch 'main' into lunny/rename_board_column
silverwind Apr 5, 2024
0ad9355
Merge branch 'main' into lunny/rename_board_column
lunny Apr 15, 2024
d876464
more renames
lunny Apr 16, 2024
3d0fad8
Merge branch 'main' into lunny/rename_board_column
lunny Apr 16, 2024
6dcbe27
Merge branch 'lunny/rename_board_column' of github.com:lunny/gitea in…
lunny Apr 16, 2024
e5cab92
more renames
lunny Apr 17, 2024
c40e7fc
Merge branch 'main' into lunny/rename_board_column
lunny Apr 18, 2024
e6a7fd3
Fix comment of boards
lunny Apr 18, 2024
925dcf8
Update models/project/column.go
lunny Apr 18, 2024
78f7639
Update documentation about boards
lunny Apr 18, 2024
09f90d2
Merge branch 'main' into lunny/rename_board_column
lunny Apr 18, 2024
125a13b
Merge branch 'lunny/rename_board_column' of github.com:lunny/gitea in…
lunny Apr 18, 2024
ee38355
Merge branch 'main' into lunny/rename_board_column
lunny Apr 19, 2024
b0d4084
More renames
lunny Apr 19, 2024
0444955
color-project-board-bg -> color-project-column-bg
silverwind Apr 21, 2024
d065f6f
Merge branch 'main' into lunny/rename_board_column
lunny Apr 23, 2024
4cb15a7
Merge branch 'lunny/rename_board_column' of github.com:lunny/gitea in…
lunny Apr 23, 2024
7682adc
Merge branch 'main' into lunny/rename_board_column
lunny Apr 28, 2024
61e8ad5
Fix locale
lunny Apr 30, 2024
b284b95
Merge branch 'main' into lunny/rename_board_column
lunny Apr 30, 2024
9109a85
Merge branch 'lunny/rename_board_column' of github.com:lunny/gitea in…
lunny Apr 30, 2024
d9e5f56
Merge branch 'main' into lunny/rename_board_column
lunny May 11, 2024
96122c5
More renames
lunny May 11, 2024
7a80a55
Merge branch 'main' into lunny/rename_board_column
GiteaBot May 27, 2024
65818e9
Merge branch 'main' into lunny/rename_board_column
GiteaBot May 27, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion web_src/css/features/projects.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
}

.project-column {
background-color: var(--color-project-board-bg) !important;
background-color: var(--color-project-column-bg) !important;
border: 1px solid var(--color-secondary) !important;
margin: 0 0.5rem !important;
padding: 0.5rem !important;
Expand Down
2 changes: 1 addition & 1 deletion web_src/css/themes/theme-gitea-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
--color-expand-button: #2f363d;
--color-placeholder-text: var(--color-text-light-3);
--color-editor-line-highlight: var(--color-primary-light-5);
--color-project-board-bg: var(--color-secondary-light-2);
--color-project-column-bg: var(--color-secondary-light-2);
--color-caret: var(--color-text); /* should ideally be --color-text-dark, see #15651 */
--color-reaction-bg: #e8f3ff12;
--color-reaction-hover-bg: var(--color-primary-light-4);
Expand Down
2 changes: 1 addition & 1 deletion web_src/css/themes/theme-gitea-light.css
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
--color-expand-button: #cfe8fa;
--color-placeholder-text: var(--color-text-light-3);
--color-editor-line-highlight: var(--color-primary-light-6);
--color-project-board-bg: var(--color-secondary-light-4);
--color-project-column-bg: var(--color-secondary-light-4);
--color-caret: var(--color-text-dark);
--color-reaction-bg: #0000170a;
--color-reaction-hover-bg: var(--color-primary-light-5);
Expand Down
0