1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
#integration-popup-container #resource-tree {
max-height: 170px;
overflow: auto;
}
#integrationGrid_table .action {
border: none;
border-radius: 0;
background: none;
margin: 0;
padding: 0;
box-shadow: none;
text-shadow: none;
filter: none;
}
#integrationGrid_table .action:before {
font-family: 'MUI-Icons';
font-style: normal;
speak: none;
font-weight: normal;
font-size: 18px;
-webkit-font-smoothing: antialiased;
color: #b7b3ad;
}
#integrationGrid_table .action:hover:before {
color: #7e7e7e;
}
#integrationGrid_table .action.edit:before {
content: '\e05b';
}
#integrationGrid_table .action.info:before {
content: '\e07e'; /* TOFIX: Need to get the proper character code */
}
#integrationGrid_table .action.delete:before {
content: '\e07f';
}
#integrationGrid_table .action[disabled] {
color: #bbb3b4;
cursor: not-allowed;
opacity: 0.6;
}
#integrationGrid_table .icon-error {
margin-left: 15px;
color: #c00815;
font-size: 11px;
}
#integrationGrid_table .icon-error:before {
font-family: 'MUI-Icons';
content: "\e086";
font-size: 13px;
line-height: 13px;
overflow: hidden;
speak: none;
font-weight: normal;
-webkit-font-smoothing: antialiased;
display: inline-block;
vertical-align: middle;
text-align: center;
margin: -1px 5px 0 0;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
float: none;
}
.ui-dialog .ui-dialog-buttonpane {
text-align: right;
}
.no-close .ui-dialog-titlebar-close {
display: none;
}
#integration_token_base_fieldset input[readonly] {
cursor: copy;
}