forked from jumpserver/luna
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
140 lines (118 loc) · 2.82 KB
/
styles.css
File metadata and controls
140 lines (118 loc) · 2.82 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
/* You can add global styles to this file, and also import other style files */
/*
* Style tweaks
* --------------------------------------------------
*/
html,
body {
overflow-x: hidden; /* Prevent scroll on narrow devices */
height: 100%;
width: 100%;
background-color: rgb(243, 243, 244);
overflow-y: hidden;
margin: 0;
}
app-root {
height: 100%;
}
#marker {
position: fixed;
top: 0;
left: 0;
z-index: -1;
font-size: 14px !important;
font-family: 'Monaco', 'Consolas', 'monospace' !important;
color: white;
}
/*.terminal {*/
/*font-family: 'Monaco', 'Consolas', 'monospace' !important;*/
/*font-size: 13px;*/
/*white-space: nowrap;*/
/*!*display: inline-block;*!*/
/*!*background-color: #1f1b1b;*!*/
/*}*/
/*.terminal div {*/
/*user-select: text;*/
/*}*/
/*.terminal .xterm-rows {*/
/*background-color: #1f1b1b;*/
/*!*margin: 15px;*!*/
/*}*/
/*.xterm-rows {*/
/*padding: 15px;*/
/*}*/
/*.xterm .composition-view {*/
/*!* TODO: Composition position got messed up somewhere *!*/
/*background: #1f1b1b !important;*/
/*color: #FFF;*/
/*display: none;*/
/*position: absolute;*/
/*white-space: nowrap;*/
/*z-index: 1;*/
/*}*/
/*.xterm .xterm-viewport {*/
/*!* On OS X this is required in order for the scroll bar to appear fully opaque *!*/
/*background: #1f1b1b !important;*/
/*overflow-y: scroll;*/
/*cursor: default;*/
/*position: absolute;*/
/*right: 0;*/
/*left: 0;*/
/*top: 0;*/
/*bottom: 0;*/
/*}*/
.terminal .xterm-viewport {
background-color: #1f1b1b;
overflow: auto;
}
body ::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
background-color: #272323;
border-radius: 6px;
}
body ::-webkit-scrollbar {
width: 8px;
height:8px;
}
body ::-webkit-scrollbar-thumb {
background-color: #494141;
border-radius: 6px;
}
.ztree *:not(.fa) {
font-family: 'Monaco', 'Consolas', 'monospace' !important;
font-size: 13px !important;
}
/*.scroll-botton {*/
/*font-size: 20px;*/
/*float: left;*/
/*height: 30px;*/
/*overflow: hidden;*/
/*background-color: #3a3333;*/
/*color: white*/
/*}*/
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
background: #F9F9F9;
border: none !important;
line-height: 15px;
font-weight: bold;
color: #676a6c;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
color: white;
font-weight: bolder;
}
#ztree .fa {
text-align: center;
display: inline-block;
font: normal normal normal 14px/1 FontAwesome !important;
}
#toast-container > .toast-warning:before {
}
#toast-container > .toast-error:before {
}
#toast-container > .toast-info:before {
}
#toast-container > .toast-success:before {
content: "";
}