_test-access-screen.scss
1.92 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
/*********************************************
"Test access" dialog
**********************************************/
#ws_ame_test_access_screen {
display: none;
background: #fcfcfc;
}
#ws_ame_test_inputs {
//border-bottom: 1px solid #ddd;
padding-bottom: 16px;
}
.ws_ame_test_input {
display: block;
float: left;
width: 100%;
margin: 2px 0;
box-sizing: content-box;
}
.ws_ame_test_input_name {
display: block;
float: left;
width: 35%;
margin-right: 4%;
text-align: right;
padding-top: 6px;
line-height: 16px;
}
.ws_ame_test_input_value {
display: block;
float: right;
width: 60%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#ws_ame_test_actions {
float: left;
width: 100%;
margin-top: 1em;
}
#ws_ame_test_button_container {
width: 35%;
margin-right: 4%;
float: left;
text-align: right;
}
#ws_ame_test_progress {
display: none;
width: 60%;
float: right;
.spinner {
float: none;
vertical-align: bottom;
margin-left: 0;
margin-right: 4px;
}
}
#ws_ame_test_access_body {
width: 100%;
position: relative;
border: 1px solid #ddd;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
#ws_ame_test_frame_container {
margin-right: 250px;
background: white;
min-height: 500px;
position: relative;
}
#ws_ame_test_access_frame {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
height: 100%;
min-height: 500px;
border: none;
margin: 0;
padding: 0;
}
#ws_ame_test_access_sidebar {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 250px;
padding: 16px 24px;
background-color: #f3f3f3;
border-left: 1px solid #ddd;
h4:first-of-type {
margin-top: 0;
}
}
#ws_ame_test_frame_placeholder {
display: block;
padding: 16px 24px;
}
#ws_ame_test_output {
display: none;
}