PluginProbe
Polylang / 2.8
Polylang v2.8
3.8.9 3.8.8 3.8.7 3.8.6 3.8.5 3.8.4 3.8.3 2.7 2.7.0.1 2.7.1 2.7.2 2.7.3 2.7.4 2.8 2.8.1 2.8.2 2.8.3 2.8.4 2.9 2.9.1 2.9.2 3.0 3.0.1 3.0.2 3.0.3 All 233 releases
polylang / css / selectmenu.css

selectmenu.css in Polylang 2.8, at css/selectmenu.css

169 lines 2.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Greatly modified version of the jquery-ui.css */
2
3 .ui-widget-overlay {
4 position: fixed;
5 top: 0;
6 left: 0;
7 width: 100%;
8 height: 100%;
9 }
10
11 .ui-menu {
12 list-style: none;
13 padding: 0;
14 margin: 0;
15 display: block;
16 outline: none;
17 }
18
19 .ui-menu .ui-menu {
20 position: absolute;
21 }
22
23 .ui-menu .ui-menu-item {
24 position: relative;
25 margin: 0;
26 padding: 3px 1em 3px .4em;
27 cursor: pointer;
28 min-height: 0; /* support: IE7 */
29 /* support: IE10, see #8844 */
30 list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
31 }
32
33 .rtl .ui-menu .ui-menu-item {
34 text-align: right;
35 }
36
37
38 /* icon support */
39 .ui-menu-icons {
40 position: relative;
41 }
42
43 .ui-menu-icons .ui-menu-item {
44 padding-left: 2em;
45 }
46 .rtl .ui-menu-icons .ui-menu-item {
47 padding-left: 1em;
48 padding-right: 2em;
49 }
50
51 /* left-aligned */
52 .ui-selectmenu-text .ui-icon,
53 .ui-menu .ui-icon {
54 position: absolute;
55 top: 0;
56 bottom: 0;
57 left: .3em;
58 margin: auto 0;
59 }
60
61 .rtl .ui-selectmenu-text .ui-icon,
62 .rtl .ui-menu .ui-icon {
63 right: .3em;
64 left: auto;
65 }
66
67 /* right-aligned */
68 .ui-menu .ui-menu-icon {
69 left: auto;
70 right: 0;
71 }
72
73 .ui-selectmenu-menu {
74 padding: 0;
75 margin: 0;
76 position: absolute;
77 top: 0;
78 left: 0;
79 display: none;
80 }
81
82 .ui-selectmenu-menu .ui-menu {
83 overflow: auto;
84 /* Support: IE7 */
85 overflow-x: hidden;
86 padding-bottom: 1px;
87 }
88
89 .ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
90 font-size: 1em;
91 font-weight: bold;
92 line-height: 23px;
93 padding: 2px 0.4em;
94 margin: 0.5em 0 0 0;
95 height: auto;
96 border: 0;
97 }
98
99 .ui-selectmenu-open {
100 display: block;
101 }
102
103 .ui-selectmenu-button {
104 display: inline-block;
105 overflow: hidden;
106 position: relative;
107 text-decoration: none;
108 }
109
110 .ui-selectmenu-button span.ui-icon {
111 right: 0.5em;
112 left: auto;
113 margin-top: -10px;
114 position: absolute;
115 top: 50%;
116 text-indent: 0; /* due to text-indent for jquery ui-dialog in wizard */
117 }
118
119 .rtl .ui-selectmenu-button span.ui-icon {
120 left: 0.5em;
121 right: auto;
122 }
123
124
125 .ui-selectmenu-button span.ui-selectmenu-text {
126 text-align: left;
127 padding: 0.2em 2.1em 0.2em 2em;
128 display: block;
129 line-height: 23px;
130 overflow: hidden;
131 text-overflow: ellipsis;
132 white-space: nowrap;
133 }
134
135 .rtl .ui-selectmenu-button span.ui-selectmenu-text {
136 text-align: right;
137 padding: 0.2em 2em 0.2em 2.1em;
138 }
139
140 .ui-widget-content,
141 .ui-state-default,
142 .ui-widget-content .ui-state-default,
143 .ui-widget-header .ui-state-default {
144 background: #fff;
145 border: 1px solid #ddd;
146 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07) inset;
147 color: #32373c;
148 }
149
150 .ui-widget-content .ui-state-hover,
151 .ui-widget-content .ui-state-focus {
152 background: #f5f5f5;
153 }
154
155 .ui-selectmenu-button.ui-state-focus {
156 border: 1px solid #5b9dd9;
157 box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
158 }
159
160 .ui-icon-triangle-1-s:before {
161 content: "\f140";
162 font: 20px/1 'dashicons';
163 }
164
165 .ui-widget-content {
166 max-height: 231px;
167 box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
168 }
169