Skip to content

Commit 830e96c

Browse files
CSS converted son --> child
1 parent 0b6cc67 commit 830e96c

File tree

7 files changed

+32
-33
lines changed

7 files changed

+32
-33
lines changed

src/createFamily/commit_info.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
## Did
22

3-
- [*] forbid rename CLUSTERS and ORPHANS folders
3+
- [*] son --> child , father --> parent , brother --> sibling
44

55
## ToDo
66

77
- [ ] FIX you need to add buttons line when onload if there is an active file
88
- [ ] make the extra buttons [ puzzle ] functionality implementation
99
- [ ] اخفي زر الحذف ضمن مجلد الكلستر عند الصغط على زر اليمين
10-
- [ ] son --> child , father --> parent , brother --> sibling
1110
- [ ] READEME.md
1211
- [ ] modifyFirst Template

src/style/parts/buttons.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@
6868
z-index: 60;
6969
height: 26px;
7070

71-
&:has(.sonBtn) {
71+
&:has(.childBtn) {
7272
background-color: var(--background-button-container-clusters);
7373
}
7474

75-
&:not(:has(.sonBtn)) {
75+
&:not(:has(.childBtn)) {
7676
background-color: var(--background-button-container-orphans);
7777
}
7878

src/style/parts/family-modal.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
background-color: var(--background-primary);
44

55
&:has(.brother),
6-
&:has(.son),
6+
&:has(.child),
77
&:has(.cluster),
88
&:has(.delete),
99
&:has(.orphan),
@@ -39,8 +39,8 @@
3939
background-color: var(--background-prompt-cluster);
4040
}
4141

42-
&.son {
43-
background-color: var(--background-prompt-son);
42+
&.child {
43+
background-color: var(--background-prompt-child);
4444
}
4545

4646
&.brother {

src/style/parts/file-menu.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
}
99

1010
.menu-item:has(.menu-item-icon .lucide-baby) {
11-
background-color: var(--background-menu-son);
11+
background-color: var(--background-menu-child);
1212
margin-bottom: 2px;
1313
}
1414

1515
.menu-item.selected:has(.menu-item-icon .lucide-baby) {
16-
background-color: var(--background-menu-son-selected);
16+
background-color: var(--background-menu-child-selected);
1717
}
1818

1919
.menu-item:has(.menu-item-icon .lucide-git-compare) {

src/style/parts/variables.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.theme-dark {
22
//-prompt colors
3-
--background-prompt-son: hsl(340.53deg 50% 30%);
3+
--background-prompt-child: hsl(340.53deg 50% 30%);
44
--background-prompt-cluster: hsl(154.99deg 50% 30%);
55
--background-prompt-brother: hsl(210.38deg 50% 30%);
66
--background-prompt-orphan: hsl(303deg 50% 30%);
@@ -11,8 +11,8 @@
1111
//-menu colors
1212
--background-menu-cluster: hsl(154.99deg 50% 30%/ 40%) !important;
1313
--background-menu-cluster-selected: hsl(154.99deg 50% 30%/ 80%) !important;
14-
--background-menu-son: hsl(341deg 50% 30% / 40%) !important;
15-
--background-menu-son-selected: hsl(341deg 50% 30% / 80%) !important;
14+
--background-menu-child: hsl(341deg 50% 30% / 40%) !important;
15+
--background-menu-child-selected: hsl(341deg 50% 30% / 80%) !important;
1616
--background-menu-brother: hsl(210deg 50% 30% / 40%) !important;
1717
--background-menu-brother-selected: hsl(210deg 50% 30% / 80%) !important;
1818
--background-menu-orphan: hsl(303deg 50% 30%/ 40%) !important;
@@ -36,7 +36,7 @@
3636

3737
.theme-light {
3838
//-prompt colors
39-
--background-prompt-son: hsl(340.53deg 50% 30%);
39+
--background-prompt-child: hsl(340.53deg 50% 30%);
4040
--background-prompt-cluster: hsl(154.99deg 50% 30%);
4141
--background-prompt-brother: hsl(210.38deg 50% 30%);
4242
--background-prompt-orphan: hsl(303deg 50% 30%);
@@ -47,8 +47,8 @@
4747
//-menu colors
4848
--background-menu-cluster: hsl(154.99deg 50% 30%/ 40%) !important;
4949
--background-menu-cluster-selected: hsl(154.99deg 50% 30%/ 80%) !important;
50-
--background-menu-son: hsl(341deg 50% 30% / 40%) !important;
51-
--background-menu-son-selected: hsl(341deg 50% 30% / 80%) !important;
50+
--background-menu-child: hsl(341deg 50% 30% / 40%) !important;
51+
--background-menu-child-selected: hsl(341deg 50% 30% / 80%) !important;
5252
--background-menu-brother: hsl(210deg 50% 30% / 40%) !important;
5353
--background-menu-brother-selected: hsl(210deg 50% 30% / 80%) !important;
5454
--background-menu-orphan: hsl(303deg 50% 30%/ 40%) !important;

src/style/style.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
}
3232

3333

34-
.inputMsgCon.son:hover svg {
34+
.inputMsgCon.child:hover svg {
3535
-webkit-animation: jello-vertical 0.9s both;
3636
animation: jello-vertical 0.9s both;
3737
}

styles.css

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)