Skip to content
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

Issue #740 allow to configure color scheme via config #741

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
3ad797d
Set --color-primary in the entire app
rodolv-commons Mar 19, 2025
75788f4
Set color primary related in the entire app
rodolv-commons Mar 19, 2025
0852f1b
Set color-secondary in the entire app
rodolv-commons Mar 19, 2025
56b50fa
Set color-black in the entire app
rodolv-commons Mar 19, 2025
9d09375
Set color-text-dark in the entire app
rodolv-commons Mar 19, 2025
1b504f0
Set color-text-grey in the entire app
rodolv-commons Mar 19, 2025
56b9b35
Set color-text-grey-lightGrey in the entire app
rodolv-commons Mar 19, 2025
cd41d7b
Set color-text-grey-mediumLightGrey in the entire app
rodolv-commons Mar 19, 2025
42f10cb
Set color-text-grey-veryLightGrey in the entire app
rodolv-commons Mar 19, 2025
748dea6
Set color-success in the entire app
rodolv-commons Mar 19, 2025
85e7f97
Set color-warning in the entire app
rodolv-commons Mar 19, 2025
37c62e1
Set color-danger in the entire app
rodolv-commons Mar 19, 2025
bc6ba75
Set color-secondary-light in the entire app
rodolv-commons Mar 19, 2025
9ffa14e
Set color-secondary-dark in the entire app
rodolv-commons Mar 19, 2025
e8d1b81
Finish base colors and adjusted colors sections in less file
rodolv-commons Mar 19, 2025
935cc81
Finish section General colors
rodolv-commons Mar 20, 2025
9ee4b2b
Finish section Button colors
rodolv-commons Mar 20, 2025
bac2ad3
First implementation
rodolv-commons Mar 20, 2025
2c991d1
Forgot entries
rodolv-commons Mar 20, 2025
2d140f5
Final implementation
rodolv-commons Mar 20, 2025
17fde9f
Fix issue on hovering
rodolv-commons Mar 20, 2025
2518e40
Delete colors.less
rodolv-commons Mar 20, 2025
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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ config/cocoda*.json
!config/cocoda.dev.json
!config/cocoda.master.json
# local colors file
src/style/user-colors.less
src/style/user-colors.css

# Relases (when using bin/build-all.sh)
releases/
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,14 +113,14 @@ Design of cards should roughly adhere to [material design cards](https://materia

### Colors

For interface elements, there is a range of pre-defined colors available in `src/style/colors.less`. For non-linked text, please use one of the following colors:
For interface elements, there is a range of pre-defined colors available in `src/style/colors.css`. For non-linked text, please use one of the following colors:

* CSS class `text-dark`
* CSS class `text-grey`
* CSS class `text-lightGrey`
* CSS class `text-veryLightGrey`

Colors can be overridden using a custom user file in `src/style/user-colors.less`.
Colors can be overridden using a custom user file in `src/style/user-colors.css`, it needs to be imported in `src/style/colors.css`.

### Tables

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ Using the pre-built version, the application only has to be reloaded after editi

## Maintainers

- [@stefandesu](https://github.com/stefandesu)
- [@nichtich](https://github.com/nichtich)
- [@rodolv-commons](https://github.com/rodolv-commons)

## Contribute

Expand Down
13 changes: 7 additions & 6 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -809,6 +809,7 @@ export default {

<style lang="less">
@import "./style/main.less";
@import "./style/colors.css";

html, body {
height: 100%;
Expand All @@ -826,7 +827,7 @@ html, body {
.main {
flex: 1;
position: relative;
background-color: @color-background-secondary;
background-color: var(--color-background-secondary);
}
.flexbox-row {
display: flex;
Expand Down Expand Up @@ -902,7 +903,7 @@ html, body {
width: 100%;
}
.configError {
background-color: @color-background;
background-color: var(--color-background);
width: 100%;
height: 100%;
}
Expand All @@ -927,19 +928,19 @@ html, body {
margin: 0 auto;
cursor: pointer;
user-select: none;
color: @color-button;
color: rgb(var(--color-button));
}
#swapSides:hover {
color: @color-button-hover;
color: var(--color-button-hover);
}

.tooltip {
pointer-events: none !important;
}
// Override border color for all cocoda-vue-tabs
.cocoda-vue-tabs-header-item.cocoda-vue-tabs-header-item-active {
border-bottom-color: @color-primary !important;
background-color: @color-background-heading !important;
border-bottom-color: var(--color-primary) !important;
background-color: var(--color-background-heading) !important;
}
// Override font-size for all cocoda-vue-tabs
.cocoda-vue-tabs-sm {
Expand Down
11 changes: 6 additions & 5 deletions src/ConcordanceApp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ export default {

<style lang="less">
@import "./style/main.less";
@import "./style/colors.css";

html, body {
height: 100%;
Expand All @@ -345,7 +346,7 @@ html, body {
.main {
flex: 1;
position: relative;
background-color: @color-background-secondary;
background-color: var(--color-background-secondary);
}
.flexbox-row {
display: flex;
Expand Down Expand Up @@ -435,19 +436,19 @@ html, body {
margin: 0 auto;
cursor: pointer;
user-select: none;
color: @color-button;
color: rgb(var(--color-button));
}
#swapSides:hover {
color: @color-button-hover;
color: var(--color-button-hover);
}

.tooltip {
pointer-events: none !important;
}
// Override border color for all cocoda-vue-tabs
.cocoda-vue-tabs-header-item.cocoda-vue-tabs-header-item-active {
border-bottom-color: @color-primary !important;
background-color: @color-background-heading !important;
border-bottom-color: var(--color-primary) !important;
background-color: var(--color-background-heading) !important;
}
// Override font-size for all cocoda-vue-tabs
.cocoda-vue-tabs-sm {
Expand Down
5 changes: 3 additions & 2 deletions src/components/AnnotationList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ export default {

<style lang="less" scoped>
@import "@/style/main.less";
@import "../style/colors.css";

.annotationList {
max-height: 300px;
Expand All @@ -206,10 +207,10 @@ export default {
flex-direction: column;
}
.annotationList > div:nth-child(odd) {
background-color: @color-background;
background-color: var(--color-background);
}
.annotationList > div:nth-child(even) {
background-color: fadeout(@color-text-veryLightGrey, 70%);
background-color: var(--color-text-veryLightGrey-opacity);
}

</style>
3 changes: 2 additions & 1 deletion src/components/AnnotationPopover.vue
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,7 @@ export default {

<style lang="less" scoped>
@import "@/style/main.less";
@import "../style/colors.css";

.annotationPopover {
display: flex;
Expand Down Expand Up @@ -504,7 +505,7 @@ export default {
flex: 1;
}
.annotationPopover-voting-button-current {
color: @color-primary;
color: var(--color-primary);
}

.bbutton-small {
Expand Down
5 changes: 3 additions & 2 deletions src/components/ComponentSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ export default {

<style lang="less" scoped>
@import "@/style/main.less";
@import "../style/colors.css";

.componentSettings {
position: absolute;
Expand All @@ -168,9 +169,9 @@ export default {
z-index: @zIndex-2;
}
.componentSettings > .button {
color: @color-button-slightlyFaded;
color: var(--color-button-faded-40);
}
.componentSettings > .button:hover {
color: @color-button-hover;
color: var(--color-button-hover);
}
</style>
7 changes: 4 additions & 3 deletions src/components/ConceptDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -536,13 +536,14 @@ export default {

<style lang="less" scoped>
@import "@/style/main.less";
@import "../style/colors.css";

.conceptDetail-scheme {
margin-top: 5px;
}

.conceptDetail-name {
background-color: @color-secondary;
background-color: hsl(var(--color-secondary));
position: relative;
padding: 0 20px;
}
Expand All @@ -556,7 +557,7 @@ export default {
position: absolute;
right: 3px;
top: -2px;
color: @color-background;
color: var(--color-background);
}

.conceptDetail-identifier {
Expand Down Expand Up @@ -612,7 +613,7 @@ export default {
.coli-ana > li > div:first-child {
width: 8px;
user-select: none;
color: @color-text-lightGrey;
color: var(--color-text-lightGrey);
font-weight: normal;
}
.coli-ana > li > div:not(:last-child) {
Expand Down
7 changes: 4 additions & 3 deletions src/components/ConceptListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,7 @@ export default {

<style lang="less" scoped>
@import "@/style/main.less";
@import "../style/colors.css";

.conceptBox {
display: flex;
Expand Down Expand Up @@ -397,7 +398,7 @@ export default {
.addToMapping {
.fontSize-large;
position: absolute;
color: @color-background;
color: var(--color-background);
top: 50%;
transform: translateY(-50%);
right: 8px;
Expand All @@ -408,7 +409,7 @@ export default {
.selected.hovered,
.arrowBox:hover,
.conceptListItem:hover {
background-color: @color-secondary-light;
background-color: hsl(var(--color-secondary-light));
}

.conceptListItem-buttonBefore {
Expand All @@ -418,7 +419,7 @@ export default {
/* For arrows, from https://www.w3schools.com/howto/howto_css_arrows.asp */
// TODO: Use font awesome or move somewhere else
.arrowBox > i {
border: solid @color-black;
border: solid var(--color-black);
border-width: 0 2px 2px 0;
display: inline-block;
padding: 3px;
Expand Down
2 changes: 1 addition & 1 deletion src/components/ConceptListWrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ export default {
padding: 4px 5px;
}
.conceptListWrapper-listSelectionPopover-choice:hover {
background-color: @color-background-secondary;
background-color: var(--color-background-secondary);
cursor: pointer;
}

Expand Down
17 changes: 9 additions & 8 deletions src/components/ConceptSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,7 @@ export default {

<style lang="less" scoped>
@import "@/style/main.less";
@import "../style/colors.css";

.conceptSearch {
position: relative;
Expand Down Expand Up @@ -529,8 +530,8 @@ export default {
width: 100%;
padding: 0;
margin: 3px 0;
background-color: @color-background;
box-shadow: 0 2px 4px 0 @color-shadow;
background-color: var(--color-background);
box-shadow: 0 2px 4px 0 var(--color-shadow);
z-index: @zIndex-10;
}

Expand All @@ -548,16 +549,16 @@ export default {
}

.conceptSearch-selected {
background-color: @color--conceptSearch-result-selected-background;
color: @color--conceptSearch-result-selected;
background-color: var(--color--conceptSearch-result-selected-background);
color: var(--color--conceptSearch-result-selected);
}

.conceptSearch-loading {
width: 100%;
height: 50px;
padding: 0px 0px 0px 12px;
z-index: @zIndex-3;
background-color: @color-loading-overlay-background;
background-color: var(--color-loading-overlay-background);
display: flex;
justify-content: left;
align-items: center;
Expand All @@ -568,13 +569,13 @@ export default {
</style>

<style lang="less">
@import "@/style/colors.less";
@import "../style/colors.css";

// Has to be global to work
.conceptSearch-searchHighlight {
color: @color--conceptSearch-searchHighlight;
color: var(--color--conceptSearch-searchHighlight);
}
.conceptSearch-selected .conceptSearch-searchHighlight {
color: @color--conceptSearch-searchHighlight-selected;
color: var(--color--conceptSearch-searchHighlight-selected);
}
</style>
7 changes: 4 additions & 3 deletions src/components/ItemName.vue
Original file line number Diff line number Diff line change
Expand Up @@ -246,21 +246,22 @@ export default {

<style lang="less" scoped>
@import "@/style/main.less";
@import "../style/colors.css";

.itemName {
display: inline;
user-select: text;
}
.itemName-inner, .itemName-inner > * {
color: @color-text-dark !important;
color: var(--color-text-dark) !important;
display: inline;
}
.itemName-hovered, .itemName-hoverable:hover {
cursor: pointer;
text-decoration: underline;
}
.itemName-highlighted {
color: @color--itemName-highlighted !important;
color: var(--color--itemName-highlighted) !important;
}
.itemName-icon {
margin-right: 3px;
Expand Down Expand Up @@ -289,6 +290,6 @@ export default {
width: 1em;
height: 1em;
margin-top: 0.2em;
background: @color-background;
background: var(--color-background);
}
</style>
9 changes: 5 additions & 4 deletions src/components/ItemSuggest.vue
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@ export default defineComponent({

<style lang="less" scoped>
@import "@/style/main.less";
@import "../style/colors.css";

.jskos-vue-itemSuggest {
position: relative;
Expand All @@ -323,8 +324,8 @@ export default defineComponent({
width: 100%;
padding: 0;
margin: 1px 0;
background-color: @color-background;
box-shadow: 0 2px 4px 0 @color-shadow;
background-color: var(--color-background);
box-shadow: 0 2px 4px 0 var(--color-shadow);
z-index: @zIndex-10;
}

Expand All @@ -341,8 +342,8 @@ export default defineComponent({
}

.jskos-vue-itemSuggest-selected {
color: @color--conceptSearch-result-selected;
background-color: @color--conceptSearch-result-selected-background;
color: var(--color--conceptSearch-result-selected);
background-color: var(--color--conceptSearch-result-selected-background);
}

.jskos-vue-itemSuggest-loading {
Expand Down
4 changes: 2 additions & 2 deletions src/components/LoadingIndicator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ export default {

.loader {
.m-borderRadius(50%);
border: 4px solid @color--loadingIndicator-border;
border-top: 4px solid @color--loadingIndicator-border-top;
border: 4px solid var(--color--loadingIndicator-border);
border-top: 4px solid var(--color--loadingIndicator-border-top);
width: 24px;
height: 24px;
animation: spin 2s linear infinite;
Expand Down
Loading