PluginProbe
Polylang / 3.8.6
Polylang v3.8.6
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 / build / dialog.css

dialog.css in Polylang 3.8.6, at css/build/dialog.css

86 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* By default Polylang dialog box use WordPress jQuery UI dialog styles.
2 However WooCommerce loads its own jQuery UI dialog styles and we need to override them by ours
3 to revert to the default WordPress ones.
4 */
5 .pll-confirmation-modal.ui-widget,
6 .pll-confirmation-modal.ui-widget .ui-widget,
7 .pll-confirmation-modal .ui-widget {
8 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
9 font-size: 13px;
10 }
11 .pll-confirmation-modal.ui-dialog {
12 padding: 0;
13 z-index: 100102;
14 background: #fff;
15 border: 0;
16 color: #444;
17 border-radius: 0; /* Override WooCommerce dialog styles - jQuery UI 1.11.4 - WP < 5.6 */
18 }
19 .ui-dialog.pll-confirmation-modal .ui-dialog-titlebar {
20 background: #fcfcfc;
21 border-radius: 0;
22 border: 0;
23 border-bottom: 1px solid #dfdfdf;
24 height: 36px;
25 font-size: 18px;
26 font-weight: 600;
27 line-height: 2;
28 padding: 0 36px 0 16px;
29 color: #444;
30 position: static;
31 }
32 .ui-dialog.pll-confirmation-modal .ui-dialog-title {
33 float: none;
34 width: auto;
35 margin: 0;
36 }
37 .pll-confirmation-modal .ui-widget-header .ui-icon {
38 background: none;
39 position: static;
40 }
41 .pll-confirmation-modal .ui-button.ui-dialog-titlebar-close {
42 padding: 0;
43 margin: 0;
44 top: 0;
45 right: 0;
46 width: 36px;
47 height: 36px;
48 border: 0; /* Override WooCommerce dialog styles - jQuery UI 1.11.4 - WP < 5.6 */
49 background: none; /* Override WooCommerce dialog styles - jQuery UI 1.11.4 - WP < 5.6 */
50 }
51 .ui-dialog.pll-confirmation-modal .ui-dialog-content {
52 border: 0;
53 padding: 16px;
54 color: #444;
55 position: static;
56 box-sizing: border-box;
57 }
58 .ui-dialog.pll-confirmation-modal .ui-dialog-buttonpane{
59 margin: 0;
60 padding: 16px;
61 border: 0;
62 background: #fcfcfc;
63 border-top: 1px solid #dfdfdf;
64 }
65 .ui-dialog.pll-confirmation-modal .ui-dialog-buttonpane .ui-button{
66 margin: 0 0 0 16px;
67 padding: 0 10px 1px;
68 background: #f7f7f7;
69 border: 1px solid #cccccc;
70 border-radius: 3px;
71 position: static;
72 line-height: 2;
73 vertical-align: top;
74 }
75 .ui-dialog.pll-confirmation-modal .ui-button:hover,
76 .ui-dialog.pll-confirmation-modal .ui-button:focus {
77 background: #fafafa;
78 border-color: #999;
79 color: #23282d;
80 }
81 .pll-confirmation-modal + .ui-widget-overlay {
82 background: #000;
83 opacity: 0.7;
84 z-index: 100101;
85 }
86