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

0.27.0-beta1 Request refactorisation & scss improvements #170

Merged
merged 3 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 backend/swagger.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
swagger: "2.0"
info:
version: 0.26.0
version: 0.27.0-beta1
title: DebiAI_BACKEND_API
description: DebiAI backend api
contact:
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "debiai_frontend",
"version": "0.26.0",
"version": "0.27.0-beta1",
"description": "Frontend for Debiai, made with Vuejs",
"license": "Apache-2.0",
"scripts": {
Expand Down
112 changes: 56 additions & 56 deletions frontend/src/assets/css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -205,21 +205,21 @@ button + button {
display: flex;
flex-direction: column;
margin: 10px;
}

.card .title {
display: flex;
align-items: center;
background-color: var(--grey);
padding: 10px;
}
.title {
display: flex;
align-items: center;
background-color: var(--grey);
padding: 10px;

.card .title h2 {
font-size: 1.2em;
}
h2 {
font-size: 1.2em;
}

.card .title h3 {
font-size: 1em;
h3 {
font-size: 1em;
}
}
}

/* Data */
Expand All @@ -229,63 +229,63 @@ button + button {
color: white;
margin: 3px;
background: var(--grey);
}

.dataGroup .data {
display: flex;
}
.data {
display: flex;

.dataGroup .data .name {
background: var(--greyDark);
border-right: solid 2px var(--grey);
color: black;
padding: 2px 6px 2px 6px;
min-height: 30px;
display: flex;
align-items: center;
justify-content: center;
align-self: stretch;
}
.name {
background: var(--greyDark);
border-right: solid 2px var(--grey);
color: black;
padding: 2px 6px 2px 6px;
min-height: 30px;
display: flex;
align-items: center;
justify-content: center;
align-self: stretch;
}

.dataGroup .data .value {
background: var(--greyDark);
padding: 2px;
display: flex;
align-items: center;
justify-content: center;
color: var(--fontColor);
.value {
background: var(--greyDark);
padding: 2px;
display: flex;
align-items: center;
justify-content: center;
color: var(--fontColor);
}
}
}

/* Item lists */
.itemList {
display: flex;
flex-direction: column;
}

.itemList .item {
display: flex;
padding: 15px;
margin: 0 20px 0 20px;
transition: all ease-out 0.1s;
align-items: center;
border: solid 1px transparent;
border-left: solid 8px transparent;
border-bottom: solid rgba(0, 0, 0, 0.172) 1px;
}
.item {
display: flex;
padding: 15px;
margin: 0 20px 0 20px;
transition: all ease-out 0.1s;
align-items: center;
border: solid 1px transparent;
border-left: solid 8px transparent;
border-bottom: solid rgba(0, 0, 0, 0.172) 1px;
}

.itemList .item:first-child {
border-top: solid rgba(0, 0, 0, 0.172) 1px;
}
.item:first-child {
border-top: solid rgba(0, 0, 0, 0.172) 1px;
}

.itemList .item.selected {
background-color: rgba(147, 58, 58, 0.06);
border: solid 1px var(--primary);
border-left: solid 8px var(--primary);
}
.item.selected {
background-color: rgba(147, 58, 58, 0.06);
border: solid 1px var(--primary);
border-left: solid 8px var(--primary);
}

.itemList .item.selectable:hover {
cursor: pointer;
background-color: rgba(0, 0, 0, 0.1);
.item.selectable:hover {
cursor: pointer;
background-color: rgba(0, 0, 0, 0.1);
}
}

/* Tips */
Expand Down

This file was deleted.

Loading
Loading