PluginProbe
WP Directory Kit / 1.3.6
WP Directory Kit v1.3.6
1.5.7 1.5.6 1.5.5 1.5.4 1.5.3 trunk 1.1.0 1.1.6 1.1.8 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.8 1.4.0 All 36 releases
wpdirectorykit / public / js / wdk_treefield_checkboxes / wdk_treefield_checkboxes.css

wdk_treefield_checkboxes.css in WP Directory Kit 1.3.6, at public/js/wdk_treefield_checkboxes/wdk_treefield_checkboxes.css

173 lines 3.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 .wdk_dropdown_tree
3 {
4 min-width:100%;
5 }
6
7 .wdk_dropdown_tree > .btn-group {
8 width: 100%;
9 display: flex;
10 height: 46px;
11 overflow: hidden;
12 border-color: #eaeaea;
13 background: white;
14 }
15
16 .wdk_dropdown_tree button:first-child
17 {
18 min-width:initial;
19 overflow: hidden;
20 text-overflow: ellipsis;
21 text-align: left;
22 flex: 1 2 auto;
23 border-radius: 0;
24 font-size: 15px;
25 background-color: transparent;
26 }
27
28 .wdk_dropdown_tree .list_container
29 {
30 display:none;
31 position:absolute;
32 z-index: 9999;
33 background: white;
34 }
35
36 .wdk_dropdown_tree .list_scroll
37 {
38 height:200px;
39 overflow-y: scroll;
40 overflow-x: hidden;
41 border-left: 0;
42 border-color: inherit;
43 border-bottom: 1px solid #eaeaea;
44 }
45
46 .wdk_dropdown_tree .list_scroll ul
47 {
48 margin:0px;
49 padding:0px;
50 }
51
52 .wdk_dropdown_tree .list_scroll ul li
53 {
54 list-style: none;
55 margin:0px;
56 padding:5px;
57 cursor: pointer;
58 border:0px;
59 }
60
61 .wdk_dropdown_tree .list_scroll ul li:hover,
62 .wdk_dropdown_tree .list_scroll ul li.selected
63 {
64 background: #F0F0F0;
65 }
66
67
68 .wdk_dropdown_tree span.no_results
69 {
70 margin:0px;
71 padding:5px;
72 }
73
74 .wdk_dropdown_tree .list_container .input-group
75 {
76 width:100%;
77 }
78
79 .wdk_dropdown_tree button
80 {
81 margin:0px;
82 padding: 6px 12px 6px 12px;
83 border: 1px solid #eaeaea;
84 line-height: 20px;
85 height:auto;
86 color:black;
87 background-color: transparent;
88 border-color: inherit;
89 }
90
91 .wdk_dropdown_tree button.btn.btn-default.dropdown-toggle
92 {
93 margin-left: -1px;
94 padding: 6px 13px 6px 13px;
95 display: inline-block;
96 width: auto;
97 border-radius: 0;
98 flex: 0 0 auto;
99 box-shadow: none;
100 }
101
102 .wdk_dropdown_tree button.btn.btn-default.dropdown-toggle::after
103 {
104 display:none;
105 }
106
107 .wdk_dropdown_tree .list_container input.form-control.search_term {
108 position: relative;
109 z-index: 2;
110 float: left;
111 width: 100%;
112 margin-bottom: 0;
113 display: table-cell;
114 padding: 6px;
115 background-color: #eee;
116 border: 0;
117 border-radius: 0;
118 max-width: initial !important;
119 }
120
121 .wdk_dropdown_tree .input-group-addon {
122 padding: 6px 12px;
123 font-size: 14px;
124 font-weight: normal;
125 line-height: 1;
126 color: #555;
127 text-align: center;
128 background-color: #eee;
129 border: 0;
130 border-left:0px;
131 display:table-cell;
132 top:0px;
133 vertical-align: middle;
134 cursor: pointer;
135 }
136
137 .wdk_dropdown_tree .input-group-addon i
138 {
139 margin:0px;
140 padding:0px;
141 }
142
143 .wdk_dropdown_tree .input-group
144 {
145 display:table;
146 }
147
148 .wdk_dropdown_tree button:focus,
149 .wdk_dropdown_tree button:hover {
150 color: black;
151 background-color: #EEE;
152 }
153
154 .wdk_dropdown_tree .btn-group:focus button,
155 .wdk_dropdown_tree .btn-group:hover button {
156 color: black;
157 background-color: #EEE;
158 }
159
160 .wdk_dropdown_tree .list_container .list_items li input {
161 margin-right: 5px;
162 }
163
164
165 @media (max-width:767px) {
166 .wdk_dropdown_tree {
167 position: relative;
168 }
169
170 .wdk_dropdown_tree .list_container {
171 width: 100%;
172 }
173 }