-
Notifications
You must be signed in to change notification settings - Fork 0
/
wmshellui.css
137 lines (121 loc) · 3.07 KB
/
wmshellui.css
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
/*
* Copyright(c) A.K.A wmcomlib.js Universal JavaScript Standard Function Library
* WMProject1217 Studios 2024
* FileName: wmshellui.css
* FileVersion: 0.1.3
* Author: WMProject1217
* LatestCommit: 2024-8-22
*/
.WMShellUI_Container_MessageBox {
border: none;
border-radius: none;
margin: 0;
padding: 0;
z-index: 9400;
user-select: none;
}
.WMShellUI_Container_MessageBox.status0 {
opacity: 0;
}
.WMShellUI_Container_MessageBox.status1 {
opacity: 1;
transition-property: opacity;
transition-duration: .3s;
}
.WMShellUI_Container_MessageBox.status2 {
opacity: 0;
transition-property: opacity;
transition-duration: .3s;
}
.WMShellUI_Container_MessageBox .background {
position: fixed;
top: 0px;
left: 0px;
height: 100vh;
width: 100vw;
background-color: rgba(0, 0, 0, .35);
z-index: 9400;
}
.WMShellUI_Container_MessageBox .workshield {
position: fixed;
top: 0px;
left: 0px;
height: 100vh;
width: 100vw;
z-index: 9490;
}
.WMShellUI_Container_MessageBox .box {
position: fixed;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto;
width: max-content;
height: max-content;
min-width: 320px;
min-height: 120px;
max-width: 56vw;
max-height: 67vh;
padding: 8px;
background-color: rgb(61, 67, 88);
z-index: 9404;
}
.WMShellUI_Container_MessageBox .box .borderbox {
border: solid 2px rgb(72, 78, 94);
}
.WMShellUI_Container_MessageBox .box .title {
padding-top: 6px;
padding-bottom: 8px;
color: rgb(205, 196, 169);
font-size: 24px;
text-shadow: 1px 1px 1px rgb(80, 78, 65);
text-align: center;
z-index: 9411;
}
.WMShellUI_Container_MessageBox .box .splitline {
width: 100%;
height: 2px;
background-color: rgb(72, 78, 94);
}
.WMShellUI_Container_MessageBox .box .data {
padding-top: 6px;
padding-left: 16px;
padding-right: 16px;
padding-bottom: 6px;
font-size: 20px;
max-height: 45vh;
overflow-x: hidden;
overflow-y: auto;
color: rgb(240, 227, 224);
text-shadow: 1px 1px 1px rgb(156, 157, 166);
word-break: break-all;
}
.WMShellUI_Container_MessageBox .box input {
font-size: 20px;
width: 100%;
}
.WMShellUI_Container_MessageBox .box .action {
text-align: center;
}
.WMShellUI_Container_MessageBox .box .action button {
cursor: pointer;
border: 2px solid #FFFFFF;
background-color: transparent;
color: #FFFFFF;
font-size: 15px;
outline: 0;
transition: all .3s;
text-shadow: 1px 1px 8px rgba(0,0,0,.15);
padding: 10px 20px;
width: 170px;
}
.WMShellUI_Container_MessageBox .box .action button:hover:enabled {
background-color: #FFFFFF;
border-color: transparent;
color: #000000;
box-shadow: 1px 1px 30px rgba(0,0,0,.15),0 6px 15px rgba(36,37,38,.15),inset 5px 5px 15px transparent;
}
.WMShellUI_Container_MessageBox .box .action button:active:enabled {
background-color: #D9D9D9;
}