+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/console/src/app/modules/org-context/org-context.component.scss b/console/src/app/modules/org-context/org-context.component.scss
new file mode 100644
index 0000000000..329ed7b834
--- /dev/null
+++ b/console/src/app/modules/org-context/org-context.component.scss
@@ -0,0 +1,43 @@
+.card {
+ border-radius: 0.5rem;
+ z-index: 200;
+ border: 1px solid #ffffff30;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ padding: 0;
+ min-width: 220px;
+ padding-bottom: 0.5rem;
+ position: relative;
+
+ .filter-wrapper {
+ padding: 0.5rem;
+ }
+
+ .spinner-w {
+ top: 1rem;
+ left: 0;
+ right: 0;
+ position: absolute;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ }
+
+ .show-all {
+ width: 100%;
+ }
+
+ .org-wrapper {
+ max-height: 350px;
+ display: flex;
+ align-items: stretch;
+ flex-direction: column;
+ overflow-y: auto;
+ width: 100%;
+
+ button {
+ text-align: start;
+ }
+ }
+}
diff --git a/console/src/app/modules/org-context/org-context.component.spec.ts b/console/src/app/modules/org-context/org-context.component.spec.ts
new file mode 100644
index 0000000000..6202bf2bba
--- /dev/null
+++ b/console/src/app/modules/org-context/org-context.component.spec.ts
@@ -0,0 +1,26 @@
+import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
+
+import { OrgContextComponent } from './org-context.component';
+
+describe('OrgContextComponent', () => {
+ let component: OrgContextComponent;
+ let fixture: ComponentFixture