-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
152 lines (125 loc) · 2.85 KB
/
style.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/* Dropdowns */
.MySelectBox {
min-width: 120px;
}
.btn:focus {
box-shadow: none !important;
}
/* DropDown Arrow Spacing*/
.dropdown-toggle::after {
margin-left: .555em;
}
/* MySelectBox Editable*/
.MySelect input:focus,
.MySelect input:hover {
color: #000 !important;
}
.MySelect input:read-only:hover,
a {
cursor: pointer !important;
background-color: darkgrey;
color: whitesmoke !important;
}
.form-control-plaintext {
outline: none;
padding: 2px 15px;
}
.add,
.del {
display: none;
}
.del {
color: red;
}
.del:hover {
color: white;
background-color: red;
}
.add:hover,
.ok:hover {
z-index: 77;
}
.MySelect {
min-width: 170px;
max-height: 220px;
overflow-y: auto;
overflow-x: hidden;
}
/*Bootstrap 4 Classes List*/
.bs4-drop.show {
min-width: 8rem;
max-width: 12rem;
padding: 0 0;
margin: 0 0 0;
}
#myInput1 {
box-sizing: border-box;
width: 90%;
background-image: url('SearchIcon3.png');
background-position: -2px 0px;
background-size: contain;
background-repeat: no-repeat;
font-size: 16px;
padding: 3px;
padding-left: 40px;
border: 1px solid grey;
background-color: #2d5c8a;
outline: none;
margin: 11px;
}
#myInput1:focus {
background-image: url('SearchIcon4.png');
border-bottom: 1px solid #ddd;
background-color: #9bb8d4;
}
/* Scrolling the Bar */
*::-webkit-scrollbar,
*::-webkit-scrollbar-thumb {
width: 5px;
scrollbar-width: 5px;
border-radius: 1.5px;
background-color: #336699;
}
.show::-webkit-scrollbar {
background-color: #2d5c8a;
}
.show::-webkit-scrollbar-thumb {
background-color: orange;
}
.bs4-list {
background-color: #336699;
max-height: 300px;
overflow: auto;
width: 224px;
}
.bs4-list ul {
text-align: center;
font-weight: bold;
margin: 0 0 0 -42px;
list-style-type: none;
}
.bs4-list ul span {
color: #ddd;
width: 90%;
/* margin: 3px auto -1px;*/
margin: 14px 0 2px 14px;
display: block;
background-color: #2d5c8a;
}
.bs4-list li {
color: darkgrey;
text-align: left;
font-weight: normal;
padding: 7px 18px;
margin: 4px 0 2px 0;
cursor: pointer;
}
.bs4-list li:hover {
color: aliceblue;
background-color: #2d5c8a;
}
.StayInPlace {
background-color: #336699;
margin-bottom: -3px;
width: 224px;
}