PluginProbe
WP Directory Kit / 1.3.3
WP Directory Kit v1.3.3
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 1.4.1 All 35 releases
wpdirectorykit / public / js / wdk_treefield / treefield.css

treefield.css in WP Directory Kit 1.3.3, at public/js/wdk_treefield/treefield.css

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