@things-factory/auth-ui 7.0.1-rc.0 → 7.0.1-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/components/contact-us.ts +0 -4
- package/client/components/delete-user-popup.ts +1 -0
- package/client/components/partner-role-editor.ts +0 -4
- package/client/components/profile-component.ts +0 -4
- package/client/components/role-privilege-editor.ts +0 -3
- package/client/components/user-role-editor.ts +0 -4
- package/client/entries/auth/activate.ts +2 -4
- package/client/entries/auth/result.ts +3 -2
- package/client/entries/oauth2/oauth2-decision-page.ts +0 -4
- package/client/pages/app-binding/app-binding.ts +38 -22
- package/client/pages/app-binding/app-bindings.ts +20 -1
- package/client/pages/appliance/appliance.ts +75 -18
- package/client/pages/appliance/home.ts +23 -1
- package/client/pages/application/application.ts +93 -40
- package/client/pages/application/applications.ts +19 -1
- package/dist-client/components/contact-us.js +0 -4
- package/dist-client/components/contact-us.js.map +1 -1
- package/dist-client/components/delete-user-popup.js +1 -0
- package/dist-client/components/delete-user-popup.js.map +1 -1
- package/dist-client/components/partner-role-editor.js +0 -4
- package/dist-client/components/partner-role-editor.js.map +1 -1
- package/dist-client/components/profile-component.js +0 -4
- package/dist-client/components/profile-component.js.map +1 -1
- package/dist-client/components/role-privilege-editor.js +0 -3
- package/dist-client/components/role-privilege-editor.js.map +1 -1
- package/dist-client/components/user-role-editor.js +0 -4
- package/dist-client/components/user-role-editor.js.map +1 -1
- package/dist-client/entries/auth/activate.js +2 -4
- package/dist-client/entries/auth/activate.js.map +1 -1
- package/dist-client/entries/auth/result.js +3 -2
- package/dist-client/entries/auth/result.js.map +1 -1
- package/dist-client/entries/oauth2/oauth2-decision-page.js +0 -4
- package/dist-client/entries/oauth2/oauth2-decision-page.js.map +1 -1
- package/dist-client/pages/app-binding/app-binding.js +38 -22
- package/dist-client/pages/app-binding/app-binding.js.map +1 -1
- package/dist-client/pages/app-binding/app-bindings.d.ts +2 -1
- package/dist-client/pages/app-binding/app-bindings.js +19 -1
- package/dist-client/pages/app-binding/app-bindings.js.map +1 -1
- package/dist-client/pages/appliance/appliance.js +75 -18
- package/dist-client/pages/appliance/appliance.js.map +1 -1
- package/dist-client/pages/appliance/home.d.ts +2 -1
- package/dist-client/pages/appliance/home.js +22 -1
- package/dist-client/pages/appliance/home.js.map +1 -1
- package/dist-client/pages/application/application.js +93 -40
- package/dist-client/pages/application/application.js.map +1 -1
- package/dist-client/pages/application/applications.d.ts +2 -1
- package/dist-client/pages/application/applications.js +18 -1
- package/dist-client/pages/application/applications.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
|
@@ -14,6 +14,7 @@ export class DeleteUserPopup extends localize(i18next)(LitElement) {
|
|
|
14
14
|
:host {
|
|
15
15
|
display: flex;
|
|
16
16
|
flex-direction: column;
|
|
17
|
+
color: var(--popup-content-color);
|
|
17
18
|
background-color: var(--popup-content-background-color);
|
|
18
19
|
padding: var(--popup-content-padding);
|
|
19
20
|
}
|
|
@@ -86,10 +86,6 @@ export class ProfileComponent extends localize(i18next)(LitElement) {
|
|
|
86
86
|
margin: var(--change-password-field-margin);
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
-
[danger] {
|
|
90
|
-
--md-theme-primary: var(--md-danger-button-primary-color);
|
|
91
|
-
}
|
|
92
|
-
|
|
93
89
|
footer {
|
|
94
90
|
padding: 20px;
|
|
95
91
|
text-align: center;
|
|
@@ -56,9 +56,6 @@ class RolePrivilegeEditor extends localize(i18next)(LitElement) {
|
|
|
56
56
|
background-color: var(--md-sys-color-surface-variant);
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
-
[danger] {
|
|
60
|
-
--md-theme-primary: var(--md-danger-button-primary-color);
|
|
61
|
-
}
|
|
62
59
|
md-outlined-button {
|
|
63
60
|
background-color: var(--md-sys-color-surface-variant);
|
|
64
61
|
}
|
|
@@ -69,10 +69,8 @@ export class AuthActivate extends localize(i18next)(LitElement) {
|
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
md-elevated-button {
|
|
72
|
-
--md-
|
|
73
|
-
--md-
|
|
74
|
-
--md-button-horizontal-padding: var(--spacing-medium);
|
|
75
|
-
--md-button-ink-color: var(--md-sys-color-primary);
|
|
72
|
+
--md-elevated-button-horizontal-padding: var(--spacing-medium);
|
|
73
|
+
--md-elevated-button-ink-color: var(--md-sys-color-primary);
|
|
76
74
|
}
|
|
77
75
|
|
|
78
76
|
contact-us {
|
|
@@ -70,16 +70,17 @@ export class AuthResult extends localize(i18next)(LitElement) {
|
|
|
70
70
|
font: bold 14px var(--theme-font);
|
|
71
71
|
color: var(--md-sys-color-primary);
|
|
72
72
|
}
|
|
73
|
+
|
|
73
74
|
#button-area {
|
|
74
75
|
border-top: 1px dashed rgba(0, 0, 0, 0.1);
|
|
75
76
|
padding-top: 10px;
|
|
76
77
|
}
|
|
78
|
+
|
|
77
79
|
md-elevated-button {
|
|
78
|
-
--md-theme-primary: var(--auth-button-background-color);
|
|
79
|
-
--md-theme-on-primary: var(--md-sys-color-primary);
|
|
80
80
|
--md-button-horizontal-padding: var(--padding-default);
|
|
81
81
|
--md-button-ink-color: var(--md-sys-color-primary);
|
|
82
82
|
}
|
|
83
|
+
|
|
83
84
|
.lottie-container {
|
|
84
85
|
width: 100%;
|
|
85
86
|
height: 300px;
|
|
@@ -25,16 +25,19 @@ class AppBinding extends connect(store)(PageView) {
|
|
|
25
25
|
background-color: var(--md-sys-color-background);
|
|
26
26
|
padding: var(--padding-wide);
|
|
27
27
|
}
|
|
28
|
+
|
|
28
29
|
h2 {
|
|
29
30
|
margin: var(--title-margin);
|
|
30
31
|
font: var(--title-font);
|
|
31
32
|
color: var(--title-text-color);
|
|
32
33
|
}
|
|
34
|
+
|
|
33
35
|
[page-description] {
|
|
34
36
|
margin: var(--page-description-margin);
|
|
35
37
|
font: var(--page-description-font);
|
|
36
38
|
color: var(--page-description-color);
|
|
37
39
|
}
|
|
40
|
+
|
|
38
41
|
[icon] {
|
|
39
42
|
position: absolute;
|
|
40
43
|
top: 10px;
|
|
@@ -42,68 +45,77 @@ class AppBinding extends connect(store)(PageView) {
|
|
|
42
45
|
|
|
43
46
|
max-width: 80px;
|
|
44
47
|
}
|
|
48
|
+
|
|
45
49
|
[icon] img {
|
|
46
50
|
max-width: 100%;
|
|
47
51
|
max-height: 100%;
|
|
48
52
|
}
|
|
49
53
|
|
|
50
|
-
label {
|
|
51
|
-
font: var(--label-font);
|
|
52
|
-
color: var(--label-color, var(--md-sys-color-on-surface));
|
|
53
|
-
text-transform: var(--label-text-transform);
|
|
54
|
-
}
|
|
55
|
-
input {
|
|
56
|
-
border: var(--border-dim-color);
|
|
57
|
-
border-radius: var(--border-radius);
|
|
58
|
-
margin: var(--input-margin);
|
|
59
|
-
padding: var(--input-padding);
|
|
60
|
-
font: var(--input-font);
|
|
61
|
-
|
|
62
|
-
flex: 1;
|
|
63
|
-
}
|
|
64
|
-
select:focus,
|
|
65
|
-
input:focus,
|
|
66
|
-
button {
|
|
67
|
-
outline: none;
|
|
68
|
-
}
|
|
69
|
-
form {
|
|
70
|
-
max-width: var(--content-container-max-width);
|
|
71
|
-
}
|
|
72
54
|
[fieldset-container] {
|
|
73
55
|
background-color: var(--md-sys-color-surface);
|
|
74
56
|
margin: var(--margin-wide) 0 var(--margin-default) 0;
|
|
75
57
|
padding: var(--padding-default);
|
|
76
58
|
border-radius: var(--border-radius);
|
|
77
59
|
box-shadow: var(--box-shadow);
|
|
60
|
+
|
|
61
|
+
label {
|
|
62
|
+
font: var(--label-font);
|
|
63
|
+
color: var(--label-color, var(--md-sys-color-on-surface));
|
|
64
|
+
text-transform: var(--label-text-transform);
|
|
65
|
+
}
|
|
66
|
+
input {
|
|
67
|
+
border: var(--border-dim-color);
|
|
68
|
+
border-radius: var(--border-radius);
|
|
69
|
+
margin: var(--input-margin);
|
|
70
|
+
padding: var(--input-padding);
|
|
71
|
+
font: var(--input-font);
|
|
72
|
+
|
|
73
|
+
flex: 1;
|
|
74
|
+
}
|
|
75
|
+
select:focus,
|
|
76
|
+
input:focus,
|
|
77
|
+
button {
|
|
78
|
+
outline: none;
|
|
79
|
+
}
|
|
80
|
+
form {
|
|
81
|
+
max-width: var(--content-container-max-width);
|
|
82
|
+
}
|
|
78
83
|
}
|
|
84
|
+
|
|
79
85
|
[fieldset-container] fieldset {
|
|
80
86
|
margin: 0;
|
|
81
87
|
margin-top: -15px;
|
|
82
88
|
}
|
|
89
|
+
|
|
83
90
|
fieldset {
|
|
84
91
|
border-radius: var(--border-radius);
|
|
85
92
|
border: var(--border-dim-color);
|
|
86
93
|
margin: var(--fieldset-margin);
|
|
87
94
|
padding: var(--fieldset-padding);
|
|
88
95
|
}
|
|
96
|
+
|
|
89
97
|
legend {
|
|
90
98
|
padding: var(--legend-padding);
|
|
91
99
|
font-weight: bold;
|
|
92
100
|
color: var(--legend-color);
|
|
93
101
|
}
|
|
102
|
+
|
|
94
103
|
[field-2column] {
|
|
95
104
|
display: grid;
|
|
96
105
|
grid-template-columns: 1fr 1fr;
|
|
97
106
|
grid-gap: 15px;
|
|
98
107
|
}
|
|
108
|
+
|
|
99
109
|
[field] {
|
|
100
110
|
display: flex;
|
|
101
111
|
flex-direction: column;
|
|
102
112
|
position: relative;
|
|
103
113
|
}
|
|
114
|
+
|
|
104
115
|
[grid-span] {
|
|
105
116
|
grid-column: span 2;
|
|
106
117
|
}
|
|
118
|
+
|
|
107
119
|
button,
|
|
108
120
|
[button-in-field] {
|
|
109
121
|
background-color: var(--button-background-color);
|
|
@@ -118,10 +130,12 @@ class AppBinding extends connect(store)(PageView) {
|
|
|
118
130
|
float: right;
|
|
119
131
|
text-decoration: none;
|
|
120
132
|
}
|
|
133
|
+
|
|
121
134
|
button:hover {
|
|
122
135
|
border: var(--button-activ-border);
|
|
123
136
|
box-shadow: var(--button-active-box-shadow);
|
|
124
137
|
}
|
|
138
|
+
|
|
125
139
|
[button-in-field] {
|
|
126
140
|
border-radius: 0 var(--button-border-radius) var(--button-border-radius) 0;
|
|
127
141
|
position: absolute;
|
|
@@ -129,10 +143,12 @@ class AppBinding extends connect(store)(PageView) {
|
|
|
129
143
|
right: 0;
|
|
130
144
|
max-height: 36px;
|
|
131
145
|
}
|
|
146
|
+
|
|
132
147
|
[input-hint] {
|
|
133
148
|
font: var(--input-hint-font);
|
|
134
149
|
color: var(--input-hint-color);
|
|
135
150
|
}
|
|
151
|
+
|
|
136
152
|
@media screen and (max-width: 480px) {
|
|
137
153
|
[field] {
|
|
138
154
|
grid-column: span 2;
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import '@material/web/button/elevated-button.js'
|
|
2
|
+
import '@material/web/button/outlined-button.js'
|
|
3
|
+
|
|
1
4
|
import gql from 'graphql-tag'
|
|
2
5
|
import { css, html } from 'lit'
|
|
3
6
|
import { customElement, property } from 'lit/decorators.js'
|
|
@@ -16,15 +19,23 @@ class AppBindings extends connect(store)(PageView) {
|
|
|
16
19
|
|
|
17
20
|
overflow: auto;
|
|
18
21
|
}
|
|
22
|
+
|
|
19
23
|
md-elevated-button {
|
|
20
|
-
|
|
24
|
+
text-transform: capitalize;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
md-outlined-button {
|
|
21
28
|
float: right;
|
|
29
|
+
margin-top: var(--margin-default);
|
|
30
|
+
text-transform: capitalize;
|
|
22
31
|
}
|
|
32
|
+
|
|
23
33
|
h2 {
|
|
24
34
|
margin: var(--title-margin);
|
|
25
35
|
font: var(--title-font);
|
|
26
36
|
color: var(--title-text-color);
|
|
27
37
|
}
|
|
38
|
+
|
|
28
39
|
[page-description] {
|
|
29
40
|
margin: var(--page-description-margin);
|
|
30
41
|
font: var(--page-description-font);
|
|
@@ -36,15 +47,19 @@ class AppBindings extends connect(store)(PageView) {
|
|
|
36
47
|
margin: var(--margin-wide) 0;
|
|
37
48
|
border-collapse: collapse;
|
|
38
49
|
}
|
|
50
|
+
|
|
39
51
|
tr {
|
|
40
52
|
background-color: var(--tr-background-color);
|
|
41
53
|
}
|
|
54
|
+
|
|
42
55
|
tr:nth-child(odd) {
|
|
43
56
|
background-color: var(--tr-background-odd-color);
|
|
44
57
|
}
|
|
58
|
+
|
|
45
59
|
tr:hover {
|
|
46
60
|
background-color: var(--tr-background-hover-color);
|
|
47
61
|
}
|
|
62
|
+
|
|
48
63
|
th {
|
|
49
64
|
border-top: var(--th-border-top);
|
|
50
65
|
border-bottom: var(--td-border-bottom);
|
|
@@ -55,12 +70,14 @@ class AppBindings extends connect(store)(PageView) {
|
|
|
55
70
|
text-transform: var(--th-text-transform);
|
|
56
71
|
text-align: left;
|
|
57
72
|
}
|
|
73
|
+
|
|
58
74
|
td {
|
|
59
75
|
padding: var(--td-padding);
|
|
60
76
|
border-bottom: var(--td-border-bottom);
|
|
61
77
|
font: var(--td-font);
|
|
62
78
|
color: var(--td-color);
|
|
63
79
|
}
|
|
80
|
+
|
|
64
81
|
td a {
|
|
65
82
|
color: var(--md-sys-color-primary);
|
|
66
83
|
font: bold 16px var(--theme-font);
|
|
@@ -68,9 +85,11 @@ class AppBindings extends connect(store)(PageView) {
|
|
|
68
85
|
display: block;
|
|
69
86
|
text-decoration: none;
|
|
70
87
|
}
|
|
88
|
+
|
|
71
89
|
.text-align-center {
|
|
72
90
|
text-align: center;
|
|
73
91
|
}
|
|
92
|
+
|
|
74
93
|
.text-align-right {
|
|
75
94
|
text-align: right;
|
|
76
95
|
}
|
|
@@ -20,79 +20,131 @@ class Appliance extends connect(store)(PageView) {
|
|
|
20
20
|
display: flex;
|
|
21
21
|
flex-direction: column;
|
|
22
22
|
overflow-y: auto;
|
|
23
|
+
position: relative;
|
|
23
24
|
|
|
24
25
|
background-color: var(--md-sys-color-background);
|
|
25
26
|
padding: var(--padding-wide);
|
|
26
27
|
}
|
|
28
|
+
|
|
27
29
|
h2 {
|
|
28
30
|
margin: var(--title-margin);
|
|
29
31
|
font: var(--title-font);
|
|
30
32
|
color: var(--title-text-color);
|
|
31
33
|
}
|
|
34
|
+
|
|
32
35
|
[page-description] {
|
|
33
36
|
margin: var(--page-description-margin);
|
|
34
37
|
font: var(--page-description-font);
|
|
35
38
|
color: var(--page-description-color);
|
|
36
39
|
}
|
|
37
40
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
41
|
+
[icon] {
|
|
42
|
+
position: absolute;
|
|
43
|
+
top: 10px;
|
|
44
|
+
right: 10px;
|
|
45
|
+
max-width: 80px;
|
|
42
46
|
}
|
|
43
|
-
input {
|
|
44
|
-
border: var(--border-dim-color);
|
|
45
|
-
border-radius: var(--border-radius);
|
|
46
|
-
margin: var(--input-margin);
|
|
47
|
-
padding: var(--input-padding);
|
|
48
|
-
font: var(--input-font);
|
|
49
47
|
|
|
50
|
-
|
|
48
|
+
[icon] img {
|
|
49
|
+
max-width: 100%;
|
|
50
|
+
max-height: 100%;
|
|
51
51
|
}
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
52
|
+
|
|
53
|
+
[button-primary] {
|
|
54
|
+
background-color: var(--button-primary-background-color);
|
|
55
|
+
border: var(--button-border);
|
|
56
|
+
border-radius: var(--button-border-radius);
|
|
57
|
+
margin: var(--button-margin);
|
|
58
|
+
padding: var(--button-primary-padding);
|
|
59
|
+
color: var(--button-primary-color);
|
|
60
|
+
font: var(--button-primary-font);
|
|
61
|
+
text-transform: var(--button-text-transform);
|
|
62
|
+
|
|
63
|
+
text-decoration: none;
|
|
56
64
|
}
|
|
57
|
-
|
|
58
|
-
|
|
65
|
+
|
|
66
|
+
[button-primary]:hover {
|
|
67
|
+
background-color: var(--button-primary-active-background-color);
|
|
68
|
+
box-shadow: var(--button-active-box-shadow);
|
|
59
69
|
}
|
|
70
|
+
|
|
60
71
|
[fieldset-container] {
|
|
61
72
|
background-color: var(--md-sys-color-surface);
|
|
62
73
|
margin: var(--margin-wide) 0 var(--margin-default) 0;
|
|
63
74
|
padding: var(--padding-default);
|
|
64
75
|
border-radius: var(--border-radius);
|
|
65
76
|
box-shadow: var(--box-shadow);
|
|
77
|
+
|
|
78
|
+
label {
|
|
79
|
+
font: var(--label-font);
|
|
80
|
+
color: var(--label-color, var(--md-sys-color-on-surface));
|
|
81
|
+
text-transform: var(--label-text-transform);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
input,
|
|
85
|
+
select {
|
|
86
|
+
border: var(--border-dim-color);
|
|
87
|
+
border-radius: var(--border-radius);
|
|
88
|
+
margin: var(--input-margin);
|
|
89
|
+
padding: var(--input-padding);
|
|
90
|
+
font: var(--input-font);
|
|
91
|
+
|
|
92
|
+
flex: 1;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
select:focus,
|
|
96
|
+
input:focus,
|
|
97
|
+
button {
|
|
98
|
+
outline: none;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
form {
|
|
102
|
+
max-width: var(--content-container-max-width);
|
|
103
|
+
}
|
|
66
104
|
}
|
|
105
|
+
|
|
67
106
|
[fieldset-container] fieldset {
|
|
68
107
|
margin: 0;
|
|
69
108
|
margin-top: -15px;
|
|
70
109
|
}
|
|
110
|
+
|
|
71
111
|
fieldset {
|
|
72
112
|
border-radius: var(--border-radius);
|
|
73
113
|
border: var(--border-dim-color);
|
|
74
114
|
margin: var(--fieldset-margin);
|
|
75
115
|
padding: var(--fieldset-padding);
|
|
76
116
|
}
|
|
117
|
+
|
|
77
118
|
legend {
|
|
78
119
|
padding: var(--legend-padding);
|
|
79
120
|
font-weight: bold;
|
|
80
121
|
color: var(--legend-color);
|
|
81
122
|
}
|
|
123
|
+
|
|
82
124
|
[field-2column] {
|
|
83
125
|
display: grid;
|
|
84
126
|
grid-template-columns: 1fr 1fr;
|
|
85
127
|
grid-gap: 15px;
|
|
86
128
|
}
|
|
129
|
+
|
|
87
130
|
[field] {
|
|
88
131
|
display: flex;
|
|
89
132
|
flex-direction: column;
|
|
90
133
|
position: relative;
|
|
91
134
|
}
|
|
135
|
+
|
|
92
136
|
[grid-span] {
|
|
93
137
|
grid-column: span 2;
|
|
94
138
|
}
|
|
139
|
+
|
|
140
|
+
button {
|
|
141
|
+
display: flex;
|
|
142
|
+
align-items: center;
|
|
143
|
+
gap: var(--spacing-small);
|
|
144
|
+
}
|
|
145
|
+
|
|
95
146
|
button,
|
|
147
|
+
input[type='submit'],
|
|
96
148
|
[button-in-field] {
|
|
97
149
|
background-color: var(--button-background-color);
|
|
98
150
|
border: var(--button-border);
|
|
@@ -106,10 +158,13 @@ class Appliance extends connect(store)(PageView) {
|
|
|
106
158
|
float: right;
|
|
107
159
|
text-decoration: none;
|
|
108
160
|
}
|
|
109
|
-
|
|
161
|
+
|
|
162
|
+
button:hover,
|
|
163
|
+
input[type='submit']:hover {
|
|
110
164
|
border: var(--button-activ-border);
|
|
111
165
|
box-shadow: var(--button-active-box-shadow);
|
|
112
166
|
}
|
|
167
|
+
|
|
113
168
|
[button-in-field] {
|
|
114
169
|
border-radius: 0 var(--button-border-radius) var(--button-border-radius) 0;
|
|
115
170
|
position: absolute;
|
|
@@ -117,10 +172,12 @@ class Appliance extends connect(store)(PageView) {
|
|
|
117
172
|
right: 0;
|
|
118
173
|
max-height: 36px;
|
|
119
174
|
}
|
|
175
|
+
|
|
120
176
|
[input-hint] {
|
|
121
177
|
font: var(--input-hint-font);
|
|
122
178
|
color: var(--input-hint-color);
|
|
123
179
|
}
|
|
180
|
+
|
|
124
181
|
@media screen and (max-width: 480px) {
|
|
125
182
|
[field] {
|
|
126
183
|
grid-column: span 2;
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import '@material/web/button/elevated-button.js'
|
|
2
|
+
import '@material/web/button/outlined-button.js'
|
|
3
|
+
|
|
1
4
|
import gql from 'graphql-tag'
|
|
2
5
|
import { css, html } from 'lit'
|
|
3
6
|
import { customElement, property } from 'lit/decorators.js'
|
|
@@ -17,11 +20,22 @@ class Appliances extends connect(store)(PageView) {
|
|
|
17
20
|
overflow: auto;
|
|
18
21
|
}
|
|
19
22
|
|
|
23
|
+
md-elevated-button {
|
|
24
|
+
text-transform: capitalize;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
md-outlined-button {
|
|
28
|
+
float: right;
|
|
29
|
+
margin-top: var(--margin-default);
|
|
30
|
+
text-transform: capitalize;
|
|
31
|
+
}
|
|
32
|
+
|
|
20
33
|
h2 {
|
|
21
34
|
margin: var(--title-margin);
|
|
22
35
|
font: var(--title-font);
|
|
23
36
|
color: var(--title-text-color);
|
|
24
37
|
}
|
|
38
|
+
|
|
25
39
|
[page-description] {
|
|
26
40
|
margin: var(--page-description-margin);
|
|
27
41
|
font: var(--page-description-font);
|
|
@@ -33,15 +47,19 @@ class Appliances extends connect(store)(PageView) {
|
|
|
33
47
|
margin: var(--margin-wide) 0;
|
|
34
48
|
border-collapse: collapse;
|
|
35
49
|
}
|
|
50
|
+
|
|
36
51
|
tr {
|
|
37
52
|
background-color: var(--tr-background-color);
|
|
38
53
|
}
|
|
54
|
+
|
|
39
55
|
tr:nth-child(odd) {
|
|
40
56
|
background-color: var(--tr-background-odd-color);
|
|
41
57
|
}
|
|
58
|
+
|
|
42
59
|
tr:hover {
|
|
43
60
|
background-color: var(--tr-background-hover-color);
|
|
44
61
|
}
|
|
62
|
+
|
|
45
63
|
th {
|
|
46
64
|
border-top: var(--th-border-top);
|
|
47
65
|
border-bottom: var(--td-border-bottom);
|
|
@@ -52,22 +70,26 @@ class Appliances extends connect(store)(PageView) {
|
|
|
52
70
|
text-transform: var(--th-text-transform);
|
|
53
71
|
text-align: left;
|
|
54
72
|
}
|
|
73
|
+
|
|
55
74
|
td {
|
|
56
75
|
padding: var(--td-padding);
|
|
57
76
|
border-bottom: var(--td-border-bottom);
|
|
58
77
|
font: var(--td-font);
|
|
59
78
|
color: var(--td-color);
|
|
60
79
|
}
|
|
80
|
+
|
|
61
81
|
td a {
|
|
62
|
-
color: var(--
|
|
82
|
+
color: var(--md-sys-color-primary);
|
|
63
83
|
font: bold 16px var(--theme-font);
|
|
64
84
|
|
|
65
85
|
display: block;
|
|
66
86
|
text-decoration: none;
|
|
67
87
|
}
|
|
88
|
+
|
|
68
89
|
.text-align-center {
|
|
69
90
|
text-align: center;
|
|
70
91
|
}
|
|
92
|
+
|
|
71
93
|
.text-align-right {
|
|
72
94
|
text-align: right;
|
|
73
95
|
}
|