forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_secrets.less
99 lines (94 loc) · 1.61 KB
/
_secrets.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
.osc-secrets-form {
.advanced-secrets,
.basic-secrets {
.input-labels,
.help-blocks {
display: table;
padding-right: 30px;
position: relative;
width: 100%;
.input-label,
.help-block {
width: 100%;
float: left;
padding-right: 5px;
}
}
.secret-row {
display: table;
padding-right: 30px;
position: relative;
width: 100%;
padding-bottom: 5px;
.secret-name {
float: left;
padding-right: 5px;
width: 100%;
}
.remove-secret {
position: absolute;
right: 0;
top: 0;
width: 30px;
}
}
}
.advanced-secrets {
.input-labels,
.help-blocks {
.input-label,
.help-block {
width: 50%;
}
}
.secret-row {
.secret-name,
.destination-dir {
width: 50%;
display: inline-block;
}
}
}
.remove-btn {
color: #333;
margin-left: 5px;
opacity: 0.65;
font-size: 15px;
vertical-align: middle;
&:hover {
opacity: 1;
text-decoration: none;
}
&:focus {
text-decoration: none;
}
}
}
dl.secret-data {
overflow: hidden;
pre {
margin-bottom: 0;
}
dd {
margin-bottom: 10px;
overflow-x: auto;
.copy-to-clipboard {
font-family: @font-family-monospace;
}
}
@media (min-width: @screen-md-min) {
.dl-horizontal();
}
}
.create-secret-modal {
background-color: #F5F5F5;
.modal-footer{
margin-top: 0px
}
.modal-body {
padding: 0px 18px;
}
}
.create-secret-editor {
height: 150px;
}