blob: 6663a85cc568739f49e9921aeb073ffec4633235 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
textarea#hid-pak-text {
display: block;
resize: none;
width: 100%;
height: 40px;
color: var(--cs-window-default-fg);
background-color: var(--cs-window-default-bg);
border: none;
outline: 0 !important;
-webkit-appearance:none;
}
textarea#hid-pak-text::-moz-placeholder {
line-height: 40px;
text-align: center;
}
textarea#hid-pak-text::-webkit-input-placeholder {
line-height: 40px;
text-align: center;
}
|