blob: 79003c0ba9afc834fc808c63ee3b88ff65a6c237 (
plain)
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
87
88
89
90
91
92
93
94
95
96
97
98
|
.w-ecomp-main-view-title {
//.a24r;
.blackText24m;
//margin-left: @table-margin-left;
width: @table-width;
padding-bottom: 15px;
//.content_justify;
//padding-left: 20px;
margin:auto;
}
.override_background {
.bg_portalGray; // 1610
}
input.table-search {
font-style: italic;
padding: 7px 10px;
width: 440px;
display: inline-block;
position: relative;
margin-bottom: 10px;
border-radius: 6px;
border: 1px solid @portalLGray;
height: 32px;
.form-field, .form-field-input-container {
width: 440px;
}
&:focus{
border-color: @blue-hover;
}
&:active{
border-color: @portalLGray;
}
}
.add-button {
cursor: pointer;
width: 120px;
float: right;
.btn-blue;
line-height: 32px;
height: 32px;
&::before {
.ico_add_user;
content: '';
vertical-align: middle;
display: inline-block;
margin-right: 10px;
}
}
.edit-button {
cursor: pointer;
width: 132px;
float:right;
.btn-blue;
line-height: 32px;
height: 32px;
&::before {
font-family: portalicons;
content: '\e6bc';
vertical-align: middle;
display: inline-block;
margin-right: 10px;
}
}
.errors-text {
.dGray14r;
}
.general-errors-text {
.dGray14r;
color: @err;
}
.ecomp-table-repeat{
margin-bottom:5px;
}
.table-control-fields{
display:inline-flex
}
.table-control-buttons{
float:right;
}
.table-control-fields input, .table-dropdown{
width:400px;
margin-right:10px;
}
|