From f3c9ffab8d2f18ed912186e04bdc8ef4a244764a Mon Sep 17 00:00:00 2001 From: Eugenio Romano Date: Wed, 22 Mar 2017 10:50:24 +0000 Subject: [PATCH] remove style in html #1678 (#1743) --- .../app/components/about/about.component.css | 3 +++ .../app/components/about/about.component.html | 2 +- .../app/components/about/about.component.ts | 3 ++- .../app/components/files/files.component.css | 5 +++++ .../app/components/files/files.component.html | 6 +++--- .../components/setting/setting.component.css | 9 +++++++-- .../components/setting/setting.component.html | 2 +- .../analytics-generator.component.css | 18 +++++++++++++++++- .../analytics-generator.component.html | 8 ++++---- .../widgets/duration/duration.widget.css | 4 ++++ .../widgets/duration/duration.widget.html | 4 ++-- .../src/components/activiti-form.component.css | 8 ++++++++ .../components/activiti-form.component.html | 4 ++-- .../components/alfresco-login.component.css | 4 ++++ .../components/alfresco-login.component.html | 2 +- .../file-uploading-list.component.css | 14 ++++++++++++-- .../file-uploading-list.component.html | 4 ++-- 17 files changed, 78 insertions(+), 22 deletions(-) create mode 100644 demo-shell-ng2/app/components/about/about.component.css diff --git a/demo-shell-ng2/app/components/about/about.component.css b/demo-shell-ng2/app/components/about/about.component.css new file mode 100644 index 0000000000..bafc1e6a63 --- /dev/null +++ b/demo-shell-ng2/app/components/about/about.component.css @@ -0,0 +1,3 @@ +.about-container { + padding: 10px; +} diff --git a/demo-shell-ng2/app/components/about/about.component.html b/demo-shell-ng2/app/components/about/about.component.html index c0922f8141..556f7a350a 100644 --- a/demo-shell-ng2/app/components/about/about.component.html +++ b/demo-shell-ng2/app/components/about/about.component.html @@ -1,4 +1,4 @@ -
+

Packages

diff --git a/demo-shell-ng2/app/components/about/about.component.ts b/demo-shell-ng2/app/components/about/about.component.ts index 4fba975fe8..a1766c5f30 100644 --- a/demo-shell-ng2/app/components/about/about.component.ts +++ b/demo-shell-ng2/app/components/about/about.component.ts @@ -22,7 +22,8 @@ import { LogService } from 'ng2-alfresco-core'; @Component({ selector: 'about-page', - templateUrl: './about.component.html' + templateUrl: './about.component.html', + styleUrls: ['./about.component.css'] }) export class AboutComponent implements OnInit { diff --git a/demo-shell-ng2/app/components/files/files.component.css b/demo-shell-ng2/app/components/files/files.component.css index cb4cb685aa..ce96c9eff8 100644 --- a/demo-shell-ng2/app/components/files/files.component.css +++ b/demo-shell-ng2/app/components/files/files.component.css @@ -15,3 +15,8 @@ .error-message--text { color: #d50000; } + +.options-container { + width: 250px; + margin: 20px; +} diff --git a/demo-shell-ng2/app/components/files/files.component.html b/demo-shell-ng2/app/components/files/files.component.html index 7d15d01ed5..8272c65e35 100644 --- a/demo-shell-ng2/app/components/files/files.component.html +++ b/demo-shell-ng2/app/components/files/files.component.html @@ -107,7 +107,7 @@ -

+

-

+

-

+

-
+
diff --git a/ng2-components/ng2-activiti-analytics/src/components/analytics-generator.component.css b/ng2-components/ng2-activiti-analytics/src/components/analytics-generator.component.css index 0f18f22972..ec0b172699 100644 --- a/ng2-components/ng2-activiti-analytics/src/components/analytics-generator.component.css +++ b/ng2-components/ng2-activiti-analytics/src/components/analytics-generator.component.css @@ -1,4 +1,7 @@ -.chart {display: block; width: 100%;} +.chart { + display: block; + width: 100%; +} .analytics-row__entry { cursor: pointer; @@ -8,3 +11,16 @@ margin: 20px 20px 20px 20px; float: right; } + +.full-width { + width: 100% +} + +.partial-width { + width: 80%; + margin-left: 20px +} + +.clear-both { + clear: both; +} diff --git a/ng2-components/ng2-activiti-analytics/src/components/analytics-generator.component.html b/ng2-components/ng2-activiti-analytics/src/components/analytics-generator.component.html index f9b420d372..215a487657 100644 --- a/ng2-components/ng2-activiti-analytics/src/components/analytics-generator.component.html +++ b/ng2-components/ng2-activiti-analytics/src/components/analytics-generator.component.html @@ -7,7 +7,7 @@ {{report.icon}}
-
+
@@ -29,7 +29,7 @@

{{report.title}}

{{'ANALYTICS.MESSAGES.NO-DATA-FOUND' | translate}}
- +
@@ -45,7 +45,7 @@

{{report.title}}

{{'ANALYTICS.MESSAGES.NO-DATA-FOUND' | translate}}
-
{{label | translate}}
+
@@ -55,7 +55,7 @@
{{label | translate}}
- +
diff --git a/ng2-components/ng2-activiti-analytics/src/components/widgets/duration/duration.widget.css b/ng2-components/ng2-activiti-analytics/src/components/widgets/duration/duration.widget.css index 3e4f6952f3..e89482a3bb 100644 --- a/ng2-components/ng2-activiti-analytics/src/components/widgets/duration/duration.widget.css +++ b/ng2-components/ng2-activiti-analytics/src/components/widgets/duration/duration.widget.css @@ -17,3 +17,7 @@ .number-widget__invalid .mdl-textfield__error { visibility: visible !important; } + +.dropdown-container { + margin-top: 30px; +} diff --git a/ng2-components/ng2-activiti-analytics/src/components/widgets/duration/duration.widget.html b/ng2-components/ng2-activiti-analytics/src/components/widgets/duration/duration.widget.html index 0a3668f160..0bd88dcb9a 100644 --- a/ng2-components/ng2-activiti-analytics/src/components/widgets/duration/duration.widget.html +++ b/ng2-components/ng2-activiti-analytics/src/components/widgets/duration/duration.widget.html @@ -12,10 +12,10 @@
-
+
-
\ No newline at end of file + diff --git a/ng2-components/ng2-activiti-form/src/components/activiti-form.component.css b/ng2-components/ng2-activiti-form/src/components/activiti-form.component.css index 65aca84d10..03d3d17084 100644 --- a/ng2-components/ng2-activiti-form/src/components/activiti-form.component.css +++ b/ng2-components/ng2-activiti-form/src/components/activiti-form.component.css @@ -24,3 +24,11 @@ .activiti-form-hide-button { display: none; } + +.activiti-debug-button { + float: right; +} + +.activiti-task-title { + text-align: center +} diff --git a/ng2-components/ng2-activiti-form/src/components/activiti-form.component.html b/ng2-components/ng2-activiti-form/src/components/activiti-form.component.html index 2b00b52c76..b9813ffa68 100644 --- a/ng2-components/ng2-activiti-form/src/components/activiti-form.component.html +++ b/ng2-components/ng2-activiti-form/src/components/activiti-form.component.html @@ -1,6 +1,6 @@
-

Please select a Task

+

Please select a Task

@@ -44,7 +44,7 @@ will be removed during future revisions -->
-
+
{{label | translate}}
-
-
+
+
{{file.size}}