forked from libapps/libapps-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnassh_preferences_editor.css
More file actions
204 lines (176 loc) · 3.25 KB
/
nassh_preferences_editor.css
File metadata and controls
204 lines (176 loc) · 3.25 KB
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
/*
* Copyright 2015 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/**
* Styles used by the preferences editor.
*/
/* Make body 100% height of page
* See https://stackoverflow.com/questions/6654958
*/
html {
height: 100%;
}
body {
height: 100%;
min-height: 100%;
overflow: auto;
}
/*
* Flexbox helper classes.
*/
.hflex {
display: flex;
flex-direction: row;
}
.vflex {
display: flex;
flex-direction: column;
}
.fixed-size-flex {
flex-shrink: 0;
flex-grow: 0;
}
/*
* The left navigation pane.
*/
.navigation {
height: 100%;
width: 155px;
min-width: 155px;
position: fixed;
z-index: 3;
-webkit-margin-start: 0;
-webkit-margin-end: 15px;
overflow: auto;
}
/*
* Hidden restore input inside navigation bar.
*/
.restore {
visibility: hidden;
width: 1px;
}
/*
* The pane to the right of the navigation pane.
*/
#options {
width: 100%;
position: relative;
}
/*
* Make sure the right pane takes up the whole page when selected.
* Otherwise, unselected panes underneath will bleed through.
*/
.chrome-bootstrap .frame .mainview > .selected {
height: 100%;
}
/*
* The container of the terminal preview iframe.
*/
#terminal {
height: 70px;
min-height: 70px;
position: relative;
width: 100%;
max-width: 650px;
margin: 0px;
padding: 0px;
margin-left: 18px;
}
/*
* The terminal container container. Make sure extreme terminal settings (e.g.
* height) don't make the rest of the settings inaccessible.
*/
#terminal-container {
max-height: 140px;
overflow: hidden;
}
#current-profile {
margin-left: 18px;
}
/*
* The area of the options pane containing settings.
*/
#options-settings-section {
padding-top: 180px;
}
/*
* Rules for elements inside #options container.
*/
#options section {
max-width: inherit;
margin-bottom: 0;
}
#options h1 {
-webkit-margin-start: 0;
-webkit-margin-after: 0;
padding-bottom: 20px;
}
#options header::after {
-webkit-margin-end: 20px;
background-color: #eee;
content: ' ';
display: block;
height: 1px;
position: relative;
top: 13px;
}
#options header {
-webkit-margin-start: 0;
-webkit-margin-after: 0;
position: fixed;
padding-bottom: 20px;
}
/*
* Rules for elements inside #settings container.
*/
#settings .setting-container {
margin-bottom: 4px;
}
#settings .category-details {
margin-bottom: 8px;
}
#settings .alpha-text {
padding-left: 10px;
padding-right: 2px;
}
#settings span.setting-label {
width: 20%;
min-width: 150px;
padding-top: 4px;
padding-bottom: 5px;
padding-right: 8px;
text-align: left;
vertical-align: middle;
}
#settings span.setting-ui {
vertical-align: middle;
}
#settings span.setting-ui input[type='checkbox'] {
top: 3px;
}
#settings span.setting-ui input[type='text'],
#settings span.setting-ui input[type='url'],
#settings span.setting-ui input[type='number'] {
width: 100%;
}
#settings span.setting-ui textarea {
width: 30em;
height: 8em;
}
#settings span.setting-ui input {
vertical-align: middle;
}
#ssh-files-etc-ssh-known-hosts,
#ssh-files-known-hosts,
#ssh-files-etc-ssh-config,
#ssh-files-config {
font-family: monospace;
white-space: nowrap;
width: 100%;
}
.float-right {
float: right;
}