You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by oc...@apache.org on 2022/05/23 19:49:22 UTC

[trafficcontrol] branch master updated (215bb7670a -> 07360c5450)

This is an automated email from the ASF dual-hosted git repository.

ocket8888 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git


    from 215bb7670a Remove Traffic Router Profile name restrictions (#6213)
     add 07360c5450 Add Theming to TPv2 (#6753)

No new revisions were added by this update.

Summary of changes:
 experimental/traffic-portal/angular.json           |   7 +-
 .../nightwatch/globals/tables/index.ts             |  28 +-
 .../nightwatch/page_objects/users.ts               |   2 +-
 .../nightwatch/tests/ds/ds.invalidate.spec.ts      |  10 +-
 .../nightwatch/tests/users/users.spec.ts           |   2 +-
 .../traffic-portal/src/app/app.component.html      |   1 +
 .../traffic-portal/src/app/app.component.spec.ts   |   4 -
 .../traffic-portal/src/app/app.component.ts        |   8 +-
 .../traffic-portal/src/app/app.ui.module.ts        |  10 +-
 .../cache-group-table.component.html               |   5 +-
 .../cache-group-table.component.scss               |  34 ++-
 .../cache-group-table.component.spec.ts            |   6 +
 .../cache-group-table.component.ts                 |   5 +-
 .../core/currentuser/currentuser.component.html    | 130 ++++-----
 .../core/currentuser/currentuser.component.scss    |  30 ++-
 .../core/currentuser/currentuser.component.spec.ts |   8 +-
 .../app/core/currentuser/currentuser.component.ts  |  13 +-
 .../app/core/dashboard/dashboard.component.html    |   1 -
 .../app/core/dashboard/dashboard.component.scss    |   1 -
 .../app/core/dashboard/dashboard.component.spec.ts |   4 +
 .../src/app/core/dashboard/dashboard.component.ts  |   6 +-
 .../deliveryservice/deliveryservice.component.html |  74 ++---
 .../deliveryservice/deliveryservice.component.scss |   1 -
 .../deliveryservice.component.spec.ts              |   4 +
 .../deliveryservice/deliveryservice.component.ts   |   5 +-
 .../src/app/core/ds-card/ds-card.component.scss    |   2 -
 .../invalidation-jobs.component.html               |  64 +++--
 .../invalidation-jobs.component.scss               |  25 ++
 .../invalidation-jobs.component.spec.ts            |   7 +-
 .../invalidation-jobs.component.ts                 |   6 +-
 .../new-invalidation-job-dialog.component.html     |   4 +-
 .../new-delivery-service.component.html            |   3 +-
 .../new-delivery-service.component.scss            |   9 +-
 .../new-delivery-service.component.spec.ts         |   6 +-
 .../new-delivery-service.component.ts              |  10 +
 .../server-details/_server-details-theme.scss      |  50 ++++
 .../server-details/server-details.component.html   | 299 ++++++++++++---------
 .../server-details/server-details.component.scss   |  77 +++---
 .../server-details.component.spec.ts               |   9 +-
 .../server-details/server-details.component.ts     |  16 +-
 .../servers-table/servers-table.component.html     |  27 +-
 .../servers-table/servers-table.component.scss     |  33 ++-
 .../servers-table/servers-table.component.spec.ts  |  45 ++--
 .../servers-table/servers-table.component.ts       |  77 +++---
 .../update-status/update-status.component.html     |  38 +--
 .../update-status/update-status.component.scss     |  61 +----
 .../update-status/update-status.component.spec.ts  |  72 ++---
 .../update-status/update-status.component.ts       |  48 ++--
 .../src/app/core/users/users.component.html        |  29 +-
 .../src/app/core/users/users.component.scss        |  37 +--
 .../src/app/core/users/users.component.ts          |   4 +-
 .../src/app/login/login.component.html             |  38 ++-
 .../src/app/login/login.component.scss             |  77 +++---
 .../src/app/login/login.component.spec.ts          |   7 +-
 .../src/app/login/login.component.ts               |  10 +-
 .../reset-password-dialog.component.html           |   2 +-
 .../src/app/shared/alert/alert.component.scss      |  17 --
 .../generic-table/generic-table.component.html     |  24 +-
 .../generic-table/generic-table.component.scss     |  95 +++----
 .../generic-table/generic-table.component.spec.ts  |  16 +-
 .../generic-table/generic-table.component.ts       |   4 +-
 .../src/app/shared/loading/loading.component.scss  |   1 -
 .../traffic-portal/src/app/shared/shared.module.ts |   6 +-
 .../update-cell-renderer.component.scss            |   9 -
 .../theme-manager/theme-manager.service.spec.ts    |  77 ++++++
 .../shared/theme-manager/theme-manager.service.ts  | 153 +++++++++++
 .../app/shared/tp-header/tp-header.component.html  |  47 ++--
 .../app/shared/tp-header/tp-header.component.scss  |  34 ++-
 .../shared/tp-header/tp-header.component.spec.ts   |  10 +-
 .../app/shared/tp-header/tp-header.component.ts    |  26 +-
 .../app/shared/tp-header/tp-header.service.spec.ts |  46 ++++
 .../tp-header/tp-header.service.ts}                |  30 +--
 experimental/traffic-portal/src/styles.scss        |  43 +--
 .../src/styles/themes/dark-default.scss            |  40 +++
 experimental/traffic-portal/src/theme.scss         |  82 +++++-
 75 files changed, 1469 insertions(+), 882 deletions(-)
 create mode 100644 experimental/traffic-portal/src/app/core/servers/server-details/_server-details-theme.scss
 create mode 100644 experimental/traffic-portal/src/app/shared/theme-manager/theme-manager.service.spec.ts
 create mode 100644 experimental/traffic-portal/src/app/shared/theme-manager/theme-manager.service.ts
 create mode 100644 experimental/traffic-portal/src/app/shared/tp-header/tp-header.service.spec.ts
 copy experimental/traffic-portal/src/app/{app.server.module.ts => shared/tp-header/tp-header.service.ts} (58%)
 create mode 100644 experimental/traffic-portal/src/styles/themes/dark-default.scss