Skip to content

Commit f58c9be

Browse files
committed
Merge pull request #13 from sakshityagi/master
Fixed IOS text box focus issue, could not type anything. #114649995
2 parents 4b72da8 + 5da712d commit f58c9be

1 file changed

Lines changed: 52 additions & 24 deletions

File tree

widget/assets/css/style.css

Lines changed: 52 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
top: 0 !important;
55
}
66

7-
87
#sk-holder #sk-container #sk-header .fa {
98
display: none;
109
}
@@ -13,8 +12,13 @@
1312
cursor: auto !important;
1413
}
1514

16-
#sk-footer form { -webkit-touch-callout: none !important; }
17-
#sk-footer form a { -webkit-user-select: none !important; }
15+
#sk-footer form {
16+
-webkit-touch-callout: none !important;
17+
}
18+
19+
#sk-footer form a {
20+
-webkit-user-select: initial !important;
21+
}
1822

1923
.screens .screen.layouticon a, .screens .layoutgrid .layouticon {
2024
height: 59px !important;
@@ -24,59 +28,83 @@
2428
/*// To recolor bubbles to orange*/
2529

2630
/*#sk-holder #sk-container #sk-conversation .sk-row.sk-right-row .sk-msg{*/
27-
/*background-color: #ff3333 !important;*/
31+
/*background-color: #ff3333 !important;*/
32+
/*}*/
33+
/*#sk-container #sk-wrapper .sk-row .sk-left-row .sk-msg {*/
34+
/*background-color: #ff3333 !important;*/
2835
/*}*/
29-
/*#sk-container #sk-wrapper .sk-row .sk-left-row .sk-msg {*/
30-
/*background-color: #ff3333 !important;*/
31-
/*}*/
3236
/*#sk-holder #sk-container #sk-conversation .sk-row.sk-right-row .sk-msg::after {*/
33-
/*border-left-color: #ff3333 !important;*/
37+
/*border-left-color: #ff3333 !important;*/
3438
/*}*/
3539
/*#sk-container #sk-wrapper .sk-msg {*/
36-
/*background-color: #ff3333 !important;*/
40+
/*background-color: #ff3333 !important;*/
3741
/*}*/
3842
/*#sk-container #sk-wrapper .sk-msg::after {*/
39-
/*border-left-color: #ff3333 !important;*/
43+
/*border-left-color: #ff3333 !important;*/
4044
/*}*/
41-
.color-5d8aa8{
45+
.color-5d8aa8 {
4246
background-color: #5d8aa8 !important;
4347
}
44-
.color-007fff{
48+
49+
.color-007fff {
4550
background-color: #007fff !important;
4651
}
47-
.color-5d8aa8::after{
52+
53+
.color-5d8aa8::after {
4854
border-left-color: #5d8aa8 !important;
4955
}
50-
.color-007fff::after{
56+
57+
.color-007fff::after {
5158
border-left-color: #007fff !important;
5259
}
53-
.color-9966cc{
60+
61+
.color-9966cc {
5462
background-color: #9966cc !important;
5563
}
56-
.color-9966cc::after{
64+
65+
.color-9966cc::after {
5766
border-left-color: #9966cc !important;
5867
}
59-
.color-98777b{
68+
69+
.color-98777b {
6070
background-color: #98777b !important;
6171
}
62-
.color-98777b::after{
72+
73+
.color-98777b::after {
6374
border-left-color: #98777b !important;
6475
}
65-
.color-a4c639{
76+
77+
.color-a4c639 {
6678
background-color: #a4c639 !important;
6779
}
68-
.color-a4c639::after{
80+
81+
.color-a4c639::after {
6982
border-left-color: #a4c639 !important;
7083
}
71-
.color-e52b50{
84+
85+
.color-e52b50 {
7286
background-color: #e52b50 !important;
7387
}
74-
.color-e52b50::after{
88+
89+
.color-e52b50::after {
7590
border-left-color: #e52b50 !important;
7691
}
77-
.color-e32636{
92+
93+
.color-e32636 {
7894
background-color: #e32636 !important;
7995
}
80-
.color-e32636::after{
96+
97+
.color-e32636::after {
8198
border-left-color: #e32636 !important;
99+
}
100+
101+
/* For IOS input focus issue
102+
*/
103+
104+
input[type=text], input[type=password], input[type=email], #sk-holder #sk-container .input {
105+
-webkit-user-select: auto !important;
106+
-khtml-user-select: auto !important;
107+
-moz-user-select: auto !important;
108+
-ms-user-select: auto !important;
109+
user-select: auto !important;
82110
}

0 commit comments

Comments
 (0)