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

Organization Chart #2726

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from 6 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
1 change: 1 addition & 0 deletions css/contacts.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ $grid-input-height-with-margin: $grid-height-unit - $grid-input-margin * 2;
@import 'Properties/Properties';
@import 'Properties/PropertyTitle';
@import 'ImportScreen';
@import 'orgChart';

// various
@import 'animations';
Expand Down
19 changes: 19 additions & 0 deletions css/orgChart.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.orgchart-container {
ChristophWurst marked this conversation as resolved.
Show resolved Hide resolved
display: flex;
flex-direction: column;

.chart-menu {
display: flex;
justify-content: flex-end;
}

.chart-container {
height: 100%;
background-color: var(--color-background-dark);

.svg-chart-container {
width: 100%;
height: auto;
}
}
}
2 changes: 2 additions & 0 deletions l10n/el.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,8 @@ OC.L10N.register(
"Pager" : "Βομβητής",
"Voice" : "Ομιλία",
"Car" : "Αμάξι",
"Organization Chart": "Οργανόγραμμα",
ChristophWurst marked this conversation as resolved.
Show resolved Hide resolved
"Org Manager": "Προϊστάμενος",
"Work pager" : "Βομβητής δουλειάς",
"Social network" : "Κοινωνικό δίκτυο",
"Relationship to you" : "Σχέση με εσάς",
Expand Down
2 changes: 2 additions & 0 deletions l10n/el.json
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,8 @@
"Pager" : "Βομβητής",
"Voice" : "Ομιλία",
"Car" : "Αμάξι",
"Organization Chart": "Οργανόγραμμα",
"Org Manager": "Προϊστάμενος",
"Work pager" : "Βομβητής δουλειάς",
"Social network" : "Κοινωνικό δίκτυο",
"Relationship to you" : "Σχέση με εσάς",
Expand Down
2 changes: 2 additions & 0 deletions l10n/en_GB.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ OC.L10N.register(
"Pager" : "Pager",
"Voice" : "Voice",
"Car" : "Car",
"Organization Chart": "Organization Chart",
"Org Manager": "Manager",
"Work pager" : "Work pager",
"Social network" : "Social network",
"Spouse" : "Spouse",
Expand Down
2 changes: 2 additions & 0 deletions l10n/en_GB.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@
"Pager" : "Pager",
"Voice" : "Voice",
"Car" : "Car",
"Organization Chart": "Organization Chart",
"Org Manager": "Org Manager",
"Work pager" : "Work pager",
"Social network" : "Social network",
"Spouse" : "Spouse",
Expand Down
Loading