forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_kve.less
205 lines (190 loc) · 5.6 KB
/
_kve.less
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
// Angular Key Value Editor styles
.key-value-editor,
.environment-from-editor {
&.as-sortable-dragging {
.as-sortable-item-delete,
.input-group-addon,
input {
opacity: @as-sortable-dragging-opacity;
}
}
&.as-sortable-dragging .as-sortable-item-handle,
.as-sortable-item-delete:hover,
.as-sortable-DISABLED-item-delete:hover,
.as-sortable-item-handle:hover {
opacity: @as-sortable-item-icon-hover-opacity;
}
.as-sortable-item-delete,
.as-sortable-DISABLED-item-delete,
.as-sortable-item-handle {
display: inline-block;
font-size: @as-sortable-item-icon-font-size;
opacity: @as-sortable-item-icon-opacity;
padding: @as-sortable-item-icon-padding;
vertical-align: middle;
}
.as-sortable-item-delete,
.as-sortable-DISABLED-item-delete {
color: #333; // boostrap's @text-color
&:hover,
&:focus,
&:active {
text-decoration: none;
}
}
.as-sortable-item-handle {
cursor: move;
}
.as-sortable-placeholder {
border-top: @as-sortable-placeholder-border-top-width @as-sortable-placeholder-border-top-style @as-sortable-placeholder-border-top-color;
clear: left;
width: @as-sortable-placeholder-width;
}
// .form-control styles duplicated from bower_components/patternfly/less/lib/boostrap/forms.less and bower_components/patternfly/less/forms.less
.faux-form-control {
background-color: @input-bg;
background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
border: 1px solid @input-border;
border-radius: @input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.
.box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
color: @input-color;
display: table-cell;
font-size: @font-size-base;
height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)
line-height: @line-height-base;
padding: @padding-base-vertical @padding-base-horizontal;
.transition(~"border-color ease-in-out .15s, box-shadow ease-in-out .15s");
width: 100%;
.word-break-all(); // required for Firefox
&.readonly {
background-color: @input-bg-disabled;
.box-shadow(none);
color: @color-pf-black-500;
opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655
&:hover {
border-color: @input-border;
}
}
}
// .form-control-addon styles duplicated from bower_components/patternfly/less/lib/boostrap/forms.less
.faux-form-control-addon {
background-color: @input-group-addon-bg;
border: 1px solid @input-group-addon-border-color;
border-radius: @input-border-radius;
color: @input-color;
display: table-cell;
font-size: @font-size-base;
font-weight: normal;
line-height: 1;
margin-right: 2px;
padding: @padding-base-vertical @padding-base-horizontal;
text-align: center;
vertical-align: middle; // Match the inputs
white-space: nowrap;
width: 1%;
&:first-child {
border-right: 0;
}
span[title]:not([data-original-title=""]) {
cursor: help;
}
}
.faux-input-group {
border-collapse: separate;
display: table;
position: relative;
&.faux-input-single-input {
width: 100%;
}
}
.key-value-editor-buttons,
.environment-from-editor-button {
position: absolute;
right: 0;
top: 0;
width: (@as-sortable-item-button-width * 2);
}
.environment-from-entry {
display: table;
margin-bottom: 15px;
padding-right: 0;
@media(max-width: @screen-xxs-max) {
padding-right: (@as-sortable-item-button-width * 2);
}
position: relative;
table-layout: fixed;
width: 100%;
@media(min-width: @screen-xs-min) {
.environment-from-editor-button {
float: left;
padding: 0 5px;
position: relative;
width: auto;
}
}
.environment-from-input {
float: left;
margin-bottom: 0;
padding-right: 5px;
width: 100%;
@media(min-width: @screen-xs-min) {
width: calc(~"50% - 26px"); // Adjust env-from width to match kve input, when env-from row doesn't have padding-right;
}
&.prefix {
padding-right: 0;
width: calc(~"50% + 26px"); // Adjust prefix width to match kve input, when env-from row doesn't have padding-right;
@media(max-width: @screen-xxs-max) {
margin-top: 5px;
width: 100%;
}
}
.faux-input-group,
.ui-select {
float: left;
width: 100%;
}
}
.environment-from-view-details {
float: left;
line-height: 1;
padding: 6px 0 0;
}
}
.key-value-editor-entry {
display: table;
margin-bottom: 15px;
padding-right: (@as-sortable-item-button-width * 2);
position: relative;
table-layout: fixed;
width: 100%;
}
.key-value-editor-input .ui-select {
@media(min-width: @screen-md-min) {
float: left;
width: 50%;
}
+ .ui-select {
padding-top: 5px;
@media(min-width: @screen-md-min) {
padding-top: 0;
padding-left: 5px;
}
}
}
}
.key-value-editor .key-value-editor-input,
.key-value-editor-header,
.environment-from-editor-header {
float: left;
margin-bottom: 0;
padding-right: 5px;
width: 50%;
}
.key-value-editor-entry-header,
.environment-from-editor-entry-header {
padding-right: (@as-sortable-item-button-width * 2);
}
.key-value-editor-header,
.environment-from-editor-header {
margin-bottom: 5px;
}