summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/admin/cache-admin/cache-admin.component.scss
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/admin/cache-admin/cache-admin.component.scss')
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/admin/cache-admin/cache-admin.component.scss68
1 files changed, 68 insertions, 0 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/admin/cache-admin/cache-admin.component.scss b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/admin/cache-admin/cache-admin.component.scss
new file mode 100644
index 00000000..39ba7164
--- /dev/null
+++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/admin/cache-admin/cache-admin.component.scss
@@ -0,0 +1,68 @@
+table {
+ width: 100%;
+}
+
+.mat-form-field {
+ font-size: 14px;
+ width: 100%;
+}
+
+td, th {
+ width: 25%;
+}
+
+
+.mat-accordion .mat-header-row {
+ padding-left: 1.5rem;
+ padding-right: 2rem;
+ border-bottom: none;
+}
+
+
+//copied from https://github.com/angular/material2/blob/master/src/lib/table/table.scss
+$mat-header-row-height: 56px;
+$mat-row-height: 48px;
+$mat-row-horizontal-padding: 24px;
+
+
+.mat-header-row {
+ min-height: $mat-header-row-height;
+}
+
+.mat-row {
+ min-height: $mat-row-height;
+}
+
+.mat-row, .mat-header-row {
+ display: flex;
+ border-bottom-width: 1px;
+ border-bottom-style: solid;
+ align-items: center;
+ padding: 0 $mat-row-horizontal-padding;
+ box-sizing: border-box;
+
+ // Workaround for https://goo.gl/pFmjJD in IE 11. Adds a pseudo
+ // element that will stretch the row the correct height. See:
+ // https://connect.microsoft.com/IE/feedback/details/802625
+ &::after {
+ display: inline-block;
+ min-height: inherit;
+ content: '';
+ }
+}
+
+:host::ng-deep .mat-cell, .mat-header-cell {
+ flex: 1;
+ overflow: hidden;
+ word-wrap: break-word;
+ font-weight: bold;
+ font-size: 14px;
+ color: #343a40;
+}
+
+.mat-expansion-panel {
+ margin: 0;
+ border-radius: 4px;
+ overflow: hidden;
+ transition: margin 225ms cubic-bezier(.4,0,.2,1),box-shadow 280ms cubic-bezier(.4,0,.2,1);
+} \ No newline at end of file